diff --git a/src/lang/en.json b/src/lang/en.json index 54d9a3a..7ec9660 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -27,7 +27,6 @@ "OSE.TreasureTableHint": "Drop a rollable table here to roll the monster treasure", "OSE.Size": "Size", "OSE.Morale": "Morale", - "OSE.MoraleCheckDetails": "Roll 2d6 <= Morale for success", "OSE.Retainer": "Retainer", "OSE.Appearing": "NA", "OSE.Attack": "Attack", diff --git a/src/module/actor/entity.js b/src/module/actor/entity.js index 83258d9..c579390 100644 --- a/src/module/actor/entity.js +++ b/src/module/actor/entity.js @@ -101,7 +101,6 @@ export class OseActor extends Actor { rollData: { type: "Below", 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; } else if (attData.type == "missile") { thac0 = data.thac0.missile; + } else { + thac0 = data.thac0.value; } const rollData = { diff --git a/src/template.json b/src/template.json index e8420b2..93a7cc5 100644 --- a/src/template.json +++ b/src/template.json @@ -100,7 +100,7 @@ }, "exploration": { "ld": 1, - "od": 1, + "od": 2, "sd": 1, "ft": 1 },