diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-06 12:45:51 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | cb2df52e9206f0d5c2e370016213a33448b65bc2 (patch) | |
tree | 634f1996d676d17d3963738da32da3bc04c3812b | |
parent | dc7d37dc1d8823d7f0381142cb7b9de6a72a8cdd (diff) | |
download | nevsky-cb2df52e9206f0d5c2e370016213a33448b65bc2.tar.gz |
Raven's Rock - correct season and only battle round 1.
-rw-r--r-- | rules.js | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1960,8 +1960,10 @@ function is_event_in_play(c) { } function is_ravens_rock_in_play() { - if (game.active === RUSSIANS) - return is_event_in_play(EVENT_RUSSIAN_RAVENS_ROCK) + if (game.battle.round <= 1) { + if (game.active === RUSSIANS) + return is_event_in_play(EVENT_RUSSIAN_RAVENS_ROCK) + } return false } @@ -6429,7 +6431,7 @@ function can_play_battle_events() { if (!is_winter()) if (could_play_card(EVENT_RUSSIAN_BRIDGE)) return true - if (is_summer()) + if (!is_summer()) if (could_play_card(EVENT_RUSSIAN_RAVENS_ROCK)) return true } @@ -6462,7 +6464,7 @@ function prompt_battle_events() { gen_action_card_if_held(EVENT_RUSSIAN_AMBUSH) if (!is_winter()) gen_action_card_if_held(EVENT_RUSSIAN_BRIDGE) - if (is_summer()) + if (!is_summer()) gen_action_card_if_held(EVENT_RUSSIAN_RAVENS_ROCK) } } |