-
Notifications
You must be signed in to change notification settings - Fork 92
/
2024 - Inquisitorial Agents.cat
4127 lines (4120 loc) · 312 KB
/
2024 - Inquisitorial Agents.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 library="false" id="a018-5b5c-33fa-f85b" name="Inquisitorial Agents" gameSystemId="c521-ad27-44df-f959" gameSystemRevision="2" revision="2" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<forceEntries>
<forceEntry name="Kill Team" id="40bd-d31d-7da3-bc4c" hidden="false">
<categoryLinks>
<categoryLink name="Configuration" hidden="false" id="25ea-07bc-3c00-3bcc" targetId="874b-0390-e5e2-1daa"/>
<categoryLink name="Reference" hidden="false" id="216b-f053-e824-b90b" targetId="b318-a8d7-2d38-99a3"/>
<categoryLink name="Leader" hidden="false" id="90bc-d337-a25c-603e" targetId="d999-8cad-8145-4efe"/>
<categoryLink name="Operative" hidden="false" id="626e-9415-fb83-8e35" targetId="cf83-4496-b58e-ac82">
<constraints>
<constraint type="min" value="11" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="1fc2-5c5d-dbf8-fdc5-min" includeChildSelections="false"/>
<constraint type="max" value="11" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="1fc2-5c5d-dbf8-fdc5-max" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="6" field="1fc2-5c5d-dbf8-fdc5-min">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="7" field="selections" scope="40bd-d31d-7da3-bc4c" childId="cf83-4496-b58e-ac82" shared="true" includeChildSelections="true"/>
<condition type="atLeast" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" childId="1420-40fd-1151-dd74" shared="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="6" field="1fc2-5c5d-dbf8-fdc5-max">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="7" field="selections" scope="40bd-d31d-7da3-bc4c" childId="cf83-4496-b58e-ac82" shared="true" includeChildSelections="true"/>
<condition type="atLeast" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" childId="1420-40fd-1151-dd74" shared="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</categoryLink>
<categoryLink name="Requisitioned Operatives" hidden="false" id="0f96-87ff-ccf8-3c5c" targetId="1420-40fd-1151-dd74"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry type="model" import="true" name="Interrogator" hidden="false" id="8928-0427-d654-2b47">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="32a8-758d-2c86-c3cc" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="bfc5-9af3-f9ee-2fd5" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="e13f-fa61-28c8-92e6" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Leader" hidden="false" id="6e2c-4224-5b15-e51c" targetId="d999-8cad-8145-4efe" primary="true"/>
<categoryLink name="Interrogator" hidden="false" id="68a5-d80b-0a00-03a8" targetId="25ae-3fa6-eba1-e07e" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Interrogator" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="fb7c-6ed7-029a-5776">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Inquisitorial Tomes" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="d62d-3366-4db0-d822">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">STRATEGIC GAMBIT and/or when this operative is activated. Select one of the following INQUISITORIAL TOME rules for this operative to have, and one for a friendly INQUISITORIAL AGENT TOME-SKULL operative to have (they can be the same, and ignore the rule you didn’t select for each operative):
- **Denunciation**: Whenever a friendly INQUISITORIAL AGENT operative is shooting against, fighting against or retaliating against an enemy operative within 2" of friendly operatives with this rule, add 1 to the Atk stat of that friendly operative’s weapons.
- **Sanctification**: Whenever an enemy operative is shooting against, fighting against or retaliating against a friendly INQUISITORIAL AGENT operative within 2" of friendly operatives with this rule, subtract 1 from the Atk stat of that enemy operative’s weapons.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Extended stock relic autopistol" hidden="false" id="caa7-a34e-3e81-92d2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e603-d02c-57ff-f0de-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e603-d02c-57ff-f0de-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Extended stock relic autopistol" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="0535-2299-cbcb-8e5f">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">2/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 12", Lethal 5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="802e-313f-e60c-5d91" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Lethal x+" id="8417-3139-e890-5071" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="22ff-c5dd-b9c4-0404" type="selectionEntry" targetId="9974-9ded-0358-41eb"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="290f-d504-c816-83e1-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="290f-d504-c816-83e1-max" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tome-skull" hidden="false" id="fcc8-435c-a75c-d806">
<profiles>
<profile name="Tome-skull" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="b18d-50d5-10bf-bc1e">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">5</characteristic>
</characteristics>
</profile>
<profile name="Consecrated Tome" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="7ef9-bb2b-7a52-5972">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative can have an INQUISITORIAL TOME rule (see INTERROGATOR). Note it keeps that rule even if that friendly INTERROGATOR operative is removed from the killzone. The first time this operative is incapacitated during the battle, you can set it back up within control range of a friendly INTERROGATOR operative and select an INQUISITORIAL TOME rule for it to have. If you do, that INTERROGATOR operative cannot itself have an INQUISITORIAL TOME rule for the rest of the battle (although it can continue to change this operative’s as normal).</characteristic>
</characteristics>
</profile>
<profile name="Expendable" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="c378-ecad-cb96-8d24">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative is ignored for your opponent’s kill/elimination op (when it’s incapacitated, and when determining your starting number of operatives). It’s also ignored for victory conditions that require operatives to ‘escape’, ‘survive’ or be incapacitated (if it escapes/survives/is incapacitated, determining how many operatives must escape/survive/be incapacitated, etc.).</characteristic>
</characteristics>
</profile>
<profile name="Group Activation" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="dbfa-2b46-4ac4-01b8">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is expended, you must then activate a ready friendly INQUISITORIAL AGENT INTERROGATOR operative (if able) before your opponent activates. The same is true in reverse (INTERROGATOR followed by TOME-SKULL). When that other operative is expended, your opponent then activates as normal.</characteristic>
</characteristics>
</profile>
<profile name="Machine" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="a102-372e-5435-8fe4">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">- This operative cannot perform any actions other than **Charge**, **Dash**, **Fall Back** and **Reposition**.
- It cannot retaliate or assist in a fight.
Whenever determining control of a marker, treat this operative’s APL stat as 1 lower. Note this isn’t a change to its APL stat, so any changes are cumulative with this.
- Whenever this operative has a Conceal order and is in cover, it cannot be selected as a valid target, taking precedence over all other rules (e.g. Seek, Vantage terrain) except being within 2".</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="94f3-a2a0-242c-fddb-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="94f3-a2a0-242c-fddb-max" includeChildSelections="false"/>
</constraints>
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="c3f9-0535-12b4-15ce" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="412d-a402-bd37-6160" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="0c96-b7b2-baf8-8964" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Tome-Skull" hidden="false" id="18e9-f5c6-96c0-fa7a" targetId="633b-70ac-5960-fb6d" primary="false"/>
<categoryLink name="Operative" hidden="false" id="2efc-2b4e-5a49-ce01" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="-" hidden="false" id="a547-b063-65aa-6a37" targetId="816f-d700-2068-2271" type="selectionEntry"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Autosavant" hidden="false" id="d8b6-609d-e36e-046c">
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="aa65-3e33-1f5f-77e2" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Scrivener" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="37da-4aaa-5551-5dca">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Each subsequent time your opponent uses each ploy during the battle (excluding Command Re-roll), you gain 1CP (to a maximum of 2CP per turning point).</characteristic>
</characteristics>
</profile>
<profile name="Autosavant" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="9542-9217-4c24-5b29">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">4+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Irrefutable Report" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="6ecb-c1be-84c6-f278">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative contests an objective marker or one of your mission markers, it always controls that marker. This takes precedence over all other rules</characteristic>
</characteristics>
</profile>
<profile name="Lightly Armed" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="ae24-1489-019d-ecfd">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative cannot use any weapons that aren’t on its datacard, or perform unique actions.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mechanical appendages" hidden="false" id="bf67-e317-3978-113b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c5e8-c3f9-a827-a554-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c5e8-c3f9-a827-a554-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Mechanical appendages" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="6e7f-91a6-1455-ce0a">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">3</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">5+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">1/2</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="d214-e6d7-c0d9-1e0a" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="d811-eadb-26d2-3a34" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="0241-9a30-4ed2-d76d" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Autosavant" hidden="false" id="756b-620b-c615-e955" targetId="60f8-1c96-e347-3bce" primary="false"/>
<categoryLink name="Operative" hidden="false" id="05b0-659b-43a0-d4b4" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Questkeeper" hidden="false" id="4099-34aa-dbbc-5cfe">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="d064-ceb0-619b-aadf" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="0e48-3485-d4f9-5aa9" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="f0f8-cbb3-a5ab-2da8" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Questkeeper" hidden="false" id="4f3b-f661-8263-75f2" targetId="74fc-3b67-57e2-123b" primary="false"/>
<categoryLink name="Operative" hidden="false" id="fe63-e48f-6031-62ad" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="eab2-c614-08cf-89eb" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Questkeeper" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="5988-3038-1875-6a92">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Irrepressible Purpose" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="9a41-0ef4-74f7-00fd">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">If this operative is incapacitated while fighting or retaliating, you can strike the enemy operative in that sequence with one of your unresolved successes before it’s removed from the killzone.</characteristic>
</characteristics>
</profile>
<profile name="Zealot" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="1e66-08ae-304b-a5f4">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an attack dice inflicts damage of 3 or more on this operative, roll one D6: on a 5+, subtract 1 from that inflicted damage.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" id="fa50-131e-d790-06f5" type="selectionEntry" targetId="1960-251b-29e1-77a8"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Eviscerator" hidden="false" id="8147-7a30-2bbe-a8d6">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="db02-8f4e-248c-85a3-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="db02-8f4e-248c-85a3-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Eviscerator" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="7de6-4fa8-84bd-fb49">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">5/6</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Brutal</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Brutal" id="657e-9191-0361-bcb9" hidden="false" type="rule" targetId="5151-5449-ca81-70ed"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death World Veteran" hidden="false" id="86fb-7721-6329-7917">
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="b01a-e0ad-d661-3859-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Death World Veteran" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="fe9b-f46f-c9be-58bf">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Hunter" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="7391-b0f4-3f21-bcb6">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative can perform the Charge action while it has a Conceal order.</characteristic>
</characteristics>
</profile>
<profile name="Weathered" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="6989-b2d3-0536-cec5">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once per turning point, when this operative is fighting or retaliating, in the Resolve Attack Dice step, you can ignore the damage inflicted on it from one normal success.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" id="2f06-9c4b-1cf9-33e1" type="selectionEntry" targetId="1960-251b-29e1-77a8"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Knife" hidden="false" id="057c-71b9-ea57-4424">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="772f-e1c8-b386-04d7-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="772f-e1c8-b386-04d7-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Knife" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="487a-143a-2562-21ab">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">1</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">5/7</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Lethal 5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="5ca4-4f63-7135-9539" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Polearm" hidden="false" id="312e-9e5b-5a8a-17e2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5942-06cc-e027-05fd-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5942-06cc-e027-05fd-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Polearm" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="8c0a-9e76-f08b-f42a">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="c27f-e722-10f6-9d5a" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="47cb-cf53-bf4d-3156" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="65e0-23a1-e859-626f" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Death World Veteran" hidden="false" id="85e8-0794-23ec-610e" targetId="5591-67e3-1bbb-e7f9" primary="false"/>
<categoryLink name="Operative" hidden="false" id="4d68-1e00-cc61-6915" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Enlightener" hidden="false" id="2c98-e848-a197-ceb4">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="f8b7-485f-a828-4fb9" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="38c0-cd9b-c5c6-3db9" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="425b-10ee-8a76-8333" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Enlightener" hidden="false" id="dc0e-178f-922f-e106" targetId="2416-4c76-97af-719f" primary="false"/>
<categoryLink name="Operative" hidden="false" id="17e6-42ee-c1aa-589c" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Enlightener" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="a256-6d91-531b-bb0a">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="No Escape" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="0fe7-beba-5548-fbd1">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an enemy operative would perform the **Fall Back** action while within control range of this operative, you can use this rule. If you do, roll one D6, subtracting 1 from the result if that enemy operative has a higher Wounds stat than this operative, and adding 1 if that enemy operative is wounded: on a 4+, that enemy operative cannot perform that action during that activation/counteraction (the AP spent on it isn’t refunded).</characteristic>
</characteristics>
</profile>
<profile name="Extract Information" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="8259-cd3a-d1eb-907d">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an enemy operative is incapacitated within this operative’s control range, you gain 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" id="b097-12d9-02f4-2553" type="selectionEntry" targetId="1960-251b-29e1-77a8"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Paired blades" hidden="false" id="c90d-503e-bce9-6bb3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5a21-1376-a354-0f08-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5a21-1376-a354-0f08-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Paired blades" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="de9a-8fa7-2091-942d">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Balanced, Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rending" id="33dd-d5b5-7f94-228a" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
<infoLink name="Balanced" id="3f6a-1f1e-14e7-46fa" hidden="false" type="rule" targetId="28f7-0d96-d1fc-f75b"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="41f2-88c8-0c31-1a67" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Requisitioned Gun Servitor" hidden="false" id="2a89-c31c-1a95-cc45">
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="53f8-fad5-73db-d05b" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="2" field="53f8-fad5-73db-d05b">
<conditions>
<condition type="atLeast" value="8" field="selections" scope="force" childId="9a10-d7f8-0b97-32bc" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Requisitioned Gun Servitor" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="9a4e-050d-033a-4e77">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">1</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">4+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">11</characteristic>
</characteristics>
</profile>
<profile name="Lobotomised" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="f466-b599-954f-5439">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is activated, if it’s visible to and within 3" of another friendly INQUISITORIAL AGENT operative (excluding GUN SERVITOR) or vice versa, add 1 to this operative’s APL stat until the end of that activation.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Servo-claw" hidden="false" id="55f9-77c5-79fa-d2d9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0fc0-cd7f-337c-cb51-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0fc0-cd7f-337c-cb51-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Servo-claw" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="bda7-e2e9-0161-7889">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">3</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" id="2c5a-8b2d-8637-275f" hidden="false" defaultSelectionEntryId="none">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ba5d-437d-7629-eac7-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ba5d-437d-7629-eac7-max" includeChildSelections="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Heavy bolter" hidden="false" id="68a7-cde3-9be2-f8dd">
<profiles>
<profile name="⌖ Heavy bolter (focused)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="aba9-3b59-7ee3-ecdb">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">5</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Heavy (Dash Only), Piercing Crits 1</characteristic>
</characteristics>
</profile>
<profile name="⌖ Heavy bolter (sweeping)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="9755-7aff-4130-8979">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Heavy (Dash Only), Piercing Crits 1, Torrent 1"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Heavy" id="7020-7280-6229-d4c5" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Torrent x" id="3863-1262-a0f3-5c22" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
<infoLink name="Piercing x" id="b55a-d2d4-cd78-2728" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="b237-e77d-876b-9088" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Multi-melta" hidden="false" id="7a82-3e36-774e-2281">
<profiles>
<profile name="⌖ Multi-melta" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="34e0-0474-9643-b363">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">6/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Devastating 4, Heavy (Dash only), Piercing 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Piercing x" id="0446-568b-54fe-a8d0" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Heavy" id="d94d-6d67-b5bc-f450" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Devastating x" id="57e7-169f-f891-4ef2" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="9820-174e-80df-f565" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plasma cannon" hidden="false" id="a0ff-3ae1-e49d-19e4">
<profiles>
<profile name="⌖ Plasma cannon (standard)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="ac06-9fa8-7e08-fe12">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/6</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Blast 2", Heavy (Dash Only), Piercing 1</characteristic>
</characteristics>
</profile>
<profile name="⌖ Plasma cannon (supercharge)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="1d33-8f70-7842-b106">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">5/6</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Blast 2", Heavy (Dash Only), Hot, Lethal 5+, Piercing 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Heavy" id="a76b-1b8c-99ac-0ed9" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Hot" id="82d9-70e4-1b77-c708" hidden="false" type="rule" targetId="ec63-40e6-6282-8420"/>
<infoLink name="Blast x" id="b2b2-13b2-8294-197b" hidden="false" type="rule" targetId="0d74-0977-b481-bd13"/>
<infoLink name="Lethal x+" id="17a5-f2f8-facc-9dbd" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
<infoLink name="Piercing x" id="bca5-9d4d-8cae-e3d6" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="31a3-bb90-7b08-0b21" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="efde-dcbc-74ae-5c96" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="efaa-5313-bd96-9db2" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="8fe2-b3f0-9b8f-c7a6" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Gun Servitor" hidden="false" id="f1b7-34df-3ee2-350d" targetId="9f7b-19ef-c149-bf4e" primary="false"/>
<categoryLink name="Operative" hidden="false" id="dede-6970-e55e-880f" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Mystic" hidden="false" id="988d-0cd8-fc21-f302">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="3a28-17a4-ed83-c8d7" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="1d3b-055b-60fb-18e5" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="7602-f1a1-abf2-4506" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Operative" hidden="false" id="54ac-e3bf-bdb2-317c" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Mystic" hidden="false" id="ece0-8c26-9ecb-bc01" targetId="6a15-e7bb-3abc-3d5a" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Mystic" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="2c73-1b23-9ad6-e5a0">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Icon Bearer" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="b606-1025-5ce3-ef24">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever determining control of a marker, treat this operative’s APL stat as 1 higher. Note this isn’t a change to its APL stat, so any changes are cumulative with this.</characteristic>
</characteristics>
</profile>
<profile name="Scry (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="09ed-d380-ac73-be06">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ PSYCHIC. Select one friendly INQUISITORIAL AGENT operative within 6" of this operative, then select one of the following effects to last until the start of this operative’s next activation, until it’s incapacitated or until it performs this action again (whichever comes first):
- Guidance: PSYCHIC. Whenever the selected operative is shooting, fighting or retaliating, in the Roll Attack Dice step, you can retain one of your fails as a normal success instead of discarding it, or retain one of your normal successes as a critical success instead.
- Protection: PSYCHIC. Whenever an operative is shooting the selected operative, in the Roll Defence Dice step, you can retain one of your fails as a normal success instead of discarding it, or retain one of your normal successes as a critical success instead.
◆ This operative cannot perform this action while within control range of an enemy operative. This operative can perform this action twice during its activation, but you must select different effects if it does.</characteristic>
</characteristics>
</profile>
<profile name="Lightly Armed" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="88f7-c8be-9abe-6a33">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative cannot use any weapons that aren’t on its datacard.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="f111-1a01-a6cf-ac8b" type="selectionEntry" targetId="9974-9ded-0358-41eb"/>
<entryLink import="true" name="Autopistol" hidden="false" id="be2f-f7e1-82d0-c9f4" type="selectionEntry" targetId="1960-251b-29e1-77a8"/>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="f503-3d9f-c3c3-b5c9" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Hexorcist" hidden="false" id="b5ac-0a6d-f915-fbb0">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="3f8c-d83b-e012-0ade" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="f6f7-81c7-09ba-c5ee" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="3369-f824-e4eb-0b34" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Hexorcist" hidden="false" id="8100-0c8e-5c26-ab5d" targetId="05c9-7b4d-c9ba-4529" primary="false"/>
<categoryLink name="Operative" hidden="false" id="fe3a-6bcc-560e-4912" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Hexorcist" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="833d-4d0f-383d-6665">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Hexorcise" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="baa1-ba23-ba7e-2a2c">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an enemy operative is visible to and within 6" of this operative, your opponent cannot re-roll their attack or defence dice for that operative.</characteristic>
</characteristics>
</profile>
<profile name="Chasten (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="c193-ba79-fa15-205c">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Select one enemy operative that's a valid target for this operative and within 6" of it, then select one additional rule (including a unique action) that enemy operative has on its datacard (excluding a weapon rule). Until the end of that enemy operative’s next activation, it’s treated as not having that additional rule.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="28c3-94fb-71e7-e99b" type="selectionEntry" targetId="9974-9ded-0358-41eb"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Shotgun" hidden="false" id="4ca3-54b1-5978-2b52">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f06a-51d0-c7bf-aa82-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f06a-51d0-c7bf-aa82-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Shotgun" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="6d92-8249-16f6-6685">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 6"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="5810-eebd-ae11-acbf" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="a5bc-ade1-a156-2d2d" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Penal Legionnaire" hidden="false" id="acb1-cfb2-2226-5bb8">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="0711-b06f-edf4-698d" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="12d0-252f-5aca-322b" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="fac9-0c6f-73b7-7b8c" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Penal Legionnaire" hidden="false" id="dfdf-0c5a-9282-05d3" targetId="7196-52a7-36d8-f764" primary="false"/>
<categoryLink name="Operative" hidden="false" id="6a88-4325-58d4-52e9" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Chem-mask" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="ca6c-58af-bf6d-0494">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">You can ignore any changes to this operative’s APL stat, and any changes to its stats from being injured. This operative isn’t affected by enemy operatives’ Shock and Stun weapon rules.</characteristic>
</characteristics>
</profile>
<profile name="Penal Legionnaire" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="1136-5338-4607-315c">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Cruel" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="38da-8bfb-0ba1-725a">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is shooting against, fighting against or retaliating against a wounded enemy operative, this operative’s weapons have the Relentless weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hand flamer" hidden="false" id="8067-f371-5d15-18b9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8a08-bc00-b5cd-7315-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8a08-bc00-b5cd-7315-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Hand flamer" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="b3dc-1091-3533-a840">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 6", Saturate, Torrent 1"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="fa65-a22c-2d72-8ba4" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Saturate" id="f591-1eff-ba65-cc58" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
<infoLink name="Torrent x" id="be82-4d87-c0f0-351e" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Chainsword" hidden="false" id="1332-feef-8c77-7e90">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4f4d-a44c-4a9a-04e5-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4f4d-a44c-4a9a-04e5-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Chainsword" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="e53d-b16b-4a5c-999e">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="b894-b952-9518-a2d0" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Pistolier" hidden="false" id="a851-d593-d412-2fae">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="815e-a4db-df96-b0b9" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="f305-60cb-ea5f-b83a" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Inquisition" hidden="false" id="1e5e-c453-fb90-c716" targetId="1306-2ced-2ea6-234d" primary="false"/>
<categoryLink name="Pistolier" hidden="false" id="63f7-5083-f8bf-de45" targetId="101a-4f5e-02b1-6881" primary="false"/>
<categoryLink name="Operative" hidden="false" id="a4b1-1dec-1594-31cb" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="940c-c145-89f5-8eec" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Pistolier" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="9865-7de8-1dff-f4ad">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Pistolier" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="9593-8c53-579a-2c3c">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">You can ignore any changes to the Hit stat of this operative’s ranged weapons.</characteristic>
</characteristics>
</profile>
<profile name="Pistol Barrage (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="954a-f0a3-e106-8ebc">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Perform two free Shoot actions with this operative (this takes precedence over action restrictions). You must select a profile of its scoped plasma pistol for one action and its suppressed autopistol for the other (in any order).
◆ This operative cannot perform this action while it has a Conceal order, or during an activation in which it performed the Shoot action (or vice versa).</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="741e-0f1a-b543-38ca" type="selectionEntry" targetId="9974-9ded-0358-41eb"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Scoped plasma pistol" hidden="false" id="7190-2822-ce6b-52f5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="585f-a84c-7651-0cc3-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="585f-a84c-7651-0cc3-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Scoped plasma pistol (standard)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="afbe-3423-bf53-2869">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 12", Piercing 1</characteristic>
</characteristics>
</profile>
<profile name="⌖ Scoped plasma pistol (supercharge)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="273a-87f8-d415-1b80">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 12", Hot, Lethal 5+, Piercing 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Piercing x" id="b727-7e39-d02f-ebd4" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Hot" id="6b33-b96e-0502-d1d3" hidden="false" type="rule" targetId="ec63-40e6-6282-8420"/>
<infoLink name="Lethal x+" id="b1ef-ed05-ab02-5664" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
<infoLink name="Range x" id="c24e-cd04-0b32-a0ea" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Suppressed autopistol" hidden="false" id="b42a-afd1-d0d7-428e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0eaa-3496-6339-c895-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0eaa-3496-6339-c895-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Suppressed autopistol" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="cf98-94a3-2e21-daa6">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">2/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 8", Silent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="6ee3-5cc1-348f-0826" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Silent" id="ab5e-1771-c8ea-b9e3" hidden="false" type="rule" targetId="1e3c-23c9-c6e2-9f62"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sister of Silence Vigilator" hidden="false" id="2ba5-b7d1-0496-edcf">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="ac8b-3fa4-b609-3083" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="b704-25d3-3818-5a74" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Anathema Psykana" hidden="false" id="2141-99aa-d7ba-aa3d" targetId="2f4c-9060-7d8a-942f" primary="false"/>
<categoryLink name="Sister of Silence" hidden="false" id="c863-67a5-4e8a-e11c" targetId="a1e3-d723-2a14-f3ff" primary="false"/>
<categoryLink name="Requisitioned Operatives" hidden="false" id="0a49-679d-a0c4-524a" targetId="1420-40fd-1151-dd74" primary="true"/>
<categoryLink name="Vigilator" hidden="false" id="7a2d-0067-417a-790c" targetId="51f3-ddb7-f28a-561f" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Vigilator" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="fdbb-51eb-1bf0-e65d">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">3+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="5" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="0452-2ce0-ccdb-b9b4" includeChildSelections="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Executioner greatblade" hidden="false" id="7e16-a399-b8c0-69fa">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3628-f967-4df2-354f-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3628-f967-4df2-354f-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Executioner greatblade" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="fbf2-0c3a-c798-a639">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/6</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Lethal 5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="ebc3-44de-b868-3452" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Psychic Null" id="6ab7-d7ac-e889-33f1" hidden="false" type="profile" targetId="5899-a0c0-1d45-8f6f"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sister of Silence Prosecutor" hidden="false" id="fd4e-227f-392d-fe6c">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="582b-2050-5840-a967" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="5f16-e78a-4fc7-3cd4" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Anathema Psykana" hidden="false" id="9ac8-ca8f-c066-ebb0" targetId="2f4c-9060-7d8a-942f" primary="false"/>
<categoryLink name="Sister of Silence" hidden="false" id="25c8-181f-695b-f0ee" targetId="a1e3-d723-2a14-f3ff" primary="false"/>
<categoryLink name="Prosecutor" hidden="false" id="af45-c433-4cb1-b13c" targetId="a0ce-7fbb-5c0e-bb35" primary="false"/>
<categoryLink name="Requisitioned Operatives" hidden="false" id="5533-14b8-f7ad-c300" targetId="1420-40fd-1151-dd74" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Prosecutor" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="5e19-0011-7f70-1374">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">3+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="5" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="2aef-a775-8799-3d28" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Gun butt" hidden="false" id="05f9-cd9f-40c5-5228" type="selectionEntry" targetId="40cd-fac5-7694-59e3"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Boltgun" hidden="false" id="ed03-7919-eb6d-beed">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2ec3-ae47-065b-081b-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2ec3-ae47-065b-081b-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Boltgun" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="2e4c-ce42-af8c-d4d9">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Psychic Null" id="8042-cf95-8e24-e156" hidden="false" type="profile" targetId="5899-a0c0-1d45-8f6f"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sister of Silence Witchseeker" hidden="false" id="acd2-9c37-78a8-f5c5">
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="0c6b-afd6-0d05-c6a6" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="d840-8eba-dd33-bf73" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Anathema Psykana" hidden="false" id="59c5-d4c8-9c56-e140" targetId="2f4c-9060-7d8a-942f" primary="false"/>
<categoryLink name="Sister of Silence" hidden="false" id="c7b6-39f2-5795-dc3a" targetId="a1e3-d723-2a14-f3ff" primary="false"/>
<categoryLink name="Requisitioned Operatives" hidden="false" id="cfa1-2815-0f2e-64f6" targetId="1420-40fd-1151-dd74" primary="true"/>
<categoryLink name="Witchseeker" hidden="false" id="e3bc-61f0-bada-9f57" targetId="5cf9-943f-9eb4-cd83" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Witchseeker" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="d694-a258-9ee1-eb6c">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">3+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="5" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="25b9-3466-9eaa-88fb" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Gun butt" hidden="false" id="b036-64cb-f00c-4087" type="selectionEntry" targetId="40cd-fac5-7694-59e3"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Flamer" hidden="false" id="3dbe-9cc5-2f35-23c2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4bda-7f7f-5aef-82ab-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4bda-7f7f-5aef-82ab-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Flamer" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="b14f-ff50-611d-5270">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 8", Saturate, Torrent 2"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="5078-c7fa-b54f-d69f" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Saturate" id="0012-3bb3-bc67-8a37" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
<infoLink name="Torrent x" id="82ec-3c7d-454a-ae05" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Psychic Null" id="cdb5-92e2-0c48-75a9" hidden="false" type="profile" targetId="5899-a0c0-1d45-8f6f"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tempestus Scion Vox-Operator" hidden="false" id="b815-0e0d-d284-9a34">
<constraints>
<constraint type="max" value="1" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="3910-9753-d9ec-3da9" includeChildSelections="false"/>
</constraints>
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="8bde-7427-f485-4a3a" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="3f63-a6a1-ec31-09d5" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="d05b-8496-63ed-656f" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Tempestus Scion" hidden="false" id="6915-50db-e2a4-f218" targetId="95a3-dc6b-f591-59f2" primary="false"/>
<categoryLink name="Vox-Operator" hidden="false" id="9d9f-48b6-30d2-aaa2" targetId="1ab9-9d92-cded-4a4f" primary="false"/>
<categoryLink name="Requisitioned Operatives" hidden="false" id="7cd6-5117-0fad-4aeb" targetId="1420-40fd-1151-dd74" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Tempestus Scion Vox-Operator" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="5540-be82-d96b-3d56">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">4+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Signal (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="48c6-774f-f408-333a">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ SUPPORT. Select one other friendly INQUISITORIAL AGENT operative in the killzone. Until the end of that operative’s next activation, add 1 to its APL stat.
◆ This operative can perform this action twice during its activation, but cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Gun butt" hidden="false" id="0c93-9984-87e4-94f3" type="selectionEntry" targetId="40cd-fac5-7694-59e3"/>
<entryLink import="true" name="Hot-shot lasgun" hidden="false" id="d99f-d023-74d1-e125" type="selectionEntry" targetId="5983-0663-997f-0baf"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tempestus Scion Gunner" hidden="false" id="6966-5f5c-68bf-1542">
<constraints>
<constraint type="max" value="2" field="selections" scope="40bd-d31d-7da3-bc4c" shared="true" id="3296-e537-2655-aab4" includeChildSelections="false"/>
</constraints>
<categoryLinks>
<categoryLink name="Inquisitorial Agent" hidden="false" id="4f80-0966-d693-c3b6" targetId="9a10-d7f8-0b97-32bc" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="4f14-f48d-7ea2-b364" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="530b-3a5b-6e56-4eba" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Tempestus Scion" hidden="false" id="3a8d-97f6-60de-633a" targetId="95a3-dc6b-f591-59f2" primary="false"/>
<categoryLink name="Requisitioned Operatives" hidden="false" id="8b9f-9493-b55a-0aa3" targetId="1420-40fd-1151-dd74" primary="true"/>
<categoryLink name="Gunner" hidden="false" id="b37d-05ab-b517-d6fa" targetId="3033-7558-d28f-53cf" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Tempestus Scion Trooper" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="1ccc-c688-1454-b83b">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">4+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Adaptive Equipment" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="276c-584a-eec9-a834">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">You can do each of the following once per turning point:
- One friendly INQUISITORIAL AGENT TEMPESTUS SCION TROOPER operative can perform the Smoke Grenade action.
- One friendly INQUISITORIAL AGENT TEMPESTUS SCION TROOPER operative can perform the Stun Grenade action.
The rules for these actions are found in universal equipment. Performing these actions using this rule doesn’t count towards their action limits (i.e. if you also select those grenades from equipment).</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Gun butt" hidden="false" id="78fb-f934-0b8c-2f4a" type="selectionEntry" targetId="40cd-fac5-7694-59e3"/>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" id="beb8-8d07-184e-13c4" hidden="false" defaultSelectionEntryId="none">