summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-07-21 16:45:25 +0200
committerTor Andersson <tor@ccxvii.net>2024-08-21 00:28:20 +0200
commitd52f685bdf30b6e67a0be0456363378e14a432bc (patch)
treef5e82fc185e00c2773f8757e37d90f93c9a18414 /rules.js
parent5a6b115cf760e9b021df5cc3ea03289594ad0990 (diff)
downloadwashingtons-war-d52f685bdf30b6e67a0be0456363378e14a432bc.tar.gz
fix naval move and landing party
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js48
1 files changed, 37 insertions, 11 deletions
diff --git a/rules.js b/rules.js
index 2cf429c..fd69ba7 100644
--- a/rules.js
+++ b/rules.js
@@ -1797,25 +1797,21 @@ function goto_ops_general(c) {
states.ops_general_who = {
prompt() {
- if (game.campaign && !has_flag(F_LANDING_PARTY))
+ let land = can_use_landing_party()
+ if (land)
view.prompt = "Campaign: Activate a general or use a landing party. " + game.campaign + " left."
else if (game.campaign)
view.prompt = "Campaign: Activate a general. " + game.campaign + " left."
else
view.prompt = "Activate a general with strategy rating " + game.count + " or lower."
- if (has_flag(F_LANDING_PARTY))
- gen_landing_party()
+ if (land)
+ view.actions.landing_party = 1
gen_activate_general()
view.actions.pass = 1
},
- space(where) {
+ landing_party() {
push_undo()
- clear_flag(F_LANDING_PARTY)
- if (has_american_pc())
- flip_pc(where)
- else
- place_british_pc(where)
- end_strategy_card()
+ game.state = "landing_party"
},
general(g) {
push_undo()
@@ -1829,6 +1825,36 @@ states.ops_general_who = {
},
}
+states.landing_party = {
+ prompt() {
+ view.prompt = "Campaign: Flip or place a PC in a port."
+ gen_landing_party()
+ },
+ space(where) {
+ clear_flag(F_LANDING_PARTY)
+ if (has_american_pc())
+ flip_pc(where)
+ else
+ place_british_pc(where)
+ // uses one campaign activation
+ end_strategy_card()
+ },
+}
+
+function can_use_landing_party() {
+ if (game.campaign && has_flag(F_LANDING_PARTY)) {
+ for (let space of all_spaces) {
+ if (!is_fortified_port(space) && is_non_blockaded_port(space)) {
+ if (has_american_pc(space) && has_no_american_unit(space))
+ return true
+ if (has_no_pc(space) && has_no_american_unit(space) && has_no_british_playing_piece(space))
+ return true
+ }
+ }
+ }
+ return false
+}
+
function gen_landing_party() {
for (let space of all_spaces) {
if (!is_fortified_port(space) && is_non_blockaded_port(space)) {
@@ -2224,7 +2250,7 @@ function gen_move_general() {
gen_action_space(to)
}
}
- if (game.active === P_BRITAIN && game.count === 4) {
+ if (game.active === P_BRITAIN && game.move.count === 4) {
if (is_non_blockaded_port(from)) {
for (let to of all_spaces) {
if (to !== from) {