forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Daughters of Khaine.cat
5283 lines (5268 loc) · 403 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="100" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="388b-16d3-pubN65537" name="Order Battletome: Daughters of Khaine (2018)"/>
<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 Battletome: Daughters of Khaine (2021)"/>
<publication id="3c61-8e4a-0e8b-9d0e" name="Battletome: Daughters of Khaine Errata, July 2021"/>
</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>
<profileType id="6b5e-bd54-86be-0ca1" name="Cauldron of Blood Wound Track">
<characteristicTypes>
<characteristicType id="6b9e-4092-76dd-0ac7" name="Move"/>
<characteristicType id="aedb-db30-14ec-1600" name="Sacrificial Knives"/>
<characteristicType id="e11a-25fd-f79e-7a8e" name="Bloodshield"/>
</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-KHAINE" hidden="false"/>
<categoryEntry id="53d6-ff76-7e0f-f084" name="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"/>
<categoryEntry id="ae6c-d934-169b-8cde" name="MORGWAETH THE BLOODIED" hidden="false"/>
<categoryEntry id="bdf7-54a0-28a8-ff59" name="THE BLADE-COVEN" hidden="false"/>
<categoryEntry id="3c71-230c-aaa7-b35c" name="HAGG NAR" hidden="false"/>
<categoryEntry id="c69d-372a-d0d9-dd8c" name="KHAINITE SHADOWSTALKERS" hidden="false"/>
<categoryEntry id="269c-97ff-19c2-a0e7" name="Coalition: DoK" hidden="false">
<modifiers>
<modifier type="increment" field="72a2-6bc2-2ea8-853a" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="72a2-6bc2-2ea8-853a" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="9426-16b3-008c-a2f7" name="MELUSAI HERO" hidden="false"/>
<categoryEntry id="9cf7-2670-a45b-7bde" name="HIGH GLADIATRIX" 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"/>
<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"/>
<entryLink id="f743-eb88-d68a-9d78" name="Battalion: Shadow Patrol" hidden="false" collective="false" import="true" targetId="f2fe-297c-ff91-51e7" type="selectionEntry"/>
<entryLink id="08e9-ab73-c7a1-d8ac" name="Battalion: Shadowhammer Compact (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="b96a-bccc-7216-f880" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1ec3-656e-9aa4-4ef0" name="Battalion: Slaughter Troupe" hidden="false" collective="false" import="true" targetId="dd61-03bc-d54f-591f" type="selectionEntry"/>
<entryLink id="601c-3fcf-f91c-c201" name="Battalion: Temple Nest (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="0b27-8173-22ce-6c56" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</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"/>
<entryLink id="f16e-f352-e40d-f911" name="Blood Stalkers" hidden="false" collective="false" import="true" targetId="ffec-e491-3479-7e31" type="selectionEntry"/>
<entryLink id="9b53-4533-9a3b-627e" name="Bloodwrack Medusa" hidden="false" collective="false" import="true" targetId="c1d9-d2b4-029b-1cc1" type="selectionEntry"/>
<entryLink id="c4ad-d6f4-7897-12ca" name="Bloodwrack Shrine" hidden="false" collective="false" import="true" targetId="7dc5-b0a6-2b72-b632" type="selectionEntry"/>
<entryLink id="4358-6c03-bae6-b02f" name="Doomfire Warlocks" hidden="false" collective="false" import="true" targetId="af3b-efe1-dd4a-74d0" type="selectionEntry"/>
<entryLink id="36f1-50e2-0d75-829d" name="Hag Queen" hidden="false" collective="false" import="true" targetId="0abd-8e03-d1e3-b397" type="selectionEntry"/>
<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"/>
<entryLink id="f927-21a6-badf-f01b" name="Khinerai Heartrenders" hidden="false" collective="false" import="true" targetId="2a53-8755-3ca6-9c41" type="selectionEntry"/>
<entryLink id="4a43-f00c-778c-7a64" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry"/>
<entryLink id="87cd-f15b-b2e2-56dd" name="Morathi-Khaine" hidden="false" collective="false" import="true" targetId="5bf8-1b4c-e39a-7431" type="selectionEntry"/>
<entryLink id="84e7-19c8-73e1-e7f8" name="Sisters of Slaughter" hidden="false" collective="false" import="true" targetId="6a14-bc6f-d3a8-90a2" type="selectionEntry"/>
<entryLink id="a322-e14a-feab-cf1c" name="Slaughter Queen" hidden="false" collective="false" import="true" targetId="5c4e-0d13-14c8-feca" type="selectionEntry"/>
<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"/>
<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"/>
<entryLink id="3c0e-cd6c-6e6d-e691" name="Morgwaeth the Bloodied" hidden="false" collective="false" import="true" targetId="61d4-0417-b59e-a6a2" type="selectionEntry"/>
<entryLink id="4510-a907-a68c-ceb6" name="The Blade-Coven" hidden="false" collective="false" import="true" targetId="6ded-b4ea-f86a-5ace" type="selectionEntry"/>
<entryLink id="bbfc-f118-3c3d-fb8b" name="Bundo Whalebiter - Kraken-Eater Mercenary" hidden="false" collective="false" import="true" targetId="efae-6133-d899-a7e4" type="selectionEntry"/>
<entryLink id="e856-576d-ff92-9ed7" name="Battalion: Scáthcoven" hidden="false" collective="false" import="true" targetId="1a8c-32ef-182c-75d9" type="selectionEntry"/>
<entryLink id="029b-8251-e429-5fd1" name="Battalion: Vyperic Guard" hidden="false" collective="false" import="true" targetId="f9be-49ad-6def-1185" type="selectionEntry"/>
<entryLink id="44cb-a0ee-1f4c-6232" name="Battalion: Shrine Brood" hidden="false" collective="false" import="true" targetId="3408-9eed-139b-3048" type="selectionEntry"/>
<entryLink id="653a-6d84-d403-3bf7" name="The Shadow Queen" hidden="false" collective="false" import="true" targetId="bdce-0543-c674-6843" type="selectionEntry"/>
<entryLink id="f1c7-7b82-0d25-e297" name="Melusai Ironscale" hidden="false" collective="false" import="true" targetId="1aae-be93-318a-023e" type="selectionEntry"/>
<entryLink id="a1c7-4eaf-d5d0-b182" name="Battalion: Tyralla's Scathcoven (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="d24e-bb16-a931-5bbe" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8227-cffb-4fcd-5f59" name="Khainite Shadowstalkers" hidden="false" collective="false" import="true" targetId="8169-6a5d-5083-2dae" type="selectionEntry"/>
<entryLink id="13a2-faeb-633d-fdb4" name="Invocation of Khaine: Heart of Fury" hidden="false" collective="false" import="true" targetId="48e8-b052-a2f5-9bbe" 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="259d-0477-c9f8-2947" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="ef2e-eb1d-5030-a770" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="3b6d-c4c7-eb39-2b5a" type="selectionEntry"/>
<entryLink id="f692-4a69-532e-96c6" name="High Gladiatrix" hidden="false" collective="false" import="true" targetId="5140-26fb-f265-edcb" type="selectionEntry"/>
<entryLink id="a6ff-62d9-ed21-2df5" name="Endless Spell: Bladewind" hidden="false" collective="false" import="true" targetId="d054-f9b0-3241-dd01" type="selectionEntry"/>
<entryLink id="ced4-b6c6-f3ee-4107" name="Endless Spell: Bloodwrack Viper" hidden="false" collective="false" import="true" targetId="e3a2-db5f-2e2c-ac0e" 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="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" 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-pubN82262" page="99" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="269c-97ff-19c2-a0e7">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-db4e-8f50-6d03" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<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="6339-976b-6e4a-e03c" name="Altar of Khaine" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to chanting rolls for friendly DAUGHTERS OF KHAINE PRIESTS while they are wholly within 9" of any friendly models with this ability.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="80c0-91c7-c650-1360" name="Idol of Worship" hidden="false" targetId="e6cf-ad8c-45d9-a20b" type="profile"/>
<infoLink id="f624-6764-e9e2-2739" name="Animated" hidden="false" targetId="3600-d910-6a97-6e82" 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"/>
<categoryLink id="2474-6604-2bbc-5473" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</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>
<entryLinks>
<entryLink id="4a8c-730d-0491-596d" name="Battalions" hidden="false" collective="false" import="true" targetId="02b3-b822-778d-f61c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0f4d-8148-c45e-917c" name="Battalion: Cauldron Guard" publicationId="388b-16d3-pubN82262" page="82" 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>
<categoryLinks>
<categoryLink id="ae17-f518-9980-d618" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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"/>
<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"/>
</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"/>
</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"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f2fe-297c-ff91-51e7" name="Battalion: Shadow Patrol" publicationId="388b-16d3-pubN82262" page="82" 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">In your movement phase, instead of making a normal move with a unit from this battalion, you can say that the unit will navigate the shadowpaths. If you do so, remove the unit from the battlefield and set it up again anywhere on the battlefield more than 9" from any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8317-9810-72b0-f04b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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"/>
</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"/>
<entryLink id="3ef5-ae18-71cf-2ff3" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b96a-bccc-7216-f880" name="Battalion: Shadowhammer Compact" publicationId="388b-16d3-pubN65537" page="75" 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>
<categoryLinks>
<categoryLink id="3a4f-b749-0797-718e" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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"/>
</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"/>
<entryLink id="89f6-676a-813c-a174" name="Khinerai Lifetakers" hidden="false" collective="false" import="true" targetId="20ff-4b24-573b-ec17" type="selectionEntry"/>
</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"/>
</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"/>
</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"/>
</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"/>
</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="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd61-03bc-d54f-591f" name="Battalion: Slaughter Troupe" publicationId="388b-16d3-pubN82262" page="82" 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">Units from this battalion can retreat and still shoot and/or charge later in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="68ec-13cd-a682-22bb" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="0dc3-10a4-3bd8-46e1" name="2. 2 units of Sisters of Slaughter" 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"/>
</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"/>
<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"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b27-8173-22ce-6c56" name="Battalion: Temple Nest" publicationId="388b-16d3-pubN65537" page="73" 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>
<categoryLinks>
<categoryLink id="bdfe-b1dc-653a-47c9" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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"/>
</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"/>
</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"/>
<entryLink id="db5e-493f-49fc-bfaf" name="Bloodwrack Shrine" hidden="false" collective="false" import="true" targetId="7dc5-b0a6-2b72-b632" type="selectionEntry"/>
</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"/>
<entryLink id="04ce-18bb-e43f-cbb8" name="Blood Stalkers" hidden="false" collective="false" import="true" targetId="ffec-e491-3479-7e31" type="selectionEntry"/>
<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="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3d14-26eb-d3cf-b280" name="Battalion: War Coven of Morathi" publicationId="388b-16d3-pubN82262" page="80" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="adfe-078d-ddce-eb6c" name="Devout Followers" publicationId="388b-16d3-pubN65537" page="80" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Do not take battleshock tests for units from this battalion if MORATHI-KHAINE is part of your army and on the battlefield.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b19c-fe1d-2660-9e19" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<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"/>
</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"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9ffe-ebca-fd4e-db82" name="4. 1 Scáthcoven" 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: Scáthcoven" hidden="false" collective="false" import="true" targetId="1a8c-32ef-182c-75d9" type="selectionEntry"/>
</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"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="57a3-9b13-ed3e-d50b" name="1. 1 Vyperic 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="7d7d-4175-7ee7-b97c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99a1-74f9-a626-8ad4" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e3fc-2a4e-f7c9-5793" name="Battalion: Vyperic Guard" hidden="false" collective="false" import="true" targetId="f9be-49ad-6def-1185" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c1d9-d2b4-029b-1cc1" name="Bloodwrack Medusa" publicationId="388b-16d3-pubN82262" page="87" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="269c-97ff-19c2-a0e7">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-db4e-8f50-6d03" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<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/2</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"/>
<categoryLink id="5597-1dcf-435c-aa42" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="c602-02a0-75aa-66d3" name="MELUSAI HERO" hidden="false" targetId="9426-16b3-008c-a2f7" primary="false"/>
</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">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="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="Spell Lores" hidden="false" collective="false" import="true" targetId="3170-28ba-a091-950d" type="selectionEntryGroup"/>
<entryLink id="c612-f55e-0bb1-e0eb" name="Battalions" hidden="false" collective="false" import="true" targetId="02b3-b822-778d-f61c" type="selectionEntryGroup"/>
<entryLink id="abd0-0e9c-d506-cacc" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7dc5-b0a6-2b72-b632" name="Bloodwrack Shrine" publicationId="388b-16d3-pubN82262" page="86" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="269c-97ff-19c2-a0e7">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-db4e-8f50-6d03" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<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">At the start of your hero phase, you can roll 1 dice for each enemy unit within 7" of this model. If the roll is equal to or greater than the Aura of Agony value shown on this model’s damage table, that unit suffers D3 mortal wounds. The same unit cannot be affected by this ability more than once per turn.</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/2</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Enfeebling Foe</characteristic>
</characteristics>
</profile>
<profile id="e9d4-707f-4134-8ae3" name="Crew" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit’s shrine has an aelf crew that attack with their Goadstaves. For rules purposes, the crew are treated in the same manner as a mount.</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"/>
<categoryLink id="9496-6e62-f84d-6272" name="TOTEM" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
<categoryLink id="af9a-b0c7-68b5-31e0" name="MELUSAI HERO" hidden="false" targetId="9426-16b3-008c-a2f7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="049a-a44b-42a6-5e36" name="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="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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6890-ad4a-4f50-571a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e25d-773d-264d-1dad" type="min"/>
</constraints>
<infoLinks>
<infoLink id="7d0c-a2ce-d5c8-5093" 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="3547-dfa1-b367-2303" 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="8bb1-a649-e2a8-6105" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1970-d8f4-bf45-0fc0" type="min"/>
</constraints>
<infoLinks>
<infoLink id="2adf-8bc0-ddee-042a" 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="00c3-90e3-1242-5898" name="Wounds Suffered" 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="c1be-ddfe-0baf-ff2d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b885-265c-46f0-baa5" type="min"/>
</constraints>
<profiles>
<profile id="4841-c681-900d-5593" name="00-03" hidden="false" typeId="9ff1-cae2-b1cb-d060" typeName="Bloodwrack Shrine Wound Track">
<characteristics>
<characteristic name="Move" typeId="9228-1798-8698-1f89">6"</characteristic>
<characteristic name="Goadstaves" typeId="4800-9094-bab1-751b">6</characteristic>
<characteristic name="Aura of Agony" typeId="02be-b1ab-e57e-8c56">2+</characteristic>
</characteristics>
</profile>
<profile id="2f6d-0201-0c95-1a6e" name="04-06" hidden="false" typeId="9ff1-cae2-b1cb-d060" typeName="Bloodwrack Shrine Wound Track">
<characteristics>
<characteristic name="Move" typeId="9228-1798-8698-1f89">5"</characteristic>
<characteristic name="Goadstaves" typeId="4800-9094-bab1-751b">5</characteristic>
<characteristic name="Aura of Agony" typeId="02be-b1ab-e57e-8c56">3+</characteristic>
</characteristics>
</profile>
<profile id="c5e3-cfe0-bfe9-4eef" name="07-10" hidden="false" typeId="9ff1-cae2-b1cb-d060" typeName="Bloodwrack Shrine Wound Track">
<characteristics>
<characteristic name="Move" typeId="9228-1798-8698-1f89">4"</characteristic>
<characteristic name="Goadstaves" typeId="4800-9094-bab1-751b">4</characteristic>
<characteristic name="Aura of Agony" typeId="02be-b1ab-e57e-8c56">4+</characteristic>
</characteristics>
</profile>
<profile id="eb41-4f19-956c-e623" name="11+" hidden="false" typeId="9ff1-cae2-b1cb-d060" typeName="Bloodwrack Shrine Wound Track">
<characteristics>
<characteristic name="Move" typeId="9228-1798-8698-1f89">3"</characteristic>
<characteristic name="Goadstaves" typeId="4800-9094-bab1-751b">3</characteristic>
<characteristic name="Aura of Agony" typeId="02be-b1ab-e57e-8c56">5+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff0e-d611-c843-0ccd" 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="a522-6c1d-1513-55d0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a27e-d15d-621d-8eff" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ba6f-50d0-99e1-d092" 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="6172-fb1e-aa0f-c0fb" name="Command Traits" hidden="false" collective="false" import="true" targetId="ec67-f024-d327-7e32" type="selectionEntryGroup"/>
<entryLink id="085e-b4d8-047a-ec63" name="Spell Lores" hidden="false" collective="false" import="true" targetId="3170-28ba-a091-950d" type="selectionEntryGroup"/>
<entryLink id="3896-9aad-9c9f-ee21" name="Artefacts of Power" hidden="false" collective="false" import="true" targetId="f9fb-eb62-86d7-1a2b" type="selectionEntryGroup"/>
<entryLink id="caf9-9c39-99e5-e275" name="Battalions" hidden="false" collective="false" import="true" targetId="02b3-b822-778d-f61c" type="selectionEntryGroup"/>
<entryLink id="0f4b-9fef-aa30-300a" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190.0"/>
</costs>
</selectionEntry>
<selectionEntry id="af3b-efe1-dd4a-74d0" name="Doomfire Warlocks" publicationId="388b-16d3-pubN82262" page="96" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="269c-97ff-19c2-a0e7">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-db4e-8f50-6d03" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="61f6-eef5-17bf-bb32" name="Doomfire Warlocks" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="8daf-5f70-8a56-f4b7" name="Master of Warlocks" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Master of Warlocks. Add 1 to the Attacks characteristic of that model’s melee weapons.</characteristic>
</characteristics>
</profile>
<profile id="534e-7be7-0983-4fd6" name="Doomfire Coven" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to casting and unbinding rolls for this unit if it has 5 or more models.</characteristic>
</characteristics>
</profile>
<profile id="2180-1e59-733a-9917" name="Doomfire" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster. If the caster's unit has fewer than 5 models, that enemy unit suffers D3 mortal wounds. If the casting unit has between 5 and 9 models, that enemy unit suffers D6 mortal wounds. If the casting unit has 10 or more models, that enemy unit suffers 6 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="6a26-ceba-35c8-7750" name="Magic" 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, Doomfire</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="dd76-bde5-626e-fffb" name="New CategoryLink" hidden="false" targetId="7fe9-bc03-2c82-0a00" primary="false"/>
<categoryLink id="7e1c-1e4c-7a3f-4e80" name="New CategoryLink" hidden="false" targetId="9efd-7c5d-dc14-2302" primary="false"/>
<categoryLink id="332d-205a-2b14-a1d1" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="dbb8-ffef-de35-dbcb" name="New CategoryLink" hidden="false" targetId="9d1d-986e-bcaf-1b55" primary="false"/>
<categoryLink id="0125-d554-7802-7b99" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="752b-99a2-eaad-f84a" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>