RC-100 | Armour | Setup Data Model
This commit is contained in:
parent
39ab64be49
commit
6aa89b2173
4 changed files with 31 additions and 0 deletions
25
module/data/Item/Armour.mjs
Normal file
25
module/data/Item/Armour.mjs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
const { fields } = foundry.data;
|
||||
|
||||
export class ArmourData extends foundry.abstract.TypeDataModel {
|
||||
// MARK: Schema
|
||||
static defineSchema() {
|
||||
return {};
|
||||
};
|
||||
|
||||
// MARK: Base Data
|
||||
prepareBaseData() {
|
||||
super.prepareBaseData();
|
||||
};
|
||||
|
||||
// MARK: Derived Data
|
||||
prepareDerivedData() {
|
||||
super.prepareDerivedData();
|
||||
};
|
||||
|
||||
// #region Sheet Data
|
||||
getFormFields(ctx) {
|
||||
const fields = [];
|
||||
return fields;
|
||||
};
|
||||
// #endregion
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue