ui/richtext/RichTextNonSelfDamage.cs

A UI rich text panel class for detecting text matching the regex "\b[Nn]on-[Ss]elf ([Dd]amage|[Dd][Mm][Gg])\b". It defines an empty Icon and sets the Color to a gray value (0.5,0.5,0.5).

Obfuscated Code
[RichTextPanel( @"\b[Nn]on-[Ss]elf ([Dd]amage|[Dd][Mm][Gg])\b", UseCaptureGroup = false )]
public class RichTextNonSelfDamage : RichTextBase
{
	public override string Icon => "";

	public override Color Color => new Color( 0.5f, 0.5f, 0.5f );
}