RC-79 | Skill | Setup
This commit is contained in:
parent
517913f20c
commit
8fe6c148fc
4 changed files with 30 additions and 0 deletions
26
module/data/Item/Skill.mjs
Normal file
26
module/data/Item/Skill.mjs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
export class SkillData extends foundry.abstract.TypeDataModel {
|
||||
// MARK: Schema
|
||||
static defineSchema() {
|
||||
return {};
|
||||
};
|
||||
|
||||
// MARK: Base Data
|
||||
prepareBaseData() {
|
||||
super.prepareBaseData();
|
||||
};
|
||||
|
||||
// MARK: Derived Data
|
||||
prepareDerivedData() {
|
||||
super.prepareDerivedData();
|
||||
};
|
||||
|
||||
// #region Getters
|
||||
// #endregion
|
||||
|
||||
// #region Sheet Data
|
||||
getFormFields(_ctx) {
|
||||
const fields = [];
|
||||
return fields;
|
||||
};
|
||||
// #endregion
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue