From 0f97242b7812957b63fe11b33246260ad7eb8e3c Mon Sep 17 00:00:00 2001 From: iainp5 Date: Sun, 3 Nov 2024 08:58:16 +0000 Subject: Verbose logs --- rules.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index af568aa..38a003d 100644 --- a/rules.js +++ b/rules.js @@ -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() } -- cgit v1.2.3