Update and begin work on a new data model

This commit is contained in:
Oliver-Akins 2024-01-07 00:58:05 -07:00
parent 99546cd0e3
commit 25dfe354ea
2 changed files with 16 additions and 2 deletions

View file

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