ui/richtext/RichTextKill.cs

A small RichText component that matches the word "kill" or "kills" and supplies an icon string. It is annotated with a RichTextPanel pattern and overrides the Icon property to an empty string.

[RichTextPanel( @"\b[Kk]ills?\b" )]
public class RichTextKill : RichTextBase
{
	public override string Icon => "";
}