-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathDeath - Data.cat
11160 lines (11130 loc) · 827 KB
/
Death - 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="e37a-2f18-f168-6ed3" name="Death - Data" revision="147" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<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"/>
<publication id="7a08-6611-3750-6469" name="Battletome: Soulblight Gravelords"/>
<publication id="efda-4c12-311f-cd2f" name="Battletome: Soulblight Gravelords Errata October 2022"/>
</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="Staff of Spirits"/>
</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"/>
</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"/>
</characteristicTypes>
</profileType>
<profileType id="e408-be1c-228b-2854" name="Vhordrai's Wounds Suffered">
<characteristicTypes>
<characteristicType id="0a2a-cf8c-c354-d970" name="Move"/>
<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="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 Claws and Blades"/>
</characteristicTypes>
</profileType>
<profileType id="ceab-8cac-f410-c850" name="Coven Throne Wounds Suffered">
<characteristicTypes>
<characteristicType id="cd25-3cdb-952f-5649" name="Move"/>
<characteristicType id="6f77-9d28-18b4-fcb7" name="Spectral Claws and Blades"/>
</characteristicTypes>
</profileType>
<profileType id="660b-e9d5-c63d-92ce" name="Nagash's Wounds Suffered">
<characteristicTypes>
<characteristicType id="385a-2fa7-e131-9f97" name="Move"/>
<characteristicType id="9ab2-1612-94a1-9d03" name="The Nine Books of Nagash"/>
<characteristicType id="5556-4876-2a75-7a92" name="Invocation of Nagash"/>
</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 Talons"/>
</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="Spectral Claws and Blades"/>
</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="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="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="CHAINRASPS" 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"/>
<categoryEntry id="361d-2721-1c41-e654" name="KRULGHAST CRUCIATOR" hidden="false"/>
<categoryEntry id="0dfe-68c2-7ec4-2306" name="RADUKAR THE WOLF" hidden="false"/>
<categoryEntry id="1070-6a98-3b6b-d33b" name="TORGILLIUS THE CHAMBERLAIN" hidden="false"/>
<categoryEntry id="fcce-bc47-9c68-42ee" name="WATCH CAPTAIN HALGRIM" hidden="false"/>
<categoryEntry id="7499-8204-0ba0-05bc" name="GORSLAV THE GRAVEKEEPER" hidden="false"/>
<categoryEntry id="c58e-911a-9d6b-da2a" name="KOSARGI NIGHTGUARD" hidden="false"/>
<categoryEntry id="17fb-f92e-3852-369d" name="VYRKOS BLOOD-BORN" hidden="false"/>
<categoryEntry id="5b76-2898-8fec-14a6" name="VARGSKYR" hidden="false"/>
<categoryEntry id="4ae3-d0e0-f36b-4128" name="VENGORIAN LORD" hidden="false"/>
<categoryEntry id="50a1-5210-860b-7496" name="DEADWALKER ZOMBIES" hidden="false"/>
<categoryEntry id="887e-0a2a-5f36-8ab8" name="DEATHRATTLE SKELETONS" hidden="false"/>
<categoryEntry id="ab9b-2646-0f99-5d83" name="LAUKA VAI" hidden="false"/>
<categoryEntry id="9214-781f-6cb5-3c5b" name="PRINCE DUVALLE" hidden="false"/>
<categoryEntry id="73ad-1be0-d557-d676" name="THE CRIMSON COURT" hidden="false"/>
<categoryEntry id="95c5-5182-51d5-4f1a" name="WIGHT KING ON SKELETAL STEED" hidden="false"/>
<categoryEntry id="ee34-70f9-93d9-ccd5" name="BELLADAMMA VOLGA" hidden="false"/>
<categoryEntry id="3c81-0b3b-f9c2-6346" name="LADY ANNIKA" hidden="false"/>
<categoryEntry id="cd56-03d7-5677-9610" name="KRITZA" hidden="false"/>
<categoryEntry id="fc63-23ce-ef98-c993" name="RADUKAR THE BEAST" hidden="false"/>
<categoryEntry id="f40d-1d71-6120-3cd1" name="Allegiance OBR" hidden="false"/>
<categoryEntry id="9a08-c6fd-0e5a-de0c" name="Soulblight Core Battalion" hidden="false"/>
<categoryEntry id="740e-2e73-948d-375a" name="GRIEVING LEGION" hidden="false"/>
<categoryEntry id="715f-c006-cdfe-2649" name="CADO EZECHIAR" hidden="false"/>
<categoryEntry id="35bf-a5e8-b9c2-07b2" name="HEKATOS" hidden="false"/>
<categoryEntry id="24ff-9b12-e05e-7ff3" name="Soulblight Warscroll Battalion" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="7f4c-7d4b-6b8e-575b" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="maxSelections" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" 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="2669-fb7f-39bb-6f54">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" 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="true" collective="false" import="true" targetId="b5ab-f60e-c534-427f" type="selectionEntry"/>
<entryLink id="77e1-5dcb-0332-c3de" name="Allegiance: Legion of Sacrament" hidden="true" collective="false" import="true" targetId="9dbc-f610-1cfa-90dd" type="selectionEntry"/>
<entryLink id="ad27-d94d-7ae7-f384" name="Allegiance: *Death*" hidden="true" collective="false" import="true" targetId="8604-d495-e647-5fc9" type="selectionEntry"/>
<entryLink id="aff6-f3f7-4f0e-d61a" name="Allegiance: Legion of Night" hidden="true" collective="false" import="true" targetId="8037-0ed4-af4b-dcf3" type="selectionEntry"/>
<entryLink id="0f2a-bc55-0944-940a" name="Allegiance: Soulblight" hidden="true" collective="false" import="true" targetId="3980-0249-eb07-3efd" type="selectionEntry"/>
<entryLink id="bf01-6c42-f136-e321" name="Allegiance: Legion of Blood" hidden="true" 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="true" collective="false" import="true" targetId="0758-0294-87aa-6054" type="selectionEntry"/>
<entryLink id="2669-fb7f-39bb-6f54" name="Allegiance: Soulblight Gravelords" hidden="false" collective="false" import="true" targetId="b72d-5ec7-bade-32e1" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f17-9426-3f02-fa2f" name="Bat Swarms [LEGENDS]" publicationId="ed1f-dca6-6c38-b4d5" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b5ab-f60e-c534-427f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1189-76a9-df65-5ee4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="f1b8-8df5-9e90-9345" shared="true" includeChildSelections="true"/>
</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 attacks made by enemy units wholly within 6" of any friendly BAT SWARMS units.</characteristic>
</characteristics>
</profile>
<profile id="c48e-94e4-2536-e5f2" name="Bat Swarms" publicationId="ed1f-dca6-6c38-b4d5" 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">6+</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="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="845a-6011-7b29-b900" name="BAT SWARMS" hidden="false" targetId="815f-1672-5314-72b3" primary="false"/>
<categoryLink id="07eb-8415-5a08-b7eb" name="SOULBLIGHT" 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">
<modifiers>
<modifier type="set" field="name" value="4 Bat Swarms">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="80"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17f0-0ec2-01bf-a76c" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="dfbd-af40-e2c3-e460" name="Battalions" hidden="false" collective="false" import="true" targetId="9df7-269b-fa20-74b2" type="selectionEntryGroup"/>
<entryLink id="3177-6190-4e4d-7dfc" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="21ba-8310-cc6a-8043" name="Legion Black Coach" 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="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="0fb5-3576-8073-09bf" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="bdb4-5cbc-a370-442e" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="9c4e-04a2-1ede-9a7a" name="HERO" 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"/>
<categoryLink id="122a-bfba-7f57-fef6" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ccaf-cdb2-07fe-9d41" type="min"/>
<constraint field="selections" scope="parent" value="1" 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>
<profile id="51c2-bb33-b090-76eb" name="Frightful Touch" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with this model's Cairn Wraith's Reaper Scythe is 6, that attack inflicts 2 mortal wounds on the target and the attack sequence ends (do not make a wound or save roll).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0986-8549-f280-2d1d" name="Reaped Like Corn" hidden="false" targetId="4067-a119-fd67-8162" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c73f-55cb-a324-dac8" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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"/>
<entryLink id="81f6-c802-2fbb-cdf9" name="Battalions" hidden="false" collective="false" import="true" targetId="9df7-269b-fa20-74b2" type="selectionEntryGroup"/>
<entryLink id="f6c7-5e1f-021b-cf77" 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"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1189-76a9-df65-5ee4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="c07b-4234-ba41-2802" name="Black Knights" publicationId="7a08-6611-3750-6469" page="104" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1d92-4b0d-0e10-99dc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1189-76a9-df65-5ee4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<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="Champion" 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 Hellknight. Add 1 to the Attacks characteristic of that model’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">After this unit makes a charge move, you can pick 1 enemy unit within 1" of this unit. If you do so, roll 2 dice each model in this unit. For each 5+, the target unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2bff-e923-99d9-6cfb" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="a132-e090-8741-2795" name="DEATHRATTLE" hidden="false" targetId="96d0-849a-a8cc-a6cf" primary="false"/>
<categoryLink id="6c2c-8027-0619-2eb7" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="3ba5-121a-eed0-e923" name="BLACK KNIGHTS" hidden="false" targetId="f30a-49c2-f39e-c282" primary="false"/>
<categoryLink id="e112-3720-13e4-b962" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="5b15-5482-5ecd-130e" name="SOULBLIGHT GRAVELORDS" hidden="false" targetId="3d31-12d5-6735-011c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ce88-b4de-ed42-11f5" name="5 Black Knights" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="15 Black Knights">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="10 Black Knights">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="130"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c8cf-e6e9-f316-86f2" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">2"</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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="f8b2-eca9-7cd6-5ba0" name="Skeletal Hooves and Teeth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa54-41d2-b7b9-4d1d" type="min"/>
<constraint field="selections" scope="parent" value="1" 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 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"/>
</costs>
</selectionEntry>
<selectionEntry id="9310-fde1-8e51-3577" name="Musician" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2e9-376d-0086-dbd7" type="max"/>
</constraints>
<profiles>
<profile id="60f5-bdc6-6086-abb5" name="Musician" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Hornblower. Treat charge rolls of less than 6 for this unit as 6 if it includes any Hornblowers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c65f-7ff8-9d64-d24b" type="max"/>
</constraints>
<profiles>
<profile id="87c6-99dc-423d-128d" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Standard Bearer. You can re-roll ward rolls of 1 for this unit for the purposes of the Deathless Minions battle trait for this unit while it has any Standard Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a8e0-89b6-5df2-0596" name="Battalions" hidden="false" collective="false" import="true" targetId="9df7-269b-fa20-74b2" type="selectionEntryGroup"/>
<entryLink id="383c-ce62-b5d5-c698" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1d92-4b0d-0e10-99dc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0bd3-bd67-4c5f-a7c8" name="Blood Knights" publicationId="7a08-6611-3750-6469" page="96" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" 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">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="548e-3786-f144-4f4b" type="equalTo"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3980-0249-eb07-3efd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1189-76a9-df65-5ee4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="8120-14f1-266c-4f6d" name="Champion" 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 Kastellan. Add 1 to the Attacks characteristic of a Kastellan’s Templar Lance or Blade.</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">Add 1 to the Damage characteristic of this unit’s melee weapons if this unit made a charge move in the same turn. This ability has no effect on attacks made by this unit's mounts.</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">3+</characteristic>
</characteristics>
</profile>
<profile id="1f94-abd7-01b7-6b71" name="Riders of Ruin" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit can pass across other models with a Wounds characteristic of 3 or less in the same manner as a model that can fly. After this unit makes a normal move, run, or charge move, roll a dice for each enemy unit that has any enemy models passed across. On a 2+, that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a5dd-f1c4-9522-70fd" name="The Hunger" hidden="false" targetId="2026-46db-b3fa-cd25" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="49e6-1316-8028-c955" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="2293-4d2f-4d40-aa28" name="VAMPIRE" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<categoryLink id="f025-8953-3b87-4bd8" name="BLOOD KNIGHTS" hidden="false" targetId="d1b9-cf2b-4c54-6dec" primary="false"/>
<categoryLink id="8964-4b4f-0cfb-585b" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="2119-f05c-c187-9750" name="SOULBLIGHT GRAVELORDS" hidden="false" targetId="3d31-12d5-6735-011c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3b88-59e9-5267-9b94" name="5 Blood Knights" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="10 Blood Knights">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="15 Blood Knights">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
</selectionEntry>
<selectionEntry id="2be7-836f-af35-548b" name="Hooves and Teeth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f2cb-db1a-3434-cbae" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c91-f3e9-953b-4dec" type="max"/>
</constraints>
<profiles>
<profile id="29ab-a3bf-04d0-c2c0" name="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">3</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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="53a5-490b-5106-b3e5" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">2"</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5cd7-99e6-7f62-0c37" type="max"/>
</constraints>
<profiles>
<profile id="5049-2586-5739-a4e0" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Standard Bearer. You can re-roll ward rolls of 1 for this unit for the purposes of the Deathless Minions battle trait if this unit includes any Standard Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="6e7e-fd48-cff5-65a5" name="Battalions" hidden="false" collective="false" import="true" targetId="9df7-269b-fa20-74b2" type="selectionEntryGroup"/>
<entryLink id="7fa3-21d3-6511-ea25" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="548e-3786-f144-4f4b" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf99-bace-e0a6-a947" name="Coven Throne" publicationId="7a08-6611-3750-6469" page="100" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b5ab-f60e-c534-427f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="eb0a-751e-537a-29b6" name="Wizard" 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, Shudder</characteristic>
</characteristics>
</profile>
<profile id="b75d-1426-64a1-ab75" name="Tactical Insight" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit can issue the same command up to 2 times in the same phase. If it does so, each command must be received by a friendly SOULBLIGHT GRAVELORDS SUMMONABLE unit. No command point is spent the second time this unit issue that command in that 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">If you take the first turn in the current battle round, this unit can attempt to cast 1 extra spell in your hero phase. If you take the second turn in the current battle round, you receive 1 extra command point.</characteristic>
</characteristics>
</profile>
<profile id="1483-afae-75f9-1dd8" name="Coven Throne" 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">12</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="ca10-6550-6756-c1ee" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="f2cf-ef30-747b-1774" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="c616-55cb-9536-fc69" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
<infoLink id="be1d-d144-a137-d5dd" name="The Hunger" hidden="false" targetId="2026-46db-b3fa-cd25" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c7aa-3d3b-bcfc-1866" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="eed3-018e-172c-c971" name="VAMPIRE" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<categoryLink id="3b52-d6f3-f67a-195d" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="b7b9-af00-0858-e719" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="7ad0-ba51-0eaa-0dae" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="e7e2-3358-192a-6fb7" name="COVEN THRONE" hidden="false" targetId="acc6-c8a7-76e2-85de" primary="false"/>
<categoryLink id="22e5-335a-8cd8-9520" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="473d-bf45-9148-8f5e" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="e9b7-7448-5fb4-ec9b" name="SOULBLIGHT GRAVELORDS" hidden="false" targetId="3d31-12d5-6735-011c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1223-dc7c-679f-2d9e" name="Spectral Claws and Blades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d7c-3f94-c0e7-0eeb" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d193-772b-1e88-8be7" type="max"/>
</constraints>
<profiles>
<profile id="503c-2058-1b13-832f" name="Spectral Claws and Blades" 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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="0a62-62e3-570a-21ae" name="Undying Servitude" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5da8-cad9-a2cd-30a3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0548-0187-d01f-8486" type="max"/>
</constraints>
<profiles>
<profile id="4041-0c09-e607-111a" name="Undying Servitude" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</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 HERO with a Wounds characteristic of 6 or less within range and visible to the caster. That unit suffers D3 mortal wounds. If that HERO is slain by this spell, before removing that HERO from play, you can add 1 Vampire Lord to your army. Set up that unit within 3" of the slain HERO, and then remove the slain HERO from play.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1bbc-3170-c716-6ab5" name="Stiletto" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d97-08a0-15cd-956a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f397-8377-d2b3-5b3e" type="max"/>
</constraints>
<profiles>
<profile id="f928-07ff-1961-215f" name="Stiletto" 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">5</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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="577c-7dd2-b855-58a3" name="Needle-sharp Poniards" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb8c-471f-70f7-de39" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="075c-59ff-a928-338b" type="max"/>
</constraints>
<profiles>
<profile id="0203-3159-b841-d361" name="Needle-sharp Poniards" 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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="b3ea-9b72-236b-b16f" name="Damage Table" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="01d2-6c29-6047-9137" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e961-f577-20e7-54e0" type="max"/>
</constraints>
<profiles>
<profile id="eea1-6e0b-3f20-10a9" name="00-06" 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="Spectral Claws and Blades" typeId="6f77-9d28-18b4-fcb7">12</characteristic>
</characteristics>
</profile>
<profile id="b9f4-619e-981c-f3e6" name="07-08" 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="Spectral Claws and Blades" typeId="6f77-9d28-18b4-fcb7">10</characteristic>
</characteristics>
</profile>
<profile id="9d91-ee3e-5593-ab45" name="09-10" 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="Spectral Claws and Blades" typeId="6f77-9d28-18b4-fcb7">8</characteristic>
</characteristics>
</profile>
<profile id="f2aa-3f57-772b-3f44" name="11+" 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="Spectral Claws and Blades" typeId="6f77-9d28-18b4-fcb7">6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="32fe-ccb6-0a3c-1e08" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry"/>
<entryLink id="d0c8-1e9b-2e39-a95d" name="Spell Lores" hidden="false" collective="false" import="true" targetId="8417-93fc-9562-a748" type="selectionEntryGroup"/>
<entryLink id="dd9e-6ef1-5dc3-a24f" name="Artefacts" hidden="false" collective="false" import="true" targetId="a2c1-3fba-5acb-d560" type="selectionEntryGroup"/>
<entryLink id="5fda-34de-61c1-156b" name="Command Traits" hidden="false" collective="false" import="true" targetId="eda1-7945-4fea-a145" type="selectionEntryGroup"/>
<entryLink id="bc00-a508-a4a5-eaef" name="Battalions" hidden="false" collective="false" import="true" targetId="9df7-269b-fa20-74b2" type="selectionEntryGroup"/>
<entryLink id="d2d3-ed53-6681-3aa3" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="5451-1a6a-9bb9-d277" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="250"/>
</costs>
</selectionEntry>
<selectionEntry id="0925-7712-23ee-1e94" name="Dire Wolves" publicationId="7a08-6611-3750-6469" page="106" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="bd12-f00f-2490-5052" name="Dire Wolves" 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">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="08a5-04d8-ba20-01c5" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 models in this unit must be a Doom Wolf. Add 1 to the Attacks characteristic of that model’s Rotting Fangs and Claws.</characteristic>
</characteristics>
</profile>
<profile id="3fc4-33f5-3566-13e5" name="On the Hunt" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit is eligible to fight in the combat phase if it is within 6" of an enemy unit instead of 3", and it can move an extra 3" when it piles in.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b196-2c06-86e0-bbea" name="DEADWALKERS" hidden="false" targetId="cba7-18df-b7ae-3365" primary="false"/>