-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy path2021 - Inquisitorial Agents.cat
7104 lines (7104 loc) · 573 KB
/
2021 - 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="580b-d492-eeb7-515d" name="Inquisitorial Agents" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="7" revision="22" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry name="INQUISITORIAL AGENT" hidden="false" id="762e-9a1c-ad3a-3424"/>
<categoryEntry name="Inquisition" hidden="false" id="307-ad5e-52b1-3bcd"/>
<categoryEntry name="Interrogator" hidden="false" id="c73e-eeee-3615-dbbe"/>
<categoryEntry name="Tome-skull" hidden="false" id="79b4-d530-188a-a8e8"/>
<categoryEntry name="Autosavant" hidden="false" id="1d69-c184-dca1-7652"/>
<categoryEntry name="Questkeeper" hidden="false" id="638-d61a-186c-b800"/>
<categoryEntry name="Death World Veteran" hidden="false" id="fa1a-9176-6479-ad0d"/>
<categoryEntry name="Enlightener" hidden="false" id="2e21-5fda-f1f6-c87d"/>
<categoryEntry name="Gun Servitor" hidden="false" id="54a8-123c-6127-cf18"/>
<categoryEntry name="Hexorcist" hidden="false" id="1bcf-3f1f-ca63-48d4"/>
<categoryEntry name="Mystic" hidden="false" id="8c85-72a4-3829-d47b"/>
<categoryEntry name="Penal Legionnaire" hidden="false" id="84e1-aaa2-adb6-435a"/>
<categoryEntry name="Pistolier" hidden="false" id="27bb-b755-46db-fb50"/>
<categoryEntry name="Anathema Psykana" hidden="false" id="ba5-efe1-f6cd-fb9e"/>
<categoryEntry name="Prosecutor" hidden="false" id="ce9f-cdc7-416f-e980"/>
<categoryEntry name="Vigilator" hidden="false" id="6ca9-20ce-a52a-8901"/>
<categoryEntry name="Witchseeker" hidden="false" id="a0d1-95ed-8fff-b669"/>
<categoryEntry name="Comms" hidden="false" id="f4a7-72d6-9caa-fd5b"/>
<categoryEntry name="Trooper" hidden="false" id="64d5-91ea-8301-6e28"/>
<categoryEntry name="AP2" id="da3c-a927-ef4f-5c9b" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry type="model" import="true" name="Interrogator Agent" hidden="false" id="7494-2f19-df87-a03f">
<categoryLinks>
<categoryLink targetId="762e-9a1c-ad3a-3424" id="5acb-439-86a1-eca9" primary="false" name="INQUISITORIAL AGENT"/>
<categoryLink targetId="15ae-553e-01d1-23a9" id="b2b8-a0cd-66b6-2fd9" primary="false" name="Imperium"/>
<categoryLink targetId="307-ad5e-52b1-3bcd" id="515c-245e-3f47-f01d" primary="false" name="Inquisition"/>
<categoryLink targetId="3198-c1ce-dfd0-fb4f" id="130f-f51b-7ae4-4e9f" primary="true" name="Leader"/>
<categoryLink targetId="c73e-eeee-3615-dbbe" id="2b26-b399-dc75-c77a" primary="false" name="Interrogator"/>
</categoryLinks>
<profiles>
<profile name="Interrogator Agent" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="bba-7e42-faa9-4844">
<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">2*</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Change Tome" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="d32b-600d-bded-1f96">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, at any point during this operative's activation, if a friendly TOME-SKULL operative is within ▲ of this operative, and neither of them are within Engagement Range of an enemy operative, you can swap their Consecrated Tome abilities.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Extended stock autopistol" hidden="false" id="229f-afbb-85fa-751">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f6a8-1622-54e7-ba01"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b16-3212-296-9043"/>
</constraints>
<profiles>
<profile name="⌖ Extended stock autopistol - Close range" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="418c-7d2f-b51d-3afb">
<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">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile name="⌖ Extended stock autopistol - Long range" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="8faa-377-b312-3cf8">
<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">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" hidden="false" type="rule" id="b185-5cd8-2526-c674" targetId="92de-2ad3-3554-0b3e"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Consecrated Tome" hidden="false" type="infoGroup" id="9743-74ed-fe96-640f" targetId="419e-327e-7c3d-60a9"/>
<infoLink name="*Group Activation" id="d959-c6fe-1917-f4ef" hidden="false" type="rule" targetId="3c16-0263-7a6e-69ec"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" type="selectionEntry" id="9921-ea27-d951-bf0d" targetId="cf7b-e75a-e09d-9d82"/>
<entryLink import="true" name="XP" hidden="false" type="selectionEntry" id="2a44-d5d3-4df9-4927" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" type="selectionEntryGroup" id="ca6c-8e81-4321-f51b" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" type="selectionEntryGroup" id="a194-c3df-b6f3-4dd0" targetId="f080-d126-4651-b003"/>
<entryLink import="true" name="Specialism" hidden="false" type="selectionEntryGroup" id="19b3-40-85af-3c6f" targetId="8b8a-af5f-701f-42e2"/>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" type="selectionEntryGroup" id="af76-a4b-31ff-9aeb" targetId="93ec-2874-675e-b46e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="d990-b8b4-6f18-2221">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7e2f-2aba-4c69-4ec6"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="f797-be55-ceb2-5a56">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="96d1-4ee7-8552-5883">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d366-b2e6-5b5e-927"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="eae4-422d-e88-1b22">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="2959-40bf-cd04-8ba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c30a-bd3d-f041-79c0"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="3c4d-ac4b-f642-f47">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="1fb2-d7e5-e16a-d1c8">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="61c9-b77-2980-5e59"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="d895-e751-8ca2-ae11">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="f038-6bdf-5421-8736">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7170-8a58-b1-16e7"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="a7-6b59-66b9-3dc6">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="6301-c3a3-6572-41d9">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4e64-8e28-86bd-33d8"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="8cc0-9a89-f27e-d100">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" type="selectionEntryGroup" id="6ae-fca0-d22-d6a9" targetId="e84e-ae34-82a8-57b0">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="f2c3-947e-ada8-60a0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2713-d500-ae0e-a499"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="951b-a81b-c678-4fd4">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="3070-106-7393-1692">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="df93-90b3-6282-e5a"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="c67-ac07-af0d-dd64">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="7d8a-7687-5426-6df5">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="75c5-a9bc-a5-ab47"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="1677-6009-14a7-ca88">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="b828-7e93-f4e4-5052">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8de-9cf0-dd9e-aaf3"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="fbdc-f05e-f6fb-c068">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="e02d-5e4-b8a2-68a7">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="93a4-1379-be6f-daba"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="1a06-8f31-b0e6-aa4">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="f85-d000-5ec7-81e8">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e537-bf1c-89dc-747b"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="215a-1011-af3f-476d">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
</entryLinks>
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="true" id="d844-53ec-297b-eabf"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="d844-53ec-297b-eabf" id="dd7a-de05-f61e-d187">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b626-b122-1bf6-20fb" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tome-skull" hidden="false" id="2304-ed89-1e35-2980">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="f604-f7a1-9ecf-50f8" primary="true" name="Operative"/>
<categoryLink targetId="762e-9a1c-ad3a-3424" id="4597-7a5f-9f5a-43f6" primary="false" name="INQUISITORIAL AGENT"/>
<categoryLink targetId="15ae-553e-01d1-23a9" id="2d97-f8d7-637b-abef" primary="false" name="Imperium"/>
<categoryLink targetId="307-ad5e-52b1-3bcd" id="4c4a-ae3b-cc58-d4a" primary="false" name="Inquisition"/>
<categoryLink targetId="383e-c92a-c607-c7e1" id="9930-bf22-1adb-7b2f" primary="false" name="Fly"/>
</categoryLinks>
<profiles>
<profile name="Tome-skull" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="b7fb-585d-24e7-cf8">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">1</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">2*</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">2</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">5</characteristic>
</characteristics>
</profile>
<profile name="Support Unit" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="e38a-9c55-ece1-abdc">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative cannot:
• Perform any actions other than Dash, Fall Back, Normal Move or Pass.
• Make shooting attacks, fight in combat (do not select a weapon or roll any attack dice for it) or provide combat support.
• Be equipped with equipment or carry anything.</characteristic>
</characteristics>
</profile>
<profile name="Machine" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="5d5c-e945-115-1738">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">• This operative cannot earn (or lose) experience points and automatically passes Casualty tests.
• This operative's APL cannot be modified.
• This operative can perform the Fall Back action for one less action point (to a minimum of 1AP).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Consecrated Tome" hidden="false" type="infoGroup" id="e1e3-9cd9-a73d-866f" targetId="419e-327e-7c3d-60a9"/>
<infoLink name="*Group Activation" id="57d8-568e-772e-bd9c" hidden="false" type="rule" targetId="3c16-0263-7a6e-69ec"/>
</infoLinks>
<constraints>
<constraint type="min" value="0" field="selections" scope="force" shared="true" id="4f58-972a-a1d-9f8c"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="4f58-972a-a1d-9f8c" id="aaff-d399-8586-2a1b">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b626-b122-1bf6-20fb" shared="true"/>
</conditions>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="-" hidden="false" id="5494-f598-e376-89c6">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf71-b4b5-d6a6-f00b"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="440f-3b3e-1c20-8496"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ancillary Support" hidden="false" id="3708-25db-c3c1-b732">
<categoryLinks>
<categoryLink targetId="fb89-efb1-54e4-59c5" id="588a-6b6f-e33e-8ced" primary="true" name="Configuration"/>
</categoryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="true" id="1166-b12b-4e9e-da0f"/>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="9296-2bca-59ae-bcaa"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Ancillary Support" hidden="false" id="b02e-a0ab-1af8-cc27">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sisters of Silence" hidden="false" id="ac09-429b-3afe-c022"/>
<selectionEntry type="upgrade" import="true" name="Tempestus Scions" hidden="false" id="a90f-a427-ef52-ec67"/>
<selectionEntry type="upgrade" import="true" name="Veteran Guardsmen" hidden="false" id="aeb8-d5dc-3b72-522b"/>
<selectionEntry type="upgrade" import="true" name="Exaction Squad" hidden="false" id="256d-b91-d8f3-adaf"/>
<selectionEntry type="upgrade" import="true" name="Imperial Navy Breachers" hidden="false" id="ab16-c0c3-f0c4-a132"/>
<selectionEntry type="upgrade" import="true" name="Kasrkin" hidden="false" id="df71-7975-54ed-adb4"/>
<selectionEntry type="upgrade" import="true" name="*No Support*" hidden="false" id="f9aa-9b64-3b95-7829"/>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="26ce-d03-a7b3-449b"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f2b3-6a99-226b-25dd"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="force" childId="b626-b122-1bf6-20fb" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Autosavant Agent" hidden="false" id="e22c-d36b-6d2c-6239">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="cc27-5b0f-1e44-5fe1" primary="true" name="Operative"/>
<categoryLink targetId="762e-9a1c-ad3a-3424" id="2dff-dc7f-6474-c46c" primary="false" name="INQUISITORIAL AGENT"/>
<categoryLink targetId="15ae-553e-01d1-23a9" id="8def-1615-f16a-aacd" primary="false" name="Imperium"/>
<categoryLink targetId="307-ad5e-52b1-3bcd" id="491e-49aa-2c57-ef39" primary="false" name="Inquisition"/>
<categoryLink targetId="1d69-c184-dca1-7652" id="1576-d6a1-3e9b-144c" primary="false" name="Autosavant"/>
</categoryLinks>
<profiles>
<profile name="Autosavant Agent" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="1f6f-d02f-97f-6b0f">
<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">7</characteristic>
</characteristics>
</profile>
<profile name="Scrivener" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="e592-c066-b270-47c0">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each subsequent time your opponent uses each Strategic or Tactical Ploy (excluding Command Re-roll) during the battle, you gain 1 CP.</characteristic>
</characteristics>
</profile>
<profile name="Chronicle" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="411a-cd80-f568-d2d2">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">In narrative play, in the Update Dataslates step, if this operative was not incapacitated, you can select one other friendly INQUISITORIAL AGENT® operative that was in that battle to gain D3 experience points</characteristic>
</characteristics>
</profile>
<profile name="Irrefutable Report (1AP)" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions" hidden="false" id="ffec-7074-808e-eda8">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one objective marker. Until this operative performs this action again, while this operative is within ⬛ of that objective marker, it dominates it. A friendly operative that dominates an objective marker always controls it, regardless of any other rules or the API of enemy operatives within the required distance of it. If an enemy operative would also dominate that objective marker, control is determined as normal. This operative can only perform this action once per battle, and cannot perform it while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mechanical appendages" hidden="false" id="d868-53a4-e21f-1b25">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="361f-eed8-58bd-4d68"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2650-b711-207e-eed2"/>
</constraints>
<profiles>
<profile name="⚔ Mechanical appendages" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="fbdc-817f-3d92-be8e">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">5+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">1/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="XP" hidden="false" type="selectionEntry" id="fb0e-cd4c-ac99-1243" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" type="selectionEntryGroup" id="9540-b859-a727-9fb0" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" type="selectionEntryGroup" id="1071-257f-2bac-ec0f" targetId="ae2f-d9f3-a27c-cca6"/>
<entryLink import="true" name="Equipment" hidden="false" type="selectionEntryGroup" id="1e57-6103-aa78-4098" targetId="f080-d126-4651-b003"/>
<entryLink import="true" name="Specialism" hidden="false" type="selectionEntryGroup" id="15ce-97aa-ed-57db" targetId="8b8a-af5f-701f-42e2"/>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" type="selectionEntryGroup" id="ba27-24e2-8e3-f235" targetId="93ec-2874-675e-b46e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="f110-f652-698f-827a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ded6-3173-5cf8-b37f"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="fa68-2d2a-b5e6-d5e3">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="f380-4cb3-a25d-c9e5">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f40e-7b51-c3a5-21c4"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="ba1a-c359-8b8f-5e65">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="ede3-3b83-9ba1-f6e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2d43-c00f-58e5-2717"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="68e1-421d-997c-4a58">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="6930-216a-88ea-7ec0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e403-a3db-b0ef-7915"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="c7cc-1ca1-6e90-ba6f">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="14d9-3257-73dd-2db9">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7f50-8bd4-ba8b-3865"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="f852-713a-6c4f-b638">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="1e41-6649-18e4-b759">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3c28-c14f-b5f0-2462"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="9408-7bcc-e3cd-a6f8">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" type="selectionEntryGroup" id="e26e-ead-fdb8-6c33" targetId="93ec-2874-675e-b46e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="bee1-2bf9-75e2-8258">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="53b3-8cbe-3fca-ccd3"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="4c19-202-beb3-b8e3">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="680e-d09-a66e-ecc9">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bcd8-b084-2c72-be8f"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="bb1d-2389-24e4-9d83">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="2545-1b9f-97aa-6d42">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="721f-f1ac-fb7f-b741"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="3d29-736c-810-329e">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="4b7d-2ab-69e2-9874">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5ad8-a799-63e3-cac9"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="e1f4-62af-1ed3-5691">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="2318-7bec-709-fd0d">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="db87-ce79-56b3-8872"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="805-b0f7-b45e-2543">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="a64f-ab5e-6081-4a92">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6716-4847-cbee-f28b"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="23cd-23b1-2913-eaac">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" type="selectionEntryGroup" id="2faa-e875-9250-cce1" targetId="94bd-d409-fda3-9f9f">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="36b7-ceec-fdcf-9600">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ad8f-c78-6d86-d141"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="2ada-527a-75cc-21ae">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="e401-50a1-4609-76d4">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d28c-c103-3efd-dd3a"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="8259-3ed4-45b7-c82e">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="bab1-ae17-63a1-2e7b">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3fb4-2c52-4dcf-bd50"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="be18-f1da-d295-ed30">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="5d08-d5c-319f-dd5c">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a780-ca6d-3aa8-6086"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="7c7f-a522-2817-2f85">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="8e14-f8e-5c9a-81fe">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c589-2a0-d9c9-64e7"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="90e5-2fa7-e91e-e462">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="1657-eaa6-e2d8-70">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2bc3-b4d3-dfb5-aa30"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="96b3-c30-984d-f140">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Questkeeper Agent" hidden="false" id="78e-2574-e452-dfa2">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="87f2-78dd-3a6c-e3aa" primary="true" name="Operative"/>
<categoryLink targetId="762e-9a1c-ad3a-3424" id="dc94-9ff6-545-ac7c" primary="false" name="INQUISITORIAL AGENT"/>
<categoryLink targetId="15ae-553e-01d1-23a9" id="5a5a-2aee-b085-68fb" primary="false" name="Imperium"/>
<categoryLink targetId="307-ad5e-52b1-3bcd" id="7b2e-a961-4ad3-ba75" primary="false" name="Inquisition"/>
<categoryLink targetId="638-d61a-186c-b800" id="7b3a-76e3-61f5-ad16" primary="false" name="Questkeeper"/>
</categoryLinks>
<profiles>
<profile name="Irrepressible Purpose" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="b6f-d2bd-b310-bff9">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">If this operative is incapacitated in combat, you can strike with one of your remaining attack dice before it's removed from the killzone.</characteristic>
</characteristics>
</profile>
<profile name="Zealot" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="7e79-ac31-5800-8663">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative would lose a wound, roll one D6: on a 5+, that wound is not lost.</characteristic>
</characteristics>
</profile>
<profile name="Questkeeper Agent" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="12cd-a5be-a70d-e872">
<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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Eviscerator" hidden="false" id="ebf9-57ea-6ac5-5c34">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="58f-e4eb-eb86-c58f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="70d6-b0d3-d4d2-844"/>
</constraints>
<profiles>
<profile name="⚔ Eviscerator" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="5edf-a55e-b5f1-7100">
<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">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Brutal, Unrelenting*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Brutal" hidden="false" type="rule" id="ba8a-f90d-268-730a" targetId="16e9-a975-03a1-91c0"/>
</infoLinks>
<rules>
<rule name="*Unrelenting" hidden="false" id="1090-adc3-c3d2-c0e5">
<description>Each time a friendly operative fights in combat with this weapon, if you are the attacker, you can re-roll one of your attack dice.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" type="selectionEntry" id="7b5d-644d-d15e-ada8" targetId="2e62-be27-42f9-2aee"/>
<entryLink import="true" name="XP" hidden="false" type="selectionEntry" id="1a92-1044-8b0b-5441" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" type="selectionEntryGroup" id="16f5-c4ef-d6ce-fa05" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" type="selectionEntryGroup" id="d47a-7ed1-5bee-af54" targetId="f080-d126-4651-b003"/>
<entryLink import="true" name="Specialism" hidden="false" type="selectionEntryGroup" id="517a-6a2c-9fea-118f" targetId="8b8a-af5f-701f-42e2"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" type="selectionEntryGroup" id="8347-57d3-91a6-c203" targetId="ae2f-d9f3-a27c-cca6">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="2837-f20a-1549-9d39">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cf33-c2b-30a-3782"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="634-8ad-cca9-fd07">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="4a45-7963-4d11-5104">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f1df-e532-5221-d612"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="2fb3-aab0-921e-f688">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="f7d0-cdc0-ca8-3393">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c758-b788-9eea-23f6"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="1520-1922-2827-d54">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="857b-ab3-f661-74c5">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e3ab-52f0-ef3c-98c2"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="498f-a3f1-3aba-58f3">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="a904-37e5-19f9-cb7f">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ae3c-b2f5-f230-f819"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="2845-b652-4277-dc80">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="8b01-9088-2e11-dc38">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="597a-22a0-3047-6031"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="d5f9-8855-a9bd-3e7e">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" type="selectionEntryGroup" id="b0f6-a824-2373-326d" targetId="93ec-2874-675e-b46e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="32f9-69c8-38ca-8d74">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ac5d-5b9f-c64c-6bbe"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="5ee-3cc9-2a6b-5a09">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="f4c8-f6ce-7d3e-bc5d">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="18fa-822b-ca91-3dfb"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="b5d4-cbd5-8eb2-3995">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="6d26-13fc-6ed4-a575">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2bb9-a0a9-1c82-1e41"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="b221-9cf-744a-6874">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="ab04-9ac4-6dd9-f8b9">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3566-6f4a-2610-6977"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="6223-1704-829c-29ce">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="a6b7-b389-db3-ecf0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2057-8580-49d0-17cb"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="264b-3ec9-12f-1376">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="ca8a-778-911a-a1bd">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6a30-3452-3fa5-9169"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="b62f-b713-7c83-4244">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death World Veteran Agent" hidden="false" id="8662-e08f-1208-6033">
<profiles>
<profile name="Death World Veteran Agent" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="ec35-102e-1ae2-c15f">
<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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile name="Hunter" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="3ae2-2cae-892e-a383">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative can perform a Charge action while it has a Conceal order.</characteristic>
</characteristics>
</profile>
<profile name="Weathered" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="cfb7-f695-8eb9-abf1">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, when this operative fights in combat, in the Resolve Successful Hits step of that combat, you can ignore the damage inflicted on it from one normal hit.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" type="selectionEntry" id="7660-524a-ac8c-66af" targetId="2e62-be27-42f9-2aee"/>
<entryLink import="true" name="Equipment" hidden="false" type="selectionEntryGroup" id="38ae-e773-590d-980c" targetId="f080-d126-4651-b003"/>
<entryLink import="true" name="XP" hidden="false" type="selectionEntry" id="e2ec-c88e-1125-1338" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" type="selectionEntryGroup" id="27d0-d61-4f1a-6a26" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Specialism" hidden="false" type="selectionEntryGroup" id="f6e7-1362-f99c-8ca3" targetId="8b8a-af5f-701f-42e2"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" type="selectionEntryGroup" id="1421-8ce9-501d-2702" targetId="ae2f-d9f3-a27c-cca6">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="83e2-bd3b-8718-2b0a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="535b-d44d-fe29-2d8e"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="5e0e-4bc2-e71a-a7c3">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="19f1-b14c-d55a-f44a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2b54-6c6c-3428-33a9"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="36d4-8b4a-287f-55da">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="3a85-cc2a-8344-aad3">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bd00-72cc-7b2a-6b08"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="1388-6035-356c-d92a">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="1dc6-ce8e-8df-8587">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d9c9-2bd-4ed6-a0e4"/>
</constraints>
<profiles>
<profile name="Firm Resolve" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="d2a8-2b92-5809-3d6b">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s APL and Movement characteristics, and it’s not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 5 - Ruthless Persecutor" hidden="false" id="3c2a-f23d-dec6-3ed0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a155-7f66-2646-e53b"/>
</constraints>
<profiles>
<profile name="Ruthless Persecutor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="5162-326-451f-89ee">
<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, in the Roll Attack Dice step of that shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 6 - Highly Capable" hidden="false" id="2be0-1a36-862c-f23d">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="54c4-5109-67e-209b"/>
</constraints>
<profiles>
<profile name="Highly Capable" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="9403-d532-d7a6-8c01">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, when this operative fights in combat, makes a shooting attack or a shooting attack is made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" type="selectionEntryGroup" id="7b2f-ff02-327f-4798" targetId="93ec-2874-675e-b46e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 1 - Weapon Specialist" hidden="false" id="d56b-ee39-48e6-99ce">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6fc6-a8d3-6d4f-7788"/>
</constraints>
<profiles>
<profile name="Weapon Specialist" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="782e-95c3-5ff6-55a0">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of this operative’s weapons. Improve the Ballistic Skill or Weapon Skill characteristic of that weapon (and all of its profiles, where relevant) by 1 (to a maximum of 3+).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 2 - Proficient" hidden="false" id="4d90-e048-b670-1f05">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fe32-279d-a01c-e90e"/>
</constraints>
<profiles>
<profile name="Proficient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="e4d7-82d4-2188-cc81">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one Battle Honour for this operative from a Core Book specialism you haven’t selected for it to progress in.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 3 - Inspector" hidden="false" id="e61c-3d6c-1162-a033">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="40c2-2f10-ad29-dc42"/>
</constraints>
<profiles>
<profile name="Inspector" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="8455-da75-7bc1-40d2">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When determining Line of Sight for this operative (including each time it makes a shooting attack), enemy operatives must be more than ⬛ from it to be in Cover (instead of ⬤).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Inquisitorial 4 - Firm Resolve" hidden="false" id="fdda-6741-a680-4e68">
<constraints>