diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-03-22 16:41:04 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | b1f22d8ddc8428ad4bbe602b5d50abf38d9ed5d4 (patch) | |
tree | 42b148d3f9142a48634d4ff45722c9922401763d /events.txt | |
parent | 1fb7bb03b36d80cc7005de4704ec7716dac70630 (diff) | |
download | andean-abyss-b1f22d8ddc8428ad4bbe602b5d50abf38d9ed5d4.tar.gz |
Misc.
"Special" Activity. Italic flavor text. Reset s/p after piece/space loop.
Fix Process behavior.
Specific End Op/SA buttons.
Add and use piece_space helper.
Only auto-transfer shipments if there are no choices.
New sequence of play.
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -220,7 +220,7 @@ EVENT 19 EVENT 20 current GOVT piece_undo_opt 6 is_farc_guerrilla(p) - space_no_undo 1 is_adjacent(s, game.pieces[game.vm.p]) + space_no_undo 1 is_adjacent(s, piece_space(game.vm.p)) move endspace endpiece @@ -315,9 +315,9 @@ SHADED 26 EVENT 27 current GOVT - free_govt_activity - free_govt_activity - free_govt_activity + free_govt_special_activity + free_govt_special_activity + free_govt_special_activity SHADED 27 log "Until next Propaganda, no Govt Special Activities where Guerrilla." @@ -624,7 +624,8 @@ EVENT 48 select_space_or_piece (s)=>(is_opposition(s)&&is_adjacent_to_3econ_pipeline(s)) (p,s)=>(is_farc_base(p)&&is_adjacent_to_3econ_pipeline(s)) if game.vm.p >= 0 remove - else + endif + if game.vm.s >= 0 shift_support endif @@ -702,7 +703,7 @@ EVENT 53 endspace prompt "Move Guerrillas between Departments." piece 2 is_any_guerrilla(p) && (s === game.vm.m[0] || s === game.vm.m[1]) - if game.pieces[game.vm.p] === game.vm.m[0] + if piece_space(game.vm.p) === game.vm.m[0] set_space (game.vm.m[1]) else set_space (game.vm.m[0]) @@ -909,7 +910,8 @@ EVENT 68 piece 1 is_coastal_space(s) && is_cartels_piece(p) remove endpiece - else + endif + if game.vm.sh >= 0 remove_shipment shipment_opt 1 is_coastal_space(s) remove_shipment |