-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nighthaunt - Library.cat
2805 lines (2805 loc) · 218 KB
/
Nighthaunt - Library.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 library="true" id="4ac4-565f-a06e-893" name="Nighthaunt - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="fb77-fec9-42ed-a7fd">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="425c-d311-1ac5-28b2" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="9af8-94e-5641-aceb" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="c0e0-8488-4a41-86f2" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="47e9-77a7-4f4d-27c7" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WIZARD (9)" hidden="false" id="39dd-9b00-fb54-7495" targetId="5a9b-95b7-c807-341f" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="b964-a0de-3248-c390" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="ead7-18a1-89f1-6160" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="7154-a388-ecef-bf55" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="8ad2-ebc0-76df-77ff" targetId="e3a4-4581-9f76-4215" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="760f-1c5c-c58f-589c" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Nagash, Supreme Lord of the Undead" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="f6d8-5e02-e519-2483">
<characteristics>
<characteristic name="Move" id="3696-794e-b7f5-9667" hidden="false" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" id="44be-d249-9c49-9542" hidden="false" typeId="96be-54ae-ce7b-10b7">18</characteristic>
<characteristic name="Save" id="c93e-6d53-9770-5c87" hidden="false" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" id="cb13-2022-bec8-cc4f" hidden="false" typeId="6c6f-8510-9ce1-fc6e">10</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="77fd-ea7b-a33a-8355">
<characteristics>
<characteristic name="Keywords" id="d853-68b2-d888-f1da" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="c13b-aeac-881-cc0b" hidden="false" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, subtract 3 from its power level.</characteristic>
</characteristics>
</profile>
<profile name="The Staff of Power" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a057-d767-3e60-ad7e">
<characteristics>
<characteristic name="Keywords" id="c617-2f56-7608-ab20" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="a35b-2e14-b24d-10d7" hidden="false" typeId="fd7f-888d-3257-a12b">Add 2 to casting rolls for this unit while it has not miscast any spells this turn. If this unit miscasts a spell, ignore the restriction that would stop this unit from casting any more spells this turn.</characteristic>
</characteristics>
</profile>
<profile name="Hand of Dust" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e02a-729c-d7f3-7445">
<characteristics>
<characteristic name="Timing" id="9eb2-8d7e-4128-b0d3" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" id="fd55-a190-845b-def1" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a visible enemy **^^Hero^^** or **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" id="42a9-a6a8-85cc-32e0" hidden="false" typeId="b6f1-ba36-6cd-3b03">Hide a dice in one of your hands or under one of two appropriate containers. Your opponent must pick one of your hands or containers. If they pick the one hiding the dice, this ability has no effect. If they pick the empty one, the target is automatically destroyed.</characteristic>
<characteristic name="Keywords" id="b8f8-a512-6a39-41d0" hidden="false" typeId="12e8-3214-7d8f-1d0f">^^Rampage^^</characteristic>
</characteristics>
</profile>
<profile name="Supreme Lord of the Undead" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c991-3cd3-fb95-b2ad">
<characteristics>
<characteristic name="Timing" id="df57-39da-54bb-5a4b" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" id="ae93-a259-b279-9db9" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a friendly non-**^^Hero^^** non-**^^Unique Death^^** unit that has been destroyed to be the target.</characteristic>
<characteristic name="Effect" id="3b00-6a39-bbe1-8da0" hidden="false" typeId="b6f1-ba36-6cd-3b03">Set up a replacement unit identical to the target wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" id="1430-7f77-7d0d-e27" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Invocation of Nagash" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="5a30-3bcf-8c86-14d">
<characteristics>
<characteristic name="Timing" id="8dc6-87f6-32e2-5c48" hidden="false" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" id="8f41-14f5-39ab-83c4" hidden="false" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" id="8554-1db4-2d33-d1b5" hidden="false" typeId="24f8-3803-4ab1-3b6c">This unit can cast this spell more than once per phase. Pick a visible unit wholly within 18" of this unit that has not been picked to be the target of this spell this turn to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" id="15f2-ee77-5d11-8ad1" hidden="false" typeId="1cb9-a-1345-907f">If the target is an enemy unit, inflict D3 mortal damage on it. If the target is a friendly **^^Death^^** unit, pick 1 of the following effects:
• Return a number of slain models to the target unit with a combined Health characteristic of up to 3.
• The target has **^^Ward (5+)^^** until the start of your next turn</characteristic>
<characteristic name="Keywords" id="196a-a679-8b01-1efb" hidden="false" typeId="353f-565e-c351-1cf2">^^Spell^^</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="cf40-9ca5-e6b3-825c" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="37db-ce31-f2cc-3b63">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Alakanash" hidden="false" id="2b0-a7cc-159-7f7e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4c3c-3b75-da0d-4c06"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="718e-8e74-8596-473c"/>
</constraints>
<profiles>
<profile name="Alakanash" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c3e3-cd9e-ebb5-33c4">
<characteristics>
<characteristic name="Atk" id="6436-3d84-4967-1290" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="65e-60d0-8da9-385f" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="6edd-2313-4154-10ed" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="5b46-4757-a758-367b" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="18f0-439d-abe-9158" hidden="false" typeId="e948-9c71-12a6-6be4">D6</characteristic>
<characteristic name="Ability" id="bdef-2dfb-43e-1ee3" hidden="false" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Zefet-nebtar" hidden="false" id="297-a4d5-4755-17f9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fbb5-e71d-b1e4-cbf7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="438c-2c46-78cf-61e"/>
</constraints>
<profiles>
<profile name="Zefet-nebtar" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1601-a953-7e76-5deb">
<characteristics>
<characteristic name="Atk" id="4e62-58f0-67d7-6ba0" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="34c-643e-8f81-5968" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="f52b-d2c5-3e1e-3d8d" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="622a-71a5-8a25-d70f" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="14b4-419a-3544-6b40" hidden="false" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" id="ce5b-4111-4fb7-659e" hidden="false" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6357-19bc-cea9-88e0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="56e9-1230-f040-a3d5"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Reikenor the Grimhailer" hidden="false" id="ea83-60f1-bd67-d25">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1d64-15af-e792-14c5" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Reikenor the Grimhailer" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="fece-57b4-eef6-cebd">
<characteristics>
<characteristic name="Move" id="8755-39ef-bc07-45bb" hidden="false" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" id="bd84-23ab-3347-bb74" hidden="false" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" id="38d5-b1-d01f-254d" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="89ab-6f56-47d9-b20" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Corpse Candles" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3698-696e-ea48-4852">
<characteristics>
<characteristic name="Timing" id="4424-cf5-d525-9399" hidden="false" typeId="652c-3d84-4e7-14f4">Any Hero Phase</characteristic>
<characteristic name="Declare" id="9d5d-b4f1-6fd1-c8d2" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick either this unit or a visible
enemy unit within 12" of this unit to be
the target.</characteristic>
<characteristic name="Effect" id="25c5-d723-8925-7a41" hidden="false" typeId="b6f1-ba36-6cd-3b03">Allocate 1 damage point to the target.
If you picked an enemy unit, add 1 to casting rolls for this unit for the rest of the turn.
If you picked this unit, for the rest of the turn:
• Add 1 to casting rolls for this unit.
• Add 1 to this unit’s power level.</characteristic>
<characteristic name="Keywords" id="a386-e81a-3cba-de7e" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Grim Justice" hidden="false" id="4638-69e1-b541-7746" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" id="48c2-5f42-2ed9-3e5a" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="b546-845b-7fba-2639" hidden="false" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls and wound rolls for attacks made with this unit’s **Fellreaper** if the target is a **^^Priest^^** or a **^^Wizard^^**.</characteristic>
</characteristics>
</profile>
<profile name="Wraithstorm" hidden="false" id="d09b-1ffa-f0e5-636b" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)">
<characteristics>
<characteristic name="Timing" id="44b8-a4e1-2cb4-4dd0" hidden="false" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" id="67fc-f5f0-bc0b-295c" hidden="false" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" id="597b-2fa6-6c6f-a48e" hidden="false" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 12" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" id="adeb-57b7-5a65-a0ff" hidden="false" typeId="1cb9-a-1345-907f">Inflict D3 mortal damage on the target. If any models are slain by this ability, inflict an additional D3 mortal damage on the target</characteristic>
<characteristic name="Keywords" id="927c-8dd1-e953-2acc" hidden="false" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="6882-afcd-dc14-6556" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="78f7-b97f-7280-4581" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="82a9-3e40-bb95-573" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="FLY" hidden="false" id="ffeb-8e6f-2f63-5357" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="407a-f38f-e39c-f9b" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="53e6-4731-30a-3b0" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="5be8-8b25-d0ea-a5be" targetId="926c-df8c-6841-d49e" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="19d4-5f81-3ccd-2724" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4dd3-1978-1d04-66d0" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Reikenor the Grimhailer" hidden="false" id="4113-18ff-22b1-a1c1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Fellreaper" hidden="false" id="836e-2a96-1fa5-46b5">
<profiles>
<profile name="Fellreaper" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7586-9d99-7c88-4ee5">
<characteristics>
<characteristic name="Atk" id="5113-2b8a-bc0f-fa2" hidden="false" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" id="d6b2-2cf5-5a3b-1704" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="dd3d-f132-cefa-cef9" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="466-f26-ff23-93d1" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="609c-18e9-f4a5-953b" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="64fb-4aa-2c61-6535" hidden="false" typeId="eda3-7332-5db1-4159">Charge (+1 Damage), Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7331-aff4-7041-32f1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="61b1-d64-d62f-51aa"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Kyllaron’s Ghostly Hooves and Teeth" hidden="false" id="f99c-eba5-93ef-77ee">
<profiles>
<profile name="Kyllaron’s Ghostly Hooves and Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="44a4-9c2f-f3da-4b96">
<characteristics>
<characteristic name="Atk" id="29b2-a254-55e7-c2c7" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="f840-3a51-6a7a-be21" hidden="false" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" id="d17d-aed8-3549-146e" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="9aad-a314-6000-a396" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="459f-893-fdaa-3204" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="34cb-e47d-7b1b-9104" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f13d-7296-ab2f-996c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8e06-6edf-5326-b96e"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="30e7-58d2-9677-3f13"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="deb3-bb57-7379-1aa6"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Knight of Shrouds" hidden="false" id="625-d4af-9738-48ca">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="15ed-6189-4d15-817a" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Knight of Shrouds" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8dfc-2dbe-680e-6d21">
<characteristics>
<characteristic name="Move" id="4960-2d95-67a2-ac37" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="d2a3-dae1-b09-3eb3" hidden="false" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" id="9f46-3479-eec7-62f5" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="e316-b4f0-e81-1a05" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Stolen Hours" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="95a7-816e-af01-723">
<characteristics>
<characteristic name="Keywords" id="f0e-23e4-a384-c08c" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="44c2-274f-4ef1-ab70" hidden="false" typeId="fd7f-888d-3257-a12b">Each time this unit uses a **^^Fight^^** ability, after that **^^Fight^^** ability has been resolved, **Heal (X)** this unit, where X is the number of damage points allocated to enemy units by combat attacks made as part of that **^^Fight^^** ability.</characteristic>
</characteristics>
</profile>
<profile name="Infantry Overseer" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8ed9-aa42-dcb2-eeda">
<characteristics>
<characteristic name="Timing" id="4190-671c-e101-4ee2" hidden="false" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" id="8ac0-3c37-3a1c-fc5d" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="c99b-fc36-25f6-1d39" hidden="false" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non**^^-Hero Nighthaunt Infantry^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved. If it is picked to do so, add 1 to hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" id="953b-7915-207c-56f" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="57fc-d353-81c5-41fc" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="641c-ba83-5922-3a3c" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="77a0-4d15-b2de-d905" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="a242-ed86-d8fc-dac4" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="d1f8-8149-9a2b-3a31" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="bf91-490b-51a-817e" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Knight of Shrouds" hidden="false" id="8cc6-a3c7-c5c-9562">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sword of Stolen Hours" hidden="false" id="efa2-c396-2398-2cc3">
<profiles>
<profile name="Sword of Stolen Hours" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3599-a435-264b-2fff">
<characteristics>
<characteristic name="Atk" id="cbfe-3137-365d-92b" hidden="false" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" id="ec24-88a5-7735-6039" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="73ac-831-5e3a-7947" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="c8a9-a3d3-18eb-1f34" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="dcf4-23bd-bd05-15ed" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="82a9-16a2-1cfa-5388" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="681b-277f-7843-3486"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="83da-f4f9-7daa-e7a8"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="635-9ed7-5bee-67ef"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="89f5-b99b-69ba-fc98"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Kurdoss Valentian, the Craven King" hidden="false" id="9b2f-951a-816b-94c4">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="49d-acdd-e9b0-88bb" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Kurdoss Valentian, the Craven King" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="2d78-6df3-292d-6c4d">
<characteristics>
<characteristic name="Move" id="75a3-debb-9a11-bd0" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="9cf1-e4d6-277e-e55c" hidden="false" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" id="116d-5fc-8ac4-58af" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="15ac-adf2-ac04-5709" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="If I Cannot Rule, None Shall Rule!" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7b27-efd7-5737-650a">
<characteristics>
<characteristic name="Timing" id="8ab4-c323-12cb-29ae" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn, Reaction: Opponent declared a command for a unit within 12" of this unit</characteristic>
<characteristic name="Declare" id="f09f-432e-56c2-4cfa" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="fcc5-5698-ca41-245f" hidden="false" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, unless your opponent spends 1 additional command point to use that command, the command has no effect, it still counts as having been used and the command points spent to use the command are still lost.</characteristic>
<characteristic name="Keywords" id="9793-291a-aa56-a99b" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="5550-ddb6-805e-92a2" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="33d3-a9e8-f31f-b748" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="fbc1-dd24-1024-faca" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="FLY" hidden="false" id="8f90-20fa-8188-5120" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="31b8-3fe2-1ebf-8828" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6797-5755-8b7e-5ba" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="7a02-62cd-68d3-9118" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="1e96-4128-3d06-e08e" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Kurdoss Valentian, the Craven King" hidden="false" id="df3c-5057-46de-287c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wraith Heralds’ Spectral Claws" hidden="false" id="ab1f-c4ba-1274-b7d1">
<profiles>
<profile name="Wraith Heralds’ Spectral Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e3b-d2a0-de0c-eba4">
<characteristics>
<characteristic name="Atk" id="7a9b-6af4-b89a-3b84" hidden="false" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" id="a21e-cc9-699b-1239" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="c966-1ae7-145b-f97f" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="a4d2-c656-d8ff-7273" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="5235-fd80-50d3-f133" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="5e2d-def-74aa-9dd5" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4a4b-6271-3f8e-e0a5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f04-f729-845-be9"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sepulchral Sceptre" hidden="false" id="7cbb-7b73-f960-f13a">
<profiles>
<profile name="Sepulchral Sceptre" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="16c7-a3d9-f502-3c83">
<characteristics>
<characteristic name="Atk" id="7be4-5f8-51c2-957b" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="6ff6-5baf-a314-b26c" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="509d-93bb-d767-36f7" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="ba12-634e-ecee-2f31" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="5f84-9960-45c3-e76f" hidden="false" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" id="408-b98b-3b9c-f627" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="30f-74e6-64e8-b810"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b9b7-805b-a849-a71a"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8367-3701-512-d353"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="48d6-e603-959f-e21e"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Awlrach the Drowner" hidden="false" id="d8ef-7494-db04-b1a9">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="cdbb-45da-9e61-58e3" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Awlrach the Drowner" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9553-e4ac-8c8a-cc6a">
<characteristics>
<characteristic name="Move" id="4e91-a6a3-df74-6ff4" hidden="false" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" id="366-a958-95dc-f35" hidden="false" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" id="e30b-6b66-d12d-b6d8" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="fe28-71ae-c639-c76c" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Passage Through the Underworlds" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d455-67e0-aa4e-ad3a">
<characteristics>
<characteristic name="Timing" id="f043-acd5-139-d4e6" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" id="c834-3892-118f-297d" hidden="false" typeId="bad3-f9c5-ba46-18cb">If this unit is not in combat, pick a friendly non-**^^Hero Nighthaunt^^** unit that is not in combat and is wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" id="42e4-5e1-8ee0-16ee" hidden="false" typeId="b6f1-ba36-6cd-3b03">Remove this unit and the target from the battlefield, then set them up again on the battlefield wholly within 6" of each other and more than 7" from all enemy units.</characteristic>
<characteristic name="Keywords" id="6fd6-9d32-b5ec-34e7" hidden="false" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="4b33-f48b-4da1-f35f" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="9201-905a-2d4e-f0d8" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="76f2-a6b7-1f34-2db2" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="FLY" hidden="false" id="5b51-d7ba-6f50-e411" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="a6e3-e3c6-a91-ac7e" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="de6-5714-ef1a-2acc" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="7141-3be2-92e8-63aa" targetId="f7bc-b618-4b5d-2bae" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="43bd-83b-236d-d8a1" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Awlrach the Drowner" hidden="false" id="b6df-5610-c764-3f1c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Deathwood Oar" hidden="false" id="5149-8461-85f8-841a">
<profiles>
<profile name="Deathwood Oar" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="61d-8bc3-32a2-4720">
<characteristics>
<characteristic name="Atk" id="bd87-e8be-ab3f-f796" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="a751-4163-4ad4-f227" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="7bb9-4617-d76c-cab1" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="f6dc-2c9a-8b0b-d6a5" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="72b3-df3-adaa-41c1" hidden="false" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" id="8e0e-fe7b-acdd-28b7" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9074-4699-efab-1f4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fb92-2f29-9bb-df33"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5f22-6841-d3c3-a06"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6d4a-2431-be4-1d34"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Lady Olynder, Mortarch of Grief" hidden="false" id="ee75-82ec-9c18-397b">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="aa77-65e3-3b07-3506" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Lady Olynder, Mortarch of Grief" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a416-8369-6fe2-db17">
<characteristics>
<characteristic name="Move" id="f8e9-94c5-7b21-11ec" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="a585-a8be-80d8-3ca9" hidden="false" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" id="5096-6e63-c785-cf42" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="7d70-7246-3287-5c5e" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="No Rest for the Wicked" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f367-31f5-d9dc-6d28">
<characteristics>
<characteristic name="Timing" id="9ca0-d254-574b-b8df" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" id="9e77-bd23-2348-9752" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick any number of friendly **^^Nighthaunt^^** units on the battlefield to be the targets.</characteristic>
<characteristic name="Effect" id="3b1f-f178-ab22-fe90" hidden="false" typeId="b6f1-ba36-6cd-3b03">For each target, you can return a number of slain models to that unit with a combined Health characteristic of up to D3+3.</characteristic>
<characteristic name="Keywords" id="aa7-1d11-8ac1-b3af" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Mortarch of Grief" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="608b-2465-cbf2-96b5">
<characteristics>
<characteristic name="Keywords" id="1439-fd5e-8da4-5aeb" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="2912-2cf9-105c-cdbb" hidden="false" typeId="fd7f-888d-3257-a12b">Subtract 3 from the control scores of enemy units while they are within 12" of this unit</characteristic>
</characteristics>
</profile>
<profile name="Grief-stricken" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="ffa7-4783-5327-9adb">
<characteristics>
<characteristic name="Timing" id="7f53-c63e-205-1ed1" hidden="false" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" id="85ec-7c72-c484-b8d2" hidden="false" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" id="5440-bc7f-5ffe-eda3" hidden="false" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 18" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" id="ce9f-ea5e-c16-de0d" hidden="false" typeId="1cb9-a-1345-907f">Ignore positive modifiers to hit rolls, wound rolls and save rolls for the target for the rest of the turn.</characteristic>
<characteristic name="Keywords" id="c1ec-70e2-54b7-e4ca" hidden="false" typeId="353f-565e-c351-1cf2">^^Spell^^</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="7477-f42c-45ef-9e0d" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="d256-9a51-e0c8-1a1a" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="7155-d4bd-78d2-da9e" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="FLY" hidden="false" id="c4ba-b42e-36bd-7138" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="f15e-3668-6b27-9b96" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="c298-a34e-1860-b4a" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="2345-87d1-c499-f94b" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (4+)" hidden="false" id="6e0-3265-1e90-df4e" targetId="f99f-98ee-909f-57cd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="490b-6f86-15a8-ba9c" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="fe30-6367-5c3e-9dd7" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Lady Olynder, Mortarch of Grief" hidden="false" id="7369-4fe0-7e03-ce1f">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Handmaidens’ Spectral Claws" hidden="false" id="9b0d-9e3e-aad9-36d">
<profiles>
<profile name="Handmaidens’ Spectral Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3c8d-42aa-f009-d33">
<characteristics>
<characteristic name="Atk" id="b3b4-c67a-19fd-67bc" hidden="false" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" id="4bff-7634-cbc6-8066" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="90c5-6769-481-5c4d" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="d952-9512-e842-2d56" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="47db-465b-1b0e-a616" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="a223-f09c-e9c1-6d02" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8249-7214-e787-c4c0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1df1-1b37-7658-8c4e"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Staff of Midnight" hidden="false" id="6277-4264-6065-9b5b">
<profiles>
<profile name="Staff of Midnight" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d2a-ecc4-517b-dcc5">
<characteristics>
<characteristic name="Atk" id="9215-5c0b-b9c4-408b" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="f2ef-e6a9-76a6-f957" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="81b1-b105-e6c-c9e1" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="3b47-8b46-1ac2-a0f7" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="ea25-f1bf-a918-6e7b" hidden="false" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" id="6655-3032-341b-8967" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4fa8-c238-d1b4-ed36"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e9d-7db5-1abf-fc9d"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Horrifying Visage" hidden="false" id="270f-f013-4aaa-1d12">
<profiles>
<profile name="Horrifying Visage" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="61c5-1c42-cb0e-2ac7">
<characteristics>
<characteristic name="Rng" id="9fc6-7e64-d91f-ec0b" hidden="false" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" id="955c-4962-efdb-593f" hidden="false" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" id="924d-1c16-ae1d-40c4" hidden="false" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" id="1e09-4194-8a87-ec16" hidden="false" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" id="f8a3-55d4-b1f1-1a6f" hidden="false" typeId="d03f-a9ae-3eec-755">3</characteristic>
<characteristic name="Dmg" id="74c-6869-4c14-eeca" hidden="false" typeId="96c2-d0a5-ea1e-653b">D6</characteristic>
<characteristic name="Ability" id="eb2-e1d0-1c5-6718" hidden="false" typeId="d793-3dd7-9c13-741e">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="48e0-c19a-45fa-8ebe"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="df63-b004-fe3f-c757"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="56da-928a-97a5-2a96"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e00-b8b7-58c7-db42"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Tomb Banshee" hidden="false" id="c35d-289f-9b39-a9aa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1106-3a41-93aa-7721" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Tomb Banshee" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9648-c2a4-2c6f-d0b5">
<characteristics>
<characteristic name="Move" id="a2b4-8645-2a32-3604" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="bc2f-8409-57fc-ecf7" hidden="false" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" id="6683-3128-27f8-9f20" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="40c4-f4e3-a387-d839" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Cacophony of Sorrow" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e3c-ba6c-2693-5bc8">
<characteristics>
<characteristic name="Keywords" id="42d7-c0e1-8611-a608" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="33ed-8b7c-587b-c6c3" hidden="false" typeId="fd7f-888d-3257-a12b">While there are any friendly **Myrmourn Banshees** units wholly within 12" of this unit, ignore positive modifiers to the control scores of enemy units within 12" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Ghostly Howl" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c836-c495-ab8-9bb0">
<characteristics>
<characteristic name="Timing" id="1074-dd5c-a243-97a1" hidden="false" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" id="f409-9698-6964-8866" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit that had any damage points allocated to it this turn by attacks made with this unit’s **Piercing Scream** to be the target.</characteristic>
<characteristic name="Effect" id="ac3e-e06a-45b-174b" hidden="false" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, the target cannot use commands until the start of your next turn</characteristic>
<characteristic name="Keywords" id="a493-7595-2407-b279" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="b9ee-b7aa-3fc6-e510" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="e710-54fc-9605-d4" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="76c4-5dbc-db68-1482" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="1dbc-9d8b-bece-4e92" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="a659-f763-e6ac-2624" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="e6b1-b837-62d0-38f8" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Tomb Banshee" hidden="false" id="1298-3509-78b9-d99f">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Piercing Scream" hidden="false" id="30ec-ed24-45ba-f1db">
<profiles>
<profile name="Piercing Scream" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="80ea-c23b-f552-9234">
<characteristics>
<characteristic name="Rng" id="f4cd-a94f-98fa-8019" hidden="false" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" id="8f04-927f-2fef-d70" hidden="false" typeId="aa17-4296-2887-e05d">D3</characteristic>
<characteristic name="Hit" id="960d-e6c5-e8ca-a12d" hidden="false" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" id="3f99-b17c-7fe-902a" hidden="false" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" id="cf9c-3fc0-28d0-15c7" hidden="false" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" id="2e5d-408c-1a62-f3a1" hidden="false" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" id="ec5d-f9d7-883b-f75f" hidden="false" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="97b1-59af-a02f-5939"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b613-bf9c-3a83-6907"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ancient Chill Dagger" hidden="false" id="fe42-adb3-d78-3ec1">
<profiles>
<profile name="Ancient Chill Dagger" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d8c-4ee7-577-e557">
<characteristics>
<characteristic name="Atk" id="c6b5-f9bd-64c3-de0a" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="13a5-114d-ca3e-db38" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="65a5-3bca-9f4c-9683" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="6dfe-3f5a-352c-eeda" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="c182-80a9-81af-8583" hidden="false" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" id="6929-e887-b071-1b3b" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ec06-af19-79e2-1b93"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="667a-9727-5f4f-aa20"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="42af-83fc-9e48-bbbd"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7ac0-f63b-ecc8-30af"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Knight of Shrouds on Ethereal Steed" hidden="false" id="72d-cbfa-2680-9e66">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1b15-1b69-eb8e-9c08" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Knight of Shrouds on Ethereal Steed" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e9a1-fd5-d218-b90b">
<characteristics>
<characteristic name="Move" id="2572-90cc-d1d4-2d1e" hidden="false" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" id="b5f5-486-ff12-86dd" hidden="false" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" id="6458-b761-7476-1ffd" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="e582-700c-4f56-e64d" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Stolen Hours" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="9130-aa67-559c-e554">
<characteristics>
<characteristic name="Keywords" id="f0e-23e4-a384-c08c" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="44c2-274f-4ef1-ab70" hidden="false" typeId="fd7f-888d-3257-a12b">Each time this unit uses a **^^Fight^^** ability, after that **^^Fight^^** ability has been resolved, **Heal (X)** this unit, where X is the number of damage points allocated to enemy units by combat attacks made as part of that **^^Fight^^** ability.</characteristic>
</characteristics>
</profile>
<profile name="Cavalry Overseer" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ce21-dbec-ab35-2b2f">
<characteristics>
<characteristic name="Timing" id="62cf-1211-d6e1-2d23" hidden="false" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" id="bc5b-95e2-6b1b-c00b" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="b26d-421a-a901-4ac8" hidden="false" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non**^^-Hero Nighthaunt Cavalry^^** or **^^War Machine^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved. If it is picked to do so, add 1 to hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" id="903d-bf87-fffd-3b11" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="edbf-19e6-a940-ca7d" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="7de8-31ed-4d3c-cfc8" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="fe03-a1d8-683a-ccb7" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="28a4-fcdc-f21b-9a27" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="8df8-e417-ec1e-8c97" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="8caf-c61-f454-725f" targetId="926c-df8c-6841-d49e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Knight of Shrouds on Ethereal Steed" hidden="false" id="1589-56e5-16-6407">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ethereal Steed’s Ghostly Hooves and Teeth" hidden="false" id="adfb-b987-efb5-c460">
<profiles>
<profile name="Ethereal Steed’s Ghostly Hooves and Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1be4-353c-efd-654e">
<characteristics>
<characteristic name="Atk" id="7e24-272-dca0-f90c" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="c4a0-5cff-ebf5-8211" hidden="false" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" id="46c7-1b9d-9b3e-1b82" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="8d92-311-5ab4-1d0e" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="4ebc-cee2-3495-6a88" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="a82d-d2a6-5fc3-4d5e" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5c15-6763-d9d7-e0bb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4d91-5546-2c40-6471"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sword of Stolen Hours" hidden="false" id="bb7f-c252-c5d0-f2fb">
<profiles>
<profile name="Sword of Stolen Hours" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="96dc-5acb-7c2a-4d4b">
<characteristics>
<characteristic name="Atk" id="27f8-b8e4-7afa-1402" hidden="false" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" id="8a1c-b103-b3da-83ce" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="85b8-4e26-3ad3-a784" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="b3de-b0de-1f75-4c0e" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="8993-e3d1-86ca-51fa" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="4f5d-d9d7-ca6d-7cf3" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f8dd-4408-f3cc-1da2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d1e9-ff4a-15d0-6794"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7a5-5997-4ef5-6a6b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="499a-9781-62e5-2805"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Cairn Wraith" hidden="false" id="eac-95c-b449-a7a5">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="bc30-7aea-f250-2701" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Cairn Wraith" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1b2b-ac1a-8ba-89aa">
<characteristics>
<characteristic name="Move" id="e25f-470b-27ff-ee78" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="e90a-c40e-4974-7ea6" hidden="false" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" id="d49f-7082-e847-24cb" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="3986-6063-b47e-7f60" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Eager Death Dealers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="aacb-5601-8d3f-91df">
<characteristics>
<characteristic name="Keywords" id="cf7e-2347-1241-8bfb" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="2eb-59bd-cb33-baa" hidden="false" typeId="fd7f-888d-3257-a12b">While this unit is in combat, add 1 to the Attacks characteristic of melee weapons used by friendly **Grimghast Reapers** while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="317e-a3b3-f7d7-89e6" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="a7e0-5413-e6ae-b9b1" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="663a-1346-c44c-c38e" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="3b44-209a-5f39-bcbc" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="56bb-297-76c9-3636" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="2910-fc44-65f3-65ed" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Cairn Wraith" hidden="false" id="170d-a97-a675-8775">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cairnoch Scythe" hidden="false" id="7b14-277a-9c3b-7979">
<profiles>
<profile name="Cairnoch Scythe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d25b-a6e3-6611-6d46">
<characteristics>
<characteristic name="Atk" id="a9b-f632-71ff-66d" hidden="false" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" id="b84c-cc6c-be3e-384e" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="bb74-39c5-ced-f467" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="534a-dda5-7171-45bd" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="14cf-d37d-fb2a-6cfe" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="c3d5-ae75-c23b-4747" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cf9e-5052-5f34-2920"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5d46-1e3c-8868-e14"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ad74-e2a0-9fe2-27a3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="67cf-a3c5-55df-77f7"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Krulghast Cruciator" hidden="false" id="d5e7-8080-3243-6c22">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="dbb-7969-a5ae-7869" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Krulghast Cruciator" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="5755-ed16-295d-ac70">
<characteristics>
<characteristic name="Move" id="cc13-53a2-d1a9-90a0" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="da81-3720-415e-47cb" hidden="false" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" id="81f8-4b53-100b-c227" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="4ceb-8a48-b8bc-2a38" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Empowered Through Excruciation" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3320-cf43-9061-7602">
<characteristics>
<characteristic name="Timing" id="2399-76bd-98a8-72e5" hidden="false" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" id="57ce-1b85-37eb-33da" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="dbac-8046-380-c04b" hidden="false" typeId="b6f1-ba36-6cd-3b03">Ignore the first damage point that would be allocated to each friendly **^^Nighthaunt^^** unit wholly within 12" of this unit in each phase.</characteristic>
<characteristic name="Keywords" id="62f8-b053-26eb-674" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="8a40-6ba7-61f0-1a5f" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="5434-ec51-66fe-41c1" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="c169-6e40-f40e-5c48" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="7870-8c53-a45c-17df" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="1e93-4f71-6cc7-a40f" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="2e9-44a2-c938-e3d0" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Krulghast Cruciator" hidden="false" id="6405-24-fb8e-dc4c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Talons and Flensing Knives" hidden="false" id="98c6-6bdc-444f-ec96">
<profiles>
<profile name="Talons and Flensing Knives" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b516-3ac2-539f-40fd">
<characteristics>
<characteristic name="Atk" id="56c-8d8-19cf-1158" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="ca91-196b-9152-1476" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="9269-f64c-aaab-8b3e" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="124b-3947-be8e-195" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="5c61-763f-6fd5-a4b6" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="af75-39a4-e6a9-3f88" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="84e4-ef20-d02-dff6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2575-c992-dff7-3f38"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Phantasmal Torture" hidden="false" id="afd8-915f-b34c-fac2">
<profiles>
<profile name="Phantasmal Torture" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="f832-697b-dd88-f981">
<characteristics>
<characteristic name="Rng" id="51e0-3198-6dbb-5d0f" hidden="false" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" id="2e46-6d4c-51c7-a2e" hidden="false" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" id="23d5-459-67e4-65a2" hidden="false" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" id="71fd-805e-8ea8-322a" hidden="false" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" id="321a-95ab-d18b-f13" hidden="false" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" id="43cc-ed0c-6063-627" hidden="false" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" id="83fe-e785-792c-49fc" hidden="false" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9c80-a7a3-f3fe-711d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8339-4d7c-be72-7ab5"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2acc-6ef-b811-1a09"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e0f2-ed37-7f15-471b"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Lord Executioner" hidden="false" id="8bd-370e-5881-48fb">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="6650-375c-785e-6caf" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Lord Executioner" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="67f1-4837-f27-5d5">
<characteristics>
<characteristic name="Move" id="d129-3e-11c9-bfe0" hidden="false" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" id="8e62-9b41-d83c-cc12" hidden="false" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" id="ed6b-3c94-e449-2513" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="1739-c6f2-379c-c5e8" hidden="false" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Staring Death in the Face" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="992a-6d5c-2c0a-6089">
<characteristics>
<characteristic name="Timing" id="ffc6-adaa-9d17-662" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn, Any Combat Phase</characteristic>
<characteristic name="Declare" id="6967-7206-8256-3794" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" id="e5bc-7ff2-f620-144f" hidden="false" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, subtract 1 from the Attacks characteristic of the target’s melee weapons for the rest of the turn. In addition, if the target is a **^^Hero^^**, subtract 5 from the target’s control score for the rest of the turn.</characteristic>
<characteristic name="Keywords" id="28d0-50f3-85b3-f0d4" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="4928-ec92-4595-31e1" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DEATH" hidden="false" id="83bd-edf1-3853-5cf9" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="bc21-d1f5-1f08-c707" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="aa85-858b-fb24-aba8" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="8c06-62a2-a986-3336" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="ee1a-3f1a-dfa0-762c" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Lord Executioner" hidden="false" id="ccf3-146e-53d9-b8a8">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Decapitating Greataxe" hidden="false" id="893-2fa7-c468-7b2f">
<profiles>
<profile name="Decapitating Greataxe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ef6a-ccbd-1b56-7ad">
<characteristics>
<characteristic name="Atk" id="a64-9c40-e6fe-eec0" hidden="false" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" id="4f2f-d08c-8524-c188" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="8fc3-257a-f48-e089" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="2c82-658e-47e3-1537" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="e379-ab1b-a2ef-9477" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="2888-f42f-8e1c-24dd" hidden="false" typeId="eda3-7332-5db1-4159">Anti-**^^Hero^^** (+1 Rend), Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="23eb-bb4e-548d-8a0e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ed6-f7a3-d071-8720"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="97f3-6038-9e51-5ae6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7a50-61a0-420c-4c84"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Dreadblade Harrows" hidden="false" id="8639-e146-50ea-6d7">
<profiles>
<profile name="Dreadblade Harrows" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="5d3e-6c35-b47e-3892">
<characteristics>
<characteristic name="Move" id="20ef-e989-757d-2183" hidden="false" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" id="d5bc-1423-1624-1a7e" hidden="false" typeId="96be-54ae-ce7b-10b7">3</characteristic>
<characteristic name="Save" id="71e3-cca3-bf24-e967" hidden="false" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" id="121c-103e-8986-dd70" hidden="false" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Curse of Loyalty" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3dff-20f4-7cb0-218e">
<characteristics>
<characteristic name="Keywords" id="4ec2-a563-4379-16f6" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="6a22-1776-c7d-93b7" hidden="false" typeId="fd7f-888d-3257-a12b">If this unit charged this turn, add 3 to the control scores of friendly **^^Nighthaunt^^** units while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Phantasmal Discorporation" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f784-69a6-d7fa-a95d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove this unit from the battlefield and set it up again on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="7707-9430-2c38-98f" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="FLY" hidden="false" id="8082-5493-d6e5-da45" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="NIGHTHAUNT" hidden="false" id="825b-cb80-9bd7-9d53" targetId="e3a4-4581-9f76-4215" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="5faf-917e-da1e-8ecd" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="705b-7859-39d0-e8c" targetId="926c-df8c-6841-d49e" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Dreadblade Harrow" hidden="false" id="7b08-a126-485b-3c27">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Dreadblade" hidden="false" id="a6f-66c7-426c-5e16">
<profiles>
<profile name="Dreadblade" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="846f-ae43-c1ce-dc59">
<characteristics>
<characteristic name="Atk" id="5179-12c2-7bf3-ac4b" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="f8e2-ad5a-818e-a68e" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="f1c1-96a7-334c-7c0f" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="ef17-b999-819d-6368" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="d93c-836a-b7ac-70c5" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="e77c-82ed-296b-6fee" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9e3a-c412-1466-f906"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1ac4-8038-8946-2e27"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ethereal Steed’s Ghostly Hooves and Teeth" hidden="false" id="1d51-61cb-cbc4-f67">
<profiles>
<profile name="Ethereal Steed’s Ghostly Hooves and Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7a7b-35a-1dec-86aa">
<characteristics>
<characteristic name="Atk" id="4659-aac0-a8e4-6694" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="5e64-8f10-9ce0-862b" hidden="false" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" id="5f78-1444-e09c-308a" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="4243-6558-444a-7649" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="149f-1199-7b1-d0fd" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="64af-fe92-ca30-6e01" hidden="false" typeId="eda3-7332-5db1-4159">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9390-c3dd-ab54-4875"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c360-946e-23fb-2a31"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="e79c-8607-787b-c52d-min"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="e79c-8607-787b-c52d-max"/>
</constraints>
<modifiers>
<modifier type="increment" value="2" field="e79c-8607-787b-c52d-min">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="2" field="e79c-8607-787b-c52d-max">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Spirit Torment" hidden="false" id="da26-4319-1b6a-9f32">