diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-03 08:58:16 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-11-03 08:58:16 +0000 |
commit | 0f97242b7812957b63fe11b33246260ad7eb8e3c (patch) | |
tree | b7b194db48c4ca9e2280c8ac0036ef3203cd8f4b /rules.js | |
parent | efe638d90fbfc954dddadb2ff34598f0f3e08c73 (diff) | |
download | 1989-dawn-of-freedom-0f97242b7812957b63fe11b33246260ad7eb8e3c.tar.gz |
Verbose logs
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -4897,6 +4897,7 @@ function vm_massacre_in_timisoara() { function vm_modrow() { game.playable_cards = game.playable_cards.filter(n => n !== C_HONECKER) add_to_persistent_events(C_MODROW) + logi(`Prevents play of C${C_HONECKER} for the event`) game.state = 'vm_modrow' } @@ -4909,6 +4910,7 @@ function vm_nagy_reburied(){ function vm_national_salvation_front() { add_to_persistent_events(C_NATIONAL_SALVATION_FRONT) + logi(`In the next Power Struggle in the Balkans, the Communist draws 2 random Power Struggle cards from the Democrat hand`) vm_next() } @@ -4974,7 +4976,7 @@ function vm_power_struggle() { function vm_presidential_visit() { add_to_persistent_events(C_PRESIDENTIAL_VISIT) - log_msg_gap(`C${C_PRESIDENTIAL_VISIT} in effect`) + logi(`Communist hand size is reduced to 7 next turn`) vm_next() } @@ -5012,6 +5014,7 @@ function vm_reformer_rehabilitated () { function vm_roundtable_talks() { add_to_persistent_events(C_ROUNDTABLE_TALKS) + logi(`In the next Power Struggle the Democrat draws 2 random Power Struggle cards from the Communist hand`) vm_next() } @@ -5042,6 +5045,7 @@ function vm_samizdat() { function vm_securitate() { add_to_persistent_events(C_SECURITATE) + logi(`The Democrat must reveal his Power Struggle cards at the start of Power Struggles in Romania`) vm_next() } @@ -5056,6 +5060,7 @@ function vm_social_democratic_platform_adopted() { function vm_solidarity_legalised() { game.playable_cards.push(C_WALESA) add_to_persistent_events(C_SOLIDARITY_LEGALIZED) + logi(`Allows play of C${C_WALESA}`) vm_next() } |