summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--events.txt3
-rw-r--r--rules.js6
2 files changed, 3 insertions, 6 deletions
diff --git a/events.txt b/events.txt
index 1463902..cedcd6c 100644
--- a/events.txt
+++ b/events.txt
@@ -236,7 +236,6 @@ add_limited_infl 4 2
CARD 33 - Sajudis*
# +1 VP. Reduce USSR stability by 1. Place sufficient Democratic support in any Minorities space for control. Allows play of The Baltic Way.
-permanently_remove
sajudis
if !is_auto_resolve(C_SAJUDIS)
sajudis_check
@@ -632,7 +631,6 @@ add_infl_free
CARD 81 - The Baltic Way*
# +2 VP. Reduce USSR stability by 1. Place sufficient Democratic SPs in any Minorities space for control. .Requires play of Sajudis. Allows play of Breakaway Baltic Republics.
-permanently_remove
the_baltic_way_prep
if !is_auto_resolve(C_THE_BALTIC_WAY)
the_baltic_way
@@ -661,7 +659,6 @@ add_limited_infl 4 2
CARD 84 - Breakaway Baltic Republics*
# +3 VPs. Reduce USSR stability by 2. Place sufficient Democratic SPs in any Minorities space for control. Cancels the effect of Gorbachev Charms the West for the rest of the game. Make 1 Support Check using the Ops value of this card. Requires play of The Baltic Way as an event.
-permanently_remove
breakaway_baltic_republics
prompt 'any Minorities space'
take_control_prep 1
diff --git a/rules.js b/rules.js
index 91a5f84..f44c028 100644
--- a/rules.js
+++ b/rules.js
@@ -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 ],