FIX: Monster thac0
parent
f694f7888e
commit
7ab45a1e49
|
@ -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",
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
},
|
||||
"exploration": {
|
||||
"ld": 1,
|
||||
"od": 1,
|
||||
"od": 2,
|
||||
"sd": 1,
|
||||
"ft": 1
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue