ui/richtext/RichTextArmorItem.cs

A small RichText panel class used by the UI to render armor item tokens. It specifies an icon, hides the matched text, and sets a blue-tinted color for the panel.

NetworkingFile Access
[RichTextPanel( @"\b[Aa]rmor-items?\b" )]
public class RichTextArmorItem : RichTextBase
{
	public override string ImagePath => "textures/ui/shield3.png";
	public override bool HideText => true;

	public override Color Color => Color.Blue.Saturate( 0.3f );
}