summaryrefslogtreecommitdiff
path: root/events.txt
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-02-15 11:55:27 +0100
committerTor Andersson <tor@ccxvii.net>2025-02-15 12:09:20 +0100
commitb38f9a790f41a20da5959563a23527135e4b28ac (patch)
tree73c4ae54205233764c1e653152899119671f8388 /events.txt
parent84ab6403892145231e8c9a173822de79e378e3f4 (diff)
downloadandean-abyss-relax-513.tar.gz
Change event 65 - Poppies.relax-513
DO (place shipment and base) or (remove shipment and base) NOT (place or remove shipment) and (place or remove base)
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