forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2021 - Exaction Squad.cat
1758 lines (1757 loc) · 149 KB
/
2021 - Exaction Squad.cat
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="eee3-50f4-51f9-cede" name="Exaction Squad" revision="13" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="5" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue" hidden="false">
<categoryEntries>
<categoryEntry id="2340-12c8-a052-142e" name="EXACTION SQUAD" hidden="false"/>
<categoryEntry id="314e-1833-e85a-2256" name="Adeptus Arbites" hidden="false"/>
<categoryEntry id="7f93-bd9f-2338-8268" name="Arbites" hidden="false"/>
<categoryEntry id="7606-edec-13e7-9620" name="Proctor-Exactant" hidden="false"/>
<categoryEntry id="52f3-8710-5b77-4269" name="Castigator" hidden="false"/>
<categoryEntry id="7b50-67f3-134a-044a" name="Chirurgant" hidden="false"/>
<categoryEntry id="3b56-8e29-78cb-f7a4" name="Leashmaster" hidden="false"/>
<categoryEntry id="045f-1f64-cccc-7ff5" name="R-VR Cyber Mastiff" hidden="false"/>
<categoryEntry id="bd36-7f72-a1ef-ce74" name="Malocator" hidden="false"/>
<categoryEntry id="7fc0-8607-697d-74d5" name="Marksman" hidden="false"/>
<categoryEntry id="0151-5f39-3ada-406a" name="Revelatum" hidden="false"/>
<categoryEntry id="5f5a-816b-ac62-bf83" name="Subductor" hidden="false"/>
<categoryEntry id="d537-9cb6-ba03-5162" name="Vigilant" hidden="false"/>
<categoryEntry id="53b7-e174-1b8c-859a" name="Vox-signifier" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="dd0e-4ce4-6097-d63a" name="Exaction Squad Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="4a35-d8fd-b56a-f53e" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="3db3-819e-60ec-ad24" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="2caf-91d3-c811-c196" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1813-9cc7-bd58-67be" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5986-8e59-0da4-dca1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c130-2d87-d783-e5e4" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="force" value="10" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7337-ead3-d1d7-8683" type="max"/>
<constraint field="selections" scope="force" value="10" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2356-406a-8cb9-8b3e" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="70c5-8368-297d-be59" name="Leashmaster" hidden="false" targetId="3b56-8e29-78cb-f7a4" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="efc1-67ae-7947-a67c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9c97-5aba-5639-45ea" name="Malocator" hidden="false" targetId="bd36-7f72-a1ef-ce74" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="787b-ec41-808e-7ade" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="96c2-c37b-4277-641b" name="Gunner" hidden="false" targetId="ee8c-cc44-acc3-40f0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6b96-131e-9741-41f3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e500-e0bf-bf85-a769" name="R-VR Cyber Mastiff" hidden="false" targetId="045f-1f64-cccc-7ff5" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="cc85-ece6-6ed1-e631" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9773-13c6-2d9a-9b4a" name="Marksman" hidden="false" targetId="7fc0-8607-697d-74d5" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="85be-466f-ad9c-cf91" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0e3f-2bf4-2406-c299" name="Chirurgant" hidden="false" targetId="7b50-67f3-134a-044a" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0479-b3c0-c8b6-a39f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="df20-a0c0-bbb3-a966" name="Revelatum" hidden="false" targetId="0151-5f39-3ada-406a" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f145-41e1-5ce0-e561" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6072-ceb9-a823-3847" name="Subductor" hidden="false" targetId="5f5a-816b-ac62-bf83" primary="false">
<constraints>
<constraint field="selections" scope="force" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e8f4-2919-db00-5a66" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="75a4-facf-11f0-95ac" name="Vigilant" hidden="false" targetId="d537-9cb6-ba03-5162" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ae83-6c2d-a85e-0a4e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e6b8-323b-d3d0-b28b" name="Vox-signifier" hidden="false" targetId="53b7-e174-1b8c-859a" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ac40-ab0a-033d-ec6d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8802-e9f1-d014-979a" name="Castigator" hidden="false" targetId="52f3-8710-5b77-4269" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b73a-22d8-9f60-a862" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="eee3-50f4-51f9-cede" shared="true"/>
</conditions>
</modifier>
</modifiers>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="3240-1389-721e-de18" name="Arbites Proctor-Exactant" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4800-641b-ba5e-e11d" name="Proctor-Exactant" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<modifiers>
<modifier type="set" field="dd03-76d2-dda8-eca2" value="3+">
<conditions>
<condition field="selections" scope="3240-1389-721e-de18" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b572-5e57-730a-77ea" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">9</characteristic>
</characteristics>
</profile>
<profile id="c7f8-f68d-7c03-bb43" name="Nuncio-Aquila" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time an enemy operative would perform a mission action or the Pick Up action, if that enemy operative is within ⬛ of your Nuncio-aquila token (or this operative if that token has not been placed), one additional action point must be subtracted to perform that action. See the Deploy Nuncio-aquila action opposite for how that token is placed.
• When determining control of an objective marker your Nuncio-aquila token (or this operative if that token has not been placed) is within ⬛ of, treat enemy operatives' total APL as being 1 less. Note that this is not a modifier.</characteristic>
</characteristics>
</profile>
<profile id="22e9-ab95-a029-4c5d" name="Deploy Nuncio-Aquila (0AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">The first time this operative performs this action during a battle, place one of your Nuncio-aquila tokens within ⬟ horizontally and any distance vertically of this operative. Each time this operative performs this action thereafter, you can move that Nuncio-aquila token up to ⬟ horizontally and up to any distance vertically. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6167-4d7f-4807-0c52" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6bc2-a035-891d-3e14" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="50b0-85f9-b90f-ddf9" name="EXACTION SQUAD" hidden="false" targetId="2340-12c8-a052-142e" primary="false"/>
<categoryLink id="55e5-58c2-e358-fbfe" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="c67b-c036-0af2-d42c" name="Adeptus Arbites" hidden="false" targetId="314e-1833-e85a-2256" primary="false"/>
<categoryLink id="0c59-9c57-0001-1e6f" name="Arbites" hidden="false" targetId="7f93-bd9f-2338-8268" primary="false"/>
<categoryLink id="8d8f-3061-1c98-8b5b" name="Proctor-Exactant" hidden="false" targetId="7606-edec-13e7-9620" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2fed-cde2-d55a-1a91" name="Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d75-1b12-2035-01c4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9176-6143-b82b-ff2b" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="cc2d-8c13-b0d7-df68" name="Combat shotgun; repression baton" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="7093-016e-3db3-9c96" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
<entryLink id="3b7e-d7eb-43fd-d2e8" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b572-5e57-730a-77ea" name="Dominator maul & assault shield" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="77ab-2025-5bb3-d445" name="⚔ Dominator maul & assault shield" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Repress*, Shield*, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
<profile id="882c-39e4-4fa8-65eb" name="Assault Shield" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">If this operative is equipped with a dominator maul & assault shield, it has a 3+ Save characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="aa34-a81e-6636-3dab" name="*Repress" hidden="false" targetId="d262-1668-3a65-4e7f" type="profile"/>
<infoLink id="7ba8-a0fc-bb04-ab3c" name="*Shield" hidden="false" targetId="06f6-a6c4-d1f6-7872" type="profile"/>
<infoLink id="a405-c8fa-52cd-82fe" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
<infoLink id="a37b-4482-83f5-ae46" name="Stun" hidden="false" targetId="a1e3-4e0b-f7c2-eb59" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9d9d-8bc8-bd22-2af2" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="2c3c-871c-0603-1b1a" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="7aec-6db8-05dd-7abe" name="Specialism" hidden="false" collective="false" import="true" targetId="a846-2029-ac45-9630" type="selectionEntryGroup"/>
<entryLink id="56c7-abe5-361d-7597" name="Equipment" hidden="false" collective="false" import="true" targetId="c248-f23b-f5b4-70c1" type="selectionEntryGroup"/>
<entryLink id="a3d5-ee74-ba3f-c099" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="95d5-5d50-9af9-ac75" name="Exaction 3 - Rigid Determination" hidden="false" collective="false" import="true" targetId="f802-9391-ba07-273c" type="selectionEntry"/>
<entryLink id="5712-68f4-9c2b-18a3" name="Exaction 2 - Precinct Champion" hidden="false" collective="false" import="true" targetId="39d2-b813-5154-8778" type="selectionEntry"/>
<entryLink id="09ff-c418-ac10-30d6" name="Exaction 5 - Judicious Efficiency" hidden="false" collective="false" import="true" targetId="3bb5-0067-8b7d-74b7" type="selectionEntry"/>
<entryLink id="d3e3-856e-590e-6ff8" name="Exaction 6 - Priority Endowment" hidden="false" collective="false" import="true" targetId="8930-f16c-39b6-7bcc" type="selectionEntry"/>
<entryLink id="181b-734f-28db-8538" name="Exaction 4 - No Lenience" hidden="false" collective="false" import="true" targetId="dd1d-be73-59b6-7fe8" type="selectionEntry"/>
<entryLink id="92ac-afa3-60b8-ed36" name="Exaction 1 - Obstinate" hidden="false" collective="false" import="true" targetId="96a3-56f0-c7a2-8efb" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="21ba-1681-f03c-8169" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6007-e280-ab91-5b51" name="Exaction 3 - Rigid Determination" hidden="false" collective="false" import="true" targetId="f802-9391-ba07-273c" type="selectionEntry"/>
<entryLink id="ed1f-7fef-42d4-0102" name="Exaction 2 - Precinct Champion" hidden="false" collective="false" import="true" targetId="39d2-b813-5154-8778" type="selectionEntry"/>
<entryLink id="3224-a309-eb76-6dbb" name="Exaction 5 - Judicious Efficiency" hidden="false" collective="false" import="true" targetId="3bb5-0067-8b7d-74b7" type="selectionEntry"/>
<entryLink id="1edd-16ba-d3cb-f78e" name="Exaction 6 - Priority Endowment" hidden="false" collective="false" import="true" targetId="8930-f16c-39b6-7bcc" type="selectionEntry"/>
<entryLink id="3981-97c7-a107-a30a" name="Exaction 4 - No Lenience" hidden="false" collective="false" import="true" targetId="dd1d-be73-59b6-7fe8" type="selectionEntry"/>
<entryLink id="17b1-d5b1-229b-3b6e" name="Exaction 1 - Obstinate" hidden="false" collective="false" import="true" targetId="96a3-56f0-c7a2-8efb" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0f89-2d92-63e1-99a2" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="77bb-55a6-7c18-421c" name="Exaction 3 - Rigid Determination" hidden="false" collective="false" import="true" targetId="f802-9391-ba07-273c" type="selectionEntry"/>
<entryLink id="ece7-509e-25af-ca37" name="Exaction 2 - Precinct Champion" hidden="false" collective="false" import="true" targetId="39d2-b813-5154-8778" type="selectionEntry"/>
<entryLink id="c383-186c-ce31-ecd2" name="Exaction 5 - Judicious Efficiency" hidden="false" collective="false" import="true" targetId="3bb5-0067-8b7d-74b7" type="selectionEntry"/>
<entryLink id="8088-5f1b-992d-8437" name="Exaction 6 - Priority Endowment" hidden="false" collective="false" import="true" targetId="8930-f16c-39b6-7bcc" type="selectionEntry"/>
<entryLink id="0a73-0bdb-af24-b0b4" name="Exaction 4 - No Lenience" hidden="false" collective="false" import="true" targetId="dd1d-be73-59b6-7fe8" type="selectionEntry"/>
<entryLink id="57a5-20e9-2f6b-b87c" name="Exaction 1 - Obstinate" hidden="false" collective="false" import="true" targetId="96a3-56f0-c7a2-8efb" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntries>
<selectionEntry id="ce12-747d-e650-b563" name="Combat shotgun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff70-b230-181a-f9b4" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="48fe-bd8a-26fa-825c" type="min"/>
</constraints>
<profiles>
<profile id="5dc4-f8bd-910f-6071" name="⌖ Combat shotgun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">-</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">-</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">-</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Each time this weapon is selected to make a shooting attack with, select one of the profiles below to use:</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="ce52-8da5-2413-e067" name="⌖ Combat shotgun - Close range" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="2+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7606-edec-13e7-9620" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="6059-f864-08a7-e61b" name="⌖ Combat shotgun - Long range" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="4+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7606-edec-13e7-9620" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">5+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="04b7-a757-c867-2ff6" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ebd6-5456-22b1-0997" name="Repression baton" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f49-2e8b-287e-d51b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a6f-d9de-6c5d-fac2" type="max"/>
</constraints>
<profiles>
<profile id="29bc-ec41-0323-3e97" name="⚔ Repression baton" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="96a3-56f0-c7a2-8efb" name="Exaction 1 - Obstinate" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a9f1-a737-a898-0417" type="max"/>
</constraints>
<profiles>
<profile id="d00c-4533-feed-9647" name="Obstinate" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Defence dice results of 5+ rolled for this operative that are successful saves are critical saves.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="39d2-b813-5154-8778" name="Exaction 2 - Precinct Champion" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f59c-0aaf-2d12-4ae7" type="max"/>
</constraints>
<profiles>
<profile id="35fd-c33f-9032-2009" name="Precinct Champion" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Improve the Weapon Skill characteristic of melee weapons this operative is equipped with by 1 (to a maximum of 2+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="f802-9391-ba07-273c" name="Exaction 3 - Rigid Determination" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="28e8-c199-d919-9c42" type="max"/>
</constraints>
<profiles>
<profile id="d19a-d458-ddad-5ca0" name="Rigid Determination" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative's Movement characteristics and to the Ballistic Skill and Weapon Skill characteristics of weapons it is equipped with.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="dd1d-be73-59b6-7fe8" name="Exaction 4 - No Lenience" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99bf-fa6f-a8b2-f9ed" type="max"/>
</constraints>
<profiles>
<profile id="2f00-c46f-00ee-3f6d" name="No Lenience" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative makes a shooting attack against an enemy operative that is not in Cover, ranged weapons it is equipped with have the Lethal 5+ special rule for that shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="8930-f16c-39b6-7bcc" name="Exaction 6 - Priority Endowment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d8b-d311-8c09-9ce6" type="max"/>
</constraints>
<profiles>
<profile id="ab08-266a-1fcd-1672" name="Priority Endowment" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">In the Select Equipment Step, when selecting equipment from your stash, you can select one item of equipment to equip this operative with for one less equipment point (to a minimum of OEP).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="3bb5-0067-8b7d-74b7" name="Exaction 5 - Judicious Efficiency" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99ee-31cb-158d-90c4" type="max"/>
</constraints>
<profiles>
<profile id="711f-1591-4644-ecbc" name="Judicious Efficiency" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">For the purposes of the Ruthless Efficiency ability, enemy operatives do not need to be within ⬟ of this operative.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="21a0-6b9e-b257-aea7" name="Webber" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="b016-4387-73eb-913e" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dd0e-4ce4-6097-d63a" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b016-4387-73eb-913e" type="max"/>
</constraints>
<profiles>
<profile id="1f47-d7e4-d0cc-1f33" name="⌖ Webber" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="bfc5-d389-8c89-9820" name="Arbites Castigator" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4092-e308-cfa8-f735" name="Castigator" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="9b77-a292-566e-b5a2" name="Engendered Focus" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">You can ignore any or all modifiers to this operative's characteristics (including modifiers to the weapons it is equipped with, but excluding its Defence characteristic).</characteristic>
</characteristics>
</profile>
<profile id="39f2-4bc4-ecbb-8434" name="Zealous Dedication" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative would lose a wound, roll one D6: on a 6, that wound is not lost.</characteristic>
</characteristics>
</profile>
<profile id="9a8b-6577-1cfa-91ec" name="Castigator's Arrest (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Fight action with this operative against a valid target with a Wounds characteristic of 10 or less. At the end of that combat, if neither operative has been incapacitated, the target is arrested until the end of the battle. While a friendly EXACTION SQUAD operative is within Engagement Range of no more than one arrested enemy operative and no other enemy operatives, that arrested enemy operative cannot perform any actions other than Pass. Operatives that can perform this action cannot themselves be arrested.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="768c-1d45-df2b-dced" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="f917-51aa-800f-83ae" name="Excruciator maul" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="411e-ee6d-d6b6-b2e1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b36-781a-faaf-6ef6" type="max"/>
</constraints>
<profiles>
<profile id="3e52-c007-b829-1210" name="Excruciator maul" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending, Stun</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b054-daf6-8352-f25" name="Rending" hidden="false" targetId="0550-3332-7a93-ab5b" type="rule"/>
<infoLink id="6da1-59a9-a038-1251" name="Stun" hidden="false" targetId="a1e3-4e0b-f7c2-eb59" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="121-3929-fc1e-c41d" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="74ac-d4e6-fd9a-fd8a" name="Arbites Chirurgant" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="b429-f2f3-382a-9692" name="Chirurgant" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="ea26-f4bd-930f-9399" name="Medic!" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, the first time another friendly EXACTION SQUAD operative would be incapacitated while Visible to and within ⬛ of this operative and not within Engagement Range of an enemy operative, if this operative is not within Engagement Range of an enemy operative, this operative can revive it. That friendly operative is not incapacitated, has 1 wound remaining, and if it was a shooting attack, any remaining attack dice are discarded. That friendly operative can then perform a free Dash action, but must finish that move within ▲ of this operative. Subtract 1 from both operatives' API.</characteristic>
</characteristics>
</profile>
<profile id="9157-6c19-5778-195e" name="Medi-kit (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly operative Visible to and within ▲ of this operative. That friendly operative regains 2D3 lost wounds. An operative cannot be selected for this action if it was revived using the Medic! ability during the same Turning Point. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b820-2d14-bbbb-d413" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="f790-9b9f-14e7-4a72" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
<entryLink id="8dbb-c5a-dfe2-cbea" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1111-cee5-3499-b0a4" name="Arbites Gunner" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="fc17-6fd7-d24d-8da7" name="Gunner" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="736-919-6a54-71b9" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="bfca-ca18-27c8-6501" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd70-2c7a-6f55-1da4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="18f5-fd17-c054-a3b7" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5747-ec4f-7043-449c" name="Grenade launcher" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="e10e-4d01-44d2-c2d5" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dd0e-4ce4-6097-d63a" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e10e-4d01-44d2-c2d5" type="max"/>
</constraints>
<profiles>
<profile id="1ca-fc9e-ce76-8ba4" name="⌖ Grenade launcher" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ec6b-9c5-8316-e2cd" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
</selectionEntry>
<selectionEntry id="c744-2f8-89cb-db0b" name="Heavy stubber" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="44f1-273d-22a6-57d7" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dd0e-4ce4-6097-d63a" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="44f1-273d-22a6-57d7" type="max"/>
</constraints>
<profiles>
<profile id="696f-17d7-8cc8-64d9" name="⌖ Heavy stubber" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Ceaseless, Fusillade, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b251-69e9-5ba1-cb70" name="Ceaseless" hidden="false" targetId="ce9a-aa0d-7b46-3d04" type="rule"/>
<infoLink id="82f4-618e-bd7e-c787" name="Fusillade" hidden="false" targetId="e2ae-574a-94ab-3550" type="rule"/>
<infoLink id="5e44-d620-bc65-8f31" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b250-ea10-510b-94a" name="Webber" hidden="false" collective="false" import="true" targetId="21a0-6b9e-b257-aea7" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2e0c-ac52-c098-ade" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="852e-114a-85d-7e18" name="Arbites Leashmaster" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="6a6c-9357-ebe1-6d15" name="Leashmaster" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="ae9b-c6a7-27c2-78f" name="Handler" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative is activated, you can also activate a ready friendly R-VR CYBER-MASTIFF operative at the same time. Complete their actions in any order.</characteristic>
</characteristics>
</profile>
<profile id="245a-b046-45a3-4a56" name="Attack Pattern" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">When this operative is selected for deployment, select one of the following attack patterns for a friendly R-VR CYBER-MASTIFF operative to have for the battle:
• Aggressive: Melee weapons it is equipped with gain the Relentless special rule.
• Swift: Add ⬤ to its Movement characteristic.
• Defensive: Improve its Save characteristic by 1.</characteristic>
</characteristics>
</profile>
<profile id="59bb-4773-2936-390b" name="Command (0AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly R-VR CYBER-MASTIFF operative within ⬟ of this operative and change its attack pattern.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2cb9-1609-e175-9622" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="bd1-5a1b-6ee4-b313" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
<entryLink id="9a1-bea8-3f37-c009" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5093-89be-f8f2-66df" name="Arbites Malocator" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c2be-6206-f0a9-153f" name="Malocator" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="789f-5429-3530-cba" name="Acute Focus" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, during this operative's activation, it can perform a mission action or the Pick Up action for one less action point (to a minimum of OAP).</characteristic>
</characteristics>
</profile>
<profile id="3eb6-c8f9-9fca-81da" name="Veriscant (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative in this operative's Line of Sight. Until the end of the Turning Point, each time a friendly EXACTION SQUAD operative fights in combat or makes a shooting attack against that enemy operative, in the Roll Attack Dice step of that combat or shooting attack, you can retain one of your successful normal hits as a critical hit instead. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f58-73c0-7346-12a3" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="1382-4434-4e74-5344" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
<entryLink id="adba-cda7-c687-ff6d" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1548-cf2c-f1fb-dbdb" name="Arbites Marksman" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="64c1-6b3-ec15-6be" name="Marksman" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="1799-26f7-7e56-f9d" name="Take Aim (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Until the end of the activation, the executioner shotgun this operative is equipped with gains the Balanced and No Cover special rules. This operative cannot perform this action while within ⬛ of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="55b2-1ca2-68ec-5716" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="e39c-21e7-756c-c127" name="Executioner shotgun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3bef-df9-a9bb-b631" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="51e4-921d-5016-36f2" type="max"/>
</constraints>
<profiles>
<profile id="6946-f059-72b-603a" name="⌖ Executioner shotgun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/1</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Heavy, Lethal 5+, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="80e4-c2c3-1704-7089" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
<infoLink id="a8bd-dffb-899-e302" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
<infoLink id="6122-a60d-e02d-3566" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
<infoLink id="4e10-84f2-eb42-a18d" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="6a04-7100-c80f-e456" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ecf8-7dac-ea4e-66fa" name="Arbites R-VR Cyber Mastiff" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1f69-30b1-8d18-2805" name="R-VR Cyber Mastiff" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="f2ca-adb0-6eb-859a" name="Beast" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Other than the Gather Evidence mission action, this operative cannot perform mission actions and cannot be equipped with equipment.</characteristic>
</characteristics>
</profile>
<profile id="d906-34ba-ffbe-813" name="Apprehend (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative within this operative's Engagement Range. That enemy operative suffers D3 mortal wounds, and until it's no longer within this operative's Engagement Range, it's apprehended. Each time an apprehended enemy operative would perform a Fall Back action, your opponent must roll one D6, adding 1 to the result for each wound it has remaining that's greater than this operative's remaining wounds. If the result is less than this operative's remaining wounds, that enemy operative cannot perform that action (the action points are refunded).</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="4b4c-bc80-6fc4-fda0" name="Mechanical bite" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67c9-aa43-1118-c597" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="143a-1ec-c4f5-344e" type="max"/>
</constraints>
<profiles>
<profile id="9247-d3ae-5cac-a6d2" name="Mechanical bite" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x" hidden="false" type="rule" id="9733-e43e-b213-b261" targetId="be29-25db-e215-b3b0"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry id="dcab-fa5e-cd70-6e" name="Arbites Revelatum" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="eb77-30e4-d246-4f5a" name="Revelatum" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="1d7c-a055-3076-4b20" name="First in the Field" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">At the end of the Initiative phase of the first Turning Point, if this operative is wholly within your drop zone, it can perform a free Normal Move action as if it can FLY.</characteristic>
</characteristics>
</profile>
<profile id="e811-eb6f-32ea-2a8c" name="Soulguilt Scan (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative Visible to and within ⬟ of this operative. Until the end of the Turning Point, friendly operatives Visible to and within ⬛ of this operative treat that enemy operative as if it has an Engage order.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="79a1-6bce-82ad-8eb9" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="7f48-ba15-68ff-5137" name="Scoped shotpistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f63f-6388-3255-bb69" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4602-543-202f-9cf1" type="max"/>
</constraints>
<profiles>
<profile id="118b-292d-d4f0-c420" name="⌖ Scoped shotpistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/1</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1f64-e969-fd56-ad34" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
<infoLink id="8bb4-a9f3-492b-85bf" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3aae-687-a7c1-3b37" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="31d0-3e6c-ad60-d40a" name="Arbites Subductor" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4a8c-3050-c78e-2e58" name="Subductor" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bbde-e9e0-b6f1-e29d" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="678c-5877-f629-7ae0" name="Shock maul & assault shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ac6-3112-d5fa-849b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea64-bce0-3738-e56a" type="max"/>
</constraints>
<profiles>
<profile id="dfab-b091-a4d4-177a" name="⚔ Shock maul & assault shield" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Repress*, Shield*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="227e-ec9a-e422-9af7" name="*Repress" hidden="false" targetId="d262-1668-3a65-4e7f" type="profile"/>
<infoLink id="2780-ac22-eac2-d4d0" name="*Shield" hidden="false" targetId="06f6-a6c4-d1f6-7872" type="profile"/>
<infoLink id="6aed-b117-f42-95c3" name="Stun" hidden="false" targetId="a1e3-4e0b-f7c2-eb59" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8e4c-c8c5-d120-b0f7" name="Arbites Vigilant" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="123b-5f96-d048-5417" name="Vigilant" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="50cf-7a3e-c4f9-10c9" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="8d16-f43a-4f8-48ae" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
<entryLink id="93ca-e46c-e1a5-b062" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ea-9b10-8fab-970c" name="Arbites Vox-signifier" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c0f3-ce87-f526-254a" name="Vigilant" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="3dd7-46ab-139-5f58" name="Precinct Vox-relay (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly EXACTION SQUAD operative (excluding R-VR CYBER-MASTIFF operatives) Visible to this operative. Add 1 to its APL This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b224-822c-ee4f-bfda" name="Ruthless Efficiency" hidden="false" targetId="1875-8a09-660c-c779" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="585d-5b0e-7806-4b52" name="Repression baton" hidden="false" collective="false" import="true" targetId="ebd6-5456-22b1-0997" type="selectionEntry"/>
<entryLink id="4e92-8675-6d04-7f16" name="Combat shotgun" hidden="false" collective="false" import="true" targetId="ce12-747d-e650-b563" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup id="c248-f23b-f5b4-70c1" name="Equipment" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dd0e-4ce4-6097-d63a" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="c61a-51a3-370d-bf55" scope="force" value="10" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ae04-fa76-36cd-17ec" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="ec45-433d-6ccb-d659" name="Shotpistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17ad-af9d-2151-92fa" type="max"/>
</constraints>
<profiles>
<profile id="7dbc-83cb-a09e-c306" name="⌖ Shotpistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="ce73-2c0e-7954-c05a" name="Reinforced Mirror-visor" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ccf-9e85-ebbd-c87f" type="max"/>
</constraints>
<profiles>
<profile id="605b-9053-d27d-55cf" name="Reinforced Mirror-visor" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">You can ignore any or all modifiers to this operative's APL and it is not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="08f7-7bd3-6c20-9f4d" name="Manacles" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee05-bb46-ebe8-a1d0" type="max"/>
</constraints>
<profiles>
<profile id="50a5-e12e-271e-d84d" name="Arrest (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Fight action with this operative against a valid target with a Wounds characteristic of 7 or less. At the end of that combat, if neither operative has been incapacitated, the target is arrested until the end of the battle. While a friendly EXACTION SQUAD operative is within Engagement Range of no more than one arrested enemy operative and no other enemy operatives, that arrested enemy operative cannot perform any actions other than Pass. Operatives that can perform this action cannot themselves be arrested.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="a42d-700a-446e-d6a9" name="Strobing Phosphor-lumen" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d756-8dc3-8bd0-8826" type="max"/>
</constraints>
<profiles>
<profile id="aa23-bb19-53fb-4b22" name="Strobing Phosphor-lumen" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time an enemy operative Visible to and within ⬟ of this operative fights in combat or makes a shooting attack against a friendly EXACTION SQUAD operative within ⬤ of this operative, in the Roll Attack Dice step of that combat or shooting attack, your opponent cannot re-roll their attack dice.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="a438-64e4-a23b-295c" name="Frag Grenade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>