RC-19 | Add Glory to the datamodel

This commit is contained in:
Oliver-Akins 2024-12-10 22:50:58 -07:00
parent 0f9afca274
commit f9ef7c2c18

View file

@ -53,6 +53,15 @@ export class HeroData extends foundry.abstract.TypeDataModel {
nullable: false,
}),
}),
level: new fields.SchemaField({
glory: new fields.NumberField({
min: 0,
initial: 0,
integer: true,
required: true,
nullable: false,
}),
}),
};
};