RC-117 | Ammo | Setup
This commit is contained in:
parent
de0457a111
commit
683ba9e69d
4 changed files with 27 additions and 0 deletions
23
module/data/Item/Ammo.mjs
Normal file
23
module/data/Item/Ammo.mjs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import { CommonItemData } from "./Common.mjs";
|
||||
|
||||
export class AmmoData extends CommonItemData {
|
||||
// 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