@galaxyops/character-sheet-contracts
Version:
26 lines (18 loc) • 564 B
text/typescript
export type Stats = {
// The ability to apply force to ones movements
power: number;
// The ability to move quickly
speed: number;
// The quality of having experience, knowledge, and good judgment.
wisdom: number;
// The ability to think and reason logically.
intelligence: number;
// The ability to protect and defend oneself.
defense: number;
// The ability to hit and injure others.
accuracy: number;
// The ability to avoid and evade attacks.
evasion: number;
// The ability to have a favorable outcome.
luck: number;
};