ui/richtext/RichTextArmor.cs

A RichText panel component used by the UI to style occurrences of the word "armor" or "armors". It inherits RichTextBase and sets the display Color to a saturated blue. Commented lines hint at optional image and hide-text behavior but are disabled.

Obfuscated Code
[RichTextPanel( @"\b[Aa]rmors?\b" )]
public class RichTextArmor : RichTextBase
{
	//public override string ImagePath => "textures/ui/shield3.png";
	//public override bool HideText => true;

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