diff options
-rw-r--r-- | events.txt | 5 | ||||
-rw-r--r-- | rules.js | 7 |
2 files changed, 7 insertions, 5 deletions
@@ -393,8 +393,9 @@ SHADED 16 EVENT 17 current BK add_influence BK - prompt "Remove up to 5 Delhi Sultanate Units from Provinces where you have a piece." - piece_undo_opt 5 is_ds_unit(p) && has_piece_faction(piece_space(p), BK) + log_br + prompt "Remove up to 5 Delhi Sultanate pieces from Provinces where you have a piece." + piece_undo_opt 5 (is_ds_unit(p) || is_qasbah(p)) && has_piece_faction(piece_space(p), BK) summary_remove endpiece pop_summary @@ -6178,7 +6178,7 @@ CODE[8 * 2 + 0] = [ // SHADED 8 CODE[8 * 2 + 1] = [ [ vm_current, DS ], - [ vm_prompt, ()=>`In each Province adjacent clean_cmto Devagiri and/or Gulbarga, Govern for free ignoring location requirements and place a Troop.` ], + [ vm_prompt, ()=>`In each Province adjacent to Devagiri and/or Gulbarga, Govern for free ignoring location requirements and place a Troop.` ], [ vm_asm, ()=>game.vm.ignore_loc_req = true ], [ vm_space, true, 0, 999, (s)=>(is_adjacent_to_city(C_DEVAGIRI, s) || is_adjacent_to_city(C_GULBARGA, s)) && can_govern_in_space(s) ], [ vm_free_govern_in_space ], @@ -6451,8 +6451,9 @@ CODE[16 * 2 + 1] = [ CODE[17 * 2 + 0] = [ [ vm_current, BK ], [ vm_add_influence, BK ], - [ vm_prompt, "Remove up to 5 Delhi Sultanate Units from Provinces where you have a piece." ], - [ vm_piece, true, 0, 5, (p,s)=>is_ds_unit(p) && has_piece_faction(piece_space(p), BK) ], + [ vm_log_br ], + [ vm_prompt, "Remove up to 5 Delhi Sultanate pieces from Provinces where you have a piece." ], + [ vm_piece, true, 0, 5, (p,s)=>(is_ds_unit(p) || is_qasbah(p)) && has_piece_faction(piece_space(p), BK) ], [ vm_summary_remove ], [ vm_endpiece ], [ vm_pop_summary ], |