1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
|
# Events for Andean Abyss.
# TODO: format prompt "Remove N Piece(s)"
# TODO: prompt wording to match card texts
# Notes on difficult events:
#
# 5.1.3 - must do max possible
# event 14, shaded 14, shaded 34, shaded 49 - place base and N troops/guerrillas
# shaded 24 - remove 2 troops
# event 30 - remove farc zone and remove farc base
# event 43 - place terror and remove farc base
# event 65 - (place or remove shipment) and (place or remove insurgent base)
#
# Replace pieces - may only remove when unable to place available piece (check stacking if piece is available)
# 35, shaded 39, 40, shaded 50, 54, 57, shaded 57, 72
#
# Remove X or replace X - exclusive choices
# shaded 50, 54
#
EVENT 1
log "1 Civic Action space each Support Phase requires Government Control and any cube."
capability CAP_1ST_DIV
SHADED 1
log "Civic Action requires at least 2 Troops and 2 Police."
capability S_CAP_1ST_DIV
EVENT 2
log "Sweep costs 1 Resource per space."
capability CAP_OSPINA
SHADED 2
log "Sweep Operations may target only 1 space per card."
capability S_CAP_OSPINA
EVENT 3
log "Assault costs 1 Resource per space."
capability CAP_TAPIAS
SHADED 3
log "Assault Operations may target only 1 space per card."
capability S_CAP_TAPIAS
EVENT 4
prompt "Add twice Econ of unsabotaged pipelines to Government Resources."
space 3 is_unsabotaged_pipeline(s)
auto_resources GOVT (2*data.spaces[game.vm.s].econ)
endspace
SHADED 4
prompt "Sabotage the 3 pipelines with highest value and no cubes."
space 3 is_highest_value_pipeline_without_cubes(s)
sabotage
endspace
EVENT 5
prompt "Place Police onto Pipelines."
repeat 6
space 1 is_pipeline(s) && has_available_piece(GOVT, POLICE)
auto_place GOVT POLICE
mark_space
endspace
endrepeat
prompt "Flip 3 Guerrillas there or adjacent to Active."
piece 3 is_any_guerrilla(p) && is_underground(p) && is_with_or_adjacent_to_mark(s, game.vm.m)
activate
endpiece
SHADED 5
prompt "Shift space adjacent to a 3-Econ LoC by 2 levels toward Active Opposition."
space 1 can_shift_opposition(s) && is_adjacent_to_3econ_loc(s)
shift_opposition
shift_opposition
endspace
EVENT 6
prompt "Select Opposition or Neutral Departments adjacent to Sabotage."
space 2 is_pop(s) && !is_support(s) && is_adjacent_to_sabotage(s)
set_passive_support
endspace
SHADED 6
prompt "Sabotage a pipeline."
space 1 is_pipeline(s) && !has_sabotage(s)
sabotage
mark_space
endspace
prompt "Shift an Adjacent Department."
space 1 can_shift_opposition(s) && is_dept(s) && is_adjacent(s, game.vm.m[0])
shift_opposition
endspace
EVENT 7
log "Each Sabotage phase, Government may remove 1-3 Terror or Sabotage."
capability CAP_7TH_SF
SHADED 7
log "Sabotage phase - Sabotage LoCs with any Guerrillas equal to cubes."
capability S_CAP_7TH_SF
EVENT 8
current GOVT
repeat 3
if can_air_strike()
free_air_strike
endif
endrepeat
SHADED 8
resources GOVT -9
EVENT 9
log "Assault treats Mountain as City."
capability CAP_MTN_BNS
SHADED 9
log "Assault in Mountain removes only 1 piece for 4 Troops."
capability S_CAP_MTN_BNS
EVENT 10
log "Air Lift moves any number of Troops."
capability CAP_BLACK_HAWKS
SHADED 10
log "Air Lift moves only 1 Troops cube."
capability S_CAP_BLACK_HAWKS
EVENT 11
log "1 Police may enter each Sweep space."
capability CAP_NDSC
SHADED 11
log "Operation Activates Guerrillas via Troops or Police, not both."
capability S_CAP_NDSC
EVENT 12
resources GOVT (Math.min(game.aid,20))
aid 10
SHADED 12
log "No Air Strike or Activation by Patrlo until next Propaganda."
momentum MOM_PLAN_COLOMBIA
EVENT 13
log "Patrol conducts a free Assault in each LoC."
capability CAP_METEORO
SHADED 13
log "Patrols do not conduct a free Assault."
capability S_CAP_METEORO
EVENT 14
current GOVT
# 5.1.3 - place base if possible!
prompt "Place 1 Base and 3 Troops into any Department."
if_space is_dept(s) && can_place_base_and_n(s, GOVT, 3, TROOPS)
or_space is_dept(s) && can_stack_any(s, GOVT)
auto_place GOVT BASE
auto_place GOVT TROOPS
auto_place GOVT TROOPS
auto_place GOVT TROOPS
endspace
SHADED 14
# 5.1.3 - remove both base and cube if possible
prompt "Remove 1 Government Base and 1 cube from a Department."
if_space is_dept(s) && ( has_govt_base(s) && has_cube(s) )
or_space is_dept(s) && ( has_govt_base(s) || has_cube(s) )
prompt "Remove 1 Government Base."
piece 1 is_piece_in_event_space(p) && is_govt_base(p)
remove
endpiece
prompt "Remove 1 cube."
piece 1 is_piece_in_event_space(p) && is_cube(p)
remove
endpiece
endspace
EVENT 15
roll
resources GOVT (game.vm.die*4)
SHADED 15
prompt "Shift a City from Neutral or Passive Support to Passive Opposition."
space 1 is_city(s) && (is_neutral(s) || is_passive_support(s))
set_passive_opposition
endspace
EVENT 16
prompt "Each Mountain, +5 Resources to Faction with most pieces."
space all is_mountain(s)
auto_resources (faction_with_most_pieces(game.vm.s)) 5
endspace
SHADED 16
resources GOVT -10
EVENT 17
resources GOVT (Math.min(game.aid,20))
aid 6
SHADED 17
log "No Sweep or Assault in Departments until next Propaganda."
momentum MOM_MADRID_DONORS
EVENT 18
resources GOVT (Math.min(game.aid,20))
aid 20
SHADED 18
resources GOVT -6
roll
aid (-game.vm.die)
EVENT 19
if game.current === GOVT
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
EVENT 20
current GOVT
prompt "Move up to 6 FARC Guerillas into adjacent spaces."
piece_undo_opt 6 is_farc_guerrilla(p)
prompt "Move FARC Guerilla into an adjacent space."
space_no_undo 1 is_adjacent(s, piece_space(game.vm.p)) && can_stack_any(s, game.current)
move
endspace
endpiece
SHADED 20
current FARC
free_march
prompt "Flip up to 3 FARC Guerrillas Underground."
piece_undo_opt 3 is_farc_guerrilla(p) && is_active(p)
underground
endpiece
EVENT 21
resources FARC -6
prompt "Remove 1 FARC Base."
piece_undo 1 is_farc_base(p)
remove
endpiece
SHADED 21
resources FARC 6
prompt "Place a FARC Base in a City or Department"
space 1 (is_city(s) || is_dept(s)) && can_stack_base(s, FARC)
auto_place FARC BASE
endspace
EVENT 22
prompt "Shift an Opposition space to Neutral."
space 1 is_opposition(s)
set_neutral
endspace
SHADED 22
log "May Agitate also in up to 3 spaces with FARC piece and no Government Control."
momentum MOM_ALFONSO_CANO
EVENT 23
prompt "In a Department, Activate all Guerrillas and remove all Cartels Bases."
space 1 is_dept(s) && (has_any_underground_guerrilla(s) || has_cartels_base(s))
prompt "Activate all Guerrillas."
piece all is_piece_in_event_space(p) && is_any_guerrilla(p) && is_underground(p)
activate
endpiece
prompt "Remove all Cartels Bases."
piece all is_piece_in_event_space(p) && is_cartels_base(p)
remove
endpiece
endspace
SHADED 23
current GOVT
prompt "Remove 3 Troops."
piece_undo 3 is_troops(p)
remove
endpiece
ineligible GOVT
ineligible FARC
EVENT 24
prompt "Shift a City to Active Support."
space 1 is_city(s) && can_shift_support(s)
set_active_support
endspace
ineligible FARC
SHADED 24
# 5.1.3 - 2 troops priority
prompt "Remove 2 Troops from a space with FARC pieces."
if_space has_farc_piece(s) && count_pieces(s, GOVT, TROOPS) >= 2
or_space has_farc_piece(s) && has_troops(s)
prompt "Remove 2 Troops."
piece 2 is_piece_in_event_space(p) && is_troops(p)
remove
endpiece
endspace
prompt "Shift a City with Support to Neutral."
space 1 is_city(s) && is_support(s)
set_neutral
endspace
EVENT 25
prompt "Remove all FARC pieces from 1 Mountain."
space 1 is_mountain(s) && has_faction_piece(s, FARC)
prompt "Remove all FARC pieces."
piece all is_piece_in_event_space(p) && is_farc_piece(p)
remove
endpiece
endspace
SHADED 25
prompt "Place 3 FARC pieces into Antioquia or an adjacent Department."
space 1 (s === ANTIOQUIA || (is_dept(s) && is_adjacent(ANTIOQUIA, s))) && can_stack_any(s, FARC)
place FARC BASE_GUERRILLA
place FARC BASE_GUERRILLA
place FARC BASE_GUERRILLA
endspace
EVENT 26
current CARTELS
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
prompt "Transfer 6 Resources from Cartels to FARC for each space with Cartels Base and FARC Guerrilla."
# prompt "Transfer 6 Resources from Cartels to FARC for each space with both."
space all has_cartels_base(s) && has_farc_guerrilla(s) && game.resources[CARTELS] > 0
auto_transfer CARTELS FARC 6
endspace
EVENT 27
current GOVT
repeat 3
if can_air_lift() || can_eradicate() || can_air_strike()
free_govt_special_activity
endif
endrepeat
SHADED 27
log "Until next Propaganda, no Government Special Activities where Guerrilla."
momentum MOM_MISIL_ANTIAEREO
EVENT 28
prompt "Remove up to 3 Insurgent pieces from a space next to Venezuela."
space 1 is_next_to_venezuela(s) && has_insurgent_piece(s)
# Note: up to negates requirement for maxiumum damage
prompt "Remove up to 3 Insurgent pieces."
piece_opt 3 is_piece_in_event_space(p) && is_insurgent_piece(p)
remove
endpiece
endspace
SHADED 28
prompt "Place FARC Base in a Department next to Venezuela."
space 1 is_dept(s) && is_next_to_venezuela(s) && can_stack_base(s, FARC)
auto_place FARC BASE
endspace
prompt "Sabotage each empty LoC touching Cúcuta."
space all is_loc(s) && is_adjacent(CUCUTA, s) && is_empty(s) && !has_sabotage(s)
sabotage
endspace
EVENT 29
current GOVT
prompt "Activate all FARC and free Assault in 1 space."
# TODO: Madrid Donors, Senado & Camara, etc
space 1 has_underground_guerrilla(s, FARC) || ( assault_kill_count(s) > 0 && (has_farc_piece(s) || has_exposed_piece(s, AUC) || has_exposed_piece(s, CARTELS)) )
prompt "Activate all FARC."
piece all is_piece_in_event_space(p) && is_farc_guerrilla(p) && is_underground(p)
activate
endpiece
if can_assault_in_space(game.vm.s)
free_assault
endif
endspace
SHADED 29
current FARC_AUC
prompt "Execute 2 free Ambushes in 1 space."
space 1 has_piece(s, game.current, GUERRILLA) && has_enemy_piece(s)
repeat 2
prompt "Execute 2 free Ambushes with any Guerrilla without Activating."
piece_undo 1 is_piece_in_event_space(p) && is_piece(p, game.current, GUERRILLA) && has_enemy_piece(s)
free_ambush_without_activating
endpiece
endrepeat
endspace
EVENT 30
# 5.1.3 - remove both farc zone and farc base if possible
prompt "Remove 1 FARC Zone and 1 FARC Base there."
if_space is_farc_zone(s) && has_piece(s, FARC, BASE)
or_space is_farc_zone(s)
remove_farc_zone
prompt "Remove 1 FARC Base."
piece 1 is_piece_in_event_space(p) && is_farc_base(p)
remove
endpiece
endspace
SHADED 30
current GOVT
place_farc_zone
EVENT 31
prompt "Shift 2 Cities 1 level toward Active Support."
space 2 is_city(s) && can_shift_support(s)
shift_support
endspace
prompt "Shift 1 Department 1 level toward Active Support."
space 1 is_dept(s) && can_shift_support(s)
shift_support
endspace
SHADED 31
prompt "Shift 3 spaces from Passive Opposition to Active Opposition."
space 3 is_passive_opposition(s)
set_active_opposition
endspace
EVENT 32
prompt "Shift 2 spaces from Neutral or Passive Opposition to Passive Support."
space 2 is_neutral(s) || is_passive_opposition(s)
set_passive_support
endspace
SHADED 32
resources FARC 12
EVENT 33
prompt "Remove up to 3 Insurgent pieces from a space bordering Ecuador."
space 1 is_next_to_ecuador(s) && has_insurgent_piece(s)
piece_opt 3 is_piece_in_event_space(p) && is_insurgent_piece(p)
remove
endpiece
endspace
SHADED 33
capability EVT_SUCUMBIOS
set_space ECUADOR
place (game.current) ANY_PIECE
place (game.current) ANY_PIECE
EVENT 34
# -1 = all insurgent factions
resources -1 -5
SHADED 34
current FARC_AUC_CARTELS
# 5.1.3 - place base if possible
prompt "Place 2 Guerrillas and 1 Base into a 0 Population Department."
if_space is_zero_pop_dept(s) && can_place_base_and_n(s, game.current, 2, GUERRILLA)
or_space is_zero_pop_dept(s) && can_stack_any(s, game.current)
auto_place (game.current) BASE
auto_place (game.current) GUERRILLA
auto_place (game.current) GUERRILLA
endspace
EVENT 35
prompt "Replace Cartels Bases in 1 Department with Police."
space 1 is_dept(s) && has_cartels_base(s) && can_replace_with(s, GOVT, POLICE)
prompt "Replace Cartels Bases with Police."
piece all is_piece_in_event_space(p) && is_cartels_base(p) && can_replace_with(s, GOVT, POLICE)
remove
auto_place GOVT POLICE
endpiece
endspace
aid 3
SHADED 35
prompt "Shift a Department with a Cartels Base 2 levels toward Active Opposition."
space 1 is_dept(s) && has_cartels_base(s) && can_shift_opposition(s)
shift_opposition
shift_opposition
endspace
EVENT 36
eligible (game.current)
asm game.vm.zona_de_convivencia = 1
asm game.vm.save_current = game.current
current GOVT
place_farc_zone
set_space (game.vm.farc_zone)
auto_place FARC BASE
current (game.vm.save_current)
prompt "Shift 2 adjacent spaces 1 level toward Active Support."
space 2 is_adjacent(game.vm.farc_zone, s) && can_shift_support(s)
shift_support
endspace
EVENT 37
current GOVT
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
current AUC
free_march
prompt "Free Ambush at any 1 destination."
space 1 set_has(game.vm.march, s) && has_underground_guerrilla(s, AUC) && has_enemy_piece(s)
prompt "Free Ambush."
piece 1 is_piece_in_event_space(p) && is_underground_guerrilla(p, AUC)
free_ambush
endpiece
endspace
EVENT 38
prompt "Remove all Active AUC Guerrillas from up to 3 spaces with cubes or Support."
space_opt 3 (has_cube(s) || is_support(s)) && has_active_guerrilla(s, AUC)
prompt "Remove all AUC Guerrillas."
piece all is_piece_in_event_space(p) && is_active_guerrilla(p, AUC)
remove
endpiece
endspace
SHADED 38
prompt "All AUC Guerrillas in spaces with cubes or Support to Underground."
space all (has_cube(s) || is_support(s)) && has_active_guerrilla(s, AUC)
prompt "All AUC Guerrillas to Underground."
piece all is_piece_in_event_space(p) && is_active_guerrilla(p, AUC)
underground
endpiece
endspace
EVENT 39
prompt "Place Police into each of 6 Departments."
space 6 is_dept(s) && can_stack_any(s, GOVT) && has_available_piece(GOVT, POLICE)
auto_place GOVT POLICE
endspace
SHADED 39
prompt "In up to 3 Departments, replace 1 Police with AUC Guerrilla."
space_opt 3 is_dept(s) && has_police(s) && can_replace_with(s, AUC, GUERRILLA)
prompt "Replace 1 Police with AUC Guerrilla."
piece 1 is_piece_in_event_space(p) && is_police(p) && can_replace_with(s, AUC, GUERRILLA)
remove
auto_place AUC GUERRILLA
endpiece
endspace
EVENT 40
prompt "Replace 3 AUC Guerrillas with Police."
piece_undo 3 is_auc_guerrilla(p) && can_replace_with(s, GOVT, POLICE)
set_piece_space
remove
auto_place GOVT POLICE
set_space -1
endpiece
SHADED 40
prompt "Move all cubes in a Department with AUC to any Cities."
space 1 is_dept(s) && has_auc_piece(s) && has_cube(s)
prompt "Move all cubes to any Cities."
piece all is_piece_in_event_space(p) && is_cube(p)
save_space
prompt "Move cube to any City."
space_no_undo 1 is_city(s)
move
endspace
restore_space
endpiece
endspace
prompt "Place 1 AUC piece in each of 2 Cities."
space 2 is_city(s)
place AUC BASE_GUERRILLA
endspace
EVENT 41
resources AUC -6
prompt "Remove all AUC pieces from 1 space."
space 1 has_auc_piece(s)
prompt "Remove all AUC pieces."
piece all is_piece_in_event_space(p) && is_auc_piece(p)
remove
endpiece
endspace
SHADED 41
count_spaces has_auc_piece(s) && has_cartels_piece(s)
log `${game.vm.count} spaces with AUC and Cartels pieces.`
resources AUC (3*game.vm.count)
EVENT 42
prompt "Shift 2 Neutral spaces to Passive Support."
space 2 is_neutral(s)
set_passive_support
endspace
resources GOVT 3
SHADED 42
log `No Sweep or Assault against ${faction_name[game.current]} until next Propaganda.`
if game.current === GOVT
log "No effect."
endif
if game.current === FARC
momentum MOM_SENADO_FARC
endif
if game.current === AUC
momentum MOM_SENADO_AUC
endif
if game.current === CARTELS
momentum MOM_SENADO_CARTELS
endif
EVENT 43
# 5.1.3 - farc bases if possible
prompt "Place 2 Terror and remove all FARC Bases from a Department with Troops."
if_space is_dept(s) && has_troops(s) && has_piece(s, FARC, BASE)
or_space is_dept(s) && has_troops(s)
terror
terror
prompt "Remove all FARC Bases."
piece all is_piece_in_event_space(p) && is_farc_base(p)
remove
endpiece
endspace
SHADED 43
prompt "Place 2 Terror in a Department with Troops."
space 1 is_dept(s) && has_troops(s)
terror
terror
endspace
aid -9
EVENT 44
prompt "Shift a non-Opposition City to Active Support."
space 1 is_city(s) && !is_opposition(s) && can_shift_support(s)
set_active_support
endspace
resources GOVT 3
SHADED 44
prompt "Shift a City from Support to Neutral."
space 1 is_city(s) && is_support(s)
set_neutral
endspace
resources GOVT -3
EVENT 45
prompt "Shift each space with cubes and Terror 1 level toward Active Support."
space all has_cube(s) && has_terror(s) && can_shift_support(s)
shift_support
endspace
SHADED 45
count_spaces has_faction_piece(s, AUC)
log `${game.vm.count} spaces with AUC pieces.`
aid (-game.vm.count)
roll
resources GOVT (-game.vm.die)
EVENT 46
current FARC_AUC_CARTELS
prompt "Execute free Terror with any Guerrilla."
space 1 has_piece(s, game.current, GUERRILLA)
piece 1 is_piece_in_event_space(p) && is_piece(p, game.current, GUERRILLA)
free_terror_with_piece
terror
terror_aid_cut
endpiece
prompt "Remove enemy pieces."
piece_undo 2 is_piece_in_event_space(p) && is_enemy_piece(p)
remove
endpiece
if is_pop(game.vm.s)
set_passive_support_or_passive_opposition
endif
endspace
EVENT 47
# Note: see event 59
if AUTOMATIC
log "All AUC Guerrillas to Active."
asm for_each_piece(AUC, GUERRILLA, p => { if (piece_space(p) !== AVAILABLE) set_active(p) })
else
prompt "All AUC Guerrillas to Active."
piece all is_auc_guerrilla(p) && is_underground(p)
activate
endpiece
endif
current GOVT
prompt "All Police free Assault AUC as if Troops."
space all can_assault_in_space_faction(s, AUC)
free_assault_auc
# TODO transfer dropped shipments early
endspace
SHADED 47
current AUC
prompt "Place 2 AUC Guerrillas in Cúcuta."
space 1 s === CUCUTA
auto_place AUC GUERRILLA
auto_place AUC GUERRILLA
if has_underground_guerrilla(game.vm.s, AUC)
prompt "Execute free Terror in Cúcuta."
piece 1 is_piece_in_event_space(p) && is_auc_guerrilla(p) && is_underground(p)
free_terror_with_piece
terror_aid_cut
endpiece
else
# Special case: Free Terror without a piece.
terror
shift_neutral
aid -3
endif
endspace
prompt "Flip any 2 AUC Guerrillas Underground."
piece 2 is_auc_guerrilla(p) && is_active(p)
underground
endpiece
EVENT 48
prompt "Remove Opposition or FARC Base adjacent to 3-Econ pipeline."
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
endif
if game.vm.s >= 0
# https://boardgamegeek.com/thread/1132718/article/15062894#15062894
set_neutral
endif
SHADED 48
prompt "Shift 2 Cities other than Bogotá 1 level toward Active Opposition."
space 2 s !== BOGOTA && is_city(s) && can_shift_opposition(s)
shift_opposition
endspace
EVENT 49
prompt "Permanently remove 3 available AUC Guerrillas."
remove_permanently AUC GUERRILLA
remove_permanently AUC GUERRILLA
remove_permanently AUC GUERRILLA
SHADED 49
# 5.1.3 - place base if possible
prompt "Place an AUC Guerrilla and Base in any Department."
if_space is_dept(s) && can_place_base_and_n(s, AUC, 1, GUERRILLA)
or_space is_dept(s) && can_stack_any(s, AUC)
auto_place AUC BASE
auto_place AUC GUERRILLA
endspace
EVENT 50
current GOVT
repeat 3
if !game.vm.opt
prompt "Place up to 3 Police into any Departments."
space_opt 1 is_dept(s) && can_stack_any(s, GOVT)
auto_place GOVT POLICE
endspace
endif
endrepeat
SHADED 50
# Note: strictly remove or replace (see event 54)
prompt "Remove any 2 Police or replace them with available AUC Guerrillas."
piece_undo 1 is_police(p)
set_piece_space
remove
place_opt AUC GUERRILLA
set_space -1
endpiece
if game.vm.opt
prompt "Remove 1 more Police."
piece_undo 1 is_police(p)
remove
endpiece
else
prompt "Replace 1 more Police with AUC Guerrilla."
piece_undo 1 is_police(p) && can_replace_with(s, AUC, GUERRILLA)
set_piece_space
remove
auto_place AUC GUERRILLA
set_space -1
endpiece
endif
EVENT 51
if is_any_pipeline_sabotaged()
prompt "Remove all Pipeline Sabotage."
space all is_pipeline(s) && has_sabotage(s)
remove_sabotage
endspace
else
resources GOVT 12
endif
SHADED 51
prompt "Sabotage 3 Pipelines with or adjacent to FARC Guerrillas."
space 3 is_pipeline(s) && is_with_or_adjacent_to_farc_guerrilla(s)
sabotage
endspace
EVENT 52
prompt "Shift 2 City or Mountain each 1 level toward Active Support."
space 2 (is_city(s) || is_mountain(s)) && can_shift_support(s)
shift_support
endspace
SHADED 52
prompt "Place an AUC Base into a space with AUC."
space 1 has_auc_piece(s) && can_stack_base(s, AUC)
auto_place AUC BASE
endspace
resources AUC (count_pieces_on_map(AUC,BASE))
EVENT 53
current FARC_AUC_CARTELS
prompt "Select Departments to move Guerrillas between."
space 1 is_dept(s)
mark_space
endspace
if has_piece(game.vm.m[0], game.current, GUERRILLA)
prompt "Select Departments to move Guerrillas between."
space 1 (s !== game.vm.m[0]) && is_dept(s)
mark_space
endspace
else
prompt "Select Departments to move Guerrillas between."
space 1 is_dept(s) && has_piece(s, game.current, GUERRILLA)
mark_space
endspace
endif
prompt "Move Guerrillas between Departments."
piece_range 1 2 is_piece(p, game.current, GUERRILLA) && (s === game.vm.m[0] || s === game.vm.m[1])
if piece_space(game.vm.p) === game.vm.m[0]
set_space (game.vm.m[1])
else
set_space (game.vm.m[0])
endif
move
underground
set_space -1
endpiece
EVENT 54
# Note: strictly remove or replace (see shaded 50)
prompt "Remove up to 2 Guerrillas or replace them with with another Faction's Guerrillas."
piece_undo 1 is_any_guerrilla(p)
set_piece_space
remove
place_opt (piece_enemy_factions(game.vm.p)) GUERRILLA
set_space -1
endpiece
if game.vm.opt
prompt "Remove 1 more Guerrilla."
# TODO: don't remove just placed piece
piece_undo_opt 1 is_any_guerrilla(p)
remove
endpiece
else
prompt "Replace 1 more Guerrilla."
# TODO: don't replace just placed piece
piece_undo_opt 1 is_any_guerrilla(p) && ( can_replace_with(s, FARC, GUERRILLA) || can_replace_with(s, AUC, GUERRILLA) || can_replace_with(s, CARTELS, GUERRILLA) )
set_piece_space
remove
place_opt (piece_enemy_factions(game.vm.p)) GUERRILLA
set_space -1
endpiece
endif
EVENT 55
prompt "Remove 2 Shipments."
shipment 2 true
remove_shipment
endshipment
prompt "Remove 5 Cartels Guerrillas."
piece 5 is_cartels_guerrilla(p)
remove
endpiece
aid 3
SHADED 55
prompt "Shift 3 spaces with Cartels pieces 1 level toward Active Opposition."
space 3 can_shift_opposition(s) && has_cartels_piece(s)
shift_opposition
endspace
EVENT 56
transfer CARTELS GOVT 15
SHADED 56
count_pieces is_cartels_piece(p) && is_city(s)
log `${game.vm.count} Cartels pieces in Cities.`
resources CARTELS (2*game.vm.count)
prompt "Place a Cartels Base in each of 2 Cities."
space 2 is_city(s) && can_stack_base(s, CARTELS)
auto_place CARTELS BASE
endspace
EVENT 57
prompt "Replace up to 3 Cartels pieces with Police."
piece_undo_opt 3 is_cartels_piece(p) && can_replace_with(s, GOVT, POLICE)
set_piece_space
remove
auto_place GOVT POLICE
set_space -1
endpiece
SHADED 57
prompt "In each of 2 spaces replace a Police with any Cartels piece."
# TODO: prompt "Replace a Police with any Cartels piece in 2 spaces."
space 2 has_police(s)
prompt "Replace a Police with any Cartels piece."
piece 1 is_piece_in_event_space(p) && is_police(p) && (can_replace_with(s, CARTELS, GUERRILLA) || can_replace_with(s, CARTELS, BASE))
remove
place CARTELS BASE_GUERRILLA
endpiece
endspace
EVENT 58
resources CARTELS -6
prompt "Remove all Cartels Guerrillas."
piece all is_cartels_guerrilla(p)
remove
endpiece
SHADED 58
current CARTELS
prompt "Relocate up to 4 Police to any spaces."
piece_undo_opt 4 is_police(p)
prompt "Relocate Police to any space."
space_no_undo 1 can_stack_piece(s, GOVT, POLICE)
move
endspace
endpiece
EVENT 59
# Note: see event 47
if AUTOMATIC
log "All Cartels Guerrillas to Active."
asm for_each_piece(CARTELS, GUERRILLA, p => { if (piece_space(p) !== AVAILABLE) set_active(p) })
else
prompt "All Cartels Guerrillas to Active."
piece all is_cartels_guerrilla(p) && is_underground(p)
activate
endpiece
endif
current GOVT
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
if AUTOMATIC
log "All Cartels Guerrillas to Underground."
asm for_each_piece(CARTELS, GUERRILLA, set_underground)
else
prompt "Flip all Cartels Guerrillas Underground."
piece all is_cartels_guerrilla(p) && is_active(p)
underground
endpiece
endif
current CARTELS
prompt "Relocate up to 3 Cartels Guerrillas anywhere."
piece_undo_opt 3 is_cartels_guerrilla(p)
prompt "Relocate Cartels Guerrilla anywhere."
space_no_undo 1 !is_event_piece_space(s) && can_stack_piece(s, CARTELS, GUERRILLA)
move
endspace
endpiece
EVENT 60
prompt "Remove all Cartels pieces from 2 Cities or 1 Department."
space 2 has_cartels_piece(s) && ((is_city(s) && (game.vm.ss.length === 0 || is_city(game.vm.ss[0]))) || (is_dept(s) && game.vm.ss.length === 0))
prompt "Remove all Cartels pieces."
piece all is_piece_in_event_space(p) && is_cartels_piece(p)
remove
endpiece
endspace
resources GOVT 6
SHADED 60
current CARTELS
prompt "Place a Cartels Base in each of 2 Cities."
space 2 is_city(s) && can_stack_base(s, CARTELS)
auto_place CARTELS BASE
endspace
prompt "Free Bribe in 1 space."
space 1 !is_empty(s)
free_bribe
endspace
EVENT 61
prompt "Remove all Cartels pieces from 1 City."
space 1 is_city(s) && has_cartels_piece(s)
prompt "Remove all Cartels pieces."
piece_undo all is_piece_in_event_space(p) && is_cartels_piece(p)
remove
endpiece
endspace
resources CARTELS -6
SHADED 61
prompt "Place 1 Cartels Base into each of 3 Departments with no Cartels pieces."
space 3 is_dept(s) && !has_cartels_piece(s) && can_stack_base(s, CARTELS)
auto_place CARTELS BASE
endspace
EVENT 62
prompt "Remove up to 3 Insurgent pieces for 0 Population Forests."
piece_undo_opt 3 is_insurgent_piece(p) && is_zero_pop_forest(s)
remove
endpiece
SHADED 62
prompt "Place 1 Cartels Base each in Guainia, Vaupés, and Amazonas."
space 3 (s === GUAINIA || s === VAUPES || s === AMAZONAS) && can_stack_base(s, CARTELS)
auto_place CARTELS BASE
endspace
EVENT 63
current CARTELS
prompt "In each space with Cartels Guerrillas..."
space all has_cartels_guerrilla(s)
prompt "Remove all but one Cartels Guerrilla."
piece all is_piece_in_event_space(p) && is_cartels_guerrilla(p) && count_pieces(s, CARTELS, GUERRILLA) > 1
remove
endpiece
prompt "Free Terror with remaining Cartels Guerrilla."
piece 1 is_piece_in_event_space(p) && is_cartels_guerrilla(p)
free_terror_with_piece
endpiece
endspace
terror_aid_cut
ineligible CARTELS
EVENT 64
repeat 2
prompt "Place 2 Shipments with FARC Guerrillas in the same spaces as Cartels Bases."
if has_available_shipment()
asm game.vm.shipment = find_available_shipment()
piece_undo 1 is_farc_guerrilla(p) && has_cartels_base(s)
place_shipment
endpiece
endif
endrepeat
SHADED 64
asm game.vm.total = 0
count_pieces is_cartels_base(p) && is_city(s)
log `${game.vm.count} Cartels Bases in Cities.`
asm game.vm.total += 2 * game.vm.count
count_pieces is_cartels_base(p) && is_dept(s)
log `${game.vm.count} Cartels Bases in Departments.`
asm game.vm.total += game.vm.count
resources CARTELS (game.vm.total)
EVENT 65
# 5.1.3 - do both shipment and base if possible
prompt "Place or remove 1 Shipment and Insurgent Base in any Mountain Department."
if_space is_mountain(s) && ( can_place_or_remove_shipment(s) && can_place_or_remove_insurgent_base(s) )
or_space is_mountain(s) && ( can_place_or_remove_shipment(s) || can_place_or_remove_insurgent_base(s) )
place_or_remove_shipment
place_or_remove_insurgent_base
endspace
EVENT 66
prompt "Remove 3 Cartels Bases from Forest."
piece_undo 3 is_cartels_base(p) && is_forest(s)
remove
endpiece
SHADED 66
prompt "Place Cartels Base into each Forest that already has one."
space all is_forest(s) && has_cartels_base(s) && can_stack_base(s, CARTELS)
auto_place CARTELS BASE
endspace
EVENT 67
resources CARTELS -20
SHADED 67
log "This Resources phase, Cartels add Resources equal to 4 x Bases."
momentum MOM_MEXICAN_TRAFFICKERS
EVENT 68
prompt "Remove 2 Cartels pieces or up to 2 Shipments from coastal spaces."
select_shipment_or_cartels_piece_in_coastal_space
if game.vm.p >= 0
remove
prompt "Remove 1 more Cartels piece from coastal spaces."
piece 1 is_coastal_space(s) && is_cartels_piece(p)
remove
endpiece
endif
if game.vm.sh >= 0
remove_shipment
prompt "Remove up to 1 more Shipment from coastal spaces."
shipment_opt 1 is_coastal_space(s)
remove_shipment
endshipment
endif
SHADED 68
count_pieces is_cartels_piece(p) && is_coastal_space(s)
log `${game.vm.count} Cartels pieces in coastal spaces.`
resources CARTELS (2*game.vm.count)
EVENT 69
prompt "Select source space."
if game.current === GOVT
space 1 has_cube(s)
mark_space
endspace
else
space 1 has_piece(s, game.current, GUERRILLA)
mark_space
endspace
endif
prompt "Select destination Department."
space 1 (s !== game.vm.m[0]) && is_within_adjacent_depts(s, game.vm.m[0], 3) && can_stack_any(s, game.current)
if game.current === GOVT
prompt "Move cubes to destination."
piece_undo_opt all (s === game.vm.m[0]) && is_cube(p) && can_stack_any(s, GOVT)
move
endpiece
free_train_sweep_assault
else
prompt "Move Guerrillas to destination."
piece_undo_opt all (s === game.vm.m[0]) && is_piece(p, game.current, GUERRILLA) && can_stack_any(s, game.current)
move
endpiece
free_rally_attack_terror
endif
endspace
EVENT 70
count_spaces is_forest(s) && !has_any_guerrilla(s)
log `${game.vm.count} Forests without Guerrillas.`
resources GOVT (6*game.vm.count)
SHADED 70
current FARC_AUC_CARTELS
prompt "Free Terror in each Forest and +3 Resources per Terror."
space all is_forest(s) && has_piece(s, game.current, GUERRILLA)
prompt "Free Terror with any 1 Guerrilla."
piece 1 is_piece_in_event_space(p) && is_piece(p, game.current, GUERRILLA)
free_terror_with_piece
auto_resources (game.current) 3
endpiece
endspace
terror_aid_cut
EVENT 71
prompt "Remove a Guerrilla from Chocó."
set_space CHOCO
piece 1 is_any_guerrilla(p) && s === CHOCO
remove
resources (piece_faction(game.vm.p)) -5
endpiece
SHADED 71
capability EVT_DARIEN
prompt "Place 1-2 Bases in Panamá."
space 1 s === PANAMA
auto_place (game.current) BASE
place_opt (game.current) BASE
endspace
EVENT 72
prompt "Replace all Cartels Guerrillas in 2 spaces with other Guerrillas."
space 2 has_cartels_guerrilla(s) && ( can_replace_with(s, FARC, GUERRILLA) || can_replace_with(s, AUC, GUERRILLA) )
prompt "Replace all Cartels Guerrillas with other Guerrillas."
piece_undo all is_piece_in_event_space(p) && is_cartels_guerrilla(p) && ( can_replace_with(s, FARC, GUERRILLA) || can_replace_with(s, AUC, GUERRILLA) )
remove
place FARC_AUC GUERRILLA
endpiece
endspace
SHADED 72
if has_pieces_on_map(CARTELS, BASE)
while has_piece(AVAILABLE, CARTELS, GUERRILLA)
prompt "Place all available Cartels Guerrillas into spaces with Cartels Bases."
asm game.vm.p = find_piece(AVAILABLE, CARTELS, GUERRILLA)
space 1 has_cartels_base(s) && can_stack_piece(s, CARTELS, GUERRILLA)
auto_place CARTELS GUERRILLA
endspace
endwhile
endif
|