diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -154,6 +154,7 @@ 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." space 1 is_dept(s) && can_place_piece(s, GOVT, BASE) auto_place GOVT BASE @@ -356,7 +357,8 @@ EVENT 25 SHADED 25 prompt "Place 3 FARC pieces into Antioquia or an adjacent Department." - space 1 (s === ANTIOQUIA || (is_dept(s) && is_adjacent(ANTIOQUIA, s))) && can_place_any(s, FARC) + # 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 place FARC BASE_GUERRILLA @@ -433,7 +435,7 @@ SHADED 29 EVENT 30 # 5.1.3 - remove both farc zone and farc base if possible prompt "Remove 1 FARC Zone and 1 FARC Base there." - space 1 is_farc_zone(s) && has_farc_base(s) + space 1 is_farc_zone(s) && has_piece(s, FARC, BASE) remove_farc_zone prompt "Remove 1 FARC Base." piece 1 is_piece_in_event_space(p) && is_farc_base(p) @@ -506,6 +508,7 @@ 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." space 1 is_zero_pop_dept(s) && can_place_piece(s, game.current, BASE) auto_place (game.current) BASE @@ -658,8 +661,9 @@ 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." - space 1 is_dept(s) && has_troops(s) && has_farc_base(s) + space 1 is_dept(s) && has_troops(s) && has_piece(s, FARC, BASE) terror terror prompt "Remove all FARC Bases." @@ -785,6 +789,7 @@ 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." space 1 is_dept(s) && can_place_piece(s, AUC, BASE) auto_place AUC BASE |