18 lines
332 B
JavaScript
18 lines
332 B
JavaScript
import { EntityData } from "./Entity.mjs";
|
|
|
|
const { fields } = foundry.data;
|
|
|
|
export class GeistData extends EntityData {
|
|
static defineSchema() {
|
|
const schema = super.defineSchema();
|
|
|
|
schema.description = new fields.HTMLField({
|
|
blank: true,
|
|
nullable: true,
|
|
trim: true,
|
|
initial: null,
|
|
});
|
|
|
|
return schema;
|
|
};
|
|
};
|