some minor consumables fixes, more to come later (#429)

* some minor consumables fixes, more to come later

* another typo T_T

* more loot rename fixes

* more loot fixes

* Changed miscellaneous to loot

---------

Co-authored-by: WBHarry <williambjrklund@gmail.com>
This commit is contained in:
CPTN Cosmo 2025-07-27 15:50:48 +02:00 committed by GitHub
parent 8cb4b7663e
commit 5215212e02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
86 changed files with 5254 additions and 1049 deletions

22
module/data/item/loot.mjs Normal file
View file

@ -0,0 +1,22 @@
import BaseDataItem from './base.mjs';
export default class DHLoot extends BaseDataItem {
/** @inheritDoc */
static get metadata() {
return foundry.utils.mergeObject(super.metadata, {
label: 'TYPES.Item.loot',
type: 'loot',
hasDescription: true,
isQuantifiable: true,
isInventoryItem: true,
hasActions: true
});
}
/** @inheritDoc */
static defineSchema() {
return {
...super.defineSchema()
};
}
}