A UI rich text style definition for a tag labeled "(lasts until hit and doesn't stack)". It subclasses RichTextBase and sets italic, font size, and a semi-transparent color.
[RichTextPanel( @"\(lasts until hit and doesn't stack\)" )]
public class RichTextLastsUntilHitDoesntStack : RichTextBase
{
public override bool Italic => true;
public override float? FontSize => 11f;
public override Color Color => new Color( 1f ).WithAlpha(0.4f);
}