diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -768,10 +768,10 @@ states.resolve_opponent_event = { ) { gen_action('tst_7') } - view.prompt += ` \u2014 you must resolve the opponent event.` + view.prompt += ` \u2014 you must resolve opponent's Event.` gen_action('opp_event') } else { - view.prompt += '. Event resolved. End the action round.' + prompt_event("Done.") gen_action('end_round') } }, @@ -969,17 +969,17 @@ states.support_check_prep = { prompt() { if (game.available_ops === 0) { if (game.is_pwr_struggle) { - view.prompt = 'The Crowd Turns Against Ceausescu. Support Checks: done.' + view.prompt = 'The Crowd Turns Against Ceausescu: Support Checks done.' gen_action('done') } else if (!game.vm_event_to_do) { - view.prompt = 'Support Checks: done.' + view.prompt = 'Support Checks done.' gen_action('end_round') } else { - view.prompt = 'Support Checks: done.' + view.prompt = 'Support Checks done.' gen_action('done') } } else if (game.available_ops > 0) { - view.prompt = `Select a space. ${pluralize(game.available_ops, 'Support Check')} remaining.` + view.prompt = `Support Checks: Choose ${pluralize(game.available_ops, 'space')}.` for (let space_id of game.valid_spaces) { gen_action_space(space_id) } @@ -1028,7 +1028,7 @@ states.support_check_prep = { states.do_support_check = { inactive: 'do Support Checks', prompt() { - view.prompt = `Support Check: ${spaces[game.selected_space].name_unique}. Roll a die.` + view.prompt = `Support Check in ${spaces[game.selected_space].name_unique}: Roll a die.` gen_action('roll') }, roll() { @@ -1050,7 +1050,7 @@ states.do_support_check = { states.austria_hungary_border_reopened_check = { inactive: 'decide Austria-Hungary Border Reopened', prompt() { - view.prompt = 'Austria-Hungary Border Reopened: will both Support Checks be in East Germany?' + view.prompt = 'Austria-Hungary Border Reopened: Will both Support Checks be in East Germany?' gen_action('yes') gen_action('no') }, @@ -1066,7 +1066,7 @@ states.austria_hungary_border_reopened_check = { states.end_round = { inactive: 'finish playing a card', prompt() { - view.prompt = 'End the Action Round.' + prompt_event('End the Action Round.') gen_action('end_round') }, end_round() { |