diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 28 |
1 files changed, 25 insertions, 3 deletions
@@ -220,10 +220,32 @@ SHADED 11 endpiece EVENT 12 - log "NOT IMPLEMENTED" + current REBEL_FACTIONS + gain_cavalry 2 + prompt "Remove 4 Delhi Sultantes pieces from Provinces adjacent to Warangal." + piece 4 (is_adjacent_to_city(C_WARANGAL, piece_space(p)) && piece_faction(p) === DS) + remove + endpiece SHADED 12 - log "NOT IMPLEMENTED" + current DS + gain_cavalry 2 + prompt "Place a Qasbah in a Province adjacent to Warangal." + space_opt 1 is_adjacent_to_city(C_WARANGAL, s) && can_place_piece(s, DS, DISC) + auto_place DS DISC + endspace + asm game.vm.count = 0 + repeat 4 + prompt `Place up to ${4-game.vm.count} Troops adjacent to Warangal.` + space_opt 1 is_adjacent_to_city(C_WARANGAL, s) && can_place_piece(s, DS, TROOPS) + auto_place DS TROOPS + asm (game.vm.count += 1) + endspace + endrepeat + prompt "Make a free Attack in one Province adjacent to Warangal." + space 1 (is_adjacent_to_city(C_WARANGAL, s) && can_attack_in_space(s)) + free_attack + endspace EVENT 13 log "NOT IMPLEMENTED" @@ -250,7 +272,7 @@ EVENT 14 SHADED 14 current DS gain_cavalry 3 - prompt "Place up to 4 Troops and 1 Governor in a province adjacent to Vijayanagara and Demand Obedience there." + prompt "Place up to 4 Troops and a Governor in a province adjacent to Vijayanagara and Demand Obedience there." space_opt 1 is_adjacent_to_city(C_VIJAYANAGARA, s) place_opt 4 DS TROOPS place_opt 1 DS ELITE |