From 5d34ede3926b45c930586a760997b4646ab3ad3d Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Tue, 9 Apr 2024 09:05:49 +0200 Subject: Extra Event cost applies only to Event cards, not Strategy / State cards --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 39f941c..574268d 100644 --- a/rules.js +++ b/rules.js @@ -1192,7 +1192,7 @@ function play_card_event(c) { else log_round("Event") log("C" + c) - if (has_extra_event_cost()) + if ((is_support_card(c) || is_opposition_card(c)) && has_extra_event_cost()) decrease_player_buttons(1) log_br() goto_event(c) -- cgit v1.2.3