forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Death - Legions of Nagash and Nighthaunt Data.cat
10843 lines (10843 loc) · 813 KB
/
Death - Legions of Nagash and Nighthaunt Data.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="e37a-2f18-f168-6ed3" name="Death - Legions of Nagash and Nighthaunt Data" revision="19" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="e320-d5ec-pubN65537" name="Battletome: Legions of Nagash and Battletome: Nighthaunt"/>
<publication id="e320-d5ec-pubN65555" name="Battletome: Nighthaunt"/>
<publication id="e320-d5ec-pubN90237" name="Grand Alliance: Death"/>
<publication id="e320-d5ec-pubN95707" name="Legions of Nagash"/>
<publication id="e320-d5ec-pubN101284" name="Battletome: Legions of Nagash"/>
<publication id="e320-d5ec-pubN102904" name="Vampire Counts: Warscroll Compendium"/>
<publication id="e320-d5ec-pubN126193" name="Soul Wars"/>
<publication id="e320-d5ec-pubN143137" name="Warhammer Underworlds: Nightvault"/>
<publication id="e320-d5ec-pubN155726" name="Tomb Kings: Warscroll Compendium"/>
<publication id="241a-2f06-84ad-d21d" name="Death Battletome: Nighthaunt"/>
</publications>
<profileTypes>
<profileType id="c098-3f9a-28af-206d" name="Mourngul Wounds Suffered">
<characteristicTypes>
<characteristicType id="ee94-3600-01cf-5bb4" name="Move"/>
<characteristicType id="a22d-fcce-e696-075e" name="Nightmarish Claws and Fangs"/>
</characteristicTypes>
</profileType>
<profileType id="6d48-1590-a7ff-4516" name="Evocation of Death Level">
<characteristicTypes>
<characteristicType id="0968-4539-05b1-823e" name="Ability"/>
</characteristicTypes>
</profileType>
<profileType id="823d-e366-580b-9b07" name="Battalion Organization">
<characteristicTypes>
<characteristicType id="bc6e-e731-eed7-c384" name="Required"/>
</characteristicTypes>
</profileType>
<profileType id="62b3-f42f-7518-0fa1" name="Arkhan's Wounds Suffered">
<characteristicTypes>
<characteristicType id="c11f-1089-904a-ac38" name="Move"/>
<characteristicType id="99cf-0eaa-2393-ac29" name="Ebon Claws"/>
<characteristicType id="3c1c-fe95-b3f1-9a1c" name="Khenash-an"/>
</characteristicTypes>
</profileType>
<profileType id="a982-d3d9-ffea-3d78" name="Mannfred's Wounds Suffered">
<characteristicTypes>
<characteristicType id="880c-ad30-4218-ce64" name="Move"/>
<characteristicType id="6ab9-f4a2-7b9c-72db" name="Ebon Claws"/>
<characteristicType id="5c3f-6350-a9ce-c498" name="Vigour of Undeath"/>
</characteristicTypes>
</profileType>
<profileType id="5dc5-6ed3-3415-8dc3" name="Neferata's Wounds Suffered">
<characteristicTypes>
<characteristicType id="b498-b6f7-56f5-7366" name="Move"/>
<characteristicType id="1d38-70cb-0844-3a13" name="Skeletal Claws"/>
<characteristicType id="0cf0-b0e7-8511-509e" name="Twilight's Allure"/>
</characteristicTypes>
</profileType>
<profileType id="e408-be1c-228b-2854" name="Vhordrai's Wounds Suffered">
<characteristicTypes>
<characteristicType id="0a2a-cf8c-c354-d970" name="Move"/>
<characteristicType id="3116-dad8-2afe-22f1" name="Breath of Shyish"/>
<characteristicType id="3233-3d20-d2d4-1d25" name="Sword-like Claws"/>
</characteristicTypes>
</profileType>
<profileType id="1fc7-f451-3937-0a17" name="Zombie Dragon's Wounds Suffered">
<characteristicTypes>
<characteristicType id="1712-425e-7e40-a5b1" name="Move"/>
<characteristicType id="b17b-97f7-9c40-21e5" name="Pestilential Breath"/>
<characteristicType id="e309-9fb0-c644-47ee" name="Sword-like Claws"/>
</characteristicTypes>
</profileType>
<profileType id="dd25-0118-c56e-ddbe" name="Bloodseeker Palanquin Wounds Suffered">
<characteristicTypes>
<characteristicType id="3fbe-8d35-7016-ec94" name="Move"/>
<characteristicType id="27eb-b284-31ea-b2b5" name="Wail of the Damned"/>
<characteristicType id="684a-f93a-6d74-d323" name="Spectral Host"/>
</characteristicTypes>
</profileType>
<profileType id="ceab-8cac-f410-c850" name="Coven Throne Wounds Suffered">
<characteristicTypes>
<characteristicType id="cd25-3cdb-952f-5649" name="Move"/>
<characteristicType id="7278-942a-7799-3689" name="Handmaidens"/>
<characteristicType id="6f77-9d28-18b4-fcb7" name="Spectral Host"/>
</characteristicTypes>
</profileType>
<profileType id="660b-e9d5-c63d-92ce" name="Nagash's Wounds Suffered">
<characteristicTypes>
<characteristicType id="1a52-a9c3-b4d9-592e" name="The Nine Books of Nagash"/>
<characteristicType id="8b3e-deb8-c336-87dd" name="Zefet-nebtar"/>
<characteristicType id="a90a-6b92-7baf-7503" name="Alakanash"/>
</characteristicTypes>
</profileType>
<profileType id="370f-9356-a89a-06b3" name="Terrorgheist Wounds Suffered">
<characteristicTypes>
<characteristicType id="2ad2-839b-d5ee-5770" name="Move"/>
<characteristicType id="dfdc-a86c-e979-1eb7" name="Death Shriek"/>
<characteristicType id="5b09-7a6b-dd30-faf1" name="Skeletal Claws"/>
</characteristicTypes>
</profileType>
<profileType id="ce91-82b9-fa86-1c7d" name="Mortis Engine Wounds Suffered">
<characteristicTypes>
<characteristicType id="47da-cf3b-aedb-18fa" name="Move"/>
<characteristicType id="abae-ebd6-57a6-27e9" name="Wail of the Damned"/>
<characteristicType id="68e8-33ca-3ae8-09c8" name="Ethereal Weapons"/>
</characteristicTypes>
</profileType>
<profileType id="be35-647f-aa69-b010" name="Black Coach Wounds Suffered">
<characteristicTypes>
<characteristicType id="433b-24f5-d3e0-908c" name="Move"/>
<characteristicType id="e7cf-d7e8-d137-1ce3" name="Relic Bearers' Spectral Claws"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="7d4c-5e52-c6a3-c7fa" name="ZOMBIE" hidden="false"/>
<categoryEntry id="cba7-18df-b7ae-3365" name="DEADWALKERS" hidden="false"/>
<categoryEntry id="d51a-b7de-3b60-a231" name="SUMMONABLE" hidden="false"/>
<categoryEntry id="1049-8b85-e303-a271" name="DIRE WOLVES" hidden="false"/>
<categoryEntry id="a2b3-901c-9a34-0ab2" name="SKELETON" hidden="false"/>
<categoryEntry id="96d0-849a-a8cc-a6cf" name="DEATHRATTLE" hidden="false"/>
<categoryEntry id="df35-6945-ec60-128e" name="SKELETON WARRIORS" hidden="false"/>
<categoryEntry id="c21c-0e74-70a9-18bb" name="MALIGNANT" hidden="false"/>
<categoryEntry id="9b9d-ac6f-768a-123f" name="DEATHMAGES" hidden="false"/>
<categoryEntry id="5110-5255-661c-adaa" name="MORTIS ENGINE" hidden="false"/>
<categoryEntry id="e50a-c473-627c-a3c2" name="TERRORGHEIST" hidden="false"/>
<categoryEntry id="7a67-dd1c-e979-4efb" name="ZOMBIE DRAGON" hidden="false"/>
<categoryEntry id="82e0-6f10-9719-2714" name="CAIRN WRAITH" hidden="false"/>
<categoryEntry id="f16f-2e67-9bf6-1c04" name="NECROMANCER" hidden="false"/>
<categoryEntry id="a30c-a3cc-8d16-7290" name="NAGASH" hidden="false"/>
<categoryEntry id="a3df-7eeb-bcac-ac90" name="DEATHLORDS" hidden="false"/>
<categoryEntry id="4529-6256-6fef-0279" name="REANIMANT" hidden="false"/>
<categoryEntry id="d1e1-d80a-c667-b587" name="VAMPIRE" hidden="false"/>
<categoryEntry id="de88-43a5-8bc9-7b92" name="TOMB BANSHEE" hidden="false"/>
<categoryEntry id="75f5-9da1-acc8-eb33" name="MORTARCH" hidden="false"/>
<categoryEntry id="8769-c165-9ba4-a1ab" name="ARKHAN" hidden="false"/>
<categoryEntry id="b620-252f-5254-7290" name="MANNFRED" hidden="false"/>
<categoryEntry id="cb1e-9e71-e3ba-b372" name="NEFERATA" hidden="false"/>
<categoryEntry id="4163-89db-dcfb-2052" name="PRINCE VHORDRAI" hidden="false"/>
<categoryEntry id="ab17-4dea-ab9a-f358" name="MOURNGUL" hidden="false"/>
<categoryEntry id="9a75-5717-65de-04cf" name="CORPSE CART" hidden="false"/>
<categoryEntry id="56e4-7efa-d94f-0350" name="BLACK COACH" hidden="false"/>
<categoryEntry id="815f-1672-5314-72b3" name="BAT SWARMS" hidden="false"/>
<categoryEntry id="5290-7bac-8ace-199a" name="FELL BATS" hidden="false"/>
<categoryEntry id="f30a-49c2-f39e-c282" name="BLACK KNIGHTS" hidden="false"/>
<categoryEntry id="a246-26fa-aa55-8466" name="BLOODSEEKER PALANQUIN" hidden="false"/>
<categoryEntry id="d1b9-cf2b-4c54-6dec" name="BLOOD KNIGHTS" hidden="false"/>
<categoryEntry id="b304-dff1-4fa7-c4b4" name="VAMPIRE LORD" hidden="false"/>
<categoryEntry id="e8f4-3b13-f9d1-eb56" name="GRAVE GUARD" hidden="false"/>
<categoryEntry id="6284-6685-6d56-978a" name="SPIRIT HOSTS" hidden="false"/>
<categoryEntry id="0058-2720-19c2-b46e" name="VARGHEISTS" hidden="false"/>
<categoryEntry id="acc6-c8a7-76e2-85de" name="COVEN THRONE" hidden="false"/>
<categoryEntry id="a0df-cbe2-016c-eb18" name="MORGHAST ARCHAI" hidden="false"/>
<categoryEntry id="4426-c76b-0951-e966" name="MORGHAST HARBINGERS" hidden="false"/>
<categoryEntry id="6d7d-5129-235c-f03e" name="MORGHAST" hidden="false"/>
<categoryEntry id="3844-597f-8938-7d8d" name="WIGHT KING" hidden="false"/>
<categoryEntry id="53f6-aa54-91a5-fcfb" name="MORDANT" hidden="false"/>
<categoryEntry id="cb1a-7964-cd9e-f9ed" name="THE SEPULCHRAL GUARD" hidden="false"/>
<categoryEntry id="62f7-04dd-0ebd-bd4e" name="KNIGHT OF SHROUDS" hidden="false"/>
<categoryEntry id="d4fa-feac-6db1-0da7" name="GUARDIAN OF SOULS" hidden="false"/>
<categoryEntry id="f6a0-5e71-c565-59b9" name="CHAINRASP HORDE" hidden="false"/>
<categoryEntry id="0990-2a28-1a07-3ce8" name="LORD EXECUTIONER" hidden="false"/>
<categoryEntry id="4869-e53c-ea69-5b32" name="SPIRIT TORMENT" hidden="false"/>
<categoryEntry id="0760-c965-9249-df53" name="GLAIVEWRAITH STALKERS" hidden="false"/>
<categoryEntry id="1513-346b-f8c1-f7b9" name="MYRNMOURN BANSHEES" hidden="false"/>
<categoryEntry id="d369-984e-5ac4-fbeb" name="GRIMGHAST REAPERS" hidden="false"/>
<categoryEntry id="f733-f0b4-78f8-4c23" name="LADY OLYNDER" hidden="false"/>
<categoryEntry id="9d88-fdc3-a19d-0365" name="REIKENOR THE GRIMHAILER" hidden="false"/>
<categoryEntry id="ef53-d839-c4cb-f71d" name="KURDOSS VALENTIAN" hidden="false"/>
<categoryEntry id="3f8d-5004-8281-2260" name="CHAINGHASTS" hidden="false"/>
<categoryEntry id="d315-a217-e291-c57e" name="BLADEGHEIST REVENANTS" hidden="false"/>
<categoryEntry id="7925-cbba-e311-cfac" name="DREADSCYTHE HARRIDANS" hidden="false"/>
<categoryEntry id="7a65-be10-3dc1-d5bd" name="DREADBLADE HARROW" hidden="false"/>
<categoryEntry id="3498-1f65-5ca1-c1cf" name="MORTALIS TERMINEXUS" hidden="false"/>
<categoryEntry id="18c3-0cea-324e-db56" name="VAULT OF SOULS" hidden="false"/>
<categoryEntry id="e803-c160-963b-950f" name="SHYISH REAPER" hidden="false"/>
<categoryEntry id="4001-ca8c-d510-5c9d" name="LEGION BLACK COACH" hidden="false"/>
<categoryEntry id="8cb3-efe9-850f-7fe7" name="MIRRORGHAST BANSHEE" hidden="false"/>
<categoryEntry id="3cb1-27fd-37fd-7225" name="THE BRIAR QUEEN" hidden="false"/>
<categoryEntry id="eb9d-a775-105f-6342" name="THORNS OF THE BRIAR QUEEN" hidden="false"/>
<categoryEntry id="26aa-8516-a4e4-c1fc" name="HEXWRAITHS" hidden="false"/>
<categoryEntry id="469f-24b2-d1fb-d182" name="Lantern" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="7f4c-7d4b-6b8e-575b" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxSelections" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="10f7-5fb9-bd1f-7599" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="4a7c-011c-dd6f-b62d">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0f54-f6f5-792d-47ba" name="Allegiance: Legion of Grief" hidden="false" collective="false" import="true" targetId="b5ab-f60e-c534-427f" type="selectionEntry"/>
<entryLink id="77e1-5dcb-0332-c3de" name="Allegiance: Legion of Sacrament" hidden="false" collective="false" import="true" targetId="9dbc-f610-1cfa-90dd" type="selectionEntry"/>
<entryLink id="ad27-d94d-7ae7-f384" name="Allegiance: *Death*" hidden="false" collective="false" import="true" targetId="8604-d495-e647-5fc9" type="selectionEntry"/>
<entryLink id="aff6-f3f7-4f0e-d61a" name="Allegiance: Legion of Night" hidden="false" collective="false" import="true" targetId="8037-0ed4-af4b-dcf3" type="selectionEntry"/>
<entryLink id="0f2a-bc55-0944-940a" name="Allegiance: Soulblight" hidden="false" collective="false" import="true" targetId="3980-0249-eb07-3efd" type="selectionEntry"/>
<entryLink id="bf01-6c42-f136-e321" name="Allegiance: Legion of Blood" hidden="false" collective="false" import="true" targetId="bf25-6b9f-6f44-5911" type="selectionEntry"/>
<entryLink id="97ec-ec28-f398-2dbd" name="Allegiance: Nighthaunt" hidden="false" collective="false" import="true" targetId="0595-259c-9405-8b88" type="selectionEntry"/>
<entryLink id="4a7c-011c-dd6f-b62d" name="Allegiance: Grand Host of Nagash" hidden="false" collective="false" import="true" targetId="0758-0294-87aa-6054" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="00de-c50d-33b4-216e" name="Arkhan the Black, Mortarch of Sacrament" page="135" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="eecf-a9a6-6a5f-51d5" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="75f5-9da1-acc8-eb33" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9dbc-f610-1cfa-90dd" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dacb-8f56-7a21-06c8" type="max"/>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="eecf-a9a6-6a5f-51d5" type="min"/>
</constraints>
<profiles>
<profile id="fc2c-6144-c808-a3b6" name="Feaster of Souls" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the combat phase, if any enemy models were slain by wounds inflicted by this model’s attacks in that combat phase, you can heal up to 2 wounds allocated to this model.</characteristic>
</characteristics>
</profile>
<profile id="ccd8-879c-72bc-040e" name="Arkhan" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">3/3</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Curse of Years spells.</characteristic>
</characteristics>
</profile>
<profile id="2bbe-2ed9-c7ad-859a" name="Arkhan the Black, Mortarch of Sacrament" 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">11</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="1e88-b3dc-9463-b89e" name="0-2" hidden="false" typeId="62b3-f42f-7518-0fa1" typeName="Arkhan's Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="c11f-1089-904a-ac38">16"</characteristic>
<characteristic name="Ebon Claws" typeId="99cf-0eaa-2393-ac29">6</characteristic>
<characteristic name="Khenash-an" typeId="3c1c-fe95-b3f1-9a1c">+2 cast/+2 unbind</characteristic>
</characteristics>
</profile>
<profile id="7818-f4e9-4744-dd3b" name="3-4" hidden="false" typeId="62b3-f42f-7518-0fa1" typeName="Arkhan's Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="c11f-1089-904a-ac38">13"</characteristic>
<characteristic name="Ebon Claws" typeId="99cf-0eaa-2393-ac29">5</characteristic>
<characteristic name="Khenash-an" typeId="3c1c-fe95-b3f1-9a1c">+2 cast/+1 unbind</characteristic>
</characteristics>
</profile>
<profile id="94be-4fa0-2337-3d56" name="5-6" hidden="false" typeId="62b3-f42f-7518-0fa1" typeName="Arkhan's Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="c11f-1089-904a-ac38">10"</characteristic>
<characteristic name="Ebon Claws" typeId="99cf-0eaa-2393-ac29">4</characteristic>
<characteristic name="Khenash-an" typeId="3c1c-fe95-b3f1-9a1c">+1 cast/+1 unbind</characteristic>
</characteristics>
</profile>
<profile id="4c00-cd42-9b7e-1305" name="7-8" hidden="false" typeId="62b3-f42f-7518-0fa1" typeName="Arkhan's Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="c11f-1089-904a-ac38">7"</characteristic>
<characteristic name="Ebon Claws" typeId="99cf-0eaa-2393-ac29">3</characteristic>
<characteristic name="Khenash-an" typeId="3c1c-fe95-b3f1-9a1c">+1 cast</characteristic>
</characteristics>
</profile>
<profile id="a213-1eed-88a4-8c06" name="9+" hidden="false" typeId="62b3-f42f-7518-0fa1" typeName="Arkhan's Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="c11f-1089-904a-ac38">4"</characteristic>
<characteristic name="Ebon Claws" typeId="99cf-0eaa-2393-ac29">2</characteristic>
<characteristic name="Khenash-an" typeId="3c1c-fe95-b3f1-9a1c">-</characteristic>
</characteristics>
</profile>
<profile id="5367-733e-6b8a-3dac" name="Mortarch of Sacrament" 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, if this model is on the battlefield you can pick up to 4 different friendly SUMMONABLE units or friendly OSSIARCH BONEREAPERS units, in any combination, that are wholly within 24" of this model. For each of those units, you can either heal up to 3 wounds allocated to that unit or, if no wounds are allocated to it, you can return a number of slain models to that unit with a combined Wounds characteristic of 3 or less.</characteristic>
</characteristics>
</profile>
<profile id="a6c2-782c-f8b1-0b39" name="Deathly Invocation" 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, pick up to 4 different friendly SUMMONABLE units within 18" of Arkhan. You can heal D3 wounds that have been allocated to each unit you picked (roll separately for each unit). If no wounds are currently allocated to a unit you picked, you may instead return a number of slain models to it that have a combined Wounds characteristic equal to or less than the roll of a D3.</characteristic>
</characteristics>
</profile>
<profile id="c53b-0f18-7b80-4825" name="First of the Mortarchs" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your hero phase if this model is on the battlefield. If you do so, until the end of that phase you can add 6" to the range of spells cast by friendly DEATH WIZARDS while they are within 18" of this model. You cannot pick the same unit to benefit from this command ability more than once per hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d64b-0ab5-45b9-7cdd" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="6fc5-f69a-99b4-dc42" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="5b40-f3ff-fad0-4f36" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a54b-df8d-ef94-be96" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="846d-16ff-de67-7a8e" name="New CategoryLink" hidden="false" targetId="a2b3-901c-9a34-0ab2" primary="false"/>
<categoryLink id="060a-85fa-cb2a-0c8d" name="New CategoryLink" hidden="false" targetId="a3df-7eeb-bcac-ac90" primary="false"/>
<categoryLink id="b1e4-047d-ba5b-1009" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="31d4-73c9-c1fc-a350" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="0b29-ec81-f405-66fc" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="a883-2e76-947c-b100" name="New CategoryLink" hidden="false" targetId="75f5-9da1-acc8-eb33" primary="false"/>
<categoryLink id="20e5-1605-2648-47a9" name="New CategoryLink" hidden="false" targetId="8769-c165-9ba4-a1ab" primary="false"/>
<categoryLink id="b3df-0766-3475-328d" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="5606-078b-c9c6-279c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="cc7a-8cdb-a909-0d62" name="Zefet-kar" 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="ac5e-f466-68e2-0770" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2451-7e31-173a-052f" type="max"/>
</constraints>
<profiles>
<profile id="d80b-34e8-ccb4-b089" name="Zefet-kar" 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">1</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">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="580c-d83f-5c3c-d581" name="Khenash-an" 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="7154-d217-7245-d83b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a79-94d3-21db-75da" type="max"/>
</constraints>
<profiles>
<profile id="5668-305c-8f2a-a9a1" name="Khenash-an" 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">1</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="bc8f-2306-c207-2a09" name="Staff of Spirits" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add the Staff of Spirits value shown on this model’s damage table to casting, dispelling and unbinding rolls for this model. In addition, this model can attempt to cast Arcane Bolt and Mystic Shield any number of times in the same hero phase, even if another WIZARD has already attempted to cast the spell in that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5a7-a169-d7fe-1de9" name="Spirits' Spectral Claws and Daggers" 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="38b0-a857-d54d-e4da" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ebc7-fe70-ec37-cab3" type="max"/>
</constraints>
<profiles>
<profile id="15b1-1799-b0d9-5bfa" name="Spirits' Spectral Claws and Daggers" 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">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3fe4-da6a-0d29-183f" name="Frightful Touch" hidden="false" targetId="92af-f1e1-04e3-1ce5" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="28d9-0d41-ce3b-af35" name="Curse of Years" 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="1068-e4b7-de58-eabe" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b567-a9af-8d6e-a60b" type="max"/>
</constraints>
<profiles>
<profile id="9ee7-00f1-20e3-082b" name="Curse of Years" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within 18" of the caster that is visible to them and roll 10 dice. For each 6, that unit suffers 1 mortal wound and you can roll an extra dice. For each 5+ on these extra dice, the target suffers 1 mortal wound and you can roll another dice. Now, for each 4+, the target suffers 1 mortal wound and you can roll another dice. Keep rolling dice in this way, inflicting mortal wounds and reducing the roll needed to cause them by 1 each time, until either no wounds are inflicted or the target unit is destroyed. A roll of 1 always fails to inflict a mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b0a4-75e8-9df9-a453" name="Razark's Ebon Claws" 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="86a0-a3ef-97f8-297f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="294f-1dda-35c1-d43f" type="max"/>
</constraints>
<profiles>
<profile id="b25a-d8fc-636d-ef65" name="Razarak's Ebon Claws" 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">*</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d015-06b8-0982-1ba6" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry">
<modifiers>
<modifier type="set" field="bc34-8ed2-fce6-ceab" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="75f5-9da1-acc8-eb33" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9dbc-f610-1cfa-90dd" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="360.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f17-9426-3f02-fa2f" name="Bat Swarms" page="135" hidden="false" collective="false" import="true" type="unit">
<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="b5ab-f60e-c534-427f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="8075-20e4-e5d4-8409" name="Cloud of Horror" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from hit rolls for enemy units that are within 12" of any Bat Swarms in the shooting phase.</characteristic>
</characteristics>
</profile>
<profile id="e510-54e5-de14-3057" name="Blood Suckers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of any combat phase in which this unit caused any wounds to be allocated to any enemy models, you can heal all wounds that have been allocated to this unit.</characteristic>
</characteristics>
</profile>
<profile id="c48e-94e4-2536-e5f2" name="Bat Swarms" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7348-e820-5096-6a21" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2484-e600-c75e-7623" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="ab8c-7d82-5261-10a7" name="New CategoryLink" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="845a-6011-7b29-b900" name="New CategoryLink" hidden="false" targetId="815f-1672-5314-72b3" primary="false"/>
<categoryLink id="07eb-8415-5a08-b7eb" name="New CategoryLink" hidden="false" targetId="7bf1-507e-d551-9b60" primary="false"/>
<categoryLink id="6bf9-ece7-351f-487b" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="51bd-b4ec-71c1-e81f" name="2 Bat Swarms" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a9d2-b62b-a8c5-73d4" name="Razor-sharp Teeth" 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="17f0-0ec2-01bf-a76c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a8ff-7cfb-918a-cde4" type="max"/>
</constraints>
<profiles>
<profile id="26be-5019-f564-abf3" name="Razor-sharp Teeth" 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">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="21ba-8310-cc6a-8043" name="Legion Black Coach" page="" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="3e31-d8df-ee8e-c6b5" name="Legion Black Coach" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">7</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="4e5b-3451-54a1-bab3" name="-" hidden="false" typeId="6d48-1590-a7ff-4516" typeName="Evocation of Death Level">
<characteristics>
<characteristic name="Ability" typeId="0968-4539-05b1-823e">Evocation of Death: In your hero phase, roll a dice for each friendly DEATH WIZARD within 12" of this model. For each roll of 6, the Legion Black Coach gains a level of power for the rest of the battle; these are cumulative and grant the following abilities:</characteristic>
</characteristics>
</profile>
<profile id="5be2-f5aa-2ef5-acd0" name="1" hidden="false" typeId="6d48-1590-a7ff-4516" typeName="Evocation of Death Level">
<characteristics>
<characteristic name="Ability" typeId="0968-4539-05b1-823e">Gleaming Scythes:After this model completes a charge, pick an enemy unit within 1" of this model. That unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="3f17-57e4-556f-032e" name="2" hidden="false" typeId="6d48-1590-a7ff-4516" typeName="Evocation of Death Level">
<characteristics>
<characteristic name="Ability" typeId="0968-4539-05b1-823e">Unholy Vigour:This model has a Move characteristic of 14" instead of 10.</characteristic>
</characteristics>
</profile>
<profile id="df33-6dd5-3bff-ef97" name="3" hidden="false" typeId="6d48-1590-a7ff-4516" typeName="Evocation of Death Level">
<characteristics>
<characteristic name="Ability" typeId="0968-4539-05b1-823e">Witch-fire:Add 1 to hit rolls for this model.</characteristic>
</characteristics>
</profile>
<profile id="a2c0-6bf8-5a0c-2cdc" name="4" hidden="false" typeId="6d48-1590-a7ff-4516" typeName="Evocation of Death Level">
<characteristics>
<characteristic name="Ability" typeId="0968-4539-05b1-823e">Howling Winds:This model can fly.</characteristic>
</characteristics>
</profile>
<profile id="d7e3-1a03-963a-818a" name="5" hidden="false" typeId="6d48-1590-a7ff-4516" typeName="Evocation of Death Level">
<characteristics>
<characteristic name="Ability" typeId="0968-4539-05b1-823e">Nimbus of Darkness:This model can attempt to unbind one spell in the enemy hero phase as if it were a WIZARD.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a103-380d-e7ab-eee5" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="0fb5-3576-8073-09bf" name="New CategoryLink" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="bdb4-5cbc-a370-442e" name="New CategoryLink" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="9c4e-04a2-1ede-9a7a" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="e0e0-f0d6-f067-e83f" name="LEGION BLACK COACH" hidden="false" targetId="4001-ca8c-d510-5c9d" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9fa6-8d65-0023-c8fc" name="Cairn Wraith's Reaper Scythe" 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="ccaf-cdb2-07fe-9d41" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="025b-08c3-6e8e-5b36" type="max"/>
</constraints>
<profiles>
<profile id="f096-b798-db4f-2611" name="Cairn Wraith's Reaper Scythe" 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">3</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0986-8549-f280-2d1d" name="Reaped Like Corn" hidden="false" targetId="4067-a119-fd67-8162" type="profile"/>
<infoLink id="5eb0-21bc-7732-30e5" name="Frightful Touch" hidden="false" targetId="92af-f1e1-04e3-1ce5" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5777-d115-a2fa-a145" name="Nightmares' Hooves and Teeth" 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="c73f-55cb-a324-dac8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad6b-c939-71a5-dc88" type="max"/>
</constraints>
<profiles>
<profile id="8995-4b6d-11c1-698f" name="Nightmares' Hooves and Teeth" 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">4+</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>
</selectionEntries>
<entryLinks>
<entryLink id="97fc-e37c-b55d-d08e" name="Artefacts" hidden="false" collective="false" import="true" targetId="a2c1-3fba-5acb-d560" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c07b-4234-ba41-2802" name="Black Knights" page="135" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="53cb-0ae1-ac70-09e3" name="Black Knights" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="7385-5805-8163-0f0c" name="Hell Knight" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is a Hell Knight. Add 1 to the Attacks characteristic of a Hell Knight’s Barrow Lance.</characteristic>
</characteristics>
</profile>
<profile id="34ff-a0c0-1d6a-6ff5" name="Deathly Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit completed a charge this turn, add 1 to its wound rolls and add 1 to the Damage characteristic of its Barrow Lances.</characteristic>
</characteristics>
</profile>
<profile id="612b-eb33-445f-f48c" name="Crypt Shields" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can add 1 to save rolls for this unit against attacks that have a Rend of ‘-’.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2bff-e923-99d9-6cfb" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="e2cb-54f1-c356-bd2d" name="New CategoryLink" hidden="false" targetId="a2b3-901c-9a34-0ab2" primary="false"/>
<categoryLink id="a132-e090-8741-2795" name="New CategoryLink" hidden="false" targetId="96d0-849a-a8cc-a6cf" primary="false"/>
<categoryLink id="6c2c-8027-0619-2eb7" name="New CategoryLink" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="3ba5-121a-eed0-e923" name="New CategoryLink" hidden="false" targetId="f30a-49c2-f39e-c282" primary="false"/>
<categoryLink id="e112-3720-13e4-b962" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ce88-b4de-ed42-11f5" name="5 Black Knights" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8f12-b3fb-a543-1c36" name="Barrow Lance" 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="c8cf-e6e9-f316-86f2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="933c-5f98-ff99-0429" type="max"/>
</constraints>
<profiles>
<profile id="cc77-50b6-86e0-abec" name="Barrow Lance" 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">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</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="f8b2-eca9-7cd6-5ba0" name="Skeletal Steed's Hooves and Teeth" 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="aa54-41d2-b7b9-4d1d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d8c-ebde-7ad2-7647" type="max"/>
</constraints>
<profiles>
<profile id="791c-6650-4f24-c73a" name="Skeletal Steed's Hooves and Teeth" 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">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</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="9310-fde1-8e51-3577" name="Hornblower" 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="b2e9-376d-0086-dbd7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a93e-fc5f-09c3-1672" name="HORNBLOWER" hidden="false" targetId="441f-bd49-e0b1-3709" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="87b5-a20f-2120-e7da" name="Standard Bearer" 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="c65f-7ff8-9d64-d24b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="83ce-7ada-3f77-4339" name="STANDARD BEARER" hidden="false" targetId="82d7-72c8-891a-50e8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0bd3-bd67-4c5f-a7c8" name="Blood Knights" page="135" hidden="false" collective="false" import="true" type="unit">
<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="b5ab-f60e-c534-427f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3980-0249-eb07-3efd" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="8120-14f1-266c-4f6d" name="Kastellan" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is a Kastellan. Add 1 to the Attacks characteristic of a Kastellan’s Templar Lance or Blade.</characteristic>
</characteristics>
</profile>
<profile id="c6b9-3db0-1a36-25dd" name="The Hunger" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of any combat phase in which this unit slew any models, you can heal 1 wound that has been allocated to it.</characteristic>
</characteristics>
</profile>
<profile id="5d0a-f0ea-e87c-0200" name="Martial Fury" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit completed a charge this turn, increase the Damage characteristic of its Templar Lances or Blades to D3.</characteristic>
</characteristics>
</profile>
<profile id="16c3-a53f-f079-58e1" name="Bloodshields" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the save rolls for a unit carrying Bloodshields against attacks that have a Rend characteristic of ‘-’.</characteristic>
</characteristics>
</profile>
<profile id="b163-ac68-1bb4-6044" name="Blood Knights" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">3</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="49e6-1316-8028-c955" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="2293-4d2f-4d40-aa28" name="New CategoryLink" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<categoryLink id="f025-8953-3b87-4bd8" name="New CategoryLink" hidden="false" targetId="d1b9-cf2b-4c54-6dec" primary="false"/>
<categoryLink id="b8b8-b671-1ef2-90c6" name="New CategoryLink" hidden="false" targetId="7bf1-507e-d551-9b60" primary="false"/>
<categoryLink id="8964-4b4f-0cfb-585b" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3b88-59e9-5267-9b94" name="5 Blood Knights" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="180.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2be7-836f-af35-548b" name="Nightmare's Hooves and Teeth" 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="f2cb-db1a-3434-cbae" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c91-f3e9-953b-4dec" type="max"/>
</constraints>
<profiles>
<profile id="29ab-a3bf-04d0-c2c0" name="Nightmare's Hooves and Teeth" 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">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</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="d735-58f1-8644-275b" name="Templar Lance or Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="53a5-490b-5106-b3e5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65f2-bc9f-3fc2-77ee" type="max"/>
</constraints>
<profiles>
<profile id="6bef-2ece-58c5-df03" name="Templar Lance or Blade" 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">3</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>
<selectionEntry id="b6d3-58b3-84ad-3934" name="Hornblower" 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="87ed-3fe2-0b5c-a1fd" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6e2a-8def-99e1-98e7" name="HORNBLOWER" hidden="false" targetId="441f-bd49-e0b1-3709" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2be3-be8e-7cf3-06b2" name="Standard Bearer" 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="5cd7-99e6-7f62-0c37" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d62a-b7ca-879f-542e" name="STANDARD BEARER" hidden="false" targetId="82d7-72c8-891a-50e8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="beaa-04e9-6780-fd71" name="Cairn Wraith" publicationId="e320-d5ec-pubN65555" page="80" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7ac1-35e3-cc9f-9f7a" name="Cairn Wraith" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">4</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="55cb-c36e-d650-303e" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="df23-ee08-d477-0cef" name="Ethereal" hidden="false" targetId="2cf0-8194-2a24-cf92" type="profile"/>
<infoLink id="54ab-80cd-741b-0a46" name="Frightful Touch" hidden="false" targetId="92af-f1e1-04e3-1ce5" type="profile"/>
<infoLink id="800d-100f-3016-689a" name="Reaped Like Corn" hidden="false" targetId="4067-a119-fd67-8162" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="aec5-03b7-2364-8773" name="New CategoryLink" hidden="false" targetId="82e0-6f10-9719-2714" primary="false"/>
<categoryLink id="c8c8-3a0c-2fa6-474f" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="fdb5-3a85-7479-ac65" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="327e-b91c-dbec-5aba" name="New CategoryLink" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="e86c-d701-b143-6f3a" name="New CategoryLink" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="8409-a435-b597-1d22" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c802-c8e9-c7d6-7166" name="Reaper Scythe" page="117" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="ff77-7e7e-b105-da89" name="Reaper Scythe" 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">3</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ec4d-ca58-7faf-a2b5" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry"/>
<entryLink id="f35e-a4fc-1b96-17ea" name="Artefacts" hidden="false" collective="false" import="true" targetId="a2c1-3fba-5acb-d560" type="selectionEntryGroup"/>
<entryLink id="86b0-2c5c-a77d-0e28" name="Command Traits" hidden="false" collective="false" import="true" targetId="eda1-7945-4fea-a145" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf99-bace-e0a6-a947" name="Coven Throne" page="135" hidden="false" collective="false" import="true" type="unit">
<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="b5ab-f60e-c534-427f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="6549-ace5-4cb0-7794" name="The Hunger" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of any combat phase in which this model slew any enemy models, you can heal 1 wound that has been allocated to it. If this model slew any enemy HEROmodels this turn, you may heal 1 additional wound allocated to it.</characteristic>
</characteristics>
</profile>
<profile id="eb0a-751e-537a-29b6" name="Vampire Queen on a Coven Throne" 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">The Vampire Queen on a Coven Throne is a WIZARD. She can attempt to cast one spell in your hero phase, and attempt to unbind one spell in the enemy hero phase. She knows the Arcane Bolt, Mystic Shield and Beguile spells.</characteristic>
</characteristics>
</profile>
<profile id="b75d-1426-64a1-ab75" name="Tactial Insight" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">If this model uses this ability, pick a friendly DEATH unit within 12" of it. You can re-roll hit, wound and save rolls of 1 for that unit until your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="1c4e-5fec-7819-58b4" name="Scrying Pool" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">“Once per game, you can re-roll a single dice roll of your choice for this model.</characteristic>
</characteristics>
</profile>
<profile id="3dfb-899b-0637-5788" name="Deathly Invocation" 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, pick up to 3 different friendly SUMMONABLEunits within 12" of this model. You can heal D3 wounds that have been allocated to each unit you picked (roll separately for each unit). If no wounds are currently allocated to a unit you have picked, you may instead return a number of slain models to it that have a combined Wounds characteristic equal to or less than the roll of a D3.</characteristic>
</characteristics>
</profile>
<profile id="a83f-719b-82d4-98b4" name="00-02" hidden="false" typeId="ceab-8cac-f410-c850" typeName="Coven Throne Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="cd25-3cdb-952f-5649">14"</characteristic>
<characteristic name="Handmaidens" typeId="7278-942a-7799-3689">8</characteristic>
<characteristic name="Spectral Host" typeId="6f77-9d28-18b4-fcb7">12</characteristic>
</characteristics>
</profile>
<profile id="4a78-d039-3187-64c2" name="03-04" hidden="false" typeId="ceab-8cac-f410-c850" typeName="Coven Throne Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="cd25-3cdb-952f-5649">12"</characteristic>
<characteristic name="Handmaidens" typeId="7278-942a-7799-3689">7</characteristic>
<characteristic name="Spectral Host" typeId="6f77-9d28-18b4-fcb7">10</characteristic>
</characteristics>
</profile>
<profile id="5dd0-fd12-9e0c-cdea" name="05-07" hidden="false" typeId="ceab-8cac-f410-c850" typeName="Coven Throne Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="cd25-3cdb-952f-5649">10"</characteristic>
<characteristic name="Handmaidens" typeId="7278-942a-7799-3689">6</characteristic>
<characteristic name="Spectral Host" typeId="6f77-9d28-18b4-fcb7">8</characteristic>
</characteristics>
</profile>
<profile id="2593-b2c1-d62b-43f4" name="08-09" hidden="false" typeId="ceab-8cac-f410-c850" typeName="Coven Throne Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="cd25-3cdb-952f-5649">8"</characteristic>
<characteristic name="Handmaidens" typeId="7278-942a-7799-3689">5</characteristic>
<characteristic name="Spectral Host" typeId="6f77-9d28-18b4-fcb7">6</characteristic>
</characteristics>
</profile>
<profile id="3c44-cdb2-c813-82f4" name="10+" hidden="false" typeId="ceab-8cac-f410-c850" typeName="Coven Throne Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="cd25-3cdb-952f-5649">4"</characteristic>
<characteristic name="Handmaidens" typeId="7278-942a-7799-3689">4</characteristic>
<characteristic name="Spectral Host" typeId="6f77-9d28-18b4-fcb7">4</characteristic>
</characteristics>
</profile>
<profile id="1483-afae-75f9-1dd8" name="Coven Throne" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">