Fixed so that horde damage reduction is only applied to the standard attack

This commit is contained in:
WBHarry 2026-02-22 21:20:27 +01:00
parent 267de9a8cf
commit 32b6e732fe
3 changed files with 15 additions and 2 deletions

View file

@ -11,6 +11,11 @@ export class DHActionRollData extends foundry.abstract.DataModel {
choices: CONFIG.DH.ACTOR.abilities,
label: 'DAGGERHEART.GENERAL.Trait.single'
}),
isStandardAttack: new fields.BooleanField({
required: true,
nullable: false,
initial: false
}),
difficulty: new fields.NumberField({ nullable: true, initial: null, integer: true, min: 0 }),
bonus: new fields.NumberField({ nullable: true, initial: null, integer: true }),
advState: new fields.StringField({