ui/richtext/RichTextBulletSpeed.cs

UI rich text panel type for a bullet speed stat. It defines an icon, label text, tint color, and a single stat entry that shows the player's BulletSpeed as a percentage difference.

Reflection
[RichTextPanel( @"\b[Bb]ullet [Ss]peed\b" )]
public class RichTextBulletSpeed : RichTextBase
{
	public override string ImagePath => "textures/ui/bullet-icon.png";
	public override bool PrependIcon => true;
	public override string TextOverride => "speed";

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

	public override RichTextStatEntry[] Stats => [
		new(PlayerStat.BulletSpeed, StatFormat.PercentageDiff)
	];
}