ui/richtext/RichTextXpCoin.cs

A small RichText panel class for matching XP coin text. It specifies an image, hides the matched text, and sets a saturated blue color for the panel.

Native Interop
[RichTextPanel( @"\b[Xx][Pp] [Cc]oins?\b" )]
public class RichTextXpCoin : RichTextBase
{
	public override string ImagePath => "textures/ui/coin2.png";
	public override bool HideText => true;
	public override Color Color => Color.Blue.Saturate( 0.5f );
}