From b38f9a790f41a20da5959563a23527135e4b28ac Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 15 Feb 2025 11:55:27 +0100 Subject: Change event 65 - Poppies. DO (place shipment and base) or (remove shipment and base) NOT (place or remove shipment) and (place or remove base) --- events.txt | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) (limited to 'events.txt') 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 -- cgit v1.2.3