From cb2df52e9206f0d5c2e370016213a33448b65bc2 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 6 Jan 2023 12:45:51 +0100 Subject: Raven's Rock - correct season and only battle round 1. --- rules.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/rules.js b/rules.js index 8f0c4cc..5152da3 100644 --- a/rules.js +++ b/rules.js @@ -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) } } -- cgit v1.2.3