added fatepoints
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import type {DSAAttributes, DSAHealth, DSAPersonalData, DSAResistances} from "./baseCharacter.ts";
|
import type {DSAAttributes, DSAHealth, DSAPersonalData, DSAResistances} from "./baseCharacter.ts";
|
||||||
import type {DSAArmor, DSAMeleeWeapon, DSARangedWeapon, DSAShield} from "./equiment.ts";
|
import type {DSAArmor, DSAMeleeWeapon, DSARangedWeapon, DSAShield} from "./equiment.ts";
|
||||||
import type {DSACombatAbilitiy} from "./abilities.ts";
|
import type {DSACombatAbilitiy} from "./abilities.ts";
|
||||||
|
import type {DSAFatePoints} from "./fatepoints.ts";
|
||||||
|
|
||||||
export interface DSASkill {
|
export interface DSASkill {
|
||||||
name: string;
|
name: string;
|
||||||
@@ -70,4 +71,5 @@ export interface DSACharacter {
|
|||||||
astral: DSAAstral;
|
astral: DSAAstral;
|
||||||
hasKarmal: boolean;
|
hasKarmal: boolean;
|
||||||
karmal: DSAKarmal;
|
karmal: DSAKarmal;
|
||||||
|
fatepoints: DSAFatePoints;
|
||||||
}
|
}
|
||||||
|
6
src/types/fatepoints.ts
Normal file
6
src/types/fatepoints.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
export interface DSAFatePoints {
|
||||||
|
stats: number;
|
||||||
|
bonus: number;
|
||||||
|
max: number;
|
||||||
|
current: number;
|
||||||
|
}
|
Reference in New Issue
Block a user