diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-10 22:53:46 +0000 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-12-10 22:53:46 +0000 |
commit | 182f232a07c7c75ab4844568d3d0a6466af080d1 (patch) | |
tree | 178957d1686cf7698c83d82d334a4d022a74d704 | |
parent | cba9206a15ffd1cc6e925da7a8bb8064f25b7802 (diff) | |
download | 1989-dawn-of-freedom-182f232a07c7c75ab4844568d3d0a6466af080d1.tar.gz |
Update Prudence and Perestroika logging
-rw-r--r-- | rules.js | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -2349,7 +2349,7 @@ function do_sc(space) { clear_undo() let tear_gas_start = game.persistent_events.includes(C_TEAR_GAS) let the_wall_start = game.persistent_events.includes(C_THE_WALL) - log(`%${space}:`) + log(`Support Check, %${space}:`) let starting_control = check_control(space) let roll = roll_d6() @@ -2358,7 +2358,7 @@ function do_sc(space) { logi(`No adjacency for Democrats due to C${C_THE_WALL}`) // Continue with Support Check Logic - logi(`D${roll} roll`) + logii(`D${roll} from roll`) // Check for the Crowd Turns Against Ceausescu if (game.is_pwr_struggle) { @@ -5187,7 +5187,7 @@ function vm_replace_all_infl(space_id) { function vm_1_support_check() { game.vm_available_ops = 1 - log('Support Check:') + //log('Support Check:') if (game.valid_spaces.length === 0) logi('None') game.state = 'vm_1_support_check_prep' @@ -5195,20 +5195,20 @@ function vm_1_support_check() { function vm_support_check() { game.vm_available_ops = vm_operand(1) - if (game.vm_available_ops > 1) + /*if (game.vm_available_ops > 1) log('Support Checks:') else - log('Support Check:') + log('Support Check:')*/ game.state = 'vm_support_check_prep' } function vm_support_check_modified() { game.vm_available_ops = vm_operand(1) game.support_check_modifier = vm_operand(2) - if (game.vm_available_ops > 1) +/* if (game.vm_available_ops > 1) log('Support Checks:') else - log('Support Check:') + log('Support Check:')*/ game.state = 'vm_support_check_prep' } @@ -5779,7 +5779,7 @@ function vm_peasant_parties_revolt() { function vm_perestroika() { add_to_persistent_events(C_PERESTROIKA) - log(`+1 Ops value for cards played by the Communist for the rest of this turn.`) + log(`+1 to Communist Ops for the rest of the turn.`) vm_next() } @@ -5824,10 +5824,10 @@ function vm_prudence() { } if (game.active === DEM) { game.prudence.COM-- - log(`${game.prudence.COM} to Communist Ops this turn.`) + log(`${game.prudence.COM} to Communist Ops for the rest of the turn.`) } else { game.prudence.DEM-- - log(`${game.prudence.DEM} to Democrat Ops this turn.`) + log(`${game.prudence.DEM} to Democrat Ops for the rest of the turn.`) } vm_next() } @@ -7487,7 +7487,7 @@ states.vm_kremlin_coup_sc_prep = { }, space(_space) { push_undo() - log('Support check:') + //log('Support check:') game.state = 'vm_kremlin_coup_sc' }, } |