From db493cf2a4b4c589106d66117cc35dfe52ead7bb Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 28 Mar 2025 14:35:19 +0100 Subject: Initiative player to pull tokens from bag at year end procedure. --- rules.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'rules.ts') diff --git a/rules.ts b/rules.ts index 7435f43..971113c 100644 --- a/rules.ts +++ b/rules.ts @@ -1367,7 +1367,7 @@ states.choose_final_bid = { } let n = 0 for (let c of game.selected_cards[faction]) { - n += cards[c].strength + n += (cards[c] as PlayerCard).strength } if (n > 0) view.prompt = `Final Bid for Glory: Discard up to 3 cards for ${n} strength.` @@ -1521,12 +1521,15 @@ function draw_glory_from_bag() { array_remove(game.bag_of_glory, index); - logi(`Pulled T${faction} from the Bag`); + log(`Pulled T${faction} from the Bag.`); } states.draw_glory = { inactive: 'draw from the Bag of Glory', auto_resolve() { + // active player to trigger the draw + if (get_active_faction() === game.initiative) + return false; draw_glory_from_bag(); return true; }, @@ -1562,14 +1565,11 @@ states.end_of_year_discard = { for (let c of tableau) gen_action_card(c); } - if (needs_to_discard_from_hand && needs_to_discard_from_tableau) { - view.prompt = 'Discard a card from your hand or tableau.'; - } else if (needs_to_discard_from_hand) { - view.prompt = 'Discard a card from your hand.'; - } else if (needs_to_discard_from_tableau) { - view.prompt = 'Discard a card from your tableau.'; + view.prompt = JSON.stringify({needs_to_discard_from_hand,needs_to_discard_from_tableau}); + if (needs_to_discard_from_hand || needs_to_discard_from_tableau) { + view.prompt = 'End of Year: Discard cards from your hand and tableau.'; } else { - view.prompt = 'Confirm discard.'; + view.prompt = 'End of Year: Done.'; view.actions.confirm = 1; } if (discarded[faction_id].h.length > 0 || discarded[faction_id].t.length > 0) { -- cgit v1.2.3