Arme sheet ready

This commit is contained in:
2024-02-19 22:02:44 +01:00
parent f142b8f6cd
commit 3b98a18ee0
23 changed files with 210 additions and 152 deletions

View File

@ -0,0 +1,11 @@
export class TeDeumEducationSchema extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
const requiredInteger = { required: true, nullable: false, integer: true };
const schema = {};
schema.description = new fields.HTMLField({ required: true, blank: true });
return schema;
}
}