diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-03-20 01:15:58 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | b89eba8253caccd027c861b5cfa68b29dceb6639 (patch) | |
tree | 42c778fb230d4b3095c7f3ded36d9bc9eb90bd11 /events.txt | |
parent | ad863219484ad675d138e0863880bf798060b493 (diff) | |
download | andean-abyss-b89eba8253caccd027c861b5cfa68b29dceb6639.tar.gz |
Fix optional instructions. Poppies.
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 45 |
1 files changed, 38 insertions, 7 deletions
@@ -330,7 +330,7 @@ SHADED 28 space 1 is_dept(s) && is_next_to_venezuela(s) && can_stack_base(s) place FARC BASE endspace - each space is_loc(s) && is_adjacent(CUCUTA, s) && is_empty(s) + space 0 is_loc(s) && is_adjacent(CUCUTA, s) && is_empty(s) sabotage endspace @@ -861,6 +861,12 @@ SHADED 64 resources CARTELS 1 endpiece +EVENT 65 + space 1 is_mountain(s) + place_or_remove_shipment + place_or_remove_insurgent_base + endspace + EVENT 66 piece 3 is_cartels_base(p) && is_forest(s) remove @@ -884,6 +890,36 @@ SHADED 68 resources CARTELS 2 endpiece +EVENT 69 + prompt Select source space. + if game.current === GOVT + space 1 has_cube(s) + mark_space + endspace + endif + if game.current !== GOVT + space 1 has_piece(s, game.current, GUERRILLA) + mark_space + endspace + endif + prompt Select destination space. + space 1 (s !== game.vm.m[0]) && is_within_adjacent_depts(s, game.vm.m[0], 3) + if game.current === GOVT + prompt Move cubes to destination. + piece_opt 0 (game.pieces[p] === game.vm.m[0]) && is_cube(p) + move + endpiece + free_train_sweep_assault + endif + if game.current !== GOVT + prompt Move Guerrillas to destination. + piece_opt 0 (game.pieces[p] === game.vm.m[0]) && is_piece(p, game.current, GUERRILLA) + move + endpiece + free_rally_attack_terror + endif + endspace + EVENT 70 prompt Select each Forest without Guerrillas. space 0 is_forest(s) && !has_any_guerrilla(s) @@ -916,7 +952,7 @@ SHADED 71 EVENT 72 space 2 has_cartels_guerrilla(s) - pieces 0 is_piece_in_event_space(p) && is_cartels_guerrilla(p) + piece 0 is_piece_in_event_space(p) && is_cartels_guerrilla(p) remove place [FARC,AUC] GUERRILLA endpiece @@ -946,11 +982,6 @@ EVENT 68 OR remove 2 shipments from coastal spaces -EVENT 65 - in one mountain dept: - place or remove 1 shipment - place or remove 1 insurgent base - EVENT 48 space 1 is_adjacent_to_3econ_pipeline(s) piece 1 is_piece_in_event_space(p) && is_farc_base(p) |