diff options
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1617,7 +1617,7 @@ states.end_turn_4_5_4 = { goto_game_over(DEM, `${DEM} won by held scoring card!`)
}
else if (game.persistent_events['new_years_eve_party']) {
- log('No held scoring cards')
+ log_h2(`New Year's Eve Party`)
game.state = 'new_years_eve_party'
}
else if(game.turn === 10) {
@@ -1797,7 +1797,7 @@ states.new_years_eve_party = { },
prompt() {
if (!game.is_pwr_struggle) {
- view.prompt = 'You may choose a country to have a final power struggle.'
+ view.prompt = `New Year's Eve Party: you may choose a country to have a final power struggle.`
if (!game.revolutions['East_Germany']) {gen_action('east_germany')}
if (!game.revolutions['Poland']) {gen_action('poland')}
if (!game.revolutions['Czechoslovakia']) {gen_action('czechoslovakia')}
@@ -3334,7 +3334,7 @@ function check_control_change(space_id) { // Check if the Tyrant is Gone has been fulfilled
if (game.persistent_events['the_tyrant_is_gone'] > 0 && game.pieces[game.persistent_events['the_tyrant_is_gone']].demCtrl === 1) {
- log('+2 VP from The Tyrant is Gone')
+ log('+2 VP from C97')
game.vp += 2
game.persistent_events['the_tyrant_is_gone'] = 0
}
|