Move the Item data models into their own folder for better organization

This commit is contained in:
Oliver-Akins 2024-01-07 11:57:17 -07:00
parent 703aca9eef
commit 9522e28f4b
3 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,14 @@
import { CommonItemData } from "./CommonItemData.mjs";
export class DescribedItemData extends CommonItemData {
static defineSchema() {
const fields = foundry.data.fields;
return mergeObject(super.defineSchema(), {
description: new fields.StringField({
initial: ``,
blank: true,
trim: true,
}),
});
};
};