Add optional tracking of slayer points
This commit is contained in:
parent
8d3e381d56
commit
eb49c15d5f
12 changed files with 83 additions and 6 deletions
|
@ -55,6 +55,7 @@ interface DS4CharacterDataData extends DS4ActorDataDataBase {
|
|||
language: DS4CharacterDataDataLanguage;
|
||||
profile: DS4CharacterDataDataProfile;
|
||||
currency: DS4CharacterDataDataCurrency;
|
||||
slayerPoints: DS4CharacterDataDataSlayerPoints;
|
||||
}
|
||||
export interface DS4CharacterDataDataBaseInfo {
|
||||
race: string;
|
||||
|
@ -93,6 +94,10 @@ export interface DS4CharacterDataDataCurrency {
|
|||
copper: number;
|
||||
}
|
||||
|
||||
export interface DS4CharacterDataDataSlayerPoints {
|
||||
value: number;
|
||||
}
|
||||
|
||||
interface DS4CreatureDataData extends DS4ActorDataDataBase {
|
||||
baseInfo: DS4CreatureDataDataBaseInfo;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue