Spells fixe
Release Creation / build (release) Successful in 46s

This commit is contained in:
2026-05-20 23:17:07 +02:00
parent 9a8d580ef6
commit e417b61625
28 changed files with 105 additions and 88 deletions
@@ -288,8 +288,14 @@ export default class LethalFantasyCharacterSheet extends LethalFantasyActorSheet
}
const roll = new LethalFantasyRoll(formula, {}, rollOpts)
await roll.evaluate()
const diceResults = []
for (const term of roll.dice) {
for (const r of term.results) {
diceResults.push({ dice: `1D${term.faces}`, value: r.result })
}
}
roll.options.diceResults = diceResults
roll.options.rollTotal = roll.total
if (game?.dice3d) await game.dice3d.showForRoll(roll, game.user, true)
await roll.toMessage()
}
+6 -1
View File
@@ -608,7 +608,12 @@
},
"arcane_spell_attack": {
"type": "spell_calamity",
"description": "Possible Spell Calamity or Catastrophe"
"description": "A possible spell calamity has occurred"
},
"melee_attack": {
"type": "fumble",
"detail": "melee_fumble",
"description": "Possible Fumble"
}
}
},