added fatepoints

This commit is contained in:
2025-06-21 21:47:14 +02:00
parent ed69e09249
commit 45ce0ea3cc
2 changed files with 8 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import type {DSAAttributes, DSAHealth, DSAPersonalData, DSAResistances} from "./baseCharacter.ts";
import type {DSAArmor, DSAMeleeWeapon, DSARangedWeapon, DSAShield} from "./equiment.ts";
import type {DSACombatAbilitiy} from "./abilities.ts";
import type {DSAFatePoints} from "./fatepoints.ts";
export interface DSASkill {
name: string;
@@ -70,4 +71,5 @@ export interface DSACharacter {
astral: DSAAstral;
hasKarmal: boolean;
karmal: DSAKarmal;
fatepoints: DSAFatePoints;
}

6
src/types/fatepoints.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface DSAFatePoints {
stats: number;
bonus: number;
max: number;
current: number;
}