mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
9 lines
343 B
JavaScript
9 lines
343 B
JavaScript
export default class DhCombatant extends foundry.abstract.TypeDataModel {
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
active: new fields.BooleanField({ initial: false }),
|
|
actionTokens: new fields.NumberField({ required: true, integer: true, initial: 3 })
|
|
};
|
|
}
|
|
}
|