diff options
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 |