First official release

This commit is contained in:
2023-08-25 23:00:21 +02:00
parent dca78fd4b6
commit b383481915
53 changed files with 337 additions and 146 deletions

View File

@@ -346,6 +346,13 @@ export class Hero6Utility {
// ability/save/size => 0
let diceFormula = "3d6"
let target = 10
if(rollData.weapon) {
target = rollData.weaponRoll
}
if(rollData.maneuver) {
target = rollData.maneuverRoll
}
if (rollData.charac) {
target = rollData.charac.roll
}