ui/richtext/RichTextBulletHomingRange.cs

A RichText panel class for the game's UI that matches the phrase "Bullet Homing Range". It supplies an icon path, indicates the icon should be prepended, and overrides the text to "homing range".

using Sandbox;

[RichTextPanel( @"\b[Bb]ullet [Hh]oming [Rr]ange\b" )]
public class RichTextBulletHomingRange : RichTextBase
{
	public override string ImagePath => "textures/ui/bullet-icon.png";
	public override bool PrependIcon => true;
	public override string TextOverride => "homing range";
}