summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/rules.js b/rules.js
index 8fbcb1c..7f62a07 100644
--- a/rules.js
+++ b/rules.js
@@ -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'
},
}