summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-06-20 19:22:36 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:12:42 +0100
commitb19499cc5f6483062a28dc7a0c52e4b61c74f796 (patch)
tree2581d39b685b4b9129eea67804c759ec1e1d1925
parentb787af332542d3a88f32dbefedb0b2a37bcff6b7 (diff)
downloadshores-of-tripoli-b19499cc5f6483062a28dc7a0c52e4b61c74f796.tar.gz
tripoli: Disallow moving frigates into empty enemy cities.
There's no purpose, and removes some possible corner cases.
-rw-r--r--rules.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 7775207..009760c 100644
--- a/rules.js
+++ b/rules.js
@@ -526,6 +526,12 @@ function count_american_troops(where) {
return count_american_marines(where) + count_arab_infantry(where);
}
+function count_tripolitan_pieces(where) {
+ return count_tripolitan_frigates(where) +
+ count_tripolitan_corsairs(where) +
+ count_tripolitan_infantry(where);
+}
+
function is_fall_of_1805_or_later() {
return ((game.year == 1805 && game.season >= FALL) || (game.year > 1805));
}
@@ -1031,8 +1037,12 @@ states.move_us_frigate_to = {
if (is_inactive_player(current))
return view.prompt = "United States: Naval Movement.";
view.prompt = "United States: Naval Movement" + format_moves_left();
- for (let space of FRIGATE_SPACES)
+ for (let space of FRIGATE_SPACES) {
+ if (space == TRIPOLI || space == BENGHAZI || space == DERNE)
+ if (count_tripolitan_pieces(space) == 0)
+ continue; // nothing to do here...
gen_action(view, 'space', space);
+ }
gen_action(view, 'next');
gen_action_undo(view);
},