From 54ed5b6dba4a16ebeeb01cea0963f49d2cff6c04 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 28 Apr 2023 15:45:29 +0200 Subject: Check Ecuador stacking for events. --- events.txt | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'events.txt') diff --git a/events.txt b/events.txt index 3fbb72b..a35eecd 100644 --- a/events.txt +++ b/events.txt @@ -154,9 +154,8 @@ SHADED 13 EVENT 14 current GOVT # 5.1.3 - place base if possible! - # 5.1.3 - TODO Ecuador max 2 prompt "Place 1 Base and 3 Troops into any Department." - if_space is_dept(s) && can_place_piece(s, GOVT, BASE) + if_space is_dept(s) && can_place_base_and_n(s, GOVT, 3, TROOPS) or_space is_dept(s) && can_stack_any(s, GOVT) auto_place GOVT BASE auto_place GOVT TROOPS @@ -328,7 +327,6 @@ EVENT 25 SHADED 25 prompt "Place 3 FARC pieces into Antioquia or an adjacent Department." - # TODO Ecuador max 2 space 1 (s === ANTIOQUIA || (is_dept(s) && is_adjacent(ANTIOQUIA, s))) && can_stack_any(s, FARC) place FARC BASE_GUERRILLA place FARC BASE_GUERRILLA @@ -471,9 +469,8 @@ EVENT 34 SHADED 34 current FARC_AUC_CARTELS # 5.1.3 - place base if possible - # 5.1.3 - TODO Ecuador max 2 prompt "Place 2 Guerrillas and 1 Base into a 0 Population Department." - if_space is_zero_pop_dept(s) && can_place_piece(s, game.current, BASE) + if_space is_zero_pop_dept(s) && can_place_base_and_n(s, game.current, 2, GUERRILLA) or_space is_zero_pop_dept(s) && can_stack_any(s, game.current) auto_place (game.current) BASE auto_place (game.current) GUERRILLA @@ -631,7 +628,6 @@ SHADED 42 EVENT 43 # 5.1.3 - farc bases if possible - # 5.1.3 - TODO Ecuador max 2 prompt "Place 2 Terror and remove all FARC Bases from a Department with Troops." if_space is_dept(s) && has_troops(s) && has_piece(s, FARC, BASE) or_space is_dept(s) && has_troops(s) @@ -763,9 +759,8 @@ EVENT 49 SHADED 49 # 5.1.3 - place base if possible - # 5.1.3 - TODO Ecuador max 2 prompt "Place an AUC Guerrilla and Base in any Department." - if_space is_dept(s) && can_place_piece(s, AUC, BASE) + if_space is_dept(s) && can_place_base_and_n(s, AUC, 1, GUERRILLA) or_space is_dept(s) && can_stack_any(s, AUC) auto_place AUC BASE auto_place AUC GUERRILLA -- cgit v1.2.3