diff options
-rw-r--r-- | rules.js | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1810,6 +1810,13 @@ function goto_screen(c, a) { game.hits = 0 game.self = 0 break + case "If either Chariot formation is screened, it suffers one Hit!": + game.hits = 0 + if (card_has_rule(game.selected, "is_chariot")) + game.self = 1 + else + game.self = 0 + break } game.state = "screen" |