Move the Aspect data model into it's appropriate location

This commit is contained in:
Oliver-Akins 2024-01-13 16:01:48 -07:00
parent cb888bebad
commit 21327ba60f
2 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,11 @@
export class AspectItemData extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
used: new fields.BooleanField({ initial: false }),
/** The number of seconds that the effect of the aspect stays */
deactivateAfter: new fields.NumberField({ nullable: true }),
info: new fields.HTMLField({ nullable: true, blank: false, trim: true }),
};
};
};