diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5129,6 +5129,7 @@ function vm_betrayal() { } function vm_breakaway_baltic_republics() { + add_to_persistent_events(C_BREAKAWAY_BALTIC_REPUBLICS) log('+5 VP') game.vp += 5 game.stability++ @@ -5699,6 +5700,7 @@ function vm_roundtable_talks() { } function vm_sajudis_check() { + add_to_persistent_events(C_SAJUDIS) if (!check_dem_control(S_RAZGRAD)) game.valid_spaces.push(S_RAZGRAD) if (!check_dem_control(S_HARGHITA_COVASNA) && game.systematization !== S_HARGHITA_COVASNA) @@ -5820,6 +5822,7 @@ function vm_tear_gas() { } function vm_the_baltic_way_prep() { + add_to_persistent_events(C_THE_BALTIC_WAY) game.playable_cards.push(C_BREAKAWAY_BALTIC_REPUBLICS) game.stability++ log('+3 VP') @@ -8686,7 +8689,6 @@ CODE[32] = [ // Peasant Parties* ] CODE[33] = [ // Sajudis* - [ vm_permanently_remove ], [ vm_sajudis ], [ vm_if, ()=>!is_auto_resolve(C_SAJUDIS) ], [ vm_sajudis_check ], @@ -9081,7 +9083,6 @@ CODE[80] = [ // Nepotism* ] CODE[81] = [ // The Baltic Way* - [ vm_permanently_remove ], [ vm_the_baltic_way_prep ], [ vm_if, ()=>!is_auto_resolve(C_THE_BALTIC_WAY) ], [ vm_the_baltic_way ], @@ -9110,7 +9111,6 @@ CODE[83] = [ // Modrow* ] CODE[84] = [ // Breakaway Baltic Republics* - [ vm_permanently_remove ], [ vm_breakaway_baltic_republics ], [ vm_prompt, 'any Minorities space' ], [ vm_take_control_prep, 1 ], |