zenno/lib/race: add stat type

This commit is contained in:
2026-05-18 11:20:59 -04:00
parent aca5fccaa7
commit bc94d66002

View File

@@ -3,6 +3,16 @@
import type { Uma } from './data/uma'; import type { Uma } from './data/uma';
export enum Stat {
Speed,
Stamina,
Power,
Guts,
Wit,
}
export const StatList = [Stat.Speed, Stat.Stamina, Stat.Power, Stat.Guts, Stat.Wit] as const;
export interface Runner { export interface Runner {
name: string; name: string;