Partial implementation of Blaze of Glory

This commit is contained in:
Chris Ryan 2025-12-28 14:26:41 +10:00
parent cee79ac4c2
commit 3a7fd0eb8b
3 changed files with 23 additions and 16 deletions

View file

@ -97,7 +97,19 @@ export default class DhDeathMove extends HandlebarsApplicationMixin(ApplicationV
}
async handleBlazeOfGlory() {
console.log("TODO: Blaze Of Glory");
this.actor.createEmbeddedDocuments('ActiveEffect', [
{
name: game.i18n.localize('DAGGERHEART.CONFIG.DeathMoves.blazeOfGlory.name'),
img: 'icons/magic/movement/abstract-ribbons-red-orange.webp',
changes: [
{
key: 'system.rules.roll.guaranteedCritical',
mode: 2,
value: "true"
}
]
}
]);
}
static selectMove(_, button) {