From 7ab45a1e4933dfa9abe0adc1b40c6d3381597064 Mon Sep 17 00:00:00 2001 From: U~man Date: Mon, 6 Jul 2020 21:48:56 +0200 Subject: [PATCH] FIX: Monster thac0 --- src/lang/en.json | 1 - src/module/actor/entity.js | 3 ++- src/template.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 },