diff options
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 44 |
1 files changed, 40 insertions, 4 deletions
@@ -167,10 +167,30 @@ SHADED 13 log "NOT IMPLEMENTED" EVENT 14 - log "NOT IMPLEMENTED" + current VE + gain_cavalry 2 + asm game.vm.count = 0 + repeat 2 + prompt `Place up to ${2-game.vm.count} Rajas adjacent to Vijayanagara.` + space_opt 1 is_adjacent_to_city(C_VIJAYANAGARA, s) && can_place_piece(s, VE, ELITE) + auto_place VE ELITE + asm (game.vm.count += 1) + endspace + endrepeat + prompt "Remove a Tributary marker in a Province adjacent to Vijayanagara." + space_opt 1 is_adjacent_to_city(C_VIJAYANAGARA, s) && is_tributary(s) + remove_tributary + endspace SHADED 14 - log "NOT IMPLEMENTED" + current DS + gain_cavalry 3 + prompt "Place up to 4 Troops and 1 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 + demand_obedience + endspace EVENT 15 prompt "Replace Governors with Rebelling Amirs in Provinces adjacent to Devagiri." @@ -229,10 +249,26 @@ SHADED 16 endif EVENT 17 - log "NOT IMPLEMENTED" + current BK + add_influence BK + prompt "Remove up to 5 Delhi Sultanate Units from Provinces with you presence." + piece_opt 5 is_ds_unit(p) && has_piece_faction(piece_space(p), BK) + remove + endpiece SHADED 17 - log "NOT IMPLEMENTED" + prompt "Remove a Fort and up to 2 Amirs from one Province." + space_opt 1 has_piece_faction(s, BK) + prompt "Remove 1 Fort from selected Province." + piece_opt 1 is_piece_in_event_space(p) && is_fort(p) + remove + endpiece + prompt "Remove up to 2 Amirs from selected Province." + piece_opt 2 is_piece_in_event_space(p) && is_amir(p) + remove + endpiece + endspace + resources BK -2 EVENT 18 if n_province_with_both_rebels() > 0 |