generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Nighthaunt.cat
1550 lines (1550 loc) · 103 KB
/
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 library="false" id="640e-6bc1-c83d-13c" name="Nighthaunt" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Artefacts of Power" id="f997-403-7b2e-60c6" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Relics of the Underworlds" id="8b45-c8a4-392-3fa4" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lightshard of the Harvest Moon" hidden="false" id="5d90-2d26-d267-287b">
<profiles>
<profile name="Lightshard of the Harvest Moon" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="186d-860-b630-de91">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is in combat, add 1 to the Attacks characteristic of melee weapons used by friendly **^^Nighthaunt^^** units wholly within 12" of this unit for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="7f92-551b-1553-397b" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Soulfire Ring" hidden="false" id="2fbe-f99e-c102-ecb7">
<profiles>
<profile name="Soulfire Ring" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2522-ecf2-4b2c-8fce">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If any enemy models were slain by this unit’s combat attacks this turn, **Heal (D6)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="47b3-38c3-7bd9-555" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Covetous Familiar" hidden="false" id="8e03-ae4e-54e7-ec49">
<profiles>
<profile name="Covetous Familiar" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="33ec-3999-fe8b-9dce">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a **^^Fight^^** ability for a unit in combat with this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on that enemy unit equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="6676-a0d3-5e89-11d2" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ca11-22e-7049-997b"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="1f1-746-f960-cfde" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Nighthaunt" id="5114-443c-4c98-b35c" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Vanishing Phantasms" hidden="false" id="4194-8ce-eb86-80c2">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e75-79df-8146-4e18"/>
</constraints>
<profiles>
<profile name="Ethereal Translocation" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cdeb-961b-c43f-5603">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Nighthaunt^^** unit that is not in combat to use this ability.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove that 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>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Death Stalkers" hidden="false" id="ca91-2d4e-9ff4-c24">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2521-f2e9-6fc2-df6"/>
</constraints>
<profiles>
<profile name="There Is No Escape" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4d0f-d04f-9fa4-4e8d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Nighthaunt^^** unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, the target unit can still use **^^Charge^^** abilities even if it used a **^^Run^^** or **^^Retreat^^** ability in the same turn. In addition, for the rest of the turn, no mortal damage is inflicted on that unit by **^^Retreat^^** abilities.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Procession of Death" hidden="false" id="df99-d456-63a5-931">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3c05-de20-b8a2-8f0c"/>
</constraints>
<profiles>
<profile name="Cavalcade of Death" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="974a-2312-95e2-bfb2">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Friendly **^^Nighthaunt Infantry^^** units have **^^Ward (5+)^^** while they are wholly within 6" of a friendly **Black Coach**.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hunters of the Accursed" hidden="false" id="b5bd-1e28-d13-d5de">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4fdc-7103-affe-4b7b"/>
</constraints>
<profiles>
<profile name="Vengeful Malison" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cd6d-ac39-652b-f9ee">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 enemy **^^Heroes^^** each within 12" of a different friendly **^^Nighthaunt Hero^^** to be the targets</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3 for each target. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ca4a-2b29-431f-450e" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="9e6d-5798-809e-8d02" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Shades of Death" id="f65d-235-63e4-2c61" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cloaked in Shadow" hidden="false" id="4b9a-d8b5-b02b-4b47">
<profiles>
<profile name="Cloaked in Shadow" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3803-8726-ccc5-b2a2">
<characteristics>
<characteristic name="Keywords" id="a15e-ad1a-6590-6e95" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="1dcd-ac1d-15df-1353" hidden="false" typeId="fd7f-888d-3257-a12b">If the unmodified hit roll for an attack that targets this unit is 1-3, the attack fails and the attack sequence ends.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="7a35-3457-8521-c391" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ruler of the Spectral Hosts" hidden="false" id="eabf-168d-e0bf-bd61">
<profiles>
<profile name="Ruler of the Spectral Hosts" typeId="55ac-f837-dded-5872" typeName="Ability (Command)" hidden="false" id="f5f1-dc77-3a1c-e173">
<characteristics>
<characteristic name="Timing" typeId="736-6e3a-d0b5-a1b0">Once Per Battle, Your Movement Phase</characteristic>
<characteristic name="Cost" typeId="a49e-3082-e2a6-e802">1</characteristic>
<characteristic name="Declare" typeId="b77f-7548-840e-c086">Pick a friendly **^^Nighthaunt^^** unit that started the battle with 3 or more models and that has been destroyed to be the target.</characteristic>
<characteristic name="Effect" typeId="2111-3ca8-61dd-a5f0">Set up a replacement unit with half the number of models from the target unit (rounding up) wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="445d-f443-5448-e7ce"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4e07-949a-98a-6af8" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Terrifying Entity" hidden="false" id="e525-1726-65ce-607f">
<profiles>
<profile name="Terrifying Entity" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1145-27b4-48a1-261b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use any of the **^^Aura of Dread^^** abilities, even if it doesn’t have the required keyword(s) for that ability.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="b4d7-310-1bfe-b32b" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="62d9-29c6-ab71-cb07"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="10cc-abc-580c-ca07" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Manifestation Lores" id="6303-4a93-5d37-591e" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Chthonic Sorceries" hidden="false" id="e676-e273-9bc9-36d2">
<profiles>
<profile name="Summon Mortalis Terminexus" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="a55e-78c4-f919-4da7">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Mortalis Terminexus** on the battlefield, pick a friendly **^^Nighthaunt Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Mortalis Terminexus** wholly within 12" of the caster and visible to them.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Shyish Reaper" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="fdf9-753f-fa76-56f1">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Shyish Reaper** on the battlefield, pick a friendly **^^Nighthaunt Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Shyish Reaper** wholly within 12" of the caster, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Vault of Souls" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="394a-a98e-993e-958">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Vault of Souls** on the battlefield, pick a friendly **^^Nighthaunt Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Vault of Souls** wholly within 12" of the caster, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="75a2-cbc1-9e7-d845"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Shyish Reaper" hidden="false" id="d74f-baf7-d179-d56e" type="selectionEntry" targetId="8fe3-71b-c0fd-506b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8df8-ac9b-2359-9c57"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="25c1-8eeb-8112-97bb"/>
</constraints>
</entryLink>
<entryLink import="true" name="Vault of Souls" hidden="false" id="6f04-9754-5ecd-e54f" type="selectionEntry" targetId="4225-5446-8a69-146b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bc77-3eb7-6c7a-7a9c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="39b3-31b1-a30b-142f"/>
</constraints>
</entryLink>
<entryLink import="true" name="Mortalis Terminexus" hidden="false" id="bda7-f243-b1c0-59a2" type="selectionEntry" targetId="68d8-b0b8-90b9-d60d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="688-bd3b-ef7d-f7e8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ce81-1406-b11c-1900"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Spell Lores" id="2d44-c570-16a4-b2b5" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lore of the Underworlds" hidden="false" id="8c60-eedf-17ff-8fc8" defaultAmount="1">
<profiles>
<profile name="Shademist" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="304-da2-5490-bc0d">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Nighthaunt Wizard^^** to cast this spell, pick a visible friendly **^^Nighthaunt^^** unit that has 3 or more models and is wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Subtract 1 from wound rolls for attacks that target that unit until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="Spirit Drain" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="5b6a-4854-9dab-aca2">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Nighthaunt Wizard^^** to cast this spell, pick a visible enemy unit within 18" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a number of dice equal to the number of models in the target unit. For each 5+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Spectral Lure" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="d1e3-4be0-e6ae-c935">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Nighthaunt Wizard^^** to cast this spell, pick a friendly **^^Nighthaunt^^** unit wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Return a number of slain models to the target unit with a combined Health characteristic of up to D6.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d251-34df-fa7-5280"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="f211-c24f-7146-6e9d" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<catalogueLinks>
<catalogueLink type="catalogue" name="Nighthaunt - Library" id="bfbd-b02e-8ce1-5588" targetId="4ac4-565f-a06e-893"/>
</catalogueLinks>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Nighthaunt" hidden="false" id="53c5-1078-24f5-3301">
<profiles>
<profile name="Ethereal" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ca03-ec11-f370-b66d">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Ignore all modifiers to save rolls (positive and negative) for friendly **^^Nighthaunt^^** units, excluding **Nagash**.</characteristic>
</characteristics>
</profile>
<profile name="Discorporate" typeId="55ac-f837-dded-5872" typeName="Ability (Command)" hidden="false" id="c6d2-2b92-5367-7b43">
<characteristics>
<characteristic name="Timing" typeId="736-6e3a-d0b5-a1b0">Reaction: Opponent declared an **^^Attack^^** ability</characteristic>
<characteristic name="Cost" typeId="a49e-3082-e2a6-e802">1</characteristic>
<characteristic name="Declare" typeId="b77f-7548-840e-c086">A friendly **^^Nighthaunt^^** unit targeted by that **^^Attack^^** ability</characteristic>
<characteristic name="Effect" typeId="2111-3ca8-61dd-a5f0">That unit has **^^Ward (5+)^^** for the rest of the phase.</characteristic>
<characteristic name="Keywords" typeId="445d-f443-5448-e7ce"/>
</characteristics>
</profile>
<profile name="Wave of Terror" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="fc5b-13e9-6116-364b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Friendly **^^Nighthaunt^^** units that are in combat can use **^^Charge^^** abilities this phase. However, if a unit that is in combat uses a **^^Charge^^** ability and the charge roll is 3 or less, that unit does not count as having charged that turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Stun" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9829-3a36-9352-c552">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^^^**Nighthaunt War Machine^^** or **^^Cavalry^^** unit that has not used an **^^Aura of Dread^^** ability this turn and that charged this turn to use this ability, then pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Subtract 1 from save rolls for the target for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Aura of Dread^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Shriek" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="55b1-638d-3469-4301">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Nighthaunt^^** unit that has not used an **^^Aura of Dread^^** ability this turn and that charged this turn to use this ability, then pick an enemy unit within 1" of it to be the target. The number of models in the friendly **^^Nighthaunt^^** unit must be greater than the number of models in the target unit.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Subtract 1 from hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Aura of Dread^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Petrify" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ad5-a2be-cad6-bb84">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Nighthaunt Hero^^** that has not used an **^^Aura of Dread^^** ability this turn and that charged this turn to use this ability, then pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Aura of Dread^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="389c-d92-bf1f-30e5" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
</sharedSelectionEntries>
<entryLinks>
<entryLink import="true" name="Awlrach the Drowner" hidden="false" id="9eef-8c45-5646-ae76" type="selectionEntry" targetId="d8ef-7494-db04-b1a9">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="c9b-9861-2a0a-830f"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Knight of Shrouds" hidden="false" id="303-eeea-40b-580d" type="selectionEntry" targetId="625-d4af-9738-48ca">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="a8ab-bd4f-96f2-7abf"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="d48f-aa61-c797-8224" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="417b-5a9c-dee1-f3cf" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Guardian of Souls" hidden="false" id="a1fa-faa9-3b72-fd02" type="selectionEntry" targetId="76b8-eb95-f916-c5b5">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="428-ef2-e82a-1386"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="1cb0-454c-3b30-ad7e" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="3f0d-b9d4-ca09-2271" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink import="true" name="Cairn Wraith" hidden="false" id="f659-a262-ac79-b0eb" type="selectionEntry" targetId="eac-95c-b449-a7a5">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="f825-683e-6681-c7b8"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e5fd-27bc-4ac3-4825" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="cb94-2d3c-b866-f621" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7c3-7f7-72a2-ee8f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="78cd-3409-a94f-93f9" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="dc09-dae9-d3da-130e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5b02-b841-9c31-b69c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="df02-2a23-a841-4ce3" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="e83b-27b-d0cc-5222" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="fa70-89e5-1f77-4e20" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="3fb9-4ad6-b87c-48e6" field="category"/>
<modifier type="set" value="0" field="f825-683e-6681-c7b8">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="3fb9-4ad6-b87c-48e6" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink import="true" name="Knight of Shrouds on Ethereal Steed" hidden="false" id="48fe-6422-dcb8-4293" type="selectionEntry" targetId="72d-cbfa-2680-9e66">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="8a0f-522a-defb-b145"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="1c3b-f28d-1d30-b394" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2ddb-ec8-be30-30cc" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Krulghast Cruciator" hidden="false" id="9498-134b-1395-ef12" type="selectionEntry" targetId="d5e7-8080-3243-6c22">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="7eff-440-5d72-1f6a"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="bf42-be3f-f99c-7112" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2ba6-dba1-f2e5-858b" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Tomb Banshee" hidden="false" id="6fa1-7e89-5848-a1e2" type="selectionEntry" targetId="c35d-289f-9b39-a9aa">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="257-52d2-23d7-970e"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="20cd-e45d-aa84-9a51" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="20b1-c4cb-c7dc-2e4b" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Kurdoss Valentian, the Craven King" hidden="false" id="2e05-5bd-aa9d-564b" type="selectionEntry" targetId="9b2f-951a-816b-94c4">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="cd6f-8e89-6434-1245"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</entryLink>
<entryLink import="true" name="Reikenor the Grimhailer" hidden="false" id="28ab-7bac-ba95-27f4" type="selectionEntry" targetId="ea83-60f1-bd67-d25">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="925c-2855-a1a-d524"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Lady Olynder, Mortarch of Grief" hidden="false" id="d312-505d-1619-b43d" type="selectionEntry" targetId="ee75-82ec-9c18-397b">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e685-7401-1812-25a8"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="300"/>
</costs>
</entryLink>
<entryLink import="true" name="Scriptor Mortis" hidden="false" id="5b37-a5e1-5b0f-8271" type="selectionEntry" targetId="bd18-dcfd-b081-f533">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="2735-5c14-701f-2cd"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e5fd-27bc-4ac3-4825" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="cb94-2d3c-b866-f621" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7c3-7f7-72a2-ee8f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="78cd-3409-a94f-93f9" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="dc09-dae9-d3da-130e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5b02-b841-9c31-b69c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="df02-2a23-a841-4ce3" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="7902-8b-19e9-460e" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="46fc-9812-27b0-1c8c" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="3fb9-4ad6-b87c-48e6" field="category"/>
<modifier type="set" value="0" field="2735-5c14-701f-2cd">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="3fb9-4ad6-b87c-48e6" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink import="true" name="Lord Executioner" hidden="false" id="f73e-299b-3328-575f" type="selectionEntry" targetId="8bd-370e-5881-48fb">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="36e0-f199-9636-5bf5"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e5fd-27bc-4ac3-4825" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="cb94-2d3c-b866-f621" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7c3-7f7-72a2-ee8f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="78cd-3409-a94f-93f9" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="dc09-dae9-d3da-130e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5b02-b841-9c31-b69c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="df02-2a23-a841-4ce3" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="de87-e007-4201-b475" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="cf33-6c39-aa8b-cee2" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="3fb9-4ad6-b87c-48e6" field="category"/>
<modifier type="set" value="0" field="36e0-f199-9636-5bf5">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="3fb9-4ad6-b87c-48e6" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="2277-36f0-1b5f-80b7" type="selectionEntry" targetId="fb77-fec9-42ed-a7fd">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="58b0-2804-6a71-9afd"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="880"/>
</costs>
</entryLink>
<entryLink import="true" name="Spirit Torment" hidden="false" id="a520-1d3-fc17-4f8" type="selectionEntry" targetId="da26-4319-1b6a-9f32">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="2df0-b99a-9567-c9ae"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="78fa-a919-4f31-20be" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="54c5-4e6d-ccc9-79d2" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Awlrach the Drowner" hidden="false" id="e5fd-27bc-4ac3-4825" type="selectionEntry" targetId="d8ef-7494-db04-b1a9">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="5d7d-cfac-a548-6fcd" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Cairn Wraith" hidden="false" id="7648-12f1-95fd-fcd2" type="selectionEntry" targetId="eac-95c-b449-a7a5">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="7898-4bbb-11a8-9999" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="79c-f3d9-a45c-519c" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="260-ba78-c1d2-3ae0" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Guardian of Souls" hidden="false" id="5672-e1eb-f03c-a494" type="selectionEntry" targetId="76b8-eb95-f916-c5b5">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="5e8e-757-52a1-cb50" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="54d-68df-a7a2-c4af" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="d58f-1ed5-11d2-3c0e" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink import="true" name="Knight of Shrouds" hidden="false" id="cb94-2d3c-b866-f621" type="selectionEntry" targetId="625-d4af-9738-48ca">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="811c-97d5-9a49-4687" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="376c-372d-8b0e-9be2" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="bfdb-84db-e422-2b4c" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Knight of Shrouds on Ethereal Steed" hidden="false" id="b7c3-7f7-72a2-ee8f" type="selectionEntry" targetId="72d-cbfa-2680-9e66">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="ff0-a07-df22-a9d6" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9b9-61c8-e51c-bed5" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="5b9e-3996-e0a1-d1c1" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Krulghast Cruciator" hidden="false" id="c81c-805a-e4d7-583e" type="selectionEntry" targetId="d5e7-8080-3243-6c22">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="d25c-3fce-a8b5-40ee" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="159c-8f32-4179-4b40" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2613-301c-e5eb-452" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Kurdoss Valentian, the Craven King" hidden="false" id="78cd-3409-a94f-93f9" type="selectionEntry" targetId="9b2f-951a-816b-94c4">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="86cc-61a3-c8bf-e5ca" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</entryLink>
<entryLink import="true" name="Lady Olynder, Mortarch of Grief" hidden="false" id="dc09-dae9-d3da-130e" type="selectionEntry" targetId="ee75-82ec-9c18-397b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="1ec0-d14-9cb3-81fa" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="300"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord Executioner" hidden="false" id="1500-8766-b518-a243" type="selectionEntry" targetId="8bd-370e-5881-48fb">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="f63e-2535-3b22-9544" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="89f4-e9e8-9e3b-12" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="9df5-55a1-14a7-783e" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="5b02-b841-9c31-b69c" type="selectionEntry" targetId="fb77-fec9-42ed-a7fd">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="bbb0-fa15-53e-46e9" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="880"/>
</costs>
</entryLink>
<entryLink import="true" name="Reikenor the Grimhailer" hidden="false" id="df02-2a23-a841-4ce3" type="selectionEntry" targetId="ea83-60f1-bd67-d25">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="2850-5bba-a55e-63ec" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Scriptor Mortis" hidden="false" id="7b5d-b482-d599-789f" type="selectionEntry" targetId="bd18-dcfd-b081-f533">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="1d55-da2-5d27-7ac2" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="ee3b-4867-fa3b-2101" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="1cfc-7933-b2fd-53a2" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</entryLink>
<entryLink import="true" name="Spirit Torment" hidden="false" id="fdd-8e34-a253-8e6c" type="selectionEntry" targetId="da26-4319-1b6a-9f32">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="c8d7-5423-4aac-37da" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9e92-be8-1537-37a7" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="330d-1cd6-e121-45c9" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Tomb Banshee" hidden="false" id="8bfb-70bb-a67c-d606" type="selectionEntry" targetId="c35d-289f-9b39-a9aa">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="ef9b-3752-d71d-cb5b" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="852b-8bd6-8410-7e29" type="selectionEntryGroup" targetId="9e6d-5798-809e-8d02"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="32cd-fddd-4fd4-f2a6" type="selectionEntryGroup" targetId="f997-403-7b2e-60c6"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Black Coach" hidden="false" id="50b6-cef0-6119-85df" type="selectionEntry" targetId="29fe-d90b-4dde-c891">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e5fd-27bc-4ac3-4825" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="7648-12f1-95fd-fcd2" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5672-e1eb-f03c-a494" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="cb94-2d3c-b866-f621" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7c3-7f7-72a2-ee8f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c81c-805a-e4d7-583e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="78cd-3409-a94f-93f9" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="dc09-dae9-d3da-130e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1500-8766-b518-a243" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5b02-b841-9c31-b69c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="df02-2a23-a841-4ce3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="7b5d-b482-d599-789f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fdd-8e34-a253-8e6c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8bfb-70bb-a67c-d606" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="5383-844c-da86-b7bd"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
</entryLink>
<entryLink import="true" name="Bladegheist Revenants" hidden="false" id="dd37-50db-7b5a-83d9" type="selectionEntry" targetId="4b64-f4ae-a675-d024">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e5fd-27bc-4ac3-4825" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="7648-12f1-95fd-fcd2" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5672-e1eb-f03c-a494" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="cb94-2d3c-b866-f621" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c81c-805a-e4d7-583e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="78cd-3409-a94f-93f9" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="dc09-dae9-d3da-130e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1500-8766-b518-a243" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5b02-b841-9c31-b69c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="df02-2a23-a841-4ce3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="7b5d-b482-d599-789f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fdd-8e34-a253-8e6c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8bfb-70bb-a67c-d606" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="62c3-babe-8bb-19ec" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Chainghasts" hidden="false" id="89e-e44e-1563-a04a" type="selectionEntry" targetId="4550-ab13-9a71-205c">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e5fd-27bc-4ac3-4825" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="7648-12f1-95fd-fcd2" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5672-e1eb-f03c-a494" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="cb94-2d3c-b866-f621" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c81c-805a-e4d7-583e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="78cd-3409-a94f-93f9" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="dc09-dae9-d3da-130e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1500-8766-b518-a243" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5b02-b841-9c31-b69c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="df02-2a23-a841-4ce3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="7b5d-b482-d599-789f" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fdd-8e34-a253-8e6c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8bfb-70bb-a67c-d606" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">