-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Novitiate.cat
2191 lines (2188 loc) · 177 KB
/
2021 - Novitiate.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="f8ef-a36f-f720-5f60" name="Novitiate" revision="11" battleScribeVersion="2.03" authorName="Mad-Spy" authorUrl="https://bsdata.net" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="6" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<profileTypes>
<profileType id="0bd2-8527-d8d9-fc3b" name="Acts of Faith">
<characteristicTypes>
<characteristicType id="7b3f-92e0-b630-4215" name="Effect"/>
<characteristicType id="d161-d5ad-c3bd-9830" name="Cost"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="c0e3-64fb-2a12-3b40" name="NOVITIATE" hidden="false"/>
<categoryEntry id="33b0-faf8-6ce6-8ede" name="Novitiate Superior" hidden="false"/>
<categoryEntry id="78b9-4384-fe5d-376a" name="Novitiate Militant" hidden="false"/>
<categoryEntry id="ae4a-2b56-ffe7-5aa5" name="Novitiate Penitent" hidden="false"/>
<categoryEntry id="bdda-7a2d-8892-7492" name="Novitiate Pronatus" hidden="false"/>
<categoryEntry id="11c8-38fa-57b5-e43c" name="Novitiate Exactor" hidden="false"/>
<categoryEntry id="9b58-0ba4-202a-1578" name="Novitiate Reliquarius" hidden="false"/>
<categoryEntry id="02f7-899d-862d-e20d" name="Novitiate Hospitaller" hidden="false"/>
<categoryEntry id="4513-0933-d731-cfd5" name="Novitiate Preceptor" hidden="false"/>
<categoryEntry id="8088-d101-6c13-8dbe" name="Novitiate Dialogus" hidden="false"/>
<categoryEntry id="d083-7f53-f47a-cf7b" name="Novitiate Duellist" hidden="false"/>
<categoryEntry id="5daf-1a95-5a88-7b4c" name="Novitiate Condemnor" hidden="false"/>
<categoryEntry id="80e1-7707-d249-1efe" name="Novitiate Purgatus" hidden="false"/>
<categoryEntry id="97aa-682c-699b-297a" name="Adepta Sororitas" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="7438-b4d4-9764-1d08" name="Novitiate Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="50e8-196d-cf1e-efb8" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="8ced-0fa3-fdfd-5e96" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="7115-0216-72cf-0cc4" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb51-d5f7-d17a-d910" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a26-d092-facc-6825" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="75ac-8f92-983a-4da9" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="9" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c2e-31fb-5a7b-cf2b" type="max"/>
<constraint field="selections" scope="parent" value="9" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e25-a6a3-1ccb-08d4" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="afb1-de2c-253f-2d15" name="Novitiate Militant" hidden="false" targetId="78b9-4384-fe5d-376a" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="9" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c082-830c-994e-79b0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="daad-c4cf-80eb-73ad" name="Novitiate Duellist" hidden="false" targetId="d083-7f53-f47a-cf7b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="906a-6e12-b114-530a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4d66-8526-bea0-d4ce" name="Novitiate Pronatus" hidden="false" targetId="bdda-7a2d-8892-7492" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e63-458e-082f-8fd7" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="86ec-0900-921c-a8bf" name="Novitiate Exactor" hidden="false" targetId="11c8-38fa-57b5-e43c" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b11c-2add-87d5-e5a5" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b44b-dff2-963b-59eb" name="Novitiate Reliquarius" hidden="false" targetId="9b58-0ba4-202a-1578" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8127-0abd-1faa-155d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0fad-dd1c-b008-369e" name="Novitiate Preceptor" hidden="false" targetId="4513-0933-d731-cfd5" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4ce-9964-d7e6-3e12" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2da2-a08c-462b-9110" name="Novitiate Dialogus" hidden="false" targetId="8088-d101-6c13-8dbe" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c1e-b7ac-4125-5549" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9065-b6c9-7fac-7e3b" name="Novitiate Condemnor" hidden="false" targetId="5daf-1a95-5a88-7b4c" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a99a-b419-6a89-6a64" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2c59-eb7a-623f-6027" name="Novitiate Purgatus" hidden="false" targetId="80e1-7707-d249-1efe" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb7a-b0c8-3ff8-baee" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a609-2b32-06a0-cd8f" name="Novitiate Penitent" hidden="false" targetId="ae4a-2b56-ffe7-5aa5" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a15-db2b-9eef-7c63" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1f76-a28b-0215-2c4c" name="Novitiate Hospitaller" hidden="false" targetId="02f7-899d-862d-e20d" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff2f-ed4b-3910-65ed" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="adbe-9f5f-dceb-5ee1" name="Reference - Acts of Faith" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="daee-2eee-fbd4-a6ae" name="Reference - Acts of Faith" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Keep a pool of Faith points. At the start of each Turning Point, if there are any friendly NOVITIATE operatives in the killzone, you gain 3 Faith points. In addition, you gain one Faith point at the end of each activation, if any of the following apply:
- During that activation, a friendly NOVITIATE operative with the Combat specialism incapacitated an enemy operative in a combat.
- During that activation, a friendly NOVITIATE operative with the Marksman specialism incapacitated an enemy operative in a shooting attack.
- During that activation, a friendly NOVITIATE operative with the Staunch specialism performed a mission action.
- A friendly NOVITIATE operative with the Scout specialism was activated and finished that activation within ⬟ of the enemy dropzone.
Faith points can be subtracted so that friendly NOVITIATE operatives can perform Acts of Faith listed below. Each Act of Faith will specify when it can be used, its effect and how many Faith points you must subtract from your total to use it. If you cannot subtract the required Faith points from your total, you cannot use that Act of Faith.
Unless otherwise specified, only one Act of Faith can be used during each activation (friendly or enemy). For example, a shooting attack is made against a NOVITIATE operative. In the Roll Defence Dice step of that shooting attack, that operative's controlling player decides to subtract 2 Faith points to use Divine Shield to retain one failed save as a successful normal save. No other Acts of Faith can then be performed during that activation (other than Faithful Blessing).
You cannot use Acts of Faith to change dice you’ve re-rolled.</characteristic>
</characteristics>
</profile>
<profile id="7c87-fa62-83a8-6ee9" name="Faithful Blessing" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a friendly NOVITIATE operative is fighting in combat or making a shooting attack, or a shooting attack is being made against it, in the Roll Attack Dice step (for the former) or Roll Defence Dice step (for the latter) of that combat or shooting attack, re-roll one of your attack dice or defence dice respectively. This Act of Faith can be used more than once in each activation, and can be used with other Acts of Faith.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">1 Faith point</characteristic>
</characteristics>
</profile>
<profile id="5a01-940c-8994-4096" name="Guiding Light" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a friendly NOVITIATE operative fights in combat or makes a shooting attack, in the Roll Attack Dice step of that combat or shooting attack, retain one of your failed hits as a successful normal hit.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">2 Faith points</characteristic>
</characteristics>
</profile>
<profile id="c7a9-2ac5-c6b6-8330" name="Vengeful Strike" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a friendly NOVITIATE operative fights in combat or makes a shooting attack, in the Roll Attack Dice step of that combat or shooting attack, retain one of your successful normal hits as a critical hit instead.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">3 Faith points</characteristic>
</characteristics>
</profile>
<profile id="e003-ea3a-c241-2560" name="Divine Shield" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a shooting attack is made against a friendly NOVITIATE operative, in the Roll Defence Dice step of that shooting attack, retain one of your failed saves as a successful normal save.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">2 Faith points</characteristic>
</characteristics>
</profile>
<profile id="daf2-bbe6-0ab8-fcdf" name="Armour of Contempt" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a shooting attack is made against a friendly NOVITIATE operative, in the Roll Defence Dice step of that shooting attack, retain one of your successful saves as a critical save instead.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">2 Faith points</characteristic>
</characteristics>
</profile>
<profile id="5504-fa21-fe6e-53ec" name="Emperor's Protection" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a friendly NOVITIATE operative suffers a mortal wound, ignore that mortal wound. This Act of Faith can be used more than once in each activation.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">1 Faith point</characteristic>
</characteristics>
</profile>
<profile id="246b-4ca3-ae86-193b" name="Blessed Rejuvenation" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When a friendly NOVITIATE operative is activated, it regains D3 lost wounds. This Act of Faith can be used a maximum of two times in each activation.</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">2 Faith points</characteristic>
</characteristics>
</profile>
<profile id="1e0a-791b-88d7-227c" name="Blinding Aura" hidden="false" typeId="0bd2-8527-d8d9-fc3b" typeName="Acts of Faith">
<characteristics>
<characteristic name="Effect" typeId="7b3f-92e0-b630-4215">When an enemy operative performs a shooting attack, select one friendly NOVITIATE operative. Until the end of that activation, while that friendly operative is more than ⬤ from that enemy operative:
- That friendly operative is treated as being in Cover.
- While that friendly operative has a Conceal order, it is always treated as having a Conceal order, regardless of any other rules (e,g, Vantage Point).</characteristic>
<characteristic name="Cost" typeId="d161-d5ad-c3bd-9830">2 Faith points</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6b02-ae3d-e9bf-9f60" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="true"/>
</categoryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="22e6-5f08-65f6-b323" name="Novitiate Militant w/ autogun" hidden="false" collective="false" import="true" targetId="eeec-dd78-a48e-75d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="b492-275f-5565-3b52" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4b2d-d09b-ad70-e9f9" name="Novitiate Militant w/ autopistol and blade" hidden="false" collective="false" import="true" targetId="6c18-b650-58bb-aebe" type="selectionEntry">
<categoryLinks>
<categoryLink id="9223-0bde-5ad9-cd54" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="28ec-6119-72ed-4140" name="Novitiate Superior" hidden="false" collective="false" import="true" targetId="7dce-c5d6-bfb3-ed0d" type="selectionEntry">
<categoryLinks>
<categoryLink id="1466-8931-6f1d-c50a" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2ed0-2f2c-17ea-5717" name="Novitiate Exactor" hidden="false" collective="false" import="true" targetId="cc27-7365-262b-3e99" type="selectionEntry">
<categoryLinks>
<categoryLink id="d09b-1fa7-c07a-7727" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="49c2-9387-e0e6-e3f2" name="Novitiate Purgatus" hidden="false" collective="false" import="true" targetId="390b-bc8d-c8b6-c972" type="selectionEntry">
<categoryLinks>
<categoryLink id="5602-e196-7b34-97c6" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2862-dc0a-bca9-fe75" name="Novitiate Reliquarius" hidden="false" collective="false" import="true" targetId="4c29-ff3b-9aaf-f985" type="selectionEntry">
<categoryLinks>
<categoryLink id="199c-edac-4958-3dce" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5c86-0b95-1f4b-e8dc" name="Novitiate Hospitaller" hidden="false" collective="false" import="true" targetId="3d04-b563-ca1a-6327" type="selectionEntry">
<categoryLinks>
<categoryLink id="1aad-b4a7-c681-c306" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a4c8-3319-32e5-5934" name="Novitiate Pronatus" hidden="false" collective="false" import="true" targetId="d3a0-596e-7a09-44eb" type="selectionEntry">
<categoryLinks>
<categoryLink id="1efa-d7dc-ebf1-dcc3" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fbdd-ce61-1114-39d4" name="Novitiate Penitent" hidden="false" collective="false" import="true" targetId="fb89-e7fb-543a-21db" type="selectionEntry">
<categoryLinks>
<categoryLink id="8c39-0430-c657-122d" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0605-dd8e-dfea-d230" name="Novitiate Duellist" hidden="false" collective="false" import="true" targetId="c178-cad3-3077-5a10" type="selectionEntry">
<categoryLinks>
<categoryLink id="92ee-01d3-ffe2-36aa" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7682-9d21-ee9b-8979" name="Novitiate Preceptor" hidden="false" collective="false" import="true" targetId="872b-2d10-a3b9-91cb" type="selectionEntry">
<categoryLinks>
<categoryLink id="a2df-d05e-340f-589f" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cd1b-751b-a07e-e6ce" name="Novitiate Condemnor" hidden="false" collective="false" import="true" targetId="fe6d-0d11-2cdf-84f3" type="selectionEntry">
<categoryLinks>
<categoryLink id="255f-e4f7-c104-0d47" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e4f2-3e61-f961-cc91" name="Novitiate Dialogus" hidden="false" collective="false" import="true" targetId="cee2-30e5-9f7d-b5c0" type="selectionEntry">
<categoryLinks>
<categoryLink id="35ff-3723-9e35-afae" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="eeec-dd78-a48e-75d0" name="Novitiate Militant w/ autogun" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="5cca-3717-d747-ff62" name="Novitiate Militant" hidden="false" targetId="8f95-a397-ad10-7838" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="256f-d20d-5909-0fbf" name="NOVITIATE" hidden="false" targetId="c0e3-64fb-2a12-3b40" primary="false"/>
<categoryLink id="ddcb-3dd2-35c8-aed7" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="9e36-f271-4bc7-2103" name="Adepta Sororitas" hidden="false" targetId="97aa-682c-699b-297a" primary="false"/>
<categoryLink id="f192-b5d7-3ada-a368" name="Novitiate Militant" hidden="false" targetId="78b9-4384-fe5d-376a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="64d4-a15d-b2a2-a413" name="Autogun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d42-eb2b-2246-6a98" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cc6-de4a-628e-ef83" type="max"/>
</constraints>
<profiles>
<profile id="1c9e-8b26-5743-927f" name="⌖ Autogun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="c495-8d08-b6b8-b434" value="Inferno 1">
<conditions>
<condition field="selections" scope="eeec-dd78-a48e-75d0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9154-1cbc-45e5-4c72" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="32b4-9a0e-e740-6031" value="2+">
<conditions>
<condition field="selections" scope="eeec-dd78-a48e-75d0" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8cba-fac3-9f99-ce1e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">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 id="35cc-83c0-7854-758d" name="Inferno x" hidden="true" targetId="73ac-4f8b-4258-9737" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="eeec-dd78-a48e-75d0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9154-1cbc-45e5-4c72" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="58c7-967b-cfdd-1732" name="Gun butt" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="89ee-1d6a-f57a-fd25" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0de3-81ae-978c-f9e1" type="max"/>
</constraints>
<profiles>
<profile id="4c50-3f28-ea60-9b3e" name="⚔ Gun butt" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a76c-b688-cea7-b342" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d771-9f40-04df-ef63" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7ead-6ad0-3659-61cc" name="Combat" hidden="false" collective="false" import="true" targetId="97d8-19ec-143d-8aad" type="selectionEntry"/>
<entryLink id="e4a5-5890-091f-00a4" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="e953-1a0a-90ee-b340" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="bc80-4ad1-2c2e-fa5e" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="88f0-dd38-b733-7dee" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c8f2-3c8b-0bb3-ad30" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="5eb5-aabb-6243-7146" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="e39c-fc33-56fe-3598" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="e00f-405b-070a-567d" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="e3ff-3820-b44f-23bf" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="2106-a35c-0420-758a" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ad98-905e-e581-e952" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d493-61e6-fffa-9a8d" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="426d-3540-680c-4b50" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="1109-d2e5-1718-0f3b" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="3df7-05f7-5333-bb11" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="9ba5-7ce2-a568-65a2" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="8595-38d0-2b09-fe16" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0c52-0222-fefe-040a" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="a30c-8da9-cbf0-e9a7" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="b38f-b12b-c5d3-79c9" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="dffb-6b25-a837-ce8d" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="1e43-cdc7-b3e6-64ab" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="b9d7-3502-2e57-0d9d" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="83f9-79df-9a1d-78b6" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="b3ca-f921-27af-fb2f" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="cd25-7af0-ce5c-d1f9" name="Equipment" hidden="false" collective="false" import="true" targetId="b972-c99d-3b1d-1ed7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6c18-b650-58bb-aebe" name="Novitiate Militant w/ autopistol and blade" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="7a61-8a81-54fb-1f0a" name="Novitiate Militant" hidden="false" targetId="8f95-a397-ad10-7838" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6afb-cf92-eacb-ecda" name="NOVITIATE" hidden="false" targetId="c0e3-64fb-2a12-3b40" primary="false"/>
<categoryLink id="546b-b327-e906-d6ca" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="d80c-d355-2fac-fd67" name="Adepta Sororitas" hidden="false" targetId="97aa-682c-699b-297a" primary="false"/>
<categoryLink id="48ef-b19f-7b20-4ac6" name="Novitiate Militant" hidden="false" targetId="78b9-4384-fe5d-376a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="04df-6e53-bbdf-3a2b" name="Novitiate blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b4b-a9b6-82a5-f3f6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b8e-4caa-2b8a-06bc" type="max"/>
</constraints>
<profiles>
<profile id="b5ae-a124-4843-8931" name="⚔ Novitiate blade" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="6c18-b650-58bb-aebe" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9788-d03e-20f8-7fd5" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="2+"/>
<modifier type="set" field="337a-2e5b-e4e3-f489" value="4/6"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Balanced</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7dce-d2c9-d4a2-6984" name="Balanced" hidden="false" targetId="547c-e6e5-64d4-a519" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="cd52-04d4-a31d-efb9" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="031a-8690-6bf4-11b2" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ee4a-2274-bceb-c2b4" name="Combat" hidden="false" collective="false" import="true" targetId="97d8-19ec-143d-8aad" type="selectionEntry"/>
<entryLink id="4c98-ab22-1a5e-4a70" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="e1ca-1b26-2c72-2d41" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6fd9-d0df-8290-0a4a" name="Autopistol" hidden="false" collective="false" import="true" targetId="3005-ceaa-a253-49c8" type="selectionEntry"/>
<entryLink id="49b7-d540-35bd-f26a" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="75c8-a707-604f-038f" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="52d6-a253-808e-ae6e" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="93e8-6074-3bd5-2702" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="13a0-5ead-9c5c-294c" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="16b9-5aac-e48a-ffec" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="026e-d758-5f30-bd43" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="3c07-3d5d-bb0e-b00b" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="990a-4741-e30a-3b38" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7a22-5772-0d4e-8719" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="8262-9e9a-9a7c-9339" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="efe4-fec4-5bcc-7579" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="355e-e78d-5143-3fac" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="554f-eea6-d8c7-51b0" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="1a4c-3877-6195-472b" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0374-5542-de20-3580" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3434-a1dd-8e81-5503" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="f9c2-7e0f-180e-3fb7" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="4ad0-6867-c933-b485" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="be05-cde5-0c0a-d800" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="bd08-c596-640a-8f9f" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="9389-1366-747f-2a51" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="7725-5c0d-dbb9-ad6d" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="90ec-ad88-38cd-723f" name="Equipment" hidden="false" collective="false" import="true" targetId="b972-c99d-3b1d-1ed7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3005-ceaa-a253-49c8" name="Autopistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b789-8a64-1d4a-fee3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2f2-c704-04fc-9e6d" type="max"/>
</constraints>
<profiles>
<profile id="6e6c-594f-47c5-c5d1" name="⌖ Autopistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="c495-8d08-b6b8-b434" value="Inferno 1">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9154-1cbc-45e5-4c72" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7c9c-e396-6f46-ddfc" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="a382-a959-e3dc-dd6d" name="Inferno x" hidden="true" targetId="73ac-4f8b-4258-9737" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9154-1cbc-45e5-4c72" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6aef-2f66-7657-5ec4" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5252-4fcd-9c70-c1e3" type="max"/>
</constraints>
<profiles>
<profile id="30e5-bb69-4f7b-1562" name="Devout" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">During the first Turning Point, this operative can perform the "Pray for Guidance" action.</characteristic>
</characteristics>
</profile>
<profile id="ac4c-ced0-b910-ec68" name="Pray for Guidance (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">You gain 1 CP. Your Kill Team can only perform this action once.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a23-1cf8-4804-4704" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0be-7c6a-f51f-51fd" type="max"/>
</constraints>
<profiles>
<profile id="c5d4-f0e7-197a-5dd5" name="Glare of Condemnation" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time an enemy operative would perform a psychic action, if it is within ⬛ of one or more friendly operatives with this Battle Honour, 1 additional AP must be subtracted to perform that action.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9ea5-8e5d-97fe-6319" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f1d-4233-6715-0e26" type="max"/>
</constraints>
<profiles>
<profile id="6d5f-536d-b126-b344" name="Righteous Purpose" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time an attack dice would inflict critical damage on this operative, you can choose for that dice to inflict normal damage instead.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd90-356e-5a4f-e651" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa08-371d-7c13-2ccc" type="max"/>
</constraints>
<profiles>
<profile id="6b99-527c-0899-b9a6" name="Pious" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative performs one or more Acts of Faith during its activation, roll one D6: on a 5+, you gain 1 Faith point.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="87e9-c9af-1b97-a41b" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b83f-1c49-70e0-6631" type="max"/>
</constraints>
<profiles>
<profile id="4c82-1cad-4491-38ab" name="Determined" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative is activated, if it is within ⬤ of the centre of an objective marker, add 1 to its APL.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a423-d7b7-5862-b15d" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f459-8ad6-a241-ba37" type="max"/>
</constraints>
<profiles>
<profile id="df94-e4b3-fabc-eb59" name="Quick of Thought and Action" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">At the start of each Turning Point, if this operative is not within Engagement Range of an enemy operative, it can immediately perform a Dash action.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7dce-c5d6-bfb3-ed0d" name="Novitiate Superior" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d604-3ed4-1795-5761" name="Novitiate Superior" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="e8f7-0937-1df1-70f3" name="Lead by Example" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative is activated, if it performs any mission actions or if any enemy operatives are incapacitated as a result of any actions it performs during that activation, you can select one Ready friendly NOVITIATE operative Visible to and within ⬟ of it. After this operative's activation ends, you can activate that operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4d03-7149-dc6b-c0b6" name="NOVITIATE" hidden="false" targetId="c0e3-64fb-2a12-3b40" primary="false"/>
<categoryLink id="2907-80d0-fff8-bcbe" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="2e78-ccce-b346-57f7" name="Adepta Sororitas" hidden="false" targetId="97aa-682c-699b-297a" primary="false"/>
<categoryLink id="6884-0a59-f608-989d" name="Novitiate Superior" hidden="false" targetId="33b0-faf8-6ce6-8ede" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2132-c2c8-398e-67b4" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b7e-63c4-f00b-c762" type="max"/>
</constraints>
<entryLinks>
<entryLink id="38a2-5bc0-e9f0-fdfe" name="Combat" hidden="false" collective="false" import="true" targetId="97d8-19ec-143d-8aad" type="selectionEntry"/>
<entryLink id="ec8d-c91a-e7bf-b538" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="9846-fd21-6c3f-d767" name="Staunch" hidden="false" collective="false" import="true" targetId="eb50-055a-4cd2-e1d5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4702-f710-3ed8-93cb" name="Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa44-ed93-f85a-99d1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="299a-46f4-d8f7-6fbc" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="a2c6-fb8e-92f6-8606" name="Boltgun" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="e99d-7492-045f-4385" name="Boltgun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cac-d496-b625-3943" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a1e-6ec5-653c-6a7e" type="max"/>
</constraints>
<profiles>
<profile id="ef45-66ad-4384-44a1" name="⌖ Boltgun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a6e2-796a-b55b-7642" name="Gun butt" hidden="false" collective="false" import="true" targetId="d232-a7d5-d213-eb4d" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c595-1cde-8f99-b64c" name="Power weapon and bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="70e9-a3e5-d99a-adae" name="Bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1138-d729-bad0-77a2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a06c-a6d5-0f9e-d63f" type="max"/>
</constraints>
<profiles>
<profile id="b82c-7f92-bcb6-c614" name="⌖ Bolt pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="966a-b910-5eac-c97a" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0d0a-2547-f831-b82e" name="Power weapon" hidden="false" collective="false" import="true" targetId="da90-c0d8-1cc6-db65" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0455-d3e3-8bef-2bfd" name="Power weapon and plasma pistol" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="e5e7-537a-564b-8ebe" name="Plasma pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0693-0741-95d2-3321" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d2e-3efe-0c10-16cb" type="max"/>
</constraints>
<profiles>
<profile id="0de4-9d6b-ff13-a292" name="⌖ Plasma pistol - Standard" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="b823-9d93-2044-4aba" name="⌖ Plasma pistol - Supercharge" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP2, Hot</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ecde-9ebe-e981-254f" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="fe15-9fc7-81ba-03fb" name="Hot" hidden="false" targetId="83c3-fce7-8ac1-9872" type="rule"/>
<infoLink id="9226-8fc1-17f3-366e" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="800e-532d-8cd6-8d17" name="Power weapon" hidden="false" collective="false" import="true" targetId="da90-c0d8-1cc6-db65" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5263-5524-5a71-91b6" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="51c0-acc3-5188-75da" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="03b3-4c1f-a8a3-688d" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="78ff-b493-d93a-4814" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="5aba-f5ab-9b97-ef95" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="cd61-4c11-d15d-2547" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="4bee-23af-085b-d2ca" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8a0a-3f79-290b-9c85" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="baaa-ba2c-2132-0701" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="4ac8-e6b8-b9ae-1bee" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="c5da-4a4f-8772-3480" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="7634-2096-20b3-bfd3" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="9df2-193c-992d-9aaa" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="4901-70b5-40b7-ae45" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="94b5-b953-c74d-e672" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7197-d13e-265c-3fad" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="dea3-b2fa-f9e9-5546" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="266c-4371-9a4e-d981" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="ed07-9820-29fc-26a8" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="c4c2-ac64-9f23-4c26" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="5f00-4407-60d6-cea3" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="50b6-15a3-771b-b985" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="5147-cfff-b8d2-8dd1" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="eac4-c2c2-814f-4f29" name="Equipment" hidden="false" collective="false" import="true" targetId="b972-c99d-3b1d-1ed7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="da90-c0d8-1cc6-db65" name="Power weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e00a-2a56-d41e-60f8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="48dd-d630-df24-6671" type="max"/>
</constraints>
<profiles>
<profile id="9d26-13fd-8482-5f8f" name="⚔ Power weapon" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="df4d-d0c2-0fe2-e1dd" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fb89-e7fb-543a-21db" name="Novitiate Penitent" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="7cc2-c15a-44c7-bfde" name="Zealous Rage" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">The first time this operative performs a Fight action in each of its activations, in the Roll Attack Dice step of that combat, you can re-roll any or all of your attack dice.</characteristic>
</characteristics>
</profile>
<profile id="0179-2182-f1e2-3a56" name="Absolution Through Destruction (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Fight action with this operative. After completing that action’s fight sequence, if this operative is still within Engagement Range of an enemy operative, you can immediately fight in combat with this operative again (for the second combat, you do not have to select the same target and the Zealous Rage ability has no effect).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="aefb-0fbb-6fdf-b540" name="Novitiate Militant" hidden="false" targetId="8f95-a397-ad10-7838" type="profile">
<modifiers>
<modifier type="set" field="name" value="Novitiate Penitent"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="cbfe-54bb-99fc-9f2e" name="NOVITIATE" hidden="false" targetId="c0e3-64fb-2a12-3b40" primary="false"/>
<categoryLink id="2af5-9ff3-0818-e3df" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="5fec-d1cd-4717-07e6" name="Adepta Sororitas" hidden="false" targetId="97aa-682c-699b-297a" primary="false"/>
<categoryLink id="a675-df68-7c67-51ca" name="Novitiate Penitent" hidden="false" targetId="ae4a-2b56-ffe7-5aa5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="029e-e8b8-1fef-daca" name="Penitent eviscerator" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4974-593f-fa06-f9dc" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="13d6-7093-1074-664a" type="max"/>
</constraints>
<profiles>
<profile id="f9e1-3881-7ab0-2a8d" name="⚔ Penitent eviscerator" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Brutal</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Reap 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a1a8-6099-d6ab-de25" name="Brutal" hidden="false" targetId="16e9-a975-03a1-91c0" type="rule"/>
<infoLink id="5fc6-0ad1-07db-098a" name="Reap x" hidden="false" targetId="bed1-0d23-de84-30a1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="0a15-49dc-08d6-d65f" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="86a9-e426-0536-64fe" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d857-fe4c-1aa5-1db7" name="Combat" hidden="false" collective="false" import="true" targetId="97d8-19ec-143d-8aad" type="selectionEntry"/>
<entryLink id="d6d4-6789-9a07-3ae7" name="Staunch" hidden="false" collective="false" import="true" targetId="eb50-055a-4cd2-e1d5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1704-a206-aebd-cf1b" name="Autopistol" hidden="false" collective="false" import="true" targetId="3005-ceaa-a253-49c8" type="selectionEntry"/>
<entryLink id="064a-1ed4-2118-b5bf" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="4f97-3b88-d363-ac54" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8c82-9070-aac7-c62d" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="bb69-aa68-e233-674e" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="3aa6-8c41-355f-059b" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="9753-092b-13a7-14b5" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="2d50-1497-8dd4-68a4" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="2e82-9726-48e0-c732" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="fde8-b67b-704a-d609" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="a14e-69b5-937d-d7ce" name="Novitiate 1 - Devout" hidden="false" collective="false" import="true" targetId="6aef-2f66-7657-5ec4" type="selectionEntry"/>
<entryLink id="bce7-98c2-5737-f3f4" name="Novitiate 2 - Pious" hidden="false" collective="false" import="true" targetId="bd90-356e-5a4f-e651" type="selectionEntry"/>
<entryLink id="daa0-5ab0-5977-d899" name="Novitiate 3 - Righteous Purpose" hidden="false" collective="false" import="true" targetId="9ea5-8e5d-97fe-6319" type="selectionEntry"/>
<entryLink id="f0c5-ae29-1d82-ff0b" name="Novitiate 4 - Glare of Condemnation" hidden="false" collective="false" import="true" targetId="7a23-1cf8-4804-4704" type="selectionEntry"/>
<entryLink id="3242-0174-a905-5063" name="Novitiate 5 - Determined" hidden="false" collective="false" import="true" targetId="87e9-c9af-1b97-a41b" type="selectionEntry"/>
<entryLink id="c48c-c442-3eb4-700d" name="Novitiate 6 - Quick of Thought and Action" hidden="false" collective="false" import="true" targetId="a423-d7b7-5862-b15d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="e0ab-6d19-e750-5124" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="4fae-24ad-aac0-f11d" name="Equipment" hidden="false" collective="false" import="true" targetId="b972-c99d-3b1d-1ed7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d232-a7d5-d213-eb4d" name="Gun butt" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4215-b0f4-e4ac-2596" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="61bf-5e5b-dcf0-cc22" type="max"/>
</constraints>
<profiles>
<profile id="6801-d340-f939-d176" name="⚔ Gun butt" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="2+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="33b0-faf8-6ce6-8ede" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="390b-bc8d-c8b6-c972" name="Novitiate Purgatus" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="72b6-bbf4-00b0-104b" name="Burning Advance (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Dash action with this operative, then perform a free Shoot action with it. You can only select a ministorum flamer for this action’s shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="246a-5496-b1fa-9548" name="Novitiate Militant" hidden="false" targetId="8f95-a397-ad10-7838" type="profile">
<modifiers>
<modifier type="set" field="name" value="Novitiate Purgatus"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="8423-d5ea-989b-b11c" name="NOVITIATE" hidden="false" targetId="c0e3-64fb-2a12-3b40" primary="false"/>
<categoryLink id="97ac-0f7b-52e8-ebee" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="aeec-e7c0-d1e3-aacd" name="Adepta Sororitas" hidden="false" targetId="97aa-682c-699b-297a" primary="false"/>
<categoryLink id="a6c5-0993-bbf4-df9c" name="Novitiate Purgatus" hidden="false" targetId="80e1-7707-d249-1efe" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8abe-0546-2c59-e3ad" name="Ministorum flamer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d57-e4d1-75f1-6e5d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6be-1fd4-1a29-fb41" type="max"/>
</constraints>
<profiles>
<profile id="8b35-671d-4131-95b7" name="⌖ Ministorum flamer" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Torrent ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Inferno 1</characteristic>