diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-03 09:20:13 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-03 09:20:13 -0400 |
commit | d49dfb9c949424dc847ee9e97c0b9026779fb6ff (patch) | |
tree | a514b7de3901643f7e09bf913e0cf8b6ccdd6a9b /events.txt | |
parent | ed6a4ff81bc87062a54c99f0b184709f93bdc961 (diff) | |
download | vijayanagara-d49dfb9c949424dc847ee9e97c0b9026779fb6ff.tar.gz |
Event 20 fuzzer
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -454,16 +454,19 @@ EVENT 20 current REBEL_FACTIONS add_influence (game.current) prompt "In Orissa or an adjacent Province, you may Migrate, Rally and then Build." - space_opt 1 (is_adjacent_to_city(C_WARANGAL, s) || s === S_BENGAL && can_migrate_in_space(s)) - free_migrate + space 1 (is_adjacent_to_city(C_WARANGAL, s) || s === S_BENGAL) mark_space endspace + prompt "Migrate in selected Province." + space_opt 1 (game.vm.m[0] === s && can_migrate_in_space(s)) + free_migrate + endspace prompt "Rally in selected Province." - space 1 (game.vm.m[0] === s && can_rally_in_space(s)) + space_opt 1 (game.vm.m[0] === s && can_rally_in_space(s)) free_rally endspace prompt "Build in selected Province." - space 1 (game.vm.m[0] === s && can_build_in_space(s)) + space_opt 1 (game.vm.m[0] === s && can_build_in_space(s)) free_build endspace |