ui/richtext/RichTextShot.cs

A small UI rich text tag handler. It defines a RichTextPanel attribute matching the regex for 'shoot', 'shoots', 'shooting' (case-insensitive with optional double o), and sets the text color to white.

[RichTextPanel( @"\b[Ss]hoo?t(?:s|ing)?\b" )]
public class RichTextShot : RichTextBase
{
	public override Color Color => new Color( 1f, 1f, 1f );
}