diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-06-20 19:22:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:12:42 +0100 |
commit | b19499cc5f6483062a28dc7a0c52e4b61c74f796 (patch) | |
tree | 2581d39b685b4b9129eea67804c759ec1e1d1925 | |
parent | b787af332542d3a88f32dbefedb0b2a37bcff6b7 (diff) | |
download | shores-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.js | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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); }, |