ui/richtext/RichTextBullet.cs

A RichText panel class used by the UI to display a 'Bullets' stat block. It defines an empty Icon and two stat entries for number of projectiles and extra projectile chance.

[RichTextPanel( @"\b[Bb]ullets?\b" )]
public class RichTextBullet : RichTextBase
{
	public override string Icon => "";
	public override RichTextStatEntry[] Stats => [
		new(PlayerStat.NumProjectiles, StatFormat.Int),
		new(PlayerStat.ExtraProjectileChance, StatFormat.Percentage)
	];
}