summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-05 11:16:20 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-11-05 11:16:20 +0100
commit7b3aee84638017760f9ec2779e3d513a35be2cc1 (patch)
tree76d98ed3f87bc6b1b054d87566da877146118245 /rules.js
parente2d9bcabb59b8244cc690958b7354ac2e54899ed (diff)
downloadvotes-for-women-7b3aee84638017760f9ec2779e3d513a35be2cc1.tar.gz
persistent cards
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/rules.js b/rules.js
index 78ae175..52acd9f 100644
--- a/rules.js
+++ b/rules.js
@@ -147,9 +147,9 @@ exports.setup = function (seed, _scenario, _options) {
strategy_draw: [],
states_draw: [],
- persisted_turn: [],
- persisted_game: [],
- persisted_ballot: [],
+ persistent_turn: [],
+ persistent_game: [],
+ persistent_ballot: [],
support_deck: [],
support_discard: [],
@@ -242,9 +242,9 @@ exports.view = function(state, player) {
strategy_draw: game.strategy_draw,
states_draw: game.states_draw,
- persisted_turn: game.persisted_turn,
- persisted_game: game.persisted_game,
- persisted_ballot: game.persisted_ballot,
+ persistent_turn: game.persistent_turn,
+ persistent_game: game.persistent_game,
+ persistent_ballot: game.persistent_ballot,
support_deck: game.support_deck.length,
support_discard: game.support_discard, // top_discard?
@@ -565,16 +565,16 @@ states.cleanup_phase = {
function cleanup_persistent_turn_cards() {
// any cards in the “Cards in Effect for the Rest of the Turn box” are placed in the appropriate discard pile.
- for (let c of game.persisted_turn) {
+ for (let c of game.persistent_turn) {
if (is_support_card(c)) {
game.support_discard.push(c)
} else if (is_opposition_card(c)) {
game.opposition_discard.push(c)
} else {
- throw Error(`Unexpected card ${c} on persisted_turn`)
+ throw Error(`Unexpected card ${c} on persistent_turn`)
}
}
- game.persisted_turn = []
+ game.persistent_turn = []
}
function end_cleanup_phase() {