Added a Setting that controls if scroll texts should be shown on resource change

This commit is contained in:
WBHarry 2025-08-04 22:45:25 +02:00
parent 02a8a9c313
commit 822ec82d63
7 changed files with 95 additions and 1 deletions

View file

@ -40,6 +40,11 @@ export default class DhAutomation extends foundry.abstract.DataModel {
choices: CONFIG.DH.GENERAL.ruleChoice,
initial: CONFIG.DH.GENERAL.ruleChoice.onWithToggle.id,
label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.damageReductionRulesDefault.label'
}),
resourceScrollTexts: new fields.BooleanField({
required: true,
initial: true,
label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.resourceScrollTexts.label'
})
};
}