diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-03-20 01:40:37 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | 4a4f245fdcfa1e738f93205163845aeb0f5578d9 (patch) | |
tree | 162b25b9efb24f70d758e528c392425b2f0bf2e8 /events.txt | |
parent | b89eba8253caccd027c861b5cfa68b29dceb6639 (diff) | |
download | andean-abyss-4a4f245fdcfa1e738f93205163845aeb0f5578d9.tar.gz |
Riverines.
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 27 |
1 files changed, 12 insertions, 15 deletions
@@ -204,12 +204,12 @@ SHADED 18 EVENT 19 if game.current === GOVT space 0 has_cube(s) && has_enemy_piece(s) - free_sweep_or_assault + free_sweep_assault endspace endif if game.current !== GOVT space 0 has_piece(s, game.current, GUERRILLA) - free_attack_or_terror + free_attack_terror endspace endif @@ -438,7 +438,7 @@ EVENT 36 EVENT 37 current GOVT space 0 has_cube(s) && has_farc_piece(s) - free_sweep_or_assault_farc + free_sweep_assault_farc endspace SHADED 37 @@ -903,22 +903,25 @@ EVENT 69 endspace endif prompt Select destination space. - space 1 (s !== game.vm.m[0]) && is_within_adjacent_depts(s, game.vm.m[0], 3) - if game.current === GOVT + if game.current === GOVT + space 1 (s !== game.vm.m[0]) && !is_farc_zone(s) && is_within_adjacent_depts(s, game.vm.m[0], 3) prompt Move cubes to destination. piece_opt 0 (game.pieces[p] === game.vm.m[0]) && is_cube(p) move endpiece + # TODO: free sweep move or only flip? free_train_sweep_assault - endif - if game.current !== GOVT + endspace + endif + if game.current !== GOVT + space 1 (s !== game.vm.m[0]) && is_within_adjacent_depts(s, game.vm.m[0], 3) prompt Move Guerrillas to destination. piece_opt 0 (game.pieces[p] === game.vm.m[0]) && is_piece(p, game.current, GUERRILLA) move endpiece free_rally_attack_terror - endif - endspace + endspace + endif EVENT 70 prompt Select each Forest without Guerrillas. @@ -971,12 +974,6 @@ SHADED 72 EOF -EVENT 69 - select source space - select destination space through chain of up to 3 adjacent depts - move any cubes/guerrillas from source to destination - any free op (except patrol or march) in destination - EVENT 68 remove 2 cartels pieces from coastal spaces OR |