forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Daughters of Khaine.cat
3882 lines (3882 loc) · 291 KB
/
Order - Daughters of Khaine.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="388b-16d3-8182-d6c0" name="Order - Daughters of Khaine" revision="38" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="388b-16d3-pubN65537" name="Order Battletome: Daughters of Khaine"/>
<publication id="388b-16d3-pubN69838" name="Order Official FAQs and errata, Version 1.4"/>
<publication id="388b-16d3-pubN73948" name="Battletome: DoK Errata, June 2018"/>
<publication id="388b-16d3-pubN82262" name="Order Battletime: Daughters of Khaine"/>
</publications>
<profileTypes>
<profileType id="2b75-54e1-ecd3-70a6" name="Morathi Wound Track">
<characteristicTypes>
<characteristicType id="621c-c2cb-1a19-f53a" name="Move"/>
<characteristicType id="a7a1-bf54-313c-bee6" name="Heartrender"/>
<characteristicType id="8bfc-b610-6314-1f34" name="Envenomed Tail"/>
</characteristicTypes>
</profileType>
<profileType id="9ff1-cae2-b1cb-d060" name="Bloodwrack Shrine Wound Track">
<characteristicTypes>
<characteristicType id="9228-1798-8698-1f89" name="Move"/>
<characteristicType id="4800-9094-bab1-751b" name="Goadstaves"/>
<characteristicType id="02be-b1ab-e57e-8c56" name="Aura of Agony"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="7fe9-bc03-2c82-0a00" name="AELF" hidden="false"/>
<categoryEntry id="c7c5-2758-7524-dbf1" name="AVATAR OF KHAINE" hidden="false"/>
<categoryEntry id="e6cc-0ad5-0b28-db47" name="BLOODWRACK MEDUSA" hidden="false"/>
<categoryEntry id="f867-cd3a-f083-dd8d" name="HAG QUEEN" hidden="false"/>
<categoryEntry id="5a8a-d824-e0f2-8b51" name="MORATHI, HIGH ORACLE OF KHAINE" hidden="false"/>
<categoryEntry id="53d6-ff76-7e0f-f084" name="MORATHI, THE SHADOW QUEEN" hidden="false"/>
<categoryEntry id="910a-e7ce-83a4-cb53" name="SLAUGHTER QUEEN" hidden="false"/>
<categoryEntry id="e5cd-eca2-247b-3042" name="WITCH AELVES" hidden="false"/>
<categoryEntry id="c1fc-b890-cfa8-e4ba" name="CAULDRON OF BLOOD" hidden="false"/>
<categoryEntry id="e6c7-c51f-9a4c-6843" name="SISTERS OF SLAUGHTER" hidden="false"/>
<categoryEntry id="0628-60a0-5857-4655" name="BLOODWRACK SHRINE" hidden="false"/>
<categoryEntry id="d629-2bcb-a36c-ae19" name="MELUSAI" hidden="false"/>
<categoryEntry id="ab8f-d245-bdcf-eccd" name="BLOOD SISTERS" hidden="false"/>
<categoryEntry id="b18e-d371-9860-bac6" name="BLOOD STALKERS" hidden="false"/>
<categoryEntry id="9d1d-986e-bcaf-1b55" name="DOOMFIRE WARLOCKS" hidden="false"/>
<categoryEntry id="3c38-fb2d-7daf-7059" name="KHINERAI HARPIES" hidden="false"/>
<categoryEntry id="c588-ff12-edfe-6390" name="KHINERAI HEARTRENDERS" hidden="false"/>
<categoryEntry id="6a11-8737-d848-a87a" name="KHINERAI LIFETAKERS" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="7a3b-e742-323f-b2e8" name="Avatar of Khaine" hidden="false" collective="false" import="true" targetId="4948-910d-f0dd-f32a" type="selectionEntry">
<categoryLinks>
<categoryLink id="5d50-70ac-c9a4-240b" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5703-4ffc-a8b4-1f8a" name="Blood Sisters" hidden="false" collective="false" import="true" targetId="425b-17fa-651b-1b53" type="selectionEntry"/>
<entryLink id="d913-586c-2753-e63d" name="Battalion: Cauldron Guard" hidden="false" collective="false" import="true" targetId="0f4d-8148-c45e-917c" type="selectionEntry">
<categoryLinks>
<categoryLink id="bf6c-90e4-0091-49f9" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f743-eb88-d68a-9d78" name="Battalion: Shadow Patrol" hidden="false" collective="false" import="true" targetId="f2fe-297c-ff91-51e7" type="selectionEntry">
<categoryLinks>
<categoryLink id="65c8-ae83-e071-a318" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="08e9-ab73-c7a1-d8ac" name="Battalion: Shadowhammer Compact" hidden="false" collective="false" import="true" targetId="b96a-bccc-7216-f880" type="selectionEntry">
<categoryLinks>
<categoryLink id="40a9-880b-b1a2-4c44" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1ec3-656e-9aa4-4ef0" name="Battalion: Slaughter Troupe" hidden="false" collective="false" import="true" targetId="dd61-03bc-d54f-591f" type="selectionEntry">
<categoryLinks>
<categoryLink id="8990-b856-2872-b38b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="601c-3fcf-f91c-c201" name="Battalion: Temple Nest" hidden="false" collective="false" import="true" targetId="0b27-8173-22ce-6c56" type="selectionEntry">
<categoryLinks>
<categoryLink id="7111-b987-15eb-0688" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fdf7-0aab-69cd-deb7" name="Battalion: War Coven of Morathi" hidden="false" collective="false" import="true" targetId="3d14-26eb-d3cf-b280" type="selectionEntry">
<categoryLinks>
<categoryLink id="265b-0d03-aaf2-1c13" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f16e-f352-e40d-f911" name="Blood Stalkers" hidden="false" collective="false" import="true" targetId="ffec-e491-3479-7e31" type="selectionEntry">
<categoryLinks>
<categoryLink id="8fdd-cbd6-2101-3461" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9b53-4533-9a3b-627e" name="Bloodwrack Medusa" hidden="false" collective="false" import="true" targetId="c1d9-d2b4-029b-1cc1" type="selectionEntry">
<categoryLinks>
<categoryLink id="5ebd-e35f-93ed-a152" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c4ad-d6f4-7897-12ca" name="Bloodwrack Shrine" hidden="false" collective="false" import="true" targetId="7dc5-b0a6-2b72-b632" type="selectionEntry">
<categoryLinks>
<categoryLink id="9691-03b8-8b0d-44cf" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
<categoryLink id="9f53-3aa5-b6bc-33bd" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4358-6c03-bae6-b02f" name="Doomfire Warlocks" hidden="false" collective="false" import="true" targetId="af3b-efe1-dd4a-74d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="7ba8-e53a-4668-8036" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="36f1-50e2-0d75-829d" name="Hag Queen" hidden="false" collective="false" import="true" targetId="0abd-8e03-d1e3-b397" type="selectionEntry">
<categoryLinks>
<categoryLink id="1cf5-0c92-aa76-6e10" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0991-1e02-e044-2eca" name="Hag Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="34f3-cbdc-e72b-dcc0" type="selectionEntry">
<categoryLinks>
<categoryLink id="1b9f-d209-60c1-075f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="c4ad-841c-73da-9d2f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f927-21a6-badf-f01b" name="Khinerai Heartrenders" hidden="false" collective="false" import="true" targetId="2a53-8755-3ca6-9c41" type="selectionEntry">
<categoryLinks>
<categoryLink id="8343-450c-8b98-6548" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4a43-f00c-778c-7a64" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry">
<categoryLinks>
<categoryLink id="b9d2-39e7-df7d-d231" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="87cd-f15b-b2e2-56dd" name="Morathi, High Oracle of Khaine" hidden="false" collective="false" import="true" targetId="5bf8-1b4c-e39a-7431" type="selectionEntry">
<categoryLinks>
<categoryLink id="5fe0-1f88-b962-e1e5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="84e7-19c8-73e1-e7f8" name="Sisters of Slaughter" hidden="false" collective="false" import="true" targetId="6a14-bc6f-d3a8-90a2" type="selectionEntry">
<categoryLinks>
<categoryLink id="45ea-9c43-bb9a-c6e3" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a322-e14a-feab-cf1c" name="Slaughter Queen" hidden="false" collective="false" import="true" targetId="5c4e-0d13-14c8-feca" type="selectionEntry">
<categoryLinks>
<categoryLink id="f968-ce6a-77ac-d923" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="17ca-d84f-f30c-12fd" name="Slaughter Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="ee79-3333-83d2-3cf5" type="selectionEntry">
<categoryLinks>
<categoryLink id="da1c-bdbf-8553-3816" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="b6c4-4dad-f6c7-7ab9" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8678-1d38-11fb-227c" name="Allegiance" hidden="false" collective="false" import="true" targetId="dce4-0645-f9a1-08ee" 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="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0015-111b-4a87-7a86" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fc48-0807-7aab-b6ea" name="Witch Aelves" hidden="false" collective="false" import="true" targetId="e673-ea43-c706-a583" type="selectionEntry">
<categoryLinks>
<categoryLink id="2de8-352d-7f03-56b1" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="416a-cc68-2bb2-c615" name="Morathi, The Shadow Queen" hidden="false" collective="false" import="true" targetId="bdce-0543-c674-6843" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="8a66-cfb1-6e7e-9f11" name="General" 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="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7c8e-d663-ad6f-4c51" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55b9-b371-8d26-51b6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0d7f-639a-8e73-c905" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4948-910d-f0dd-f32a" name="Avatar of Khaine" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="48b5-57cd-7e4f-3b4b" name="Avatar of Khaine" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">9"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">9</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="c4a4-4291-de34-cdd9" name="Wrath of Khaine" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If your army includes any AVATARS OF KHAINE, friendly DAUGHTERS OF KHAINE PRIESTS know the Wrath of Khaine prayer in addition to any other prayers they know.</characteristic>
</characteristics>
</profile>
<profile id="f0ed-eb27-7f6c-3fe4" name="Animated" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The Avatar of Khaine cannot move, cannot shoot and cannot be selected to fight unless a friendly DAUGHTERS OF KHAINE PRIEST used the Wrath of Khaine prayer to animate it in your preceding hero phase. Even if this model has not been animated it is still treated as a model in your army, with the exception that enemy units that begin their movement phase within 3" of it can either remain stationary or move normally – they do not have to retreat unless there is another enemy unit within 3" of them.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="80c0-91c7-c650-1360" name="Idol of Worship" hidden="false" targetId="e6cf-ad8c-45d9-a20b" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a2ae-a236-0d8b-c560" name="New CategoryLink" hidden="false" targetId="c7c5-2758-7524-dbf1" primary="false"/>
<categoryLink id="bfa1-17ab-7dc4-cbe0" name="New CategoryLink" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
<categoryLink id="d437-a470-77cb-4748" name="New CategoryLink" hidden="false" targetId="9efd-7c5d-dc14-2302" primary="false"/>
<categoryLink id="33fa-590d-feea-6d18" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6671-10b5-2bf1-c67b" name="Avatar of Khaine’s Sword" 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="fca3-efb6-740f-9448" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="94ea-be0e-156b-8bed" type="min"/>
</constraints>
<profiles>
<profile id="8e9c-853a-2ce0-2019" name="Avatar of Khaine’s Sword" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fe0b-8118-f426-d1fb" name="Torrent of Burning Blood" 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="415b-11bf-e7d5-7c1d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6509-3800-e36c-4cb2" type="min"/>
</constraints>
<profiles>
<profile id="8ebd-dc8a-c9b1-77f7" name="Torrent of Burning Blood" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">10"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0f4d-8148-c45e-917c" name="Battalion: Cauldron Guard" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="657f-7850-387b-7ffb" name="Frenzied Devotees" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to run and charge rolls made for units from this battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="d3b3-0e86-4520-3d4f" name="1) HAQ QUEEN" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="faa5-6cea-8d36-94f3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6201-8153-e492-e678" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bc79-19a1-615c-4421" name="Hag Queen" hidden="false" collective="false" import="true" targetId="0abd-8e03-d1e3-b397" type="selectionEntry">
<categoryLinks>
<categoryLink id="31b8-0325-01e8-a4f1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="55ec-39cd-9ea6-fe12" name="Hag Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="34f3-cbdc-e72b-dcc0" type="selectionEntry">
<categoryLinks>
<categoryLink id="ebaa-31da-5c63-5de9" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="2c8d-8ac3-f928-3a13" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6d22-5aac-3270-9ccc" name="3) 2 units of Khinerai Lifetakers" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc50-1d9b-55e5-f3ab" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb0c-65a7-df1f-06a2" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4d88-4156-0b5f-5a67" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry">
<categoryLinks>
<categoryLink id="a31b-66b8-cedb-fd60" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="51c2-2519-670f-1bf5" name="2) 2 units of Witch Aelves" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8990-398c-36d8-2503" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c95-5023-3bd8-e57c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="72b2-400e-b6d8-57b2" name="Witch Aelves" hidden="false" collective="false" import="true" targetId="e673-ea43-c706-a583" type="selectionEntry">
<categoryLinks>
<categoryLink id="870a-26e0-1e97-f5b6" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b4f8-1e22-0252-8e3a" name="4) Hagg Nar Additional Unit" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fafe-5100-312d-c298" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5cbf-2759-6a78-7264" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b54d-2ffd-ac92-7104" type="min"/>
</constraints>
<entryLinks>
<entryLink id="1705-c089-3ea3-6232" name="Hag Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="34f3-cbdc-e72b-dcc0" type="selectionEntry"/>
<entryLink id="a943-dce8-844a-9ca9" name="Avatar of Khaine" hidden="false" collective="false" import="true" targetId="4948-910d-f0dd-f32a" type="selectionEntry"/>
<entryLink id="2706-4b05-223e-ae4c" name="Slaughter Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="ee79-3333-83d2-3cf5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a64c-4305-a9a5-408b" name="4) The Kraith Additional Hag Queens" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="115a-fbb8-a5df-a184" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e7c9-2b90-b8a5-3b1f" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="35fd-73b4-0137-0d87" type="min"/>
</constraints>
<entryLinks>
<entryLink id="b965-45bd-7eb5-0421" name="Hag Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="34f3-cbdc-e72b-dcc0" type="selectionEntry"/>
<entryLink id="f00e-2891-f6d7-75a4" name="Hag Queen" hidden="false" collective="false" import="true" targetId="0abd-8e03-d1e3-b397" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="11f9-7558-35f8-b4ea" name="5) The Kraith Slaughter Queens" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="115a-fbb8-a5df-a184" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c2f-3f8c-8424-0792" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c51a-8bc1-8d03-ed57" type="min"/>
</constraints>
<entryLinks>
<entryLink id="a46c-8102-aea5-ead1" name="Slaughter Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="ee79-3333-83d2-3cf5" type="selectionEntry"/>
<entryLink id="a575-1977-77ab-23f8" name="Slaughter Queen" hidden="false" collective="false" import="true" targetId="5c4e-0d13-14c8-feca" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f2fe-297c-ff91-51e7" name="Battalion: Shadow Patrol" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0be3-6195-e212-17d2" name="Shadowpaths" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per battle round, instead of moving in your movement phase, one unit from this battalion that is more than 3" from any enemy models can move along the shadowpaths. If it does so, remove the unit from the battlefield, then set it up anywhere on the battlefield more than 9" from any enemy models. This is its move for that movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="21b6-23d7-5c69-983b" name="1) 2 units of Doomfire Warlocks" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b23-4f9c-5400-e661" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f5f-5bfe-b1c9-18de" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b540-0735-7062-6c94" name="Doomfire Warlocks" hidden="false" collective="false" import="true" targetId="af3b-efe1-dd4a-74d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="7fb6-13dd-0739-f0d0" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6acf-76db-1327-551b" name="2) 4 units of KHINERAI HARPIES" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="070a-1919-e152-2f93" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f2c-bacb-f236-46a5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a342-9f28-eb3a-5197" name="Khinerai Heartrenders" hidden="false" collective="false" import="true" targetId="2a53-8755-3ca6-9c41" type="selectionEntry">
<categoryLinks>
<categoryLink id="e3aa-8bb0-a17e-0441" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ef5-ae18-71cf-2ff3" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry">
<categoryLinks>
<categoryLink id="1fa9-d5a5-3b76-dc40" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b96a-bccc-7216-f880" name="Battalion: Shadowhammer Compact" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3dbc-161c-ae67-20b1" name="Righteous Fervour" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In your hero phase, choose one DAUGHTERS OF KHAINE unit from this battalion and one STORMCAST ETERNAL unit from this battalion that are within 6" of each other. Both units can either make a normal move as if it were your movement phase, shoot as if it were your shooting phase, or pile in and attack as if it were the combat phase. Both units must perform the same action (if only one of the units is able to perform the action you chose – for example, if one of the units shoots but the other has no missile weapons – then the other unit does nothing).</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="d176-5898-5661-ba1e" name="4) 1 unit of Blood Stalkers" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="129b-1271-4d4f-7122" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dc5f-4c87-1255-6d93" type="max"/>
</constraints>
<entryLinks>
<entryLink id="66a3-95f8-a348-e512" name="Blood Stalkers" hidden="false" collective="false" import="true" targetId="ffec-e491-3479-7e31" type="selectionEntry">
<categoryLinks>
<categoryLink id="5555-a2b3-7d41-5283" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4ca0-2119-eddf-37ce" name="3) 1 unit of KHINERAI HARPIES" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f10c-0b95-e74a-4000" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4db-9c73-dccb-15e6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a2cc-9831-c1e4-4d58" name="Khinerai Heartrenders" hidden="false" collective="false" import="true" targetId="2a53-8755-3ca6-9c41" type="selectionEntry">
<categoryLinks>
<categoryLink id="39a0-d1d1-38f2-6fbe" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="89f6-676a-813c-a174" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry">
<categoryLinks>
<categoryLink id="2b84-582c-bacb-edc4" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7552-7163-98e2-4479" name="1) Slaughter Queen" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c119-ab8b-d6e2-bead" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a1e-83d4-7680-3308" type="max"/>
</constraints>
<entryLinks>
<entryLink id="464c-972d-7e72-4bc9" name="Slaughter Queen" hidden="false" collective="false" import="true" targetId="5c4e-0d13-14c8-feca" type="selectionEntry">
<categoryLinks>
<categoryLink id="1b2c-435e-25bd-b5d2" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c9bd-adbc-de35-16a8" name="2) 2 units of Witch Aelves" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8285-af43-d88b-eb59" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0c2-888d-7a01-62ad" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5e5b-360e-e782-8520" name="Witch Aelves" hidden="false" collective="false" import="true" targetId="e673-ea43-c706-a583" type="selectionEntry">
<categoryLinks>
<categoryLink id="4ce8-ec17-9fb3-544c" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2a91-befb-e283-65a3" name="7) 1 unit of Judicators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47f8-5d6c-7596-74da" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3c7-568e-595a-d726" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1553-c5c3-6f32-60ae" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="98fb-139d-be2c-5e11" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9560-d6d1-1363-b14e" name="5) 2 units of Liberators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2daa-fecc-ccf2-ccbe" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ff1-e683-c377-04b6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7284-4d64-5b2a-2958" name="Liberators" hidden="false" collective="false" import="true" targetId="5b8e-b5ee-8df3-9f2f" type="selectionEntry">
<categoryLinks>
<categoryLink id="a3d8-8adf-6d52-98a0" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4e45-6cbe-45dc-1587" name="6) 1 unit of Prosecutors" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4dfc-8424-84da-07e4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb7f-864b-89bb-3a31" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b37c-4fdd-b369-5a86" name="Prosecutors" hidden="false" collective="false" import="true" targetId="432b-fe7d-867c-7e7d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd61-03bc-d54f-591f" name="Battalion: Slaughter Troupe" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d1cc-4880-d4c7-5441" name="Gladiatorial Acrobatics" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Slaughter Troupe units that retreat can still shoot and charge in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="bc28-8e0a-0eae-a7a1" name="3) 2 units of Khinerai Heartrenders" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f03-e770-ec05-3240" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c9e8-3e66-5b06-7f2b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="aa91-f3c4-5bb5-5514" name="Khinerai Heartrenders" hidden="false" collective="false" import="true" targetId="2a53-8755-3ca6-9c41" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc54-274c-5556-5eb7" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="0dc3-10a4-3bd8-46e1" name="2) 2 units of Sisters of Slaughter Units" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="849a-b7b9-5f19-8d85" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f49c-be24-007a-4bb2" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bae5-8397-944d-fec0" name="Sisters of Slaughter" hidden="false" collective="false" import="true" targetId="6a14-bc6f-d3a8-90a2" type="selectionEntry">
<categoryLinks>
<categoryLink id="0e4a-4b36-fbef-785e" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="27e1-a052-8235-bd7b" name="1) SLAUGHTER QUEEN" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad67-406c-bb27-d97f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d41-ec0b-761a-5c71" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c866-e438-7115-0271" name="Slaughter Queen" hidden="false" collective="false" import="true" targetId="5c4e-0d13-14c8-feca" type="selectionEntry">
<categoryLinks>
<categoryLink id="b6e4-acb5-f9b4-e9d6" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af11-0468-e472-2c89" name="Slaughter Queen on Cauldron of Blood" hidden="false" collective="false" import="true" targetId="ee79-3333-83d2-3cf5" type="selectionEntry">
<categoryLinks>
<categoryLink id="d5ee-96a0-ba65-3108" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="4b4b-e93d-c0a1-e1d5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5f0b-5b0d-dcf3-4b27" name="4) 0-2 units of Draichi Ganeth Witch Aelves" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0eae-70d5-6ecb-be66" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd55-d94f-ee3f-0411" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e29-fb60-06d2-bd7e" type="min"/>
</constraints>
<entryLinks>
<entryLink id="a1ea-212e-f5a2-522c" name="Witch Aelves" hidden="false" collective="false" import="true" targetId="e673-ea43-c706-a583" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b27-8173-22ce-6c56" name="Battalion: Temple Nest" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b244-1359-5df1-c2ae" name="Lethal Transfixion" publicationId="388b-16d3-pubN69838" page="1" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Each time your opponent makes a hit roll of 1 (after re-rolls, but before modifiers are applied) when attacking a Temple Nest unit in the combat phase, the attacking unit suffers 1 mortal wound after all of its attacks have been made.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="0b6c-aeca-036c-e217" name="3) 2 units of Blood Sisters" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="94b3-ed77-96ba-7319" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d8e1-75ad-053b-eb9b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d4a6-d758-1abe-ce22" name="Blood Sisters" hidden="false" collective="false" import="true" targetId="425b-17fa-651b-1b53" type="selectionEntry">
<categoryLinks>
<categoryLink id="18e2-e1f0-404f-9632" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="dcdd-3a60-c35d-7577" name="2) 2 units of Blood Stalkers" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b123-95b0-f690-9109" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57d4-6b0e-5edc-1a8c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="62c7-9985-0f3f-e375" name="Blood Stalkers" hidden="false" collective="false" import="true" targetId="ffec-e491-3479-7e31" type="selectionEntry">
<categoryLinks>
<categoryLink id="be3e-582e-c316-68f8" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e851-a217-3dd4-1f83" name="1) BLOODWRACK MEDUSA" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d3f-b458-ccd2-024d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5fd2-a12d-1997-58dd" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f510-4b93-7c06-7fbc" name="Bloodwrack Medusa" hidden="false" collective="false" import="true" targetId="c1d9-d2b4-029b-1cc1" type="selectionEntry">
<categoryLinks>
<categoryLink id="9a00-c52a-654d-3f0c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="db5e-493f-49fc-bfaf" name="Bloodwrack Shrine" hidden="false" collective="false" import="true" targetId="7dc5-b0a6-2b72-b632" type="selectionEntry">
<categoryLinks>
<categoryLink id="4036-44e6-23a0-9a51" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
<categoryLink id="e368-b2c3-7d2f-5963" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="19ef-0131-93d5-6c29" name="4) 0-2 Khailebron Additional MELUSAI" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d02d-e093-7534-53a4" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ac4-5d0f-5736-3e1c" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e705-4927-67b7-e824" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c553-1418-6916-9083" name="Blood Sisters" hidden="false" collective="false" import="true" targetId="425b-17fa-651b-1b53" type="selectionEntry">
<categoryLinks>
<categoryLink id="3721-b946-d686-8f7f" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="04ce-18bb-e43f-cbb8" name="Blood Stalkers" hidden="false" collective="false" import="true" targetId="ffec-e491-3479-7e31" type="selectionEntry">
<categoryLinks>
<categoryLink id="9321-e59c-93ff-35ec" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9d02-4a7f-b4fb-f2fc" name="Bloodwrack Medusa" hidden="false" collective="false" import="true" targetId="c1d9-d2b4-029b-1cc1" type="selectionEntry"/>
<entryLink id="9f88-e4ea-f06d-e0df" name="Bloodwrack Shrine" hidden="false" collective="false" import="true" targetId="7dc5-b0a6-2b72-b632" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3d14-26eb-d3cf-b280" name="Battalion: War Coven of Morathi" publicationId="388b-16d3-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0b83-ba20-e454-3bc2" name="Blood Rituals" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">: If your army has the DAUGHTERS OF KHAINE allegiance, units in this battalion count the current battle round number as being 1 higher than it actually is when determining what abilities they receive from the Blood Rites battle trait (pg 50). This is cumulative with other, similar abilities (e.g. the True Believer Command Trait or the Sacrament of Blood prayer).</characteristic>
</characteristics>
</profile>
<profile id="adfe-078d-ddce-eb6c" name="Devout Followers" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Do not take a battleshock test for War Coven of Morathi units that are within 18" of Morathi (in either of her forms) when the test is taken.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="ed21-db79-5a10-a987" name="1) Morathi, High Oracle of Khaine" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a429-731b-0205-87a2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20ff-fdb0-a0d0-2606" type="max"/>
</constraints>
<entryLinks>
<entryLink id="29cf-76b6-5b44-e45f" name="Morathi, High Oracle of Khaine" hidden="false" collective="false" import="true" targetId="5bf8-1b4c-e39a-7431" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b1c8-37c4-126e-ae4a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f124-391e-7880-1cc4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f651-4e85-bd13-0924" name="2) 1 Cauldron Guard" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b53-b977-98fa-5aeb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="219a-b06f-0c00-d746" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1409-3678-1626-1e66" name="Battalion: Cauldron Guard" hidden="false" collective="false" import="true" targetId="0f4d-8148-c45e-917c" type="selectionEntry">
<categoryLinks>
<categoryLink id="30bc-50b5-a1f2-5276" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2477-a5b2-82df-95ec" name="3) 1 Slaughter Troupe" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9717-456a-29ab-4dc0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="94c6-7ea8-951a-ffb1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9197-8f68-284d-8fc0" name="Battalion: Slaughter Troupe" hidden="false" collective="false" import="true" targetId="dd61-03bc-d54f-591f" type="selectionEntry">
<categoryLinks>
<categoryLink id="6ec4-cfdc-ccb9-5229" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9ffe-ebca-fd4e-db82" name="4) 1 Temple Nest" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af05-6151-ae7b-1e43" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c182-f00a-240b-5f90" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f3bf-dd4d-9638-f36c" name="Battalion: Temple Nest" hidden="false" collective="false" import="true" targetId="0b27-8173-22ce-6c56" type="selectionEntry">
<categoryLinks>
<categoryLink id="b845-fb36-7b6c-ce25" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8320-9537-97dd-8cd9" name="5) 1 Shadow Patrol" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c554-b7b8-d001-14a7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="34e8-7dea-a2d4-b6ee" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0546-02a0-2594-83d4" name="Battalion: Shadow Patrol" hidden="false" collective="false" import="true" targetId="f2fe-297c-ff91-51e7" type="selectionEntry">
<categoryLinks>
<categoryLink id="a576-6bdd-1fd2-2abb" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c1d9-d2b4-029b-1cc1" name="Bloodwrack Medusa" publicationId="388b-16d3-pubN65537" page="86" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8971-6b3d-b129-8ae4" name="Bloodwrack Medusa" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="c045-63a0-a032-5c34" name="Bloodwrack Medusa" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Enfeebling Foe</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d29c-c53b-38e5-39e0" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="03bd-e661-3d90-eb31" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
<infoLink id="77c8-aa8c-41fe-3248" name="Enfeebling Foe" hidden="false" targetId="639e-68d8-3385-5d46" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7049-df40-06ec-1573" name="New CategoryLink" hidden="false" targetId="e6cc-0ad5-0b28-db47" primary="false"/>
<categoryLink id="3970-6b12-5014-0b16" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="29b1-08c7-a138-9b8c" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="f02a-04ca-dc8b-ea0e" name="New CategoryLink" hidden="false" targetId="9efd-7c5d-dc14-2302" primary="false"/>
<categoryLink id="b05e-f759-ccd9-a9ab" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="5153-8e36-e93c-9aaf" name="New CategoryLink" hidden="false" targetId="d629-2bcb-a36c-ae19" primary="false"/>
<categoryLink id="b21f-ebba-f220-aa42" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="06ef-99a5-4627-33ca" name="Whisperclaw" 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="69a9-5bdf-27de-ef6c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd02-3ac8-730a-c6ce" type="min"/>
</constraints>
<profiles>
<profile id="c1ed-eab2-b366-7b28" name="Whisperclaw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7dc0-dc09-6009-e02d" name="Bloodwrack Stare" 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="8f3c-81cc-59a0-cd4f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f57-4087-4386-54ef" type="min"/>
</constraints>
<infoLinks>
<infoLink id="2b6b-b1e5-d2e7-ee71" name="Bloodwrack Stare" hidden="false" targetId="8cfb-ec94-ffb6-1387" type="profile"/>
<infoLink id="22da-fbbd-43f4-675f" name="Bloodwrack Stare" hidden="false" targetId="81a4-fd93-dc21-930d" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7773-af36-759e-f95c" name="Tail of Serpents" 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="8daa-34c1-5ced-cfb3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e1e8-f502-5564-b124" type="min"/>
</constraints>
<infoLinks>
<infoLink id="f6cf-4ef5-2c43-c29a" name="Tail of Serpents" hidden="false" targetId="e554-dcf8-55ba-0d1b" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4060-c304-922b-62c7" name="Bloodwrack Spear" 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="2334-237c-423f-0619" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b6f-bb67-128a-2dc3" type="min"/>
</constraints>
<infoLinks>
<infoLink id="b53c-8cf4-b379-adf9" name="Bloodwrack Spear" hidden="false" targetId="c82e-7100-7de6-7e62" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fdc4-ac64-aaf9-3885" name="General" 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="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c246-ccca-540e-e96f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="41c3-0a11-1290-c828" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="d3c5-b229-0379-db5a" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0c98-4da9-5c16-ecdf" name="Command Traits" hidden="false" collective="false" import="true" targetId="ec67-f024-d327-7e32" type="selectionEntryGroup"/>
<entryLink id="c7a9-92ab-2515-5ffb" name="Artefacts of Power" hidden="false" collective="false" import="true" targetId="f9fb-eb62-86d7-1a2b" type="selectionEntryGroup"/>
<entryLink id="40d6-49e5-8a27-4743" name="Lore of Shadows" hidden="false" collective="false" import="true" targetId="0d48-c9e0-e8c1-6d3d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7dc5-b0a6-2b72-b632" name="Bloodwrack Shrine" publicationId="388b-16d3-pubN65537" page="84" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="32f6-f50c-98b4-4d94" name="Bloodwrack Shrine" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">13</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="931f-426a-e11c-1b2f" name="Aura of Agony" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Bloodwrack Shrines emit an aura that wracks enemies with waves of agony. Roll a dice for each enemy unit within 7" of any friendly Bloodwrack Shrines at the start of your hero phase. If the dice roll equals or beats the score listed on the damage table, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="cc13-72ba-6e7d-a052" name="Bloodwrack Shrine" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Enfeebling Foe</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="07ac-9eec-bcad-8dc4" name="Bladed Impact" hidden="false" targetId="0dd8-3f26-6f9c-48be" type="profile"/>
<infoLink id="3964-9084-6756-9a9c" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="f222-5d23-f9ac-a318" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
<infoLink id="8893-b10b-192a-9a53" name="Enfeebling Foe" hidden="false" targetId="639e-68d8-3385-5d46" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6a97-fcc9-06b9-72f9" name="New CategoryLink" hidden="false" targetId="7fe9-bc03-2c82-0a00" primary="false"/>
<categoryLink id="898f-d1f3-ddaa-713a" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="ac8f-cbbd-22bd-1362" name="New CategoryLink" hidden="false" targetId="9efd-7c5d-dc14-2302" primary="false"/>
<categoryLink id="0dc8-60ef-5362-4897" name="New CategoryLink" hidden="false" targetId="d629-2bcb-a36c-ae19" primary="false"/>
<categoryLink id="6526-f0b4-74d5-b692" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="68a5-8412-dbe5-2f7b" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="8ea3-0e0d-6a67-1c2f" name="New CategoryLink" hidden="false" targetId="e6cc-0ad5-0b28-db47" primary="false"/>
<categoryLink id="8f89-a8fe-1ab7-c303" name="New CategoryLink" hidden="false" targetId="0628-60a0-5857-4655" primary="false"/>
<categoryLink id="397b-4100-7c5d-df84" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="8d4b-ac94-42b6-0ac3" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="049a-a44b-42a6-5e36" name="Shrinekeepers' Goadstaves" 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="2ee2-49ac-6182-a8d6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f978-9615-3617-f659" type="min"/>
</constraints>
<profiles>
<profile id="72b5-9421-f88d-8793" name="Shrinekeepers' Goadstaves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2362-36ef-2635-8fc1" name="Whisperclaw" 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="b83e-0ec2-bad4-245a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fdd5-0429-1c66-fd4a" type="min"/>
</constraints>
<profiles>
<profile id="3a35-8b86-191e-8be9" name="Whisperclaw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ab49-0145-af61-b0b7" name="Bloodwrack Stare" 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="db53-e391-f2f4-496b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7433-e262-f3b4-7411" type="min"/>
</constraints>
<infoLinks>
<infoLink id="0916-7781-b482-d9f2" name="Bloodwrack Stare" hidden="false" targetId="81a4-fd93-dc21-930d" type="profile"/>
<infoLink id="387a-3df0-d416-0466" name="Bloodwrack Stare" hidden="false" targetId="8cfb-ec94-ffb6-1387" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6d71-a0f4-36ac-499b" name="Tail of Serpents" hidden="false" collective="false" import="true" type="upgrade">