diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-04-23 13:29:24 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-03 18:48:16 +0200 |
commit | c627af2462954bd4f000d9a4fc43fe63ed1a2358 (patch) | |
tree | dfe2b158de7da58604197d9b4febc5bb5c13c1a1 /events.txt | |
parent | 4fdda6328e67b25db6ff30c0f18fb7d5ffef97b9 (diff) | |
download | andean-abyss-c627af2462954bd4f000d9a4fc43fe63ed1a2358.tar.gz |
WIP Clean up Shipment Transfer timing.
At end of each Operation Space.
At end of each Special Activity (per space for Assassinate/Bribe).
At end of each Event (never in the middle).
Clean up Transfer mechanisms.
Force current player to actively select Shipment before control swaps.
Transfer all shipments of current player before swapping again.
Captured Goods, Contraband, and Commandeer - steal shipments!
Only Drug Bust / Captured Goods / Commandeer / Contraband if no option.
If all guerrillas are dead in Drug Bust, or if no enemy guerrillas
in the other cases.
Auto-transfer to own faction if possible.
Make Shipment removal optional.
4.5.3 Errata and new Shipment transfer code.
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -218,11 +218,13 @@ EVENT 19 prompt "Free Sweep or Assault in each space possible." space all can_sweep_activate(s) || can_assault_in_space(s) free_sweep_assault + # TODO transfer dropped shipments early endspace else prompt "Free Attack or Terror in each space possible." space all can_terror_in_space(s) || can_attack_in_space(s) free_attack_terror + # TODO transfer dropped shipments early endspace endif @@ -336,6 +338,7 @@ EVENT 26 prompt "All Cartels Guerrillas free Attack FARC." space all has_cartels_guerrilla(s) && has_farc_piece(s) free_attack_farc + # TODO transfer dropped shipments early endspace SHADED 26 @@ -510,6 +513,7 @@ EVENT 37 prompt "Free Sweep or Assault FARC within each space; AUC Guerrillas act as Troops." space all can_sweep_activate(s, FARC) || can_assault_in_space_faction(s, FARC) free_sweep_assault_farc + # TODO transfer dropped shipments early endspace SHADED 37 @@ -963,6 +967,7 @@ EVENT 59 prompt "Free Assault against Cartels in each space." space all can_assault_in_space_faction(s, CARTELS) free_assault_cartels + # TODO transfer dropped shipments early endspace SHADED 59 |