ui/richtext/RichTextFreezeDuration.cs

Commented-out RichText UI component for displaying a freeze duration stat. It would define icon, color, and a stat entry showing freeze lifetime in seconds if uncommented.

//[RichTextPanel( @"\b[Ff]reeze ([Dd]uration|[Ll]ifetime)\b" )]
//public class RichTextFreezeDuration : RichTextBase
//{
//	public override string Icon => "ac_unit";
//	public override Color Color => Color.Cyan;
//	public override RichTextStatEntry[] Stats => [
//		new(PlayerStat.FreezeLifetime, StatFormat.Seconds1)
//	];
//}