RC-98 | Add quantity to items

This commit is contained in:
Oliver-Akins 2025-01-26 14:17:56 -07:00
parent aa05cdde46
commit 3cff9fda7d
8 changed files with 57 additions and 4 deletions

View file

@ -12,6 +12,9 @@ import { WeaponData } from "../data/Item/Weapon.mjs";
// Class Overrides
import { CryptDie } from "../dice/CryptDie.mjs";
// Documents
import { RipCryptItem } from "../documents/item.mjs";
// Misc
import helpers from "../handlebarHelpers/_index.mjs";
import { Logger } from "../utils/Logger.mjs";
@ -37,6 +40,7 @@ Hooks.once(`init`, () => {
// #endregion
// #region Class Changes
CONFIG.Item.documentClass = RipCryptItem;
CONFIG.Dice.terms.d = CryptDie;
// #endregion