RC-16 | Item limits base data

This commit is contained in:
Oliver-Akins 2024-12-10 21:37:11 -07:00
parent a956fd2d8e
commit 43658301c9

View file

@ -57,7 +57,16 @@ export class HeroData extends foundry.abstract.TypeDataModel {
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() {};
};