RC-117 | Ammo | Setup

This commit is contained in:
Oliver-Akins 2025-01-26 15:46:08 -07:00
parent de0457a111
commit 683ba9e69d
4 changed files with 27 additions and 0 deletions

23
module/data/Item/Ammo.mjs Normal file
View 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
};