FIX: Monster thac0

master
U~man 2020-07-06 21:48:56 +02:00
parent f694f7888e
commit 7ab45a1e49
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,6 @@
"OSE.TreasureTableHint": "Drop a rollable table here to roll the monster treasure", "OSE.TreasureTableHint": "Drop a rollable table here to roll the monster treasure",
"OSE.Size": "Size", "OSE.Size": "Size",
"OSE.Morale": "Morale", "OSE.Morale": "Morale",
"OSE.MoraleCheckDetails": "Roll 2d6 <= Morale for success",
"OSE.Retainer": "Retainer", "OSE.Retainer": "Retainer",
"OSE.Appearing": "NA", "OSE.Appearing": "NA",
"OSE.Attack": "Attack", "OSE.Attack": "Attack",

View File

@ -101,7 +101,6 @@ export class OseActor extends Actor {
rollData: { rollData: {
type: "Below", type: "Below",
target: this.data.data.details.morale, target: this.data.data.details.morale,
details: game.i18n.format("OSE.MoraleCheckDetails"),
}, },
}, },
}; };
@ -274,6 +273,8 @@ export class OseActor extends Actor {
thac0 = data.thac0.melee; thac0 = data.thac0.melee;
} else if (attData.type == "missile") { } else if (attData.type == "missile") {
thac0 = data.thac0.missile; thac0 = data.thac0.missile;
} else {
thac0 = data.thac0.value;
} }
const rollData = { const rollData = {

View File

@ -100,7 +100,7 @@
}, },
"exploration": { "exploration": {
"ld": 1, "ld": 1,
"od": 1, "od": 2,
"sd": 1, "sd": 1,
"ft": 1 "ft": 1
}, },