forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adepta Sororitas.cat
1215 lines (1214 loc) · 97.6 KB
/
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="aff2-95a5-3b50-cc8f" name="Adepta Sororitas" revision="7" battleScribeVersion="2.03" library="false" gameSystemId="a467-5f42-d24c-6e5b" gameSystemRevision="34" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="a486-00fc-27d4-1d2f" name="Battle Sister" publicationId="69e0-b697-c118-d32d" page="107" hidden="false"/>
<categoryEntry id="947a-3d06-b5a3-0b87" name="Sister Repentia" publicationId="69e0-b697-c118-d32d" page="107" hidden="false"/>
<categoryEntry id="a846-568e-8eaf-ae16" name="Arco-Flagellant" publicationId="69e0-b697-c118-d32d" page="108" hidden="false"/>
<categoryEntry id="69e0-7bda-675b-44d5" name="Canoness" publicationId="69e0-b697-c118-d32d" page="108" hidden="false"/>
<categoryEntry id="d4a8-f528-a72a-a704" name="Repentia Superior" publicationId="69e0-b697-c118-d32d" page="109" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="8951-9192-4ce3-abd0" name="Battle Sister" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="fec1-0fa3-951f-f82e" type="selectionEntry">
<categoryLinks>
<categoryLink id="9b89-b77d-c46d-d28e" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b77c-ab5a-b7d6-48c4" name="Specialism" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="933e-e1f4-7fd5-ad0a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e83-327f-5105-01c5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="464d-89fa-ba8c-0509" name="Leader" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="2abd-70f4-e7e8-4d18" type="selectionEntry"/>
<entryLink id="0e61-67b6-0fda-e4f2" name="Comms" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="02a0-4107-4818-7c99" type="selectionEntry"/>
<entryLink id="badd-b042-9289-d024" name="Demolitions" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="1933-2ec9-f5b1-5666" type="selectionEntry"/>
<entryLink id="bef3-81c4-3071-c03b" name="Medic" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="01ab-630a-cf81-38c9" type="selectionEntry"/>
<entryLink id="e8fc-f2c3-af6d-c437" name="Sniper" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ead5-ea32-5412-c857" type="selectionEntry"/>
<entryLink id="1716-c0a3-282b-25d9" name="Veteran" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c89e-5e73-276f-cc16" type="selectionEntry"/>
<entryLink id="4f3b-9291-5586-a35d" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="d2c4-34ca-f2cf-d2b2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</entryLink>
<entryLink id="bd25-1f13-949c-0fc9" name="Battle Sister" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="fec1-0fa3-951f-f82e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a8e3-fbf2-bc95-2fff" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7cb4-7242-7572-2274" name="Battle Sister Gunner" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ef5f-e0ca-ea93-4eec" type="selectionEntry">
<categoryLinks>
<categoryLink id="6b76-fdf1-2ae5-7d65" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="4edb-0847-e8de-3144" name="Specialism" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a808-fa3e-9a3c-f6ee" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7077-474b-f1f6-7b35" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5d3b-b56e-3142-db6f" name="Leader" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="2abd-70f4-e7e8-4d18" type="selectionEntry"/>
<entryLink id="2e38-0c5b-694d-83ec" name="Heavy" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="8c9b-a772-02e7-d673" type="selectionEntry"/>
<entryLink id="111f-de91-c380-5f46" name="Comms" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="02a0-4107-4818-7c99" type="selectionEntry"/>
<entryLink id="36a4-ddc8-63cb-4dda" name="Demolitions" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="1933-2ec9-f5b1-5666" type="selectionEntry"/>
<entryLink id="08e2-f77c-b58b-02da" name="Medic" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="01ab-630a-cf81-38c9" type="selectionEntry"/>
<entryLink id="2047-626d-8ec1-0508" name="Sniper" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ead5-ea32-5412-c857" type="selectionEntry"/>
<entryLink id="5924-c495-7a8c-7fef" name="Veteran" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c89e-5e73-276f-cc16" type="selectionEntry"/>
<entryLink id="e716-664e-e51b-1c9b" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="d2c4-34ca-f2cf-d2b2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</entryLink>
<entryLink id="dd1e-414c-85f1-7396" name="Battle Sister Gunner" hidden="false" collective="false" import="true" targetId="ef5f-e0ca-ea93-4eec" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d934-64c4-cea7-2cc2" name="Non-specialist" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c6f0-0304-d7c5-493b" name="Sister Superior" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7d51-432e-a870-9415" type="selectionEntry">
<categoryLinks>
<categoryLink id="0fc5-b7f0-6645-14d3" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5984-31b0-6ef3-1f6c" name="Specialism" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d5e-e89f-9dcd-4143" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d075-5edc-9c65-edc9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="eb44-35db-b48c-aa00" name="Comms" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="02a0-4107-4818-7c99" type="selectionEntry"/>
<entryLink id="1e38-36cb-17d6-52d2" name="Demolitions" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="1933-2ec9-f5b1-5666" type="selectionEntry"/>
<entryLink id="e2a5-c1f7-8ff7-0d8c" name="Medic" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="01ab-630a-cf81-38c9" type="selectionEntry"/>
<entryLink id="e443-92d8-7f32-d350" name="Sniper" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ead5-ea32-5412-c857" type="selectionEntry"/>
<entryLink id="3cd2-78df-df7b-6d44" name="Veteran" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c89e-5e73-276f-cc16" type="selectionEntry"/>
<entryLink id="3333-b0e8-dea7-4164" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="d2c4-34ca-f2cf-d2b2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</entryLink>
<entryLink id="6517-4e5f-e4a2-dab5" name="Sister Superior" hidden="false" collective="false" import="true" targetId="7d51-432e-a870-9415" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1289-4301-b359-b69e" name="Non-specialist" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3aaa-41ea-21f4-7aad" name="Sister Superior" hidden="false" collective="false" import="true" targetId="7d51-432e-a870-9415" type="selectionEntry">
<categoryLinks>
<categoryLink id="9c32-a7cd-6b55-ab2b" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="1907-1b03-e5a2-d117" name="Leader" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="2abd-70f4-e7e8-4d18" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="081e-7625-8e2c-d787" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31d0-6c3a-522a-6dc4" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="a84e-f7c2-b522-29a2" name="Battle Sister Fire Team" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="b915-0097-0beb-482f" 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="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ab2a-f8db-3dab-775a" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2d6f-8c61-51fa-aa59" name="Sister Repentia" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="eac7-a317-d01b-29f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="d71d-fa00-f3cd-5783" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="501a-843c-84e5-87fa" name="Specialism" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="23a2-85b2-8fc8-5c1c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc04-5bb4-5911-f4fd" type="min"/>
</constraints>
<entryLinks>
<entryLink id="4f0b-bbdc-3833-9155" name="Combat" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="cc58-f869-82d1-b353" type="selectionEntry"/>
<entryLink id="d777-38ae-f38c-8c92" name="Veteran" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c89e-5e73-276f-cc16" type="selectionEntry"/>
<entryLink id="c79a-41ea-ec78-6210" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="d2c4-34ca-f2cf-d2b2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</entryLink>
<entryLink id="8ffa-402d-2455-0b7f" name="Sister Repentia" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="eac7-a317-d01b-29f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="ad62-73e0-54f3-7e50" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="204f-a872-2359-b11d" name="Sister Repentia" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="eac7-a317-d01b-29f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="6038-fb8b-bfbd-187d" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="dd25-015e-d4f9-94c7" name="Leader" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="2abd-70f4-e7e8-4d18" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f637-e320-04ba-8ec4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d563-9090-d583-ab15" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="b416-f444-ca96-2da0" name="Arco-Flagellant" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="9f1e-1b50-98e1-192f" type="selectionEntry">
<categoryLinks>
<categoryLink id="6097-49cc-3422-d863" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="764c-43a9-4112-8f34" name="Arco-Flagellant" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="9f1e-1b50-98e1-192f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="fa49-df95-07ac-3855" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="49c3-9b3c-fe15-3b98" name="Endurant" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ddf6-cd55-e57a-f529" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="01b4-216e-3d42-74b8" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f2eb-1d06-3e84-b026" name="Endurant" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ddf6-cd55-e57a-f529" type="selectionEntry">
<categoryLinks>
<categoryLink id="b189-fb99-ab19-6ff6" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="732a-40d0-d8ae-a80e" name="Arco-Flagellant Fire Team" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="6e9e-5839-c224-2ca6" 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="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7b6f-4736-f8fc-242a" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="352e-d7d4-63de-d363" name="Canoness" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="cd5b-0e5a-e8c9-bcfe" type="selectionEntry"/>
<entryLink id="8cc0-18c3-db9e-dfb3" name="Repentia Superior" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="cf7d-281f-f0c3-418d" type="selectionEntry"/>
<entryLink id="acf5-fcef-c375-b563" name="Janus Draik" hidden="false" collective="false" import="true" targetId="51ae-59d9-809a-f5dc" type="selectionEntry"/>
<entryLink id="480b-b2f4-8775-10e3" name="Taddeus the Purifier" hidden="false" collective="false" import="true" targetId="f478-68da-2b34-2a6c" type="selectionEntry"/>
<entryLink id="dbd6-dec5-3a12-c0c3" name="Pious Vorne" hidden="false" collective="false" import="true" targetId="748b-9d1f-176c-31b9" type="selectionEntry"/>
<entryLink id="ac94-1fc9-51e8-81d3" name="Gotfret de Montbard" hidden="false" collective="false" import="true" targetId="a592-56e2-6741-3767" type="selectionEntry"/>
<entryLink id="a570-a62b-a49f-8df1" name="Neyam Shai Murad" hidden="false" collective="false" import="true" targetId="a3c0-0ae0-be3f-712b" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="fec1-0fa3-951f-f82e" name="Battle Sister" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="75fe-5b3b-8a10-2dca" name="Battle Sister" publicationId="69e0-b697-c118-d32d" page="107" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">4+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">1</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2114-babe-0635-55ac" name="Shield of Faith" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="529a-db86-4d87-da61" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b695-ab91-199e-1fbc" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="d1f3-dc4e-787f-bc57" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="a5d0-78b8-ad02-89a3" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="27d4-f6c0-6fdf-f204" name="Battle Sister" hidden="false" targetId="a486-00fc-27d4-1d2f" primary="false"/>
<categoryLink id="48b1-7cba-b73d-4db6" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="81fd-437e-6c87-8076" name="Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="29a8-a3ad-c367-508f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ced-622b-93e4-3d72" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d940-d7c3-2465-8b0f" type="min"/>
</constraints>
</entryLink>
<entryLink id="afe4-debe-001b-83bb" name="Bolt pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fea-867c-cb5a-e78c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ff9-a9ea-17af-c029" type="max"/>
</constraints>
</entryLink>
<entryLink id="9b6c-147a-4c72-f269" name="Frag and krak grenades" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
<entryLink id="f78d-c034-6c67-cedf" name="Simulacrum Imperialis" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="0212-45ab-4056-0a67" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="34c2-7af6-02bf-79fe" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="9.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ef5f-e0ca-ea93-4eec" name="Battle Sister Gunner" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="5413-8870-5e48-3e25" value="2.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5413-8870-5e48-3e25" type="max"/>
</constraints>
<profiles>
<profile id="f359-05f9-b08e-6c79" name="Battle Sister Gunner" publicationId="69e0-b697-c118-d32d" page="107" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">4+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">1</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="328d-9459-87d5-8b2f" name="Shield of Faith" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="529a-db86-4d87-da61" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7700-86d9-4d14-32c0" name="Battle Sister" hidden="false" targetId="a486-00fc-27d4-1d2f" primary="false"/>
<categoryLink id="1e5f-edd9-5277-1844" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="21ec-df89-a048-8d68" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="3309-0033-c558-d7d8" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="d3d9-b0b1-2ea9-b42e" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="153b-358a-ce5c-095e" name="Boltgun Replacement" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="4dbb-f695-49c2-f17c">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5f0-2cc7-4b63-0e65" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="85b2-8187-e381-c0ab" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4dbb-f695-49c2-f17c" name="Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="29a8-a3ad-c367-508f" type="selectionEntry"/>
<entryLink id="a347-ea53-a149-65cd" name="Flamer" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="82c0-6c6c-53bd-cfaa" type="selectionEntry"/>
<entryLink id="9813-8870-ec37-28f3" name="Meltagun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="a67c-193f-7959-9d7a" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="3.0"/>
</modifiers>
</entryLink>
<entryLink id="7eb8-ddbe-1d66-9642" name="Storm bolter" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="fa76-84bc-7536-6c24" type="selectionEntry"/>
<entryLink id="e706-3d3a-65ee-a7af" name="Heavy bolter" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="9b48-e38f-8deb-7f0a" type="selectionEntry"/>
<entryLink id="be0f-e8fc-9bf4-235e" name="Heavy flamer" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="cced-7b5b-2ab8-5ef5" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="4.0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="28e8-54d5-ebf8-9979" name="Bolt pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1f0a-d221-91d7-32e3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3115-009b-07de-8825" type="max"/>
</constraints>
</entryLink>
<entryLink id="0d98-c4d7-31dd-cac3" name="Frag and krak grenades" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7d51-432e-a870-9415" name="Sister Superior" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="e734-d4bf-55f9-3e6f" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e734-d4bf-55f9-3e6f" type="max"/>
</constraints>
<profiles>
<profile id="7a32-5513-75b3-8b8e" name="Sister Superior" publicationId="69e0-b697-c118-d32d" page="107" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">4+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a386-4501-51df-600c" name="Shield of Faith" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="529a-db86-4d87-da61" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b18d-2d98-1c46-22bf" name="Battle Sister" hidden="false" targetId="a486-00fc-27d4-1d2f" primary="false"/>
<categoryLink id="94b7-d1ad-3495-d0e9" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="56a7-75cf-653d-68d0" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="6935-8439-e3a8-3329" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="7c85-8169-64ef-4748" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9ff7-5fff-e01b-57f3" name="Pistol Replacement" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="e2f9-6981-d941-a7e2">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7caa-33f3-9e21-99dc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e96d-5cc7-e3ab-36a0" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e2f9-6981-d941-a7e2" name="Bolt pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry"/>
<entryLink id="1ab2-eebf-2b97-c0cf" name="Plasma pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="4584-4260-f292-3812" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="1.0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e4fb-3739-5f62-a946" name="Boltgun Replacement" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="66a0-2b91-5a1a-e00f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2d8a-8633-89b5-29e5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bcd9-1532-75c3-edf9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="66a0-2b91-5a1a-e00f" name="Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="29a8-a3ad-c367-508f" type="selectionEntry"/>
<entryLink id="bc85-5ff7-9fe1-d0c8" name="Bolt pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry"/>
<entryLink id="1bb0-d4fa-f2b9-40a5" name="Combi-flamer" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="87cb-ba2f-b55c-b525" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="3.0"/>
</modifiers>
</entryLink>
<entryLink id="21cc-28d1-b4ea-8759" name="Combi-melta" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="9458-28fc-1037-5630" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="3.0"/>
</modifiers>
</entryLink>
<entryLink id="9602-a98f-1d12-5835" name="Combi-plasma" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="e86f-4313-7f7b-ca18" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="4.0"/>
</modifiers>
</entryLink>
<entryLink id="490f-6147-de58-f6c5" name="Chainsword" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="a4a3-5f51-7929-17df" type="selectionEntry"/>
<entryLink id="36b7-b42e-055f-fb14" name="Power sword" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ecb3-8447-db60-da63" type="selectionEntry"/>
<entryLink id="32b9-bd70-e64c-8ce3" name="Condemnor Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="4a0d-d15a-76b0-409e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5415-7e3c-9cd4-6413" name="Extra Equipment" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="3886-42b0-6913-0a0d">
<modifiers>
<modifier type="set" field="203e-24c8-1005-e012" value="0.0">
<conditions>
<condition field="selections" scope="7d51-432e-a870-9415" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="66a0-2b91-5a1a-e00f" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="203e-24c8-1005-e012" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3886-42b0-6913-0a0d" name="Chainsword" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="a4a3-5f51-7929-17df" type="selectionEntry"/>
<entryLink id="bc60-d19a-4424-c51c" name="Power sword" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ecb3-8447-db60-da63" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6e91-6e09-1537-fab1" name="Frag and krak grenades" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0212-45ab-4056-0a67" name="Simulacrum Imperialis" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="9581-ec2e-cfa6-cb77" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9581-ec2e-cfa6-cb77" type="max"/>
</constraints>
<profiles>
<profile id="552b-160b-c6fd-3980" name="Simulacrum Imperialis" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">The Shield of Faith ability grants a 5+ invulnerable save instead of a 6+ to models from your kill team, whilst they are within 6" of any friendly models with a Simulacrum Imperialis.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a0d-d15a-76b0-409e" name="Condemnor Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5518-4044-d9d3-106a" name="Condemnor Boltgun" publicationId="69e0-b697-c118-d32d" page="110" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">24"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Rapid Fire 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">When resolving an attack made with this weapon against a PSYKER, this weapon has a Damage characteristic of D3.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b915-0097-0beb-482f" name="Battle Sister Fire Team" publicationId="69e0-b697-c118-d32d" page="107" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50d9-9651-ee2f-c766" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="f114-f06f-f03b-6e99" name="Battle Sisters" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="c6e0-ea20-649c-3b71">
<entryLinks>
<entryLink id="c6e0-ea20-649c-3b71" name="Battle Sister" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="fec1-0fa3-951f-f82e" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6a97-e599-83a2-5f3a" name="Battle Sister Gunner" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ef5f-e0ca-ea93-4eec" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1b1c-d2ab-303c-0a1c" name="Sister Superior" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7d51-432e-a870-9415" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ae84-922e-24fd-4344" name="Fire Team Advances" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ed6d-4175-51ed-c1d3" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eac7-a317-d01b-29f0" name="Sister Repentia" publicationId="69e0-b697-c118-d32d" page="107" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="971f-5f12-1277-1c12" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="971f-5f12-1277-1c12" type="max"/>
</constraints>
<profiles>
<profile id="a911-2add-2957-42f1" name="Sister Repentia" publicationId="69e0-b697-c118-d32d" page="107" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">7+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
<profile id="4cc7-832a-5109-3238" name="Solace in Anguish" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">Each time a model with this ability loses a wound, roll a D6; on a 5+ the model does not lose that wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ebda-be40-79ef-7a4f" name="Shield of Faith" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="529a-db86-4d87-da61" type="profile"/>
<infoLink id="3eff-626c-a843-cdaa" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="7060-b93f-05e7-c9a4" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a3a2-1703-5ebc-60c1" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="bf68-5bfc-275c-e570" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="e655-0eb0-8dd0-c635" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="2468-7992-0286-ef31" name="Sister Repentia" hidden="false" targetId="947a-3d06-b5a3-0b87" primary="false"/>
<categoryLink id="39d7-28d0-f2b9-a447" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="5ab0-878c-ed44-9bf5" name="Penitent Eviscerator" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="77cf-53cf-c7b3-3365" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b6f6-7609-f2c8-f93b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="688c-fd8b-525a-1185" type="min"/>
</constraints>
</entryLink>
<entryLink id="fd8f-357d-0405-f7f8" name="Fire Team Advances" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ed6d-4175-51ed-c1d3" 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="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="13.0"/>
</costs>
</selectionEntry>
<selectionEntry id="77cf-53cf-c7b3-3365" name="Penitent Eviscerator" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9ccd-1a2b-3533-aa7c" name="Penitent Eviscerator" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">x2</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-3</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">2</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">When resolving an attack made with this weapon, subtract 1 from the hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9f1e-1b50-98e1-192f" name="Arco-Flagellant" publicationId="69e0-b697-c118-d32d" page="108" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="01df-98d1-5df7-2c7e" name="Arco-Flagellant" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">7"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">4+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">-</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">7+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7584-6e16-081b-2e85" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="7060-b93f-05e7-c9a4" type="profile"/>
<infoLink id="cb4e-5b20-2ad3-858d" name="Berzerk Killing Machine" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="7a48-8075-2ef8-dc0b" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b608-1017-9d86-0e19" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="3fd4-7e6f-ac90-6a4a" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="68c5-9ecc-08a5-afa1" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="e09a-6e28-d353-9dcb" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="f734-5a61-22a6-00e0" name="Arco-Flagellant" hidden="false" targetId="a846-568e-8eaf-ae16" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="da22-028b-19e2-ef5a" name="Arco Flails" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c6c2-1b35-8f5e-0c37" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="696f-b223-5228-ad12" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8507-f49e-c60c-2901" type="max"/>
</constraints>
</entryLink>
<entryLink id="5246-e8ac-18c8-bae8" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="d2c4-34ca-f2cf-d2b2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="79c6-76fc-47ee-c005" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" field="f825-ee60-957c-0926" value="1.0">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="79c6-76fc-47ee-c005" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f825-ee60-957c-0926" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fca-d1dd-1701-721d" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="13.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c6c2-1b35-8f5e-0c37" name="Arco Flails" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="fd30-7d08-2fd0-e90e" name="Arco Flails" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">+1</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">Make D3 hit rolls for each attack made with this weapon, instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ddf6-cd55-e57a-f529" name="Endurant" publicationId="69e0-b697-c118-d32d" page="108" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="f2f8-9db1-efd1-1ed0" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f2f8-9db1-efd1-1ed0" type="max"/>
</constraints>
<profiles>
<profile id="89b5-6171-1bf3-b62f" name="Endurant" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">7"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">4+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">-</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">3</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">7+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9c09-1c6f-3708-fcfb" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="7060-b93f-05e7-c9a4" type="profile"/>
<infoLink id="ab80-492f-ebb1-e753" name="Berzerk Killing Machine" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="7a48-8075-2ef8-dc0b" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bad8-de7b-4a4f-ceef" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="05bf-0790-5928-5702" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="f816-e9af-6e39-b707" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="09bf-48e7-b8a3-0f56" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="d674-2afd-c1a6-7566" name="Arco-Flagellant" hidden="false" targetId="a846-568e-8eaf-ae16" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="85aa-134b-97ff-ae29" name="Arco Flails" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c6c2-1b35-8f5e-0c37" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc1e-4a8f-0b41-fc20" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4d9e-cb56-0f9c-6f6e" type="max"/>
</constraints>
</entryLink>
<entryLink id="0c4b-a46a-9189-2fe3" name="Zealot" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="d2c4-34ca-f2cf-d2b2" type="selectionEntry">
<modifiers>
<modifier type="set" field="d919-c726-ac57-df0c" value="1.0">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="79c6-76fc-47ee-c005" type="notInstanceOf"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="79c6-76fc-47ee-c005" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d919-c726-ac57-df0c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99f1-75b2-22fc-817f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="14.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e9e-5839-c224-2ca6" name="Arco-Flagellant Fire Team" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2bb-e27d-3aaf-7928" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="991e-b944-c4d1-584f" name="Arco-Flagellants" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="9df7-207f-0249-c4b4" name="Arco-Flagellant" hidden="false" collective="false" import="true" targetId="9f1e-1b50-98e1-192f" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="e8fe-8917-24b7-0f68" name="Endurant" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ddf6-cd55-e57a-f529" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f2a0-7f75-5a37-9c40" name="Fire Team Advances" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ed6d-4175-51ed-c1d3" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd5b-0e5a-e8c9-bcfe" name="Canoness" publicationId="69e0-b697-c118-d32d" page="108" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="3f9f-bf54-4502-8ebd" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="10.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32ef-fb0a-d404-f1ea" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="15.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a93-6219-2f28-9a37" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="15.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="363a-fe8e-4043-4722" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f9f-bf54-4502-8ebd" type="max"/>
</constraints>
<profiles>
<profile id="a445-0637-82d5-3bfe" name="Canoness" publicationId="69e0-b697-c118-d32d" page="108" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">2+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">2+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">5</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">4</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">9</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
<profile id="ebda-e75e-8080-a67f" name="Rosarius" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c49f-3946-46ac-9035" name="Shield of Faith" publicationId="69e0-b697-c118-d32d" hidden="false" targetId="529a-db86-4d87-da61" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ae95-d1a9-1c15-ced6" name="New CategoryLink" hidden="false" targetId="6c25-5825-9054-44a7" primary="true"/>
<categoryLink id="360d-8163-12c0-fafe" name="Faction: Adepta Sororitas" hidden="false" targetId="995d-d712-dbb7-1ba1" primary="false"/>
<categoryLink id="c94f-d5f7-8b32-5d0a" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="5907-ea14-3376-8a33" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="89ba-7b94-ffc7-7ab7" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="706f-c668-0b89-3403" name="Canoness" hidden="false" targetId="e121-80bc-cd92-5aa7" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7566-6cc3-0163-94e9" name="Chainsword Replacement" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="d7e0-4a11-8468-0fae">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d9d-7c02-28da-0d21" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4264-72b6-ac8d-0e9c" type="min"/>
</constraints>
<entryLinks>
<entryLink id="d7e0-4a11-8468-0fae" name="Chainsword" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="a4a3-5f51-7929-17df" type="selectionEntry"/>
<entryLink id="b40b-7a2f-57d5-8ec7" name="Power sword" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ecb3-8447-db60-da63" type="selectionEntry">
<modifiers>
<modifier type="set" field="a1b8-3274-d679-8c9b" value="1.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33f8-bae9-6976-b102" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="2.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1b8-3274-d679-8c9b" type="min"/>
</constraints>
</entryLink>
<entryLink id="8357-2686-7438-6a30" name="Blessed Blade" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="0ebc-2b69-f642-4082" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="76b8-3d85-9b8c-d337" name="Bolt Pistol Replacement" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" defaultSelectionEntryId="6c37-cff2-0571-c682">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="724a-c2c3-c123-f396" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df8b-3318-b254-f4ae" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6c37-cff2-0571-c682" name="Bolt pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry"/>
<entryLink id="9942-51fc-7897-ba3e" name="Condemnor Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="4a0d-d15a-76b0-409e" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="5.0"/>
</modifiers>
</entryLink>
<entryLink id="866e-b2b2-ea36-5dd4" name="Hand flamer" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="ade7-693e-b689-9d0f" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="2.0"/>
</modifiers>
</entryLink>
<entryLink id="7597-5ccf-4311-15c7" name="Plasma pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="4584-4260-f292-3812" type="selectionEntry">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="4.0"/>
</modifiers>
</entryLink>
<entryLink id="e6b6-03c8-f378-250e" name="Inferno Pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="a603-2382-d753-c9b3" type="selectionEntry"/>
<entryLink id="33f8-bae9-6976-b102" name="Boltgun" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="29a8-a3ad-c367-508f" type="selectionEntry">
<modifiers>
<modifier type="set" field="75aa-1768-9052-a59d" value="1.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b8dd-0a65-2e19-7145" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75aa-1768-9052-a59d" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c615-c371-e5fc-4b6e" name="Extra Equipment" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="668d-233c-e11f-4b07" value="0.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d7e0-4a11-8468-0fae" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="668d-233c-e11f-4b07" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2be5-4972-f3f7-dc24" name="Brazier of Holy Fire" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="814d-00df-392a-57c8" type="selectionEntry"/>
<entryLink id="20c4-c739-39e2-bd3a" name="Null Rod" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="409d-1f0f-8151-6baf" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="0899-3f13-cc4b-79a3" name="Specialism" publicationId="69e0-b697-c118-d32d" page="108" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c638-f06b-c91c-c806" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e84-c680-aed4-78f7" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6bac-90ea-6943-b64d" name="Ferocity" hidden="false" collective="false" import="true" targetId="275f-0c8c-74e6-899f" type="selectionEntry"/>
<entryLink id="2a15-789b-03e3-9a9b" name="Fortitude" hidden="false" collective="false" import="true" targetId="88d4-1fdb-1672-18cc" type="selectionEntry"/>
<entryLink id="ea27-a112-683b-dc77" name="Leadership" hidden="false" collective="false" import="true" targetId="cd3d-2c23-094b-93b8" type="selectionEntry"/>
<entryLink id="ae6a-0690-854b-6399" name="Strength" hidden="false" collective="false" import="true" targetId="4550-6c27-1911-68ae" type="selectionEntry"/>
<entryLink id="b2e0-6201-51af-601c" name="Strategist" hidden="false" collective="false" import="true" targetId="8301-dd25-06aa-2d15" type="selectionEntry"/>
<entryLink id="763c-cbe7-d4da-b943" name="Shooting" hidden="false" collective="false" import="true" targetId="3b6a-c3c2-c00b-170e" type="selectionEntry"/>
<entryLink id="10c7-e382-6bb3-1695" name="Melee" hidden="false" collective="false" import="true" targetId="d429-68d8-5a9f-fab6" type="selectionEntry"/>
<entryLink id="33f3-65ab-fff7-950e" name="Logistics" hidden="false" collective="false" import="true" targetId="436b-cc7d-caf2-b09c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d0a4-b3fa-8f49-f30d" name="Frag and krak grenades" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
<entryLink id="b8dd-0a65-2e19-7145" name="Rod of Office" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" targetId="1c77-05a5-2dde-ce12" type="selectionEntry">
<modifiers>
<modifier type="set" field="cc47-5960-198c-9a77" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b40b-7a2f-57d5-8ec7" type="equalTo"/>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33f8-bae9-6976-b102" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="006e-f82a-5598-aa2f" value="1.0">
<conditions>
<condition field="selections" scope="cd5b-0e5a-e8c9-bcfe" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33f8-bae9-6976-b102" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc47-5960-198c-9a77" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="006e-f82a-5598-aa2f" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0ebc-2b69-f642-4082" name="Blessed Blade" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f9a2-47b6-6632-2065" name="Blessed Blade" publicationId="69e0-b697-c118-d32d" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">+2</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-3</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">D3</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a603-2382-d753-c9b3" name="Inferno Pistol" publicationId="69e0-b697-c118-d32d" hidden="false" collective="false" import="true" type="upgrade">
<profiles>