diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -5284,7 +5284,11 @@ function vm_systematization() { function vm_tank_column() {
if (game.active === DEM) {
game.dem_tst_position++
- } else {game.com_tst_position++}
+ game.dem_tst_attempted = 0
+ } else {
+ game.com_tst_position++
+ game.com_tst_attempted = 0
+ }
vm_next()
}
@@ -6748,7 +6752,8 @@ states.vm_modrow = { let roll = Math.floor(Math.random() * 6) + 1
let dem_spaces = spaces.filter(space => space && space.country === 'East_Germany' && check_dem_control(space.space_id)).length
if (roll > dem_spaces) {
- log(`Rolled a ${roll}: success`)
+ log(`Rolled a ${roll}`)
+ log(`Success. More than the ${dem_spaces} Democratically controlled spaces`)
vm_next()
} else {
log(`Rolled a ${roll}`)
@@ -7433,8 +7438,8 @@ states.vm_workers_revolt = { }
},
infl(space) {
- game.temp = find_space_index(space)
- log(`Chose %${game.temp}`)
+ game.selected_space = find_space_index(space)
+ log(`Chose %${game.selected_space}`)
game.state = 'vm_workers_revolt_finish'
}
}
@@ -8362,7 +8367,7 @@ CODE[88] = [ // Adamec* ]
CODE[89] = [ // Domino Theory*
- [ vm_prompt, 'Choose a Power Struggle card to play from the discard pile.' ],
+ [ vm_prompt, 'Domino Theory: choose a Power Struggle card to play from the discard pile.' ],
[ vm_domino_theory ],
[ vm_permanently_remove ],
[ vm_return ],
|