diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-03-11 00:47:28 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-03-11 00:47:28 +0100 |
commit | 0b20f381756c0aab5a2182680f6311a6b4530b0d (patch) | |
tree | 7fe3ab78f77988a6c001bf6d5398dc1aff476ec9 /play.js | |
parent | dd71cc577846668ebd1fcc97cfcea876a95f3d93 (diff) | |
download | land-and-freedom-0b20f381756c0aab5a2182680f6311a6b4530b0d.tar.gz |
Tweak some prompts. Remove unused buttons from play.js
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 39 |
1 files changed, 14 insertions, 25 deletions
@@ -524,41 +524,30 @@ function on_update() { // eslint-disable-line no-unused-vars } } - action_button("add_to_front", "+1 to a Front") - action_button("d_liberty", "Decrease Liberty") - action_button("soviet_support", "Soviet Support") - action_button("collectivization", "Collectivization") - action_button("d_collectivization", "Decrease Collectivization") - action_button("d_foreign_aid", "Decrease Foreign Aid") - action_button("d_government", "Decrease Government") - action_button("d_soviet_support", "Decrease Soviet Support") - action_button("foreign_aid", "Foreign Aid") - action_button("government", "Government") - action_button("liberty", "Liberty") - action_button("government_to_center", "Government towards center") - action_button("teamwork_on", "Teamwork Bonus On") action_button("Anarchist", "Anarchist") action_button("Communist", "Communist") action_button("Moderate", "Moderate") + + action_button("add_glory", "Add to Bag of Glory") + action_button("add_to_front", "+1 to a Front") + action_button("draw_card", "Draw a Card") + action_button("draw_cards", "Draw Cards") + action_button("draw_glory", "Draw from Bag of Glory") action_button("gain_hp", "Gain Hero Points") action_button("lose_hp", "Lose Hero Points") - action_button("draw_card", "Draw a card") - action_button("draw_cards", "Draw cards") - action_button("play_to_tableau", "Play card to Tableau") - action_button("play_for_event", "Play card for Event") + action_button("play_to_tableau", "Action Points") + action_button("play_for_event", "Event") + action_button("remove_blank_marker", "Remove Blank marker") action_button("use_ap", "Use Action Points") + action_button("use_momentum", "Play second card (Momentum)") action_button("use_morale_bonus", "Use Morale Bonus") - action_button("add_glory", "Add to Bag of Glory") - action_button("draw_glory", "Draw from Bag of Glory") - action_button("next", "Next") - action_button("remove_blank_marker", "Remove Blank marker") - action_button("trash_card", "Trash card") - action_button("confirm", "Confirm") + + action_button("spend_hp", "Spend Hero Points") + action_button("yes", "Yes") action_button("no", "No") action_button("skip", "Skip") - action_button("spend_hp", "Spend Hero Points") - action_button("use_momentum", "Play second card (Momentum)") + action_button("confirm", "Confirm") action_button("done", "Done") action_button("end_turn", "End Turn") action_button("undo", "Undo") |