visions-vtt/kliento/src.backup/types.ts

16 lines
240 B
TypeScript
Raw Normal View History

2021-12-29 02:13:49 +00:00
type StatPool = {
value: number;
max: number;
edge: number;
}
export type PlayerCharacter = {
name: string;
concept: string;
effort: number;
cypherLimit: number;
might: StatPool;
speed: StatPool;
intellect: StatPool;
}