Rework title font and fix pause logo switching

This commit is contained in:
2026-01-05 22:43:52 +01:00
parent 871a18a0ee
commit 679b3208cd
87 changed files with 776 additions and 230 deletions

View File

@@ -0,0 +1,14 @@
/**
* Data model pour les contacts
*/
export class ContactDataModel extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
contacttype: new fields.StringField({ initial: "" }),
niveau: new fields.StringField({ initial: "" }),
pointdev: new fields.NumberField({ initial: 0, integer: true }),
description: new fields.HTMLField({ initial: "" })
};
}
}