RC-16 | Item limits base data
This commit is contained in:
parent
a956fd2d8e
commit
43658301c9
1 changed files with 10 additions and 1 deletions
|
|
@ -57,7 +57,16 @@ export class HeroData extends foundry.abstract.TypeDataModel {
|
||||||
return schema;
|
return schema;
|
||||||
};
|
};
|
||||||
|
|
||||||
prepareBaseData() {};
|
prepareBaseData() {
|
||||||
|
super.prepareBaseData();
|
||||||
|
|
||||||
|
// The limitations imposed on things like inventory spaces and equipped
|
||||||
|
// weapon count
|
||||||
|
this.limit = {
|
||||||
|
weapons: 4,
|
||||||
|
equipment: 12,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
prepareDerivedData() {};
|
prepareDerivedData() {};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue