diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-28 15:45:29 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 54ed5b6dba4a16ebeeb01cea0963f49d2cff6c04 (patch) | |
tree | a99e408db1333348d7d6062fccc0a4662263b64b /events.txt | |
parent | f13ba29fe752ce8698858cbd40faa8337cd76c0f (diff) | |
download | andean-abyss-54ed5b6dba4a16ebeeb01cea0963f49d2cff6c04.tar.gz |
Check Ecuador stacking for events.
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -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 |