mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
21 lines
547 B
JavaScript
21 lines
547 B
JavaScript
import BaseDataItem from './base.mjs';
|
|
|
|
export default class DHMiscellaneous extends BaseDataItem {
|
|
/** @inheritDoc */
|
|
static get metadata() {
|
|
return foundry.utils.mergeObject(super.metadata, {
|
|
label: "TYPES.Item.miscellaneous",
|
|
type: "miscellaneous",
|
|
hasDescription: true,
|
|
isQuantifiable: true,
|
|
});
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
...super.defineSchema(),
|
|
};
|
|
}
|
|
}
|