forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Adepta Sororitas.cat
11512 lines (11483 loc) · 930 KB
/
Imperium - Adepta Sororitas.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="d124-b283-2ff7-beae" name="Imperium - Adepta Sororitas" revision="207" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="Discord: @Alphalas, @CrusherJoe | Twitter: @_alphalas, @TheAwesomesauce" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="222" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<readme>Wow, we didn't get screwed this time. I'm shocked.
</readme>
<publications>
<publication id="d124-b283-pubN72234" name="Codex: Adepta Sororitas 9th Edition"/>
</publications>
<profileTypes>
<profileType id="081f-7081-e636-aa9d" name="Triumph of Saint Katherine Wounds">
<characteristicTypes>
<characteristicType id="fc9b-f764-5a8f-4c65" name="Remaining Wounds"/>
<characteristicType id="3f9b-1017-39f6-a0e0" name="Attacks"/>
<characteristicType id="8316-d548-d775-880b" name="Relics"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="76ae-cee8-24fc-5d25" name="Faction: Adeptus Ministorum" hidden="false"/>
<categoryEntry id="2163-963f-4f6c-08a6" name="Priest" hidden="false"/>
<categoryEntry id="f2b1-f21a-cb94-b24f" name="Uriah Jacobus" hidden="false"/>
<categoryEntry id="e74c-d07f-6388-2476" name="Crusaders" hidden="false"/>
<categoryEntry id="6dac-a764-085a-2299" name="Death Cult Assassins" hidden="false"/>
<categoryEntry id="f75c-e0bf-0241-d44e" name="Arco-Flagellants" hidden="false"/>
<categoryEntry id="a511-9481-6247-b5b8" name="Penitent Engines" hidden="false"/>
<categoryEntry id="b57d-c2a9-2713-8872" name="Faction: Adepta Sororitas" hidden="false"/>
<categoryEntry id="b210-97bc-c0ef-e2a2" name="Celestine" hidden="false"/>
<categoryEntry id="9324-1e8e-5e8e-d7c0" name="Faction: <ORDER>" hidden="false"/>
<categoryEntry id="a68e-7404-c78e-db6c" name="Canoness" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8eac-8d93-10bb-d2c3" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="8a05-66df-88c7-f7f6" name="Diagolus" hidden="false"/>
<categoryEntry id="ff72-0e5b-ac56-52d9" name="Hospitaller" hidden="false"/>
<categoryEntry id="0505-9788-bb50-a643" name="Imagifier" hidden="false"/>
<categoryEntry id="a498-f9be-a561-7a62" name="Battle Sister Squad" hidden="false"/>
<categoryEntry id="5524-82fa-b6da-6d3a" name="Celestian" hidden="false"/>
<categoryEntry id="0996-7e7d-62f3-3cc8" name="Repentia Superior" hidden="false"/>
<categoryEntry id="faed-b330-06d4-494a" name="Seraphim Squad" hidden="false"/>
<categoryEntry id="1081-c313-178e-2796" name="Retributor Squad" hidden="false"/>
<categoryEntry id="707c-6510-b116-7c12" name="Immolator" hidden="false"/>
<categoryEntry id="6c47-3f2b-e345-3800" name="Exorcist" hidden="false"/>
<categoryEntry id="eb08-85be-1032-4bf7" name="Sororitas Rhino" hidden="false"/>
<categoryEntry id="cd7c-3dbf-64e5-fec4" name="Dominion Squad" hidden="false"/>
<categoryEntry id="ad04-ce1e-bfa8-b690" name="Sisters Repentia" hidden="false"/>
<categoryEntry id="4bfb-e752-9702-5d2b" name="Repressor" hidden="false"/>
<categoryEntry id="df82-1893-6e03-3545" name="Missionary Zealot" hidden="false"/>
<categoryEntry id="76c7-540b-bb81-07fe" name="Ecclesiarchy Battle Conclave" hidden="false"/>
<categoryEntry id="e5cf-44ef-2778-f7ae" name="Gotfret de Montbard" hidden="false"/>
<categoryEntry id="6e44-2e70-1dc9-702c" name="Crusader" hidden="false"/>
<categoryEntry id="bdfa-9d77-c902-e336" name="Mortifiers" publicationId="d124-b283-pubN72234" page="92" hidden="false"/>
<categoryEntry id="1be9-6b16-76c3-05a4" name="Triumph of Saint Katherine" publicationId="d124-b283-pubN72234" page="79" hidden="false"/>
<categoryEntry id="9d9f-717e-0e41-9ed7" name="Canoness Superior" publicationId="d124-b283-pubN72234" page="80" hidden="false"/>
<categoryEntry id="7a8d-903c-63b4-2b79" name="Faction: Order of Our Martyred Lady" publicationId="d124-b283-pubN72234" page="101" hidden="false"/>
<categoryEntry id="a9f7-bc8a-e0aa-19f4" name="Junith Eruita" publicationId="d124-b283-pubN72234" page="80" hidden="false"/>
<categoryEntry id="901c-eb96-02fb-2ba6" name="Sector Imperialis" publicationId="d124-b283-pubN72234" page="93" hidden="false"/>
<categoryEntry id="76b4-49a9-18ff-e1f5" name="Battle Sanctum" publicationId="d124-b283-pubN72234" page="95" hidden="false"/>
<categoryEntry id="c1a9-201f-5cbd-b7aa" name="Geminae Superia" hidden="false"/>
<categoryEntry id="214b-f313-4042-c07f" name="Palatine" hidden="false"/>
<categoryEntry id="86fc-b828-d2a8-b400" name="Agent of the Imperium" publicationId="d124-b283-pubN72234" page="100" hidden="false"/>
<categoryEntry id="2eed-df73-eb49-e6f6" name="Outcasts" publicationId="d124-b283-pubN72234" page="100" hidden="false"/>
<categoryEntry id="d1cb-e59c-37d6-e8da" name="Ephrael Stern" publicationId="d124-b283-pubN72234" page="100" hidden="false"/>
<categoryEntry id="cd59-26a7-4c36-40a5" name="Aeldari" publicationId="d124-b283-pubN72234" page="100" hidden="false"/>
<categoryEntry id="9dc9-69df-8c9d-13eb" name="Kyganil" publicationId="d124-b283-pubN72234" page="100" hidden="false"/>
<categoryEntry id="ec89-cc53-f40d-90d5" name="Sanctified" publicationId="d124-b283-pubN72234" hidden="false"/>
<categoryEntry id="d6c0-3158-aa72-ceef" name="Cult Imperialis" publicationId="d124-b283-pubN72234" hidden="false"/>
<categoryEntry id="abf7-2730-e841-a1ed" name="Engine of Repemption" publicationId="d124-b283-pubN72234" hidden="false"/>
<categoryEntry id="1535-d743-8237-060a" name="Hallowed" publicationId="d124-b283-pubN72234" hidden="false"/>
<categoryEntry id="0789-82de-0afa-e095" name="Supreme Commander" publicationId="d124-b283-pubN72234" page="94" hidden="false"/>
<categoryEntry id="6946-c9ea-54ba-51f1" name="Abbess" publicationId="d124-b283-pubN72234" page="94" hidden="false"/>
<categoryEntry id="9b1f-b595-9ed8-c515" name="Paragon Warsuits" publicationId="d124-b283-pubN72234" hidden="false"/>
<categoryEntry id="d1e7-e81b-6ba8-a9b5" name="Morvenn Vahl" publicationId="d124-b283-pubN72234" page="94" hidden="false"/>
<categoryEntry id="dfe8-aea4-854a-a14d" name="Chariot" publicationId="d124-b283-pubN72234" page="96" hidden="false"/>
<categoryEntry id="76a6-a5ff-5663-3212" name="Celestian Sacresants" publicationId="d124-b283-pubN72234" page="107" hidden="false"/>
<categoryEntry id="f68e-ca59-10b0-1894" name="Dogmata" publicationId="d124-b283-pubN72234" page="107" hidden="false"/>
<categoryEntry id="5bef-c145-9c74-112e" name="Smokescreen" publicationId="d124-b283-pubN72234" page="117" hidden="false"/>
<categoryEntry id="edda-2695-70e0-206e" name="Castigator" publicationId="d124-b283-pubN72234" page="117" hidden="false"/>
<categoryEntry id="d66a-a43b-fab5-a483" name="Aestred Thurga" publicationId="d124-b283-pubN72234" page="102" hidden="false"/>
<categoryEntry id="72b6-bd6c-5c5f-ad07" name="Agathae Dolan" publicationId="d124-b283-pubN72234" page="102" hidden="false"/>
<categoryEntry id="6f0e-365e-1368-c611" name="Zephyrim Squad" hidden="false"/>
<categoryEntry id="74b1-9662-6b27-1ee5" name="Missionary" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="ac69-8940-06e0-fcf2" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="fe3d-45ee-ca77-725d" name="Living Saint" hidden="false"/>
<categoryEntry id="1bb6-cbe2-1b97-5167" name="Preacher" hidden="false"/>
<categoryEntry id="7727-a06e-f5d6-7b8f" name="Celestian Squad" hidden="false"/>
<categoryEntry id="c06e-901d-12d6-6c8a" name="Warlord - Order of our Martyred Lady" hidden="false"/>
<categoryEntry id="c242-33b0-2995-0d82" name="Warlord - Order of the Valorous Heart" hidden="false"/>
<categoryEntry id="25de-4d74-c153-43c5" name="Warlord - Order of the Bloody Rose" hidden="false"/>
<categoryEntry id="3a78-1ac5-ca3b-79ab" name="Warlord - Order of the Ebon Chalice" hidden="false"/>
<categoryEntry id="664d-29a6-c19d-b71f" name="Warlord - Order of the Argent Shroud" hidden="false"/>
<categoryEntry id="4363-e430-acbe-32ea" name="Warlord - Order of the Sacred Rose" hidden="false"/>
<categoryEntry id="e98c-52b8-ae25-8475" name="Warlord - Sanctified" hidden="false"/>
<categoryEntry id="047e-5a90-0006-b27e" name="Cult Imperialis Priest" hidden="false">
<modifiers>
<modifier type="increment" field="651b-28a3-1bc6-fb0b" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="70dc-3414-76ce-c58e" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="b650-bdca-b961-cfd8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="807b-8a00-97bc-2e1c" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e1bb-8fd1-939d-8952" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="4551-06b1-6ba1-e5ca" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cd9c-e25f-1d3a-88f7" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="27c1-a25c-4b17-6831" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="caaf-8409-e170-3286" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2f21-55f2-c323-73a7" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c456-37fc-f55a-84a2" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7b97-19d7-8136-4b1c" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="5b82-01ed-74cf-6a85" repeats="1" roundUp="false"/>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="5d41-39ba-fcbd-2c11" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="651b-28a3-1bc6-fb0b" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="66f6-9ccb-1ca2-4dd3" name="Warlord - Charadon OOOML" hidden="false"/>
<categoryEntry id="c6cc-2d4d-b62e-dde4" name="Sisters Novitiate" hidden="false"/>
<categoryEntry id="68b5-4db5-37a1-dd11" name="Warlord - Vigilus OOBR" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="26b0-aaff-05c6-2a72" name="Canoness" hidden="false" collective="false" import="true" targetId="e1bb-8fd1-939d-8952" type="selectionEntry"/>
<entryLink id="fc51-2a08-f063-457d" name="Missionary" hidden="false" collective="false" import="true" targetId="33d2-af62-73dc-e166" type="selectionEntry">
<categoryLinks>
<categoryLink id="6901-822f-ccff-a4cf" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="27c6-82b1-c37a-edad" name="Uriah Jacobus" hidden="false" collective="false" import="true" targetId="dddc-981e-979b-0045" type="selectionEntry"/>
<entryLink id="1370-32b4-9956-b4eb" name="Battle Sister Squad" hidden="false" collective="false" import="true" targetId="87b3-cde1-38bf-a82e" type="selectionEntry"/>
<entryLink id="5940-965a-0883-7c33" name="Repentia Squad" hidden="false" collective="false" import="true" targetId="8e03-d6a9-2fa2-8bcb" type="selectionEntry"/>
<entryLink id="b979-9058-b3bf-5f3b" name="Arco-Flagellants" hidden="false" collective="false" import="true" targetId="cc15-b9f2-6b0e-3d5a" type="selectionEntry">
<categoryLinks>
<categoryLink id="624b-f638-b221-3a59" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cb96-1743-a4a5-20a5" name="Crusaders" hidden="false" collective="false" import="true" targetId="90a6-f1ed-a8fd-2744" type="selectionEntry">
<categoryLinks>
<categoryLink id="1e12-de77-02db-b79b" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="78fe-e95b-bdbb-c4b2" name="Death Cult Assassins" hidden="false" collective="false" import="true" targetId="2017-cce4-5165-52eb" type="selectionEntry">
<categoryLinks>
<categoryLink id="72ea-a4aa-0e47-29bb" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="254c-117c-c63c-a692" name="" hidden="false" collective="false" import="true" targetId="6b33-66b4-194b-97e7" type="selectionEntry"/>
<entryLink id="26cd-f2b5-6ab0-f8ee" name="Dominion Squad" hidden="false" collective="false" import="true" targetId="380e-51e3-7db4-f3b1" type="selectionEntry"/>
<entryLink id="8273-33c1-fb26-0fdc" name="Retributor Squad" hidden="false" collective="false" import="true" targetId="3a14-47c3-52c0-aafe" type="selectionEntry"/>
<entryLink id="8a5d-610b-1c44-7535" name="New EntryLink" hidden="false" collective="false" import="true" targetId="7c58-20e2-8d14-645b" type="selectionEntry"/>
<entryLink id="2750-542e-cc84-62fc" name="Immolator" hidden="false" collective="false" import="true" targetId="e9f1-555d-a13e-1c46" type="selectionEntry"/>
<entryLink id="7e38-7fc5-a4a1-2701" name="Exorcist" hidden="false" collective="false" import="true" targetId="2c1c-4fcd-f444-497f" type="selectionEntry"/>
<entryLink id="26f3-d36e-e32c-8968" name="Penitent Engines" hidden="false" collective="false" import="true" targetId="24e1-2d7c-8666-2aa5" type="selectionEntry">
<categoryLinks>
<categoryLink id="6615-14fe-2969-0063" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8d73-504a-bb93-6c79" name="Sororitas Rhino" hidden="false" collective="false" import="true" targetId="9be6-1599-e087-859f" type="selectionEntry"/>
<entryLink id="8ff3-9f6d-7b8d-dd91" name="Celestine and Geminae Superia" hidden="false" collective="false" import="true" targetId="caaf-8409-e170-3286" type="selectionEntry"/>
<entryLink id="191c-f7ca-705a-90da" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5d41-39ba-fcbd-2c11" type="selectionEntry"/>
<entryLink id="fe64-1ed5-c439-a338" name="Hospitaller" hidden="false" collective="false" import="true" targetId="5b82-01ed-74cf-6a85" type="selectionEntry">
<categoryLinks>
<categoryLink id="80ac-9cb6-914b-7563" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fcbd-a94b-f2f9-d360" name="Dialogus" hidden="false" collective="false" import="true" targetId="c456-37fc-f55a-84a2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a68e-7404-c78e-db6c" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9d9f-717e-0e41-9ed7" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="f5eb-67d1-d45a-8ee8" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3fb0-41c0-1395-129d" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f930-093b-464d-5b24" name="Repentia Superior" hidden="false" collective="false" import="true" targetId="7b97-19d7-8136-4b1c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8e03-d6a9-2fa2-8bcb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8b35-39b3-a31b-acec" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7de1-1212-fa1f-9503" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0319-e2bd-40a8-88e0" name="Sororitas Repressor" hidden="false" collective="false" import="true" targetId="afcb-6c0f-3557-c7fa" type="selectionEntry"/>
<entryLink id="4732-d8c1-da8e-2369" name="Pious Vorne" hidden="false" collective="false" import="true" targetId="f351-39dc-416f-ba68" type="selectionEntry">
<categoryLinks>
<categoryLink id="939c-9862-2d99-7b11" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="753d-cf1d-81e4-9b4b" name="Arco-Flagellants" hidden="false" collective="false" import="true" targetId="cc15-b9f2-6b0e-3d5a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="33d2-af62-73dc-e166" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="dddc-981e-979b-0045" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f97b-ff32-9d2a-2e94" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4e8a-f723-76eb-14dc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="da5f-1f56-ec00-5ed2" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f016-a988-5d07-6487" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f92b-cf2e-e5f6-833f" name="Crusaders" hidden="false" collective="false" import="true" targetId="90a6-f1ed-a8fd-2744" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="33d2-af62-73dc-e166" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="dddc-981e-979b-0045" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f97b-ff32-9d2a-2e94" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4e8a-f723-76eb-14dc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="fc97-2386-f716-8640" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0be3-7313-c0a6-d63a" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e642-a8c8-e04e-5787" name="Death Cult Assassins" hidden="false" collective="false" import="true" targetId="2017-cce4-5165-52eb" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="33d2-af62-73dc-e166" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="dddc-981e-979b-0045" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f97b-ff32-9d2a-2e94" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4e8a-f723-76eb-14dc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="68d1-56aa-1e75-b450" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="dd04-9b4b-0476-191c" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5f18-0a14-2026-84fa" name="Preacher" hidden="false" collective="false" import="true" targetId="f97b-ff32-9d2a-2e94" type="selectionEntry">
<categoryLinks>
<categoryLink id="886d-eb66-e738-425a" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d60c-6083-516d-2e8c" name="Taddeus the Purifier" hidden="false" collective="false" import="true" targetId="bb3d-3117-07eb-c67a" type="selectionEntry"/>
<entryLink id="6c18-67c4-24fb-7f64" name="Repentia Superior" hidden="false" collective="false" import="true" targetId="7b97-19d7-8136-4b1c" type="selectionEntry">
<categoryLinks>
<categoryLink id="434b-9e29-ea41-f66a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cb6d-70d7-1fd9-ca04" name="Order Convictions" hidden="false" collective="false" import="true" targetId="15a0-a668-b5b4-db3f" type="selectionEntry">
<categoryLinks>
<categoryLink id="e6e1-3431-aa7a-47e4" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2402-a5a2-42f6-84fe" name="Gotfret de Montbard" hidden="false" collective="false" import="true" targetId="bdf0-80db-d561-9a64" type="selectionEntry">
<categoryLinks>
<categoryLink id="4037-8c50-a684-0ebf" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bceb-2fd8-bd33-6304" name="Stratagem: Shadow Assignment" hidden="false" collective="false" import="true" targetId="0b7d-bfe1-b63e-ecb6" type="selectionEntry"/>
<entryLink id="f484-cb52-ee5c-b801" name="Battle Sanctum" hidden="false" collective="false" import="true" targetId="32b5-5cdc-16af-2150" type="selectionEntry"/>
<entryLink id="11fd-d28b-287f-e426" name="Zephyrim Squad" hidden="false" collective="false" import="true" targetId="5a81-ebd4-a167-de46" type="selectionEntry"/>
<entryLink id="0cb7-46a4-b013-5a57" name="Junith Eruita" hidden="false" collective="false" import="true" targetId="70dc-3414-76ce-c58e" type="selectionEntry"/>
<entryLink id="3558-72de-39ba-be5f" name="Mortifiers" hidden="false" collective="false" import="true" targetId="b9c0-79d4-798e-9533" type="selectionEntry"/>
<entryLink id="8a2a-e4bb-03f4-1d88" name="Triumph of Saint Katherine" hidden="false" collective="false" import="true" targetId="27c1-a25c-4b17-6831" type="selectionEntry"/>
<entryLink id="7a74-9188-7093-30ed" name="Arch-Confessor Kyrinov [Legends]" hidden="false" collective="false" import="true" targetId="4e8a-f723-76eb-14dc" type="selectionEntry"/>
<entryLink id="bbc8-b400-badf-8313" name="Palatine" hidden="false" collective="false" import="true" targetId="b650-bdca-b961-cfd8" type="selectionEntry"/>
<entryLink id="e479-feb9-1d49-27ae" name="Morvenn Vahl" hidden="false" collective="false" import="true" targetId="cd9c-e25f-1d3a-88f7" type="selectionEntry"/>
<entryLink id="33d1-cebc-3b2d-725f" name="Ephrael Stern and Kyganil of the Bloody Tears" hidden="false" collective="false" import="true" targetId="4551-06b1-6ba1-e5ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="a78e-acc7-0207-66e8" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="848d-bf5c-68f4-1382" name="Aestred Thurga and Agathae Dolan" hidden="false" collective="false" import="true" targetId="807b-8a00-97bc-2e1c" type="selectionEntry"/>
<entryLink id="88d7-f80d-d8ea-af2a" name="Celestian Sacresants" hidden="false" collective="false" import="true" targetId="88bd-ec5d-5a67-e71b" type="selectionEntry"/>
<entryLink id="7233-76ce-959a-c2da" name="Paragon Warsuits" hidden="false" collective="false" import="true" targetId="dfc4-e296-fdc6-6277" type="selectionEntry"/>
<entryLink id="b86a-3452-cc93-e54d" name="Dogmata" hidden="false" collective="false" import="true" targetId="2f21-55f2-c323-73a7" type="selectionEntry"/>
<entryLink id="99d7-3223-01c6-5cac" name="Preacher" hidden="false" collective="false" import="true" targetId="f97b-ff32-9d2a-2e94" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="33d2-af62-73dc-e166" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="144c-3a6a-9675-824d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ae9e-2f37-c66a-dcdd" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="aef0-f0ac-b792-2c88" name="Castigator" hidden="false" collective="false" import="true" targetId="7be4-0b79-7cd1-e99e" type="selectionEntry"/>
<entryLink id="6c2d-fb3d-f9fc-7cf8" name="Hospitaller" hidden="false" collective="false" import="true" targetId="5b82-01ed-74cf-6a85" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a68e-7404-c78e-db6c" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9d9f-717e-0e41-9ed7" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="111f-1eb6-eaf9-72a7" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a8db-b342-2152-4626" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="564f-ccdd-4250-6af2" name="Ephrael Stern and Kyganil of the Bloody Tears" hidden="false" collective="false" import="true" targetId="4551-06b1-6ba1-e5ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="343a-d745-b469-9510" name="New CategoryLink" hidden="false" targetId="0f35-2c34-ba6a-8105" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="78f5-de85-9408-0680" name="Dialogus" hidden="false" collective="false" import="true" targetId="c456-37fc-f55a-84a2" type="selectionEntry">
<categoryLinks>
<categoryLink id="e533-7834-2264-1614" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4c9d-eebf-4a3d-b0c9" name="Sisters Novitiate Squad" hidden="false" collective="false" import="true" targetId="3aaa-17ad-5b22-7e56" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="87b3-cde1-38bf-a82e" name="Battle Sister Squad" publicationId="d124-b283-pubN72234" page="82" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="87b3-cde1-38bf-a82e" value="6.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="87b3-cde1-38bf-a82e" value="11.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="[Legends]">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="19f9-a2ad-5c65-ef08" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="131c-48b7-5c45-5030" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="87b3-cde1-38bf-a82e" value="16.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="2967-2608-2c05-e072" name="Acts of Faith" hidden="false" targetId="6d3f2230-86ac-8ae9-caaf-086dc960e681" type="rule"/>
<infoLink id="3cda-0cae-ee2a-5ad5" name="Shield of Faith" hidden="false" targetId="58e0-6802-a36d-babe" type="rule"/>
<infoLink id="a1ad-61f4-67ce-b4ad" name="Sacred Rites" hidden="false" targetId="eac3-8d18-c0ab-a2c0" type="rule"/>
<infoLink id="9dc7-6d34-cce2-95f7" name="Armour of Contempt" hidden="false" targetId="c2fa-da03-c7f3-39f9" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ad1d-fd0f-7563-84e3" name="New CategoryLink" hidden="false" targetId="9324-1e8e-5e8e-d7c0" primary="false"/>
<categoryLink id="a398-679a-9b8f-dc80" name="New CategoryLink" hidden="false" targetId="b57d-c2a9-2713-8872" primary="false"/>
<categoryLink id="62c7-6893-210f-ea47" name="New CategoryLink" hidden="false" targetId="76ae-cee8-24fc-5d25" primary="false"/>
<categoryLink id="933a-d3a4-5868-be28" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="5cc4-28ea-250c-3a50" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="d4c7-3252-deef-d6bc" name="New CategoryLink" hidden="false" targetId="a498-f9be-a561-7a62" primary="false"/>
<categoryLink id="07b2-0910-670d-9807" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="30d8-549b-ffe1-db85" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="856a-b93c-7231-8410" name="Sister Superior" page="" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ad9-d9ed-4e08-2a05" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bde-dd81-d38b-3dc1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f450-b7eb-1303-7510" name="Sister Superior" page="" hidden="false" targetId="20d8-3ee2-0811-89b2" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="0181-c00e-c5f4-a4b4" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00e2-a7cd-285b-bebb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6b2-a64e-2793-62c3" type="max"/>
</constraints>
</entryLink>
<entryLink id="71c9-3613-887d-fea5" name="Additional Melee Weapon" hidden="false" collective="false" import="true" targetId="794a-087d-636d-cddd" type="selectionEntryGroup"/>
<entryLink id="e3af-e144-f759-c9f0" name="Stratagem: A Sacred Burden" hidden="false" collective="false" import="true" targetId="b30f-3238-cbc0-2243" type="selectionEntry"/>
<entryLink id="59a8-b302-60c7-31a5" name="Relics of the Ecclesiarchy (Sacred Burden)" hidden="false" collective="false" import="true" targetId="3ab3-bba6-0410-f5df" type="selectionEntryGroup"/>
<entryLink id="f138-5fde-d93e-e3a1" name="Superior Wargear Options" hidden="false" collective="false" import="true" targetId="7f75-29d4-c969-5b15" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="11.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="8117-af04-6be3-66d8" name="Battle Sisters" page="" hidden="false" collective="false" import="true" defaultSelectionEntryId="92ef-0c5a-e4ab-53b5">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b9a-56a5-144e-7dc0" type="min"/>
<constraint field="selections" scope="parent" value="19.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="929f-16d4-0886-53ee" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="2088-e193-be44-bc02" name="Battle Sister w/ Special Weapon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="87b3-cde1-38bf-a82e" value="10.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="lessThan"/>
</conditions>
</modifier>
<modifier type="increment" field="21a6-7608-a352-094b" value="1.0">
<repeats>
<repeat field="selections" scope="87b3-cde1-38bf-a82e" value="10.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="21a6-7608-a352-094b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b43c-d591-977d-a6d1" name="Battle Sister" hidden="false" targetId="7741-694d-c4f9-c1bb" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="a353-3470-8722-a409" name="Special Weapons" hidden="false" collective="false" import="true" targetId="e6da-027a-c0cf-91ec" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd0f-094a-93de-29b7" type="max"/>
</constraints>
</entryLink>
<entryLink id="fd2d-58af-6aee-fe1b" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a120-05e8-c82d-bed7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb05-6d92-e316-d500" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d49-8621-0b4c-d57b" type="min"/>
</constraints>
</entryLink>
<entryLink id="5fa3-01b9-f446-ea60" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7661-dc35-577f-c13d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e13e-f57f-9dd7-fd07" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="11.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3dff-b761-7f4d-71e0" name="Battle Sister w/ Special or Heavy Weapon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="2013-297a-59fa-07b0" value="1.0">
<conditions>
<condition field="selections" scope="87b3-cde1-38bf-a82e" value="20.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2013-297a-59fa-07b0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d0ff-19e0-e834-7f0b" name="New InfoLink" hidden="false" targetId="7741-694d-c4f9-c1bb" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d038-82b4-d845-3790" name="Weapon: " hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="12aa-6a0b-b070-1ff4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="0d2e-82e5-2910-b165" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7cc6-16c0-936d-193e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2b80-16a0-9b4a-4327" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="3e04-4239-f73c-50cb" value="0.0">
<conditions>
<condition field="selections" scope="3dff-b761-7f4d-71e0" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="956c-332b-05a1-5b2f" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="956c-332b-05a1-5b2f" name="Special Weapons" hidden="false" collective="false" import="true" targetId="e6da-027a-c0cf-91ec" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="432c-a150-fea5-e2ae" value="0.0">
<conditions>
<condition field="selections" scope="3dff-b761-7f4d-71e0" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7cc6-16c0-936d-193e" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9be0-76f3-fa77-5db9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a120-05e8-c82d-bed7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5513-0a85-959a-5a88" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e16b-d049-0dc5-8764" type="min"/>
</constraints>
</entryLink>
<entryLink id="807e-c0eb-623c-c728" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="880b-755c-f75a-0f56" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="431d-fed6-8828-bfd7" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="11.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="92ef-0c5a-e4ab-53b5" name="Battle Sister" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="f848-46a3-2bdd-acaf" name="Battle Sister" page="" hidden="false" targetId="7741-694d-c4f9-c1bb" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="2211-d0d8-99d9-108a" name="Boltgun" hidden="false" collective="false" import="true" targetId="896b-28f1-e64a-3eb4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3505-8d05-c5f9-01f3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aedc-57ff-ff66-d91c" type="min"/>
</constraints>
</entryLink>
<entryLink id="ad55-6112-3ea6-b185" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="a120-05e8-c82d-bed7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8257-97b5-bf4d-66ff" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f701-a704-6e2a-19dc" type="min"/>
</constraints>
</entryLink>
<entryLink id="183c-e028-eece-c7a4" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c87-e9a0-c315-fe41" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0ab-f6d8-5c7b-6c8a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="11.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9c29-0d2d-0436-21e2" name="Battle Sister w/ Simulacrum" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2039-a3c7-a7c3-0407" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3d67-80cc-e2f8-ddad" name="Battle Sister" hidden="false" targetId="7741-694d-c4f9-c1bb" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="a48a-4577-9222-8030" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="a120-05e8-c82d-bed7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="adde-a245-48ee-455a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cf7-08ec-5903-91b5" type="min"/>
</constraints>
</entryLink>
<entryLink id="f236-c9e3-76f2-3532" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="44d8-38e1-d5dc-0be1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df04-db87-fb8f-1ac5" type="max"/>
</constraints>
</entryLink>
<entryLink id="395f-b2ed-6dd2-dce6" name="Boltgun" hidden="false" collective="false" import="true" targetId="896b-28f1-e64a-3eb4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c8e-79bb-b2d0-287a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="020f-8676-d918-22cc" type="min"/>
</constraints>
</entryLink>
<entryLink id="14be-1707-b2c9-7a0d" name="Simulacrum Imperialis" hidden="false" collective="false" import="true" targetId="5853-7d82-1711-166d" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="11.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6b7c-4ec2-e729-5a25" name="Unit has battle honors?" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="e145-3b16-1db6-0d96" name="Battle Honors" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="c201-1168-fb27-acf7" name="Incensor Cherub" hidden="false" collective="false" import="true" targetId="060c-f7dc-0e1c-8ee4" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e1bb-8fd1-939d-8952" name="Canoness" publicationId="d124-b283-pubN72234" page="77" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="append" field="name" value="[Legends]">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bbec-b231-4506-df60" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e218-38ca-b949-30b8" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="d644-d1d3-73c5-e56d" name="New InfoLink" hidden="false" targetId="6d3f2230-86ac-8ae9-caaf-086dc960e681" type="rule"/>
<infoLink id="96e8-c706-face-635a" name="Rosarius" hidden="false" targetId="4ec0-bf3e-c6e8-c7ef" type="profile"/>
<infoLink id="84dd-d808-13c0-bdc6" name="Shield of Faith" hidden="false" targetId="58e0-6802-a36d-babe" type="rule"/>
<infoLink id="32ac-5ce6-820c-0689" name="Sacred Rites" hidden="false" targetId="eac3-8d18-c0ab-a2c0" type="rule"/>
<infoLink id="02ad-18f1-c92c-bdb3" name="Lead the Righteous (Aura)" hidden="false" targetId="d7bc-9a90-18bf-6cff" type="profile"/>
<infoLink id="6a1a-0577-c846-892f" name="Canoness" hidden="false" targetId="c6ba-22e8-cb3e-ca06" type="profile"/>
<infoLink id="4acd-c239-bfc6-cf2d" name="Armour of Contempt" hidden="false" targetId="c2fa-da03-c7f3-39f9" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d952-c509-8ef4-77c8" name="New CategoryLink" hidden="false" targetId="9324-1e8e-5e8e-d7c0" primary="false"/>
<categoryLink id="2521-2eb5-2738-23c6" name="New CategoryLink" hidden="false" targetId="b57d-c2a9-2713-8872" primary="false"/>
<categoryLink id="c3b2-dafb-afdd-c3bf" name="New CategoryLink" hidden="false" targetId="76ae-cee8-24fc-5d25" primary="false"/>
<categoryLink id="5698-17f8-cea9-a7dc" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="e00e-f283-744a-39d2" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="6f03-693b-40fd-366a" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="0214-360f-2bcc-9c16" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="d494-ebd0-a712-a682" name="New CategoryLink" hidden="false" targetId="a68e-7404-c78e-db6c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="5efe-1233-e363-a230" name="Rod of Office" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="e1bb-8fd1-939d-8952" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bc9e-551d-9afb-78d5" type="equalTo"/>
<condition field="selections" scope="e1bb-8fd1-939d-8952" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fe62-3515-8664-6afb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="d6bc-ed5e-0774-6f97" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6bc-ed5e-0774-6f97" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ded-3a54-579c-353f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5674-a04f-55f6-b324" name="Rod of Office" hidden="false" targetId="11a5-df49-ffed-6702" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="8b79-66d3-3f84-32ec" name="May have:" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="e1bb-8fd1-939d-8952" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c7fb-955d-a717-3a72" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d42-3fdf-28d9-10cf" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="0bec-dba0-5f12-f3de" name="Null Rod" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="16d2-488a-9670-a49b" type="max"/>
</constraints>
<profiles>
<profile id="fbf3-ab3c-fa26-8927" name="Null Rod" publicationId="d124-b283-pubN72234" page="77" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">The bearer's unit cannot be targeted or affected by psychic powers. In addition, the bearer has the following ability: "Null Rod (Aura): Whilst an enemy PSYKER unit is within 12" of the bearer, subtract 1 from Psychic tests taken for that unit."</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6106-c5eb-cd9c-1e3e" name="Brazier of Holy Fire" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd5d-dc99-6f6c-d62a" type="max"/>
</constraints>
<profiles>
<profile id="e52a-de2a-5e7a-d86c" name="Brazier of Holy Fire" publicationId="d124-b283-pubN72234" page="95" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">*</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">*</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">*</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">One use only. Each time an attack is made with this weapon, that attack automatically hits the target, and on an unmodified wound roll of a 4+ (or 2+ if the target contains any DAEMON models), the target suffers 1 mortal wound and the attack sequence ends.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="e129-93c4-dbfc-28a0" name="Plasma Pistol" hidden="false" collective="false" import="true" defaultSelectionEntryId="8abd-6a1d-d734-67ec">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2a8f-7272-e736-d45c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="897a-42a1-7561-efd2" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="bbec-b231-4506-df60" name="Legends Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2501-b800-67d4-42f9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3124-375e-b705-10cd" name="Boltgun" hidden="false" collective="false" import="true" targetId="b61f-a3c1-827d-c5b6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3925-c615-c1ae-a833" type="max"/>
</constraints>
</entryLink>
<entryLink id="c79e-2753-883c-5535" name="Combi-flamer" hidden="false" collective="false" import="true" targetId="0162-7ef2-2889-17b8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="debf-3128-ae3c-de9d" type="max"/>
</constraints>
</entryLink>
<entryLink id="8cee-7d88-a281-cb8b" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a2d5-c844-fbe5-7bb5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="09b7-7750-7e2c-089b" type="max"/>
</constraints>
</entryLink>
<entryLink id="1399-87db-1f62-91ca" name="Combi-plasma" hidden="false" collective="false" import="true" targetId="ae42-0761-ed08-9d48" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07e8-a680-dc78-43df" type="max"/>
</constraints>
</entryLink>
<entryLink id="70dc-993f-5aca-1851" name="Storm bolter" hidden="false" collective="false" import="true" targetId="2b03-8d64-3711-f300" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a0f6-60f3-d128-d7a6" type="max"/>
</constraints>
</entryLink>
<entryLink id="8eba-a3f6-b353-ea99" name="Condemnor Boltgun" hidden="false" collective="false" import="true" targetId="f382-50f2-0c20-d5b9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe1f-4495-5259-eff1" type="max"/>
</constraints>
</entryLink>
<entryLink id="2ef7-851e-f762-4e14" name="Inferno pistol" hidden="false" collective="false" import="true" targetId="02eb-b987-636f-1e56" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a636-45f1-eb70-32c3" type="max"/>
</constraints>
</entryLink>
<entryLink id="34d8-ab2f-798c-9272" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="c897-188f-9294-74f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6746-33af-716e-5a9b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ecb7-69a3-e9ce-7092" name="Pistols" hidden="false" collective="false" import="true" targetId="f9cd-d162-4f4c-28d7" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="fc9e-83d9-d2b9-67ad" type="max"/>
</constraints>
</entryLink>
<entryLink id="7829-c646-7a57-2dd8" name="Condemnor Boltgun" hidden="false" collective="false" import="true" targetId="f382-50f2-0c20-d5b9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ade7-be39-241b-34dd" type="max"/>
</constraints>
</entryLink>
<entryLink id="8abd-6a1d-d734-67ec" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="c897-188f-9294-74f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="416a-227c-d272-7f27" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="aea7-0e45-9fb3-f244" name="Power Sword" hidden="false" collective="false" import="true" defaultSelectionEntryId="b643-7e6d-8309-699a">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="29fb-8230-8677-55c8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e75d-f92d-3bb0-3810" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="3d8e-f0c6-7deb-35b8" name="Blessed Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d723-e6ac-9046-cf66" type="max"/>
</constraints>
<profiles>
<profile id="d6b2-487f-467d-f9cc" name="Blessed Blade" publicationId="d124-b283-pubN72234" page="77" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="e218-38ca-b949-30b8" name="Legends Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6063-3645-8d18-135d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d6ca-7e85-a2a3-cda8" name="Eviscerator" hidden="false" collective="false" import="true" targetId="6ff3-cd33-a7fe-f19f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2f42-3c54-11ce-3e7c" type="max"/>
</constraints>
</entryLink>
<entryLink id="41d2-2fd9-830f-59cf" name="Power maul" hidden="false" collective="false" import="true" targetId="bc21-41e0-3919-d231" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="23da-420f-fa89-23bc" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="4.0"/>
</costs>
</entryLink>
<entryLink id="76ca-bc27-a0bb-da0e" name="Power axe" hidden="false" collective="false" import="true" targetId="3292-34e6-f679-d5b9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="660b-6d19-0cab-77c4" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="4.0"/>
</costs>
</entryLink>
<entryLink id="9d89-839e-661b-19a6" name="Boltgun" hidden="false" collective="false" import="true" targetId="b61f-a3c1-827d-c5b6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17d0-ab6e-b54d-b0a4" type="max"/>
</constraints>
</entryLink>
<entryLink id="61dc-d5ef-f034-dcce" name="Combi-flamer" hidden="false" collective="false" import="true" targetId="0162-7ef2-2889-17b8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c21-c8ca-8e0e-6455" type="max"/>
</constraints>
</entryLink>
<entryLink id="a9d1-2499-5951-03b3" name="Combi-melta" hidden="false" collective="false" import="true" targetId="a2d5-c844-fbe5-7bb5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="51ce-a2d3-c836-f8bb" type="max"/>
</constraints>
</entryLink>
<entryLink id="8d9c-2135-b4b3-b887" name="Combi-plasma" hidden="false" collective="false" import="true" targetId="ae42-0761-ed08-9d48" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72db-0996-f140-69ea" type="max"/>
</constraints>
</entryLink>
<entryLink id="7148-5c7b-f6f7-99b5" name="Storm bolter" hidden="false" collective="false" import="true" targetId="2b03-8d64-3711-f300" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8242-3a33-ff44-e5f6" type="max"/>
</constraints>
</entryLink>
<entryLink id="2db1-1ef5-f64d-2f75" name="Condemnor Boltgun" hidden="false" collective="false" import="true" targetId="f382-50f2-0c20-d5b9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5333-09bf-36e9-ff8f" type="max"/>
</constraints>
</entryLink>
<entryLink id="ab81-a08d-44bc-e242" name="Inferno pistol" hidden="false" collective="false" import="true" targetId="02eb-b987-636f-1e56" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e2c-c6ba-47c1-431c" type="max"/>
</constraints>
</entryLink>
<entryLink id="3024-7861-e606-15f2" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="c897-188f-9294-74f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8982-8f97-ef44-0c37" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e1fe-1aa5-c9f3-037b" name="Chainsword" hidden="false" collective="false" import="true" targetId="c7fb-955d-a717-3a72" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6432-5d47-8dcd-93a5" type="max"/>
</constraints>
</entryLink>
<entryLink id="b643-7e6d-8309-699a" name="Power sword" hidden="false" collective="false" import="true" targetId="bc9e-551d-9afb-78d5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9f4f-4ede-648d-f5c0" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5838-49c7-7714-f691" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb25-cd9c-53a0-c7d4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b817-634b-bab7-9615" type="max"/>
</constraints>
</entryLink>
<entryLink id="4cc8-67a4-bf09-e0cd" name="Relics of the Ecclesiarchy" hidden="false" collective="false" import="true" targetId="1bb7-4aaf-cc19-abe1" type="selectionEntryGroup"/>
<entryLink id="32d7-3f94-509f-48fd" name="Warlord" hidden="false" collective="false" import="true" targetId="cc31-44af-22df-f291" type="selectionEntry"/>
<entryLink id="79dc-f01d-bee6-39b3" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="1a07-5b23-c2c5-15fd" type="selectionEntryGroup"/>
<entryLink id="8442-17ca-41b6-345a" name="Blessings of the Faithful" hidden="false" collective="false" import="true" targetId="8f48-698c-8cfe-1311" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3e0-c378-8a23-eb6a" type="max"/>
</constraints>
</entryLink>
<entryLink id="0044-44e5-ded3-7fe1" name="Character Stratagems" hidden="false" collective="false" import="true" targetId="2f3c-5440-477c-e543" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="380e-51e3-7db4-f3b1" name="Dominion Squad" publicationId="d124-b283-pubN72234" page="112" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="380e-51e3-7db4-f3b1" value="6.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="[Legends]">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="19f9-a2ad-5c65-ef08" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="131c-48b7-5c45-5030" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="d53a-0e7d-c793-60b6" name="Acts of Faith" hidden="false" targetId="6d3f2230-86ac-8ae9-caaf-086dc960e681" type="rule"/>
<infoLink id="34e9-b7d0-baac-dbd3" name="Shield of Faith" hidden="false" targetId="58e0-6802-a36d-babe" type="rule"/>
<infoLink id="958b-650a-f336-ec9b" name="Sacred Rites" hidden="false" targetId="eac3-8d18-c0ab-a2c0" type="rule"/>
<infoLink id="4959-9742-e4bb-3e54" name="Holy Vanguard" hidden="false" targetId="6752-6714-6243-8c1f" type="profile"/>
<infoLink id="f433-cf9e-a9c3-bedf" name="Armour of Contempt" hidden="false" targetId="c2fa-da03-c7f3-39f9" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5d04-e352-dcd8-641b" name="New CategoryLink" hidden="false" targetId="9324-1e8e-5e8e-d7c0" primary="false"/>
<categoryLink id="18a4-8a7a-1593-4231" name="New CategoryLink" hidden="false" targetId="b57d-c2a9-2713-8872" primary="false"/>
<categoryLink id="e541-c4c4-307b-166e" name="New CategoryLink" hidden="false" targetId="76ae-cee8-24fc-5d25" primary="false"/>
<categoryLink id="e558-f381-5bbd-ef5b" name="New CategoryLink" hidden="false" targetId="cd7c-3dbf-64e5-fec4" primary="false"/>
<categoryLink id="7638-844d-5e81-37a8" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="b5e7-d0ba-070c-0228" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="8860-3704-3a38-32b7" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="92b7-f035-731d-2b0e" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2137-1702-d795-e5ef" name="Dominion Superior" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0544-3d1c-08ae-ed17" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae92-3a6b-9b5f-498b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="60b6-8f00-c565-d7b1" name="Dominion Superior" hidden="false" targetId="02d1-38c8-53b5-949e" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="0b5c-dee2-910d-9b4e" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="a485-e90d-e726-3996" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d91-e875-0398-bd7d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="abb8-2c4f-f5f5-eec4" type="max"/>