RC-38 | Weapon | Initialize Datamodel
This commit is contained in:
parent
4406531713
commit
ce4b4df6d7
3 changed files with 23 additions and 3 deletions
16
module/data/Item/Weapon.mjs
Normal file
16
module/data/Item/Weapon.mjs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
const { fields } = foundry.data;
|
||||
|
||||
export class WeaponData extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
return {
|
||||
};
|
||||
};
|
||||
|
||||
prepareBaseData() {
|
||||
super.prepareBaseData();
|
||||
};
|
||||
|
||||
prepareDerivedData() {
|
||||
super.prepareDerivedData();
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue