summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-12-04 15:59:12 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-12-04 15:59:12 +0100
commitd1544267c96cb2242230a78c9c992665651b6b2b (patch)
tree5c93c9c5ec091eccf918a0b2aa015473c288504e
parent9bbf75f54c152aed9d40954b8a61481c60033de6 (diff)
downloadvotes-for-women-d1544267c96cb2242230a78c9c992665651b6b2b.tar.gz
clarify which card was selected to play as event
-rw-r--r--rules.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index b4fc337..bc08172 100644
--- a/rules.js
+++ b/rules.js
@@ -2999,7 +2999,11 @@ states.vm_place_any_on_top_of_draw = {
}
}
} else {
- event_prompt("Select which cards to put on top of your Draw Deck.")
+ event_prompt("Select which cards to put on top of your Draw Deck. The rest goes at the bottom.")
+ if (game.vm.play_one) {
+ let event_card_name = CARDS[game.selected_cards[0]].name
+ view.prompt += ` Will play "${event_card_name}" for its event.`
+ }
for (let c of game.vm.draw) {
if (!game.selected_cards.includes(c))
gen_action_card(c)