From 886331ee11f3f5e64971a0575a0aeb9f85d7f8b7 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 17 Dec 2023 17:10:46 +0100 Subject: cannot bombard last cube --- rules.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rules.js b/rules.js index d7428b5..4c0d6c9 100644 --- a/rules.js +++ b/rules.js @@ -1927,6 +1927,13 @@ function can_take_action(c, a, ix) { return false } + if (a.type === "Bombard") { + // cannot Bombard last morale cube + let p = player_index() + if (game.morale[1-p] === 1) + return false + } + if (game.scenario === S8_BROOKLYN_HEIGHTS) { if (c === S8_CLINTON) { // Clinton - may only attack if both Grant and Hessians have dice on them. -- cgit v1.2.3