[Feature] ActiveEffect Default Hope/Fear dice (#1522)

* Added ActiveEffect rules for default hope and fear dice

* .

* Raised system version
This commit is contained in:
WBHarry 2026-01-13 10:58:03 +01:00 committed by GitHub
parent d282a81594
commit 3c9ef75645
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 180 additions and 16 deletions

View file

@ -280,6 +280,24 @@ export default class DhCharacter extends BaseDataActor {
})
})
}),
dualityRoll: new fields.SchemaField({
defaultHopeDice: new fields.NumberField({
nullable: false,
required: true,
integer: true,
choices: CONFIG.DH.GENERAL.dieFaces,
initial: 12,
label: 'DAGGERHEART.ACTORS.Character.defaultHopeDice'
}),
defaultFearDice: new fields.NumberField({
nullable: false,
required: true,
integer: true,
choices: CONFIG.DH.GENERAL.dieFaces,
initial: 12,
label: 'DAGGERHEART.ACTORS.Character.defaultFearDice'
})
}),
runeWard: new fields.BooleanField({ initial: false }),
burden: new fields.SchemaField({
ignore: new fields.BooleanField()