From ac0019298a29daafcf8cdc12c1308c5044894c8e Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 24 Mar 2022 02:50:34 +0100 Subject: Add "Amphibious Landing" prompt. --- rules.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index fc4d898..2d8b10b 100644 --- a/rules.js +++ b/rules.js @@ -3152,9 +3152,15 @@ states.move = { } else { if (!game.events.no_amphib) { if (game.active === BRITAIN && has_amphibious_arrow(from)) { - for (let card = first_amphib_card; card <= last_amphib_card; ++card) - if (player.hand.includes(card)) + let has_amphib = false; + for (let card = first_amphib_card; card <= last_amphib_card; ++card) { + if (player.hand.includes(card)) { + has_amphib = true; gen_action('play_event', card); + } + } + if (has_amphib) + view.prompt += ` You may play "Amphibious Landing."`; } } } -- cgit v1.2.3