Action Save difficulty

This commit is contained in:
Dapoolp 2025-07-27 12:58:28 +02:00
parent 5cd9075732
commit f74954b718
7 changed files with 10 additions and 6 deletions

View file

@ -385,6 +385,10 @@ export default class DhpActor extends Actor {
return CONFIG.Dice.daggerheart[['character', 'companion'].includes(this.type) ? 'DualityRoll' : 'D20Roll'];
}
get baseSaveDifficulty() {
return this.system.difficulty ?? 10;
}
getRollData() {
const rollData = super.getRollData();
rollData.system = this.system.getRollData();