summaryrefslogtreecommitdiff
path: root/events.txt
diff options
context:
space:
mode:
Diffstat (limited to 'events.txt')
-rw-r--r--events.txt24
1 files changed, 19 insertions, 5 deletions
diff --git a/events.txt b/events.txt
index f54cd6b..1800939 100644
--- a/events.txt
+++ b/events.txt
@@ -1070,12 +1070,26 @@ SHADED 64
resources CARTELS (game.vm.total)
EVENT 65
- # 5.1.3 - do both shipment and base if possible
prompt "Place or remove 1 Shipment and Insurgent Base in any Mountain Department."
- if_space is_mountain(s) && ( can_place_or_remove_shipment(s) && can_place_or_remove_insurgent_base(s) )
- or_space is_mountain(s) && ( can_place_or_remove_shipment(s) || can_place_or_remove_insurgent_base(s) )
- place_or_remove_shipment
- place_or_remove_insurgent_base
+ space 1 is_mountain(s) && ( can_place_or_remove_shipment(s) || can_place_or_remove_insurgent_base(s) )
+ place_or_remove
+ if game.vm.choice === "place"
+ prompt "Place Shipment."
+ piece_undo 1 is_piece_in_event_space(p) && is_any_guerrilla(p)
+ place_shipment
+ endpiece
+ prompt "Place Insurgent Base."
+ place FARC_AUC_CARTELS BASE
+ else
+ prompt "Remove Shipment."
+ shipment 1 (s === game.vm.s)
+ remove_shipment
+ endshipment
+ prompt "Remove Insurgent Base."
+ piece all is_piece_in_event_space(p) && is_insurgent_base(p)
+ remove
+ endpiece
+ endif
endspace
EVENT 66