-
Notifications
You must be signed in to change notification settings - Fork 82
/
Death - Nighthaunt.cat
5119 lines (5113 loc) · 386 KB
/
Death - Nighthaunt.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="2a46-0cf8-0cf4-e8b2" name="Death - Nighthaunt" revision="65" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<publications>
<publication id="8b16-7c07-1657-3c2c" name="Arena of Shades"/>
<publication id="6b18-1555-02e7-68ec" name="Battletome: Nighthaunt Errata, June 2022"/>
<publication id="3760-e0aa-9c10-01e0" name="Battletome: Nighthaunt Errata, October 2022"/>
</publications>
<categoryEntries>
<categoryEntry id="2879-a068-ed06-a540" name="SCRIPTOR MORTIS" hidden="false"/>
<categoryEntry id="ec8c-b14e-63e3-33d7" name="Knight of Shrouds Artefact" hidden="false"/>
<categoryEntry id="e183-4612-fb2a-edf4" name="Nighthaunt Warscroll Battalion" hidden="false"/>
<categoryEntry id="59b3-d36c-eeea-9778" name="AWLRACH THE DROWNER" hidden="false"/>
<categoryEntry id="36b5-07e0-704b-2143" name="KNIGHT OF SHROUDS ON ETHEREAL STEED" hidden="false"/>
<categoryEntry id="af72-0a2a-db50-0018" name="THE BRIAR QUEEN" hidden="false"/>
<categoryEntry name="WIELDER OF THE BLADE" hidden="false" id="949f-3a8d-4c38-dbb3"/>
<categoryEntry name="HEADSMEN'S CURSE" hidden="false" id="d5d-810f-dd0d-1424"/>
<categoryEntry name="PYREGHEISTS" id="900c-cc5-44c9-106a" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="d1ad-bba8-08e5-42da" name="Guardian of Souls" hidden="false" collective="false" import="true" targetId="9ec8-6677-8ec6-fc58" type="selectionEntry"/>
<entryLink id="cadb-6210-c7ca-0f15" name="Kurdoss Valentian, the Craven King" hidden="false" collective="false" import="true" targetId="6780-c9ae-0e6d-01c1" type="selectionEntry"/>
<entryLink id="0c5a-7492-8b57-4aa8" name="Bladegheist Revenants" hidden="false" collective="false" import="true" targetId="0357-8fac-ab63-dfb7" type="selectionEntry"/>
<entryLink id="8b93-d7ef-aaca-3862" name="Knight of Shrouds on Ethereal Steed" hidden="false" collective="false" import="true" targetId="2c52-b6e2-5db1-d927" type="selectionEntry"/>
<entryLink id="fb30-36c3-3e8d-8e9f" name="Knight of Shrouds" hidden="false" collective="false" import="true" targetId="8367-cb29-b0bf-8343" type="selectionEntry"/>
<entryLink id="bcfe-bc30-ff63-01af" name="Tomb Banshee" hidden="false" collective="false" import="true" targetId="7932-b0dc-545a-ff2e" type="selectionEntry"/>
<entryLink id="ac26-f46d-c495-8582" name="Reikenor the Grimhailer" hidden="false" collective="false" import="true" targetId="66c4-71ed-81fc-3c31" type="selectionEntry"/>
<entryLink id="3a45-c3ad-1876-8b88" name="Lord Executioner" hidden="false" collective="false" import="true" targetId="f34f-be48-5111-f0af" type="selectionEntry"/>
<entryLink id="84b7-b05b-1a7b-00ad" name="Cairn Wraith" hidden="false" collective="false" import="true" targetId="a14a-4eff-414f-5e31" type="selectionEntry"/>
<entryLink id="cac5-9a65-1e8e-4919" name="Chainrasps" hidden="false" collective="false" import="true" targetId="6d3d-3bbc-b7de-66ed" type="selectionEntry"/>
<entryLink id="5718-f94d-cb4e-cf12" name="Nighthaunt Warscroll Battalion: Chainguard" hidden="false" collective="false" import="true" targetId="daed-fd48-08e7-a3b1" type="selectionEntry"/>
<entryLink id="1efe-98b1-1f3c-3d9a" name="Chainghasts" hidden="false" collective="false" import="true" targetId="6596-f710-a531-5dc4" type="selectionEntry"/>
<entryLink id="7506-b67c-5d9a-0ef5" name="Spirit Torment" hidden="false" collective="false" import="true" targetId="a282-521f-763a-60b3" type="selectionEntry"/>
<entryLink id="6810-a062-7962-1cad" name="Dreadblade Harrow" hidden="false" collective="false" import="true" targetId="34a8-4ee5-e1fc-666c" type="selectionEntry"/>
<entryLink id="4317-b885-fdc6-f3fb" name="Spirit Hosts" hidden="false" collective="false" import="true" targetId="de4d-760b-a9a4-243c" type="selectionEntry"/>
<entryLink id="a6a2-2f81-5f16-fbf1" name="Nighthaunt Warscroll Battalion: Chainguard" hidden="false" collective="false" import="true" targetId="daed-fd48-08e7-a3b1" type="selectionEntry"/>
<entryLink id="b4e3-ef6a-7f9f-8e29" name="Myrmourn Banshees" hidden="false" collective="false" import="true" targetId="503d-2a28-61d0-8016" type="selectionEntry"/>
<entryLink id="79b8-453c-10b5-8a20" name="Hexwraiths" hidden="false" collective="false" import="true" targetId="732a-83c6-bc6a-ee0b" type="selectionEntry"/>
<entryLink id="20aa-ca2e-b581-b3d7" name="Grimghast Reapers" hidden="false" collective="false" import="true" targetId="2e59-9596-8a38-edc8" type="selectionEntry"/>
<entryLink id="fda9-203e-034a-3208" name="Glaivewraith Stalkers" hidden="false" collective="false" import="true" targetId="4ea7-c969-7a41-2373" type="selectionEntry"/>
<entryLink id="ed0e-e493-04d5-7934" name="Dreadscythe Harridans" hidden="false" collective="false" import="true" targetId="1be7-556f-7376-3c5a" type="selectionEntry"/>
<entryLink id="a26e-7bf9-0e71-eec6" name="Allegiance" hidden="false" collective="false" import="true" targetId="a352-6c12-37a7-8b19" type="selectionEntry"/>
<entryLink id="f4b8-f559-589b-9791" name="The Briar Queen" hidden="false" collective="false" import="true" targetId="67c7-ec40-9d67-8cfa" type="selectionEntry"/>
<entryLink id="b215-7919-d239-66a4" name="Thorns of the Briar Queen" hidden="false" collective="false" import="true" targetId="4712-ade4-e409-6298" type="selectionEntry"/>
<entryLink id="6b24-f027-5ed5-07f2" name="Black Coach" hidden="false" collective="false" import="true" targetId="5683-d50c-009c-1a92" type="selectionEntry"/>
<entryLink id="18f2-b4b5-623e-e881" name="Awlrach the Drowner" hidden="false" collective="false" import="true" targetId="7113-33cb-6d32-3e04" type="selectionEntry"/>
<entryLink id="0010-28b2-ebf5-1588" name="Guardian of Souls with Mortality Glass" page="Limited release, Open/Narrative only" hidden="true" collective="false" import="true" targetId="eeb3-1473-cca7-791a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f5c9-2d9a-2ffb-edd5" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f8e0-be9d-fb92-826e" name="Mourngul" hidden="false" collective="false" import="true" targetId="846e-b96c-270a-d179" type="selectionEntry"/>
<entryLink id="051c-bbb7-b0ea-f071" name="Big Drogg Fort-Kicka - Gatebreaker Mercenary" hidden="false" collective="false" import="true" targetId="8c3b-e825-efb0-25bd" type="selectionEntry"/>
<entryLink id="68d9-e1cd-3b09-1d42" name="Krulghast Cruciator" hidden="false" collective="false" import="true" targetId="f2a6-d460-cc6b-bb8b" type="selectionEntry"/>
<entryLink id="678f-7d76-ae3d-7c07" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="5832-455b-4c11-2e7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="05e2-e89d-afb7-361f" name="Game Options" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b74e-52f6-4761-5351" name="Nagash, Supreme Lord of the Undead" hidden="false" collective="false" import="true" targetId="7c0c-91b9-f052-24af" type="selectionEntry"/>
<entryLink id="ffb8-34e1-2555-2de9" name="Endless Spell: Mortalis Terminexus" hidden="false" collective="false" import="true" targetId="189e-27eb-c948-aa33" type="selectionEntry"/>
<entryLink id="4ffe-25f0-3b11-3b87" name="Endless Spell: Shyish Reaper" hidden="false" collective="false" import="true" targetId="dfe1-ee7d-8f3f-f351" type="selectionEntry"/>
<entryLink id="5b6f-72c7-578c-4dbe" name="Endless Spell: Vault of Souls" hidden="false" collective="false" import="true" targetId="0fe4-999e-a3c2-d46a" type="selectionEntry"/>
<entryLink id="dacd-e904-a51e-f9cf" name="Lady Olynder, Mortarch of Grief" hidden="false" collective="false" import="true" targetId="4794-2dc0-ad15-6fef" type="selectionEntry"/>
<entryLink id="c926-de0a-8007-61fe" name="Scriptor Mortis" hidden="false" collective="false" import="true" targetId="fdce-1947-4932-dd0e" type="selectionEntry"/>
<entryLink id="fa6c-8aac-fbd2-27e4" name="Craventhrone Guard" hidden="false" collective="false" import="true" targetId="3198-9948-815b-1fbb" type="selectionEntry"/>
<entryLink id="3b5c-30c2-0686-3a8e" name="Battle Tactics: Chilling Ploys" hidden="false" collective="false" import="true" targetId="46d4-3e0b-819b-028e" type="selectionEntry">
<categoryLinks>
<categoryLink id="829b-5190-04e7-b4ca" name="Game Options" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="309f-3a62-b44a-0ffc" name="Regiment of Renown - Veremord's Shamblers" hidden="false" collective="false" import="true" targetId="fa3f-532f-9753-cd59" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Jerrion's Delegation" hidden="false" type="selectionEntry" id="78ed-4427-e139-1b32" targetId="7836-fd33-36d8-9a7a"/>
<entryLink import="true" name="The Headsmen's Curse" hidden="false" type="selectionEntry" id="aac0-6bb3-1640-d122" targetId="ab06-fe72-9bb5-1aa0"/>
<entryLink import="true" name="The Wielder of the Blade" hidden="false" type="selectionEntry" id="2197-fbaa-1cc-dc90" targetId="9542-2dbf-aa2-d6c8"/>
<entryLink import="true" name="Regiment of Renown - The Sternieste Garrison" hidden="false" type="selectionEntry" id="ee5c-ed14-391d-35b4" targetId="1061-aedd-61af-3ef6"/>
<entryLink import="true" name="Regiment of Renown - Scions of the Necropolis" hidden="false" type="selectionEntry" id="e6ed-7169-f8d8-8c70" targetId="8fe0-4d59-efcf-50e0"/>
<entryLink import="true" name="Regiment of Renown - The Liche's Hand" hidden="false" type="selectionEntry" id="b7bf-ca9f-5e97-400b" targetId="b809-9d2-4993-b523"/>
<entryLink import="true" name="Regiment of Renown - Neferata's Royal Echelon" hidden="false" type="selectionEntry" id="5177-9989-b768-1aed" targetId="6a5b-f6a9-b445-7a2f"/>
<entryLink import="true" name="Regiment of Renown - The Summerking's Entourage" hidden="false" type="selectionEntry" id="258b-e8df-2b88-651b" targetId="2eda-9ef0-22d9-a4ba"/>
<entryLink import="true" name="Pyregheists" hidden="false" id="eb99-beda-2b79-770f" targetId="d0d8-b162-9a16-deec" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="a352-6c12-37a7-8b19" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="ad4e-f092-52d0-792d" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<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="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="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="fc4e-6be8-ec51-c113" 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="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"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ad4e-f092-52d0-792d" type="min"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e124-1f52-17ea-c1b4" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8f31-b2a2-14e2-0336" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="55b7-e346-008b-18d3" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="3eb2-fedd-bfbe-d34a">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="130f-6b8b-878f-d0db" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17b6-5a51-44bb-5704" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="fd13-7bd7-3dfa-309c" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="3eb2-fedd-bfbe-d34a" name="Allegiance: Nighthaunt" hidden="false" collective="false" import="true" targetId="0595-259c-9405-8b88" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5683-d50c-009c-1a92" name="Black Coach" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="79a1-b3f0-5d8e-9651" name="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">12</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="faca-8607-4309-f577" 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).
In addition, if the unmodified hit roll for an attack made with the Relic Bearers’ Spectral Claws is 6, that attack inflicts 1 mortal wound and the attack sequence ends (do not make a wound or save roll).</characteristic>
</characteristics>
</profile>
<profile id="8ef9-f41d-6940-7419" name="Evocation of Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this unit is set up for the first time, place a D6 beside it with the 1 facing up. Each time an enemy model is slain or flees within 12" of this unit, increase the value of the dice beside this unit by 1 (to a maximum of 6). If the value of the dice beside this unit is 5-6, this unit has a ward of 4+ instead of 5+ from the Insubstantial Form ability.
Once per turn, in your shooting phase, if the value of the dice beside this unit is 6, you can say this unit will unleash its stored necromantic energy. If you do so, pick 1 enemy unit within 12" of this unit and roll a dice. On a 2+, that enemy unit suffers 3D3 mortal wounds. Then, change the value of the dice beside this unit back to 1.</characteristic>
</characteristics>
</profile>
<profile id="2e5f-050d-b342-5e67" name="Insubstantial Form" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+.</characteristic>
</characteristics>
</profile>
<profile id="4eb7-54e7-e8d1-54b3" name="Nimbus of Power" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Instead of picking this unit to make a normal move or retreat, you can say it will travel the underworlds to a new location. If you do so, remove this unit from the battlefield and set it up again on the battlefield more than 1" from all terrain features and objectives and more than 9" from all enemy units.</characteristic>
</characteristics>
</profile>
<profile id="3e03-90f4-f234-2156" name="Runaway Coach" 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 and roll a dice. On a 2+, that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="abb4-6676-cb64-030e" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8361-efba-06d6-5379" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="a301-167e-1966-ccfa" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="c67e-deb1-9b19-120b" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="7f13-69b2-cdc1-9502" name="BLACK COACH" hidden="false" targetId="56e4-7efa-d94f-0350" primary="false"/>
<categoryLink id="8278-9a3f-7490-85b5" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
<categoryLink id="7237-f47a-c7a8-5655" name="TOTEM" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1a23-5837-08a8-2c8e" name="Steeds and Crew (Treated as a Mount)" 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="a331-4de4-fb3e-8711" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d19-f2a1-361b-5de5" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="d35d-0f81-77ad-a93e" 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="146f-389e-c375-cf63" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3991-ab02-68d8-78d6" type="max"/>
</constraints>
<profiles>
<profile id="d5fc-1264-56d4-a242" 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">8</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="5a7b-0a21-71dc-18a1" name="Relic Bearers' Spectral Claws" 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="3182-850d-6e17-74ee" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45e7-d734-e8a3-f4d8" type="max"/>
</constraints>
<profiles>
<profile id="156c-c02f-d2e9-7489" name="Relic Bearers' Spectral 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">9</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">-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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c08f-a644-dcbe-5dc5" name="Wraith's Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee98-7e64-cddb-3940" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4255-35f2-a441-1f50" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8f70-0cb4-0acd-65b1" name="Wraith's Soulreach Grasp" 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="61ea-75b3-35cd-f578" type="max"/>
</constraints>
<profiles>
<profile id="c468-04d5-1479-93e9" name="Cairn Wraith's Soulreap Grasp (Melee)" 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">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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="bf17-24e5-8207-ff66" name="Cairn Wraith's Soulreap Grasp (Missile)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D3</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"/>
</costs>
</selectionEntry>
<selectionEntry id="1ff4-74c2-5c34-3490" name="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="4979-d5a2-7003-4a28" type="max"/>
</constraints>
<profiles>
<profile id="2d23-b7cf-b09e-54f9" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="365e-4f15-3a1c-72c8" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
</selectionEntry>
<selectionEntry id="0357-8fac-ab63-dfb7" name="Bladegheist Revenants" publicationId="8b16-7c07-1657-3c2c" 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="375e-634d-ca69-27b2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="375e-634d-ca69-27b2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="52a9-0050-cfd0-e5e4" name="Bladegheist Revenant" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</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="c0a8-77b8-b9d9-b141" name="Whirling Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Attacks characteristic of this unit's Tomb Greatblades if this unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="78bc-66fa-14d4-6214" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="186e-70e5-7299-7ae6" name="Elite" hidden="false" targetId="46ca-dc4f-b7a1-726d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="769f-e145-cdc9-fcc8" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="8ebd-35fd-e3a4-7d12" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="e8fc-abac-95c4-b678" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="3609-dbfe-369c-8928" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="657e-8010-fe81-7821" name="BLADEGHEIST REVENANTS" hidden="false" targetId="d315-a217-e291-c57e" primary="false"/>
<categoryLink id="53ca-939a-4de7-9d5b" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="bec6-ddf4-d5a4-a488" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e6cd-a990-6a59-1f7b" name="10 Bladegheist Revenants" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Bladegheist Revenants">
<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="20 Bladegheist Revenants">
<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="true" includeChildSelections="false" includeChildForces="false" id="22a8-34d7-0f82-580c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b60-ea31-a538-f334" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</selectionEntry>
<selectionEntry id="8d9b-d2ec-97dd-3201" name="Tomb Greatblade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0f60-d35b-c2bc-097f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5b6d-49ee-67c2-7aa3" type="max"/>
</constraints>
<profiles>
<profile id="24e7-9518-2df5-4451" name="Tomb Greatblade" 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">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>
</selectionEntries>
<entryLinks>
<entryLink id="97d6-247b-ac39-0139" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
<entryLink id="a39c-b5f7-4085-19c0" 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="375e-634d-ca69-27b2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a14a-4eff-414f-5e31" name="Cairn Wraith" publicationId="e320-d5ec-pubN65555" page="80" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="26f1-c6b0-df3c-0225" name="Cairn Wraith" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</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="44e4-832b-7cff-66b4" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1255-995f-0940-3031" name="CAIRN WRAITH" hidden="false" targetId="82e0-6f10-9719-2714" primary="false"/>
<categoryLink id="71bd-057b-e3b6-1016" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="7b12-fc5f-5497-12d5" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="0f83-90bf-7a9f-a562" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="1c4a-41dc-b465-3332" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="74a5-39d6-3119-0ca6" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="7979-054d-0af5-e0e6" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="968-5cc7-7baa-1494" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a408-6ea8-f145-ebb7" name="Cairnoch Scythe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3c72-b3d4-27ff-f281" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e7c3-7af8-5555-6532" type="max"/>
</constraints>
<profiles>
<profile id="2238-71e2-9aa0-ebac" name="Cairnoch 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">See Below</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>
<profile id="236d-730e-f1b1-4571" name="Eager Death-dealers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The Attacks characteristic of this unit's Cairnoch Scythe is equal to the number of enemy models within 3" of this unit when the attack is made.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7187-026c-e255-4b5f" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry"/>
<entryLink id="90a2-696b-c9c4-b122" name="Artefacts" hidden="false" collective="false" import="true" targetId="1ce7-4fd8-991f-3433" type="selectionEntryGroup"/>
<entryLink id="aa92-360a-0f57-a118" name="Command Traits" hidden="false" collective="false" import="true" targetId="9380-d13f-4cb9-86da" type="selectionEntryGroup"/>
<entryLink id="cb4c-4191-72eb-b90b" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
<entryLink id="97c1-1ec1-a8cf-cf55" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="5174-85e3-3dfe-dc62" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="90"/>
</costs>
</selectionEntry>
<selectionEntry id="6596-f710-a531-5dc4" name="Chainghasts" publicationId="8b16-7c07-1657-3c2c" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="cd08-b502-0063-9c1b" name="Chainghast" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</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="95bc-1d4b-7dcd-5d72" name="Another Link in the Chain" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for attacks made with melee weapons by friendly NIGHTHAUNT units wholly within 12" of any friendly units with this ability while a friendly SPIRIT TORMENT is on the battlefield.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="67e9-fb1d-57b4-9159" name="Elite" hidden="false" targetId="46ca-dc4f-b7a1-726d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9108-8244-0525-1ab5" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="996e-17d7-91e8-1bf8" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="2c4b-7aab-60a1-dd16" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="9a74-3a19-2a7a-2f03" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="8cb1-7bc7-aa6b-5f82" name="CHAINGHASTS" hidden="false" targetId="3f8d-5004-8281-2260" primary="false"/>
<categoryLink id="e224-5af5-5376-2104" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="45a-ebb5-db1e-f662" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a1f9-3bc9-5340-4cab" name="2 Chainghasts" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="4 Chainghasts">
<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="true" includeChildSelections="false" includeChildForces="false" id="81d7-1316-129f-8030" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="71ca-3a9b-a184-c3b1" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="90"/>
</costs>
</selectionEntry>
<selectionEntry id="a295-59bd-cb40-106e" name="Ghastflails" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="434d-e426-eb85-f3bc" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1045-381f-406d-c92f" type="max"/>
</constraints>
<profiles>
<profile id="f6d3-16d2-221d-7e77" name="Ghastflails (Melee)" 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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="e0b5-f665-c19c-5299" name="Ghastflails (Missile)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">15"</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">-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>
</selectionEntries>
<entryLinks>
<entryLink id="edbe-0a43-5eaf-0c1a" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
<entryLink id="5ceb-25e2-13c1-2d46" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="90"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6d3d-3bbc-b7de-66ed" name="Chainrasps" publicationId="241a-2f06-84ad-d21d" 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>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="fd57-e9a0-fd5e-0f35" name="Chilling Horde" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to wound rolls for attacks made with melee weapons by this unit if this unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="748c-96b2-f883-876a" name="Chainrasp" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="fbc5-435c-f840-079e" name="Dreadwarden" 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 Dreadwarden. Add 1 to the Attacks characteristic of that model's Malignant Weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b841-f889-6fd3-aac2" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7e91-1730-216d-4619" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="f03a-d7f6-1f3e-de01" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="8400-40f5-c16e-095b" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="919a-c62d-96c5-dbba" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="b3b1-5296-76eb-2d3d" name="CHAINRASPS" hidden="false" targetId="f6a0-5e71-c565-59b9" primary="false"/>
<categoryLink id="c5a2-fbb0-ac16-adc2" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="798f-bf80-edbf-7467" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a1e3-b6f5-43c1-3864" name="Malignant Weapon" 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="a9be-4d9d-9d7b-ac7a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6af2-faa1-0f37-c072" type="max"/>
</constraints>
<profiles>
<profile id="0ea8-2e65-fc1a-87d8" name="Malignant Weapon" 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="24a9-8bd5-95da-ac2f" name="10 Chainrasps" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Chainrasps">
<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="20 Chainrasps">
<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="true" includeChildSelections="false" includeChildForces="false" id="807b-519e-05c3-fed7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a35-9886-413d-24a4" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="cc9d-831e-f2f3-b135" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
<entryLink id="83b1-2450-c55f-538b" 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"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="34a8-4ee5-e1fc-666c" name="Dreadblade Harrow" publicationId="e320-d5ec-pubN65555" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8895-1162-89c9-b0d2" name="Dreadblade Harrow" 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">4+</characteristic>
</characteristics>
</profile>
<profile id="7f9f-8c80-7494-bc4a" name="Phantasmal Discorporation" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of your movement phase, you can remove this unit from the battlefield and set it up again on the battlefield more than 1" from all terrain features and objectives and more than 9" from all enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c28c-60c0-d4bd-6c03" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c467-5f7a-6702-71c6" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="e0b0-7745-75aa-50c4" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="9f3a-cfa8-b723-a8f1" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="145f-b168-edf2-a141" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="9de3-5d51-432a-45b9" name="DREADBLADE HARROW" hidden="false" targetId="7a65-be10-3dc1-d5bd" primary="false"/>
<categoryLink id="86af-ffd1-4b92-9673" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="f57a-d890-803e-7d03" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2ed6-1e21-81e4-e31c" name="Mount: Ethereal Steed" 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="876b-bf8e-c798-74f3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f72d-2fd8-24d3-7877" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e848-9c39-40bf-0b2c" name="Ghostly Hooves and Teeth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="968f-59a8-cd61-fae8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7c7d-9abb-3103-ec5e" type="max"/>
</constraints>
<profiles>
<profile id="e432-1116-d319-358c" name="Ghostly 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">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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a282-8726-489f-8418" name="Dreadblade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="537f-9c68-e5da-5834" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9040-11d6-7e05-7f07" type="max"/>
</constraints>
<profiles>
<profile id="97de-c21d-4fbb-f29d" name="Dreadblade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="bfa5-d375-c82b-f503" name="Curse of Loyalty" publicationId="6b18-1555-02e7-68ec" page="1" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle round, if your general has the NIGHTHAUNT keyword and issues a command, this unit can issue the same command in the same phase without a command point being spent. If it does so, that command must be received by a friendly NIGHTHAUNT unit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ca8e-9460-2ae8-6ee1" name="Artefacts" hidden="false" collective="false" import="true" targetId="1ce7-4fd8-991f-3433" type="selectionEntryGroup"/>
<entryLink id="84bd-0ab4-90ed-d39c" name="Command Traits" hidden="false" collective="false" import="true" targetId="9380-d13f-4cb9-86da" type="selectionEntryGroup"/>
<entryLink id="ceef-9a38-a3bb-447b" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry"/>
<entryLink id="adb9-770d-08d3-cd11" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
<entryLink id="aabb-73d2-3715-e547" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="b5ac-da5b-12eb-a4cb" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</selectionEntry>
<selectionEntry id="1be7-556f-7376-3c5a" name="Dreadscythe Harridans" publicationId="e320-d5ec-pubN65555" 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="427a-e300-0f27-d580" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="427a-e300-0f27-d580" type="equalTo"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="dbbb-053b-9dcc-e2d6" name="Dreadscythe Harridans" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</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="832e-4961-1c55-e5d4" name="Slasher Crone" 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 Slasher Crone. Add 1 to the Attacks characteristic of that model’s Scythed Limbs.</characteristic>
</characteristics>
</profile>
<profile id="995d-3b24-b6b8-9e16" name="Harrowing Shriek" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from wound rolls for attacks made by enemy units within 3" of this unit if this unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="09be-3437-13ee-cb85" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="66bb-2148-f50a-0e59" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="b4f6-fa10-f40b-ddcd" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="486c-588e-0669-cc5e" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="f792-2856-c0bb-0398" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="1143-f476-e030-2015" name="DREADSCYTHE HARRIDANS" hidden="false" targetId="7925-cbba-e311-cfac" primary="false"/>
<categoryLink id="ec02-4079-2f1f-ac8d" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="10fa-4e66-44ac-aa04" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="58f4-1483-bddd-9452" name="10 Dreadscythe Harridans" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Dreadscythe Harridans">
<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="20 Dreadscythe Harridans">
<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="true" includeChildSelections="false" includeChildForces="false" id="5144-cfa1-9609-a400" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2017-3878-170a-9fff" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</selectionEntry>
<selectionEntry id="5393-ced2-f44d-e666" name="Scythed Limbs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4eed-4d02-6d5c-1c3f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3c57-6846-e5c2-e053" type="max"/>
</constraints>
<profiles>
<profile id="ca26-582b-da63-aebc" name="Scythed Limbs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">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>
<profile id="e8eb-b82e-3494-03bf" name="Murderous Bloodlust" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit and wound rolls for attacks made with melee weapons by this unit if it is within 6" of any enemy models that have any wounds allocated to them or if it is within 6" of any enemy units that have had any models slain in that turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="22d1-80fc-cc4b-d136" name="Battalions" hidden="false" collective="false" import="true" targetId="e5b2-8f00-cd74-6b50" type="selectionEntryGroup"/>
<entryLink id="fd70-41cf-330a-a34a" 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="427a-e300-0f27-d580" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4ea7-c969-7a41-2373" name="Glaivewraith Stalkers" publicationId="e320-d5ec-pubN126193" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="4ef2-62be-0d7c-ddad" name="Glaivewraith Stalker" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</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="0829-c30e-7374-14d1" name="The Point of Death" 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 first hero phase, if this unit is on the battlefield, you can pick 1 enemy unit to be its prey. After this unit makes a normal move, if this unit finishes that move closer to its prey, add 3 to charge rolls for this unit until your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6af1-4abd-cc56-b7c3" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="9758-4ba3-ffdc-40df" name="Elite" hidden="false" targetId="46ca-dc4f-b7a1-726d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bdee-069b-5c9f-d33e" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="3be4-89ff-801c-91d3" name="MALIGNANT" hidden="false" targetId="c21c-0e74-70a9-18bb" primary="false"/>
<categoryLink id="3771-edad-5289-4bfe" name="NIGHTHAUNT" hidden="false" targetId="c352-dff7-7050-6f8d" primary="false"/>
<categoryLink id="6dc7-d31f-d53a-8afe" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="758d-9b88-8ad1-9ef3" name="GLAIVEWRAITH STALKERS" hidden="false" targetId="0760-c965-9249-df53" primary="false"/>
<categoryLink id="b5df-0946-a51b-12aa" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="8193-7cfe-2168-f47c" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2b68-30d3-61f8-fca0" name="Hunter's Glaive" 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="7de4-9885-2ec1-dafa" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="85ea-b068-fddd-c219" type="max"/>
</constraints>
<profiles>
<profile id="9422-4a16-04f8-b238" name="Hunter's Glaive" 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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>