diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-12-13 00:38:57 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-01-08 16:36:48 +0100 |
commit | 82bb07f0b44af3268fa1354acdeb2fadfd3c85eb (patch) | |
tree | 742b8158cac5aa5c487bc4a256f3f8c36beecb5f /rules.js | |
parent | 278d1f69408979c83c60f1f4be9feab56a56a365 (diff) | |
download | table-battles-82bb07f0b44af3268fa1354acdeb2fadfd3c85eb.tar.gz |
skirmishers / chariots
Diffstat (limited to 'rules.js')
-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" |