diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-01-22 19:45:27 -0500 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-01-22 19:45:27 -0500 |
commit | e85c797f7de1d3aae736fe574685f369115c4a38 (patch) | |
tree | 71eb1a4670b448a25024f1436a9063b5af7ab44b /events.txt | |
parent | a18976056bcceddf253263238ff6cef7ca6f9530 (diff) | |
download | vijayanagara-e85c797f7de1d3aae736fe574685f369115c4a38.tar.gz |
Rework vm_place - Event 9
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 26 |
1 files changed, 20 insertions, 6 deletions
@@ -85,10 +85,26 @@ SHADED 8 log "NOT IMPLEMENTED" EVENT 9 - log "NOT IMPLEMENTED" + current VE + prompt "Compel in a Province adjacent to Warangal that you do not control and then Build there." + add_influence VE + space 1 (is_adjacent_to_city(C_WARANGAL, s) && !is_faction_control(s, game.current)) + free_compel + mark_space + endspace + prompt `Build in the same Province.` + space_opt 1 (s === game.vm.m[0] && can_place_piece(s, game.current, DISC)) + free_build + endspace SHADED 9 - log "NOT IMPLEMENTED" + current DS + resources (game.current) 3 + prompt "Add up to 4 Troops and 1 Governor in one Province adjacent to Warangal." + space 1 is_adjacent_to_city(C_WARANGAL, s) + place_opt 4 DS TROOPS + place_opt 1 DS ELITE + endspace EVENT 10 prompt "Move up to 4 Delhi Sultanate Units into adjacent Provinces." @@ -110,15 +126,13 @@ SHADED 10 endpiece prompt "Add up to 2 Troops in each Space with a Qasbah." space_opt all has_qasbah(s) - place_opt DS TROOPS - place_opt DS TROOPS + place_opt 2 DS TROOPS endspace EVENT 11 prompt "Place up to two Mongol Invaders in each of Mtn Passes and Punjab." space_opt 2 (s === S_PUNJAB || s === S_MOUNTAIN_PASSES) - place MI TROOPS - place_opt MI TROOPS + place_opt 2 MI TROOPS endspace SHADED 11 |