/** * Data model pour les protections */ export default class ProtectionDataModel extends foundry.abstract.TypeDataModel { static defineSchema() { const fields = foundry.data.fields; return { description: new fields.HTMLField({ initial: "" }), protection: new fields.NumberField({ initial: 0, integer: true }), equipped: new fields.BooleanField({ initial: false }), rarete: new fields.NumberField({ initial: 0, integer: true }), prix: new fields.NumberField({ initial: 0, integer: true }) }; } }