refactoring the dsa types, still a lot of information missing
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export interface DSACombatAbilitiy {
|
||||
name: string;
|
||||
}
|
||||
|
@@ -1,5 +1,6 @@
|
||||
import type {DSAAttributes, DSAHealth, DSAPersonalData, DSAResistances} from "./baseCharacter.ts";
|
||||
import type {DSAArmor, DSAMeleeWeapon, DSARangedWeapon} from "./equiment.ts";
|
||||
import type {DSACombatAbilitiy} from "./abilities.ts";
|
||||
|
||||
export interface DSASkill {
|
||||
name: string;
|
||||
@@ -16,7 +17,7 @@ export interface DSACombatValues {
|
||||
meleeWeapons: Record<string, DSAMeleeWeapon>;
|
||||
rangedWeapons: Record<string, DSARangedWeapon>
|
||||
armor: Record<string, DSAArmor>;
|
||||
combatAbilities: Record<string, DSACombatAbilities>;
|
||||
combatAbilities: Record<string, DSACombatAbilitiy>;
|
||||
}
|
||||
|
||||
export interface DSAAstral {
|
||||
|
Reference in New Issue
Block a user