summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriainp5 <iain.pearce.ip@gmail.com>2024-09-20 16:50:37 +0100
committeriainp5 <iain.pearce.ip@gmail.com>2024-09-20 16:50:37 +0100
commit20be9a3c339b79774771d0a0317c1bbf58adc617 (patch)
treecf9568650d5cae1e91f70851d2ff65e90df721fe
parent5a598077761f12126301989e98fd158f818aa0d5 (diff)
download1989-dawn-of-freedom-20be9a3c339b79774771d0a0317c1bbf58adc617.tar.gz
Updates to New Year's Eve Party
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index 2bf4d38..4f5b355 100644
--- a/rules.js
+++ b/rules.js
@@ -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
}