forked from BSData/age-of-sigmar-4th
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blades of Khorne.cat
1579 lines (1579 loc) · 98.9 KB
/
Blades of Khorne.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="d545-cdca-9e60-ad27" name="Blades of Khorne" 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="1ede-f90-a661-b6c2" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Murderous Artefacts" id="fd3f-1eb4-fee3-c802" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Collar of Contempt" hidden="false" id="b53d-220d-dc3a-13ac">
<profiles>
<profile name="Collar of Contempt" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="defa-ab8a-3572-9d77">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use **^^Unbind^^** abilities as if it had **^^Wizard (1)^^**. Each time this unit unbinds a spell, inflict D3 mortal damage on the caster.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2439-e9a6-9bb2-c34" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Halo of Blood" hidden="false" id="7ec3-3828-3c35-bccf">
<profiles>
<profile name="Halo of Blood" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3a4f-9b6b-b406-e3da">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Ignore negative modifiers to this unit’s control score and to hit rolls and wound rolls for this unit’s attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d0a3-af13-6de5-e1c3" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ar'gath, the King of Blades" hidden="false" id="4e60-c59e-a6eb-2766">
<profiles>
<profile name="Ar'gath, the King of Blades" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="6511-6823-aee9-e30c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Hero^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Ward rolls cannot be made for the target for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="790c-aa6e-7162-7ec9" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dddb-2c6e-2e04-487c"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="75bb-c553-dd56-3086" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Blades of Khorne" id="a398-8e2f-f1f1-fe26" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Brass Stampede" hidden="false" id="e3e6-6005-7085-ec66" publicationId="81a9-3dbf-dbc5-672e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6bfd-8807-5ede-537c"/>
</constraints>
<profiles>
<profile name="Obliterating Charge" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="d6d0-b1cf-2231-15b9">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If the unmodified charge roll for a friendly **^^Blades of Khorne Cavalry^^** unit is 8+, it has **^^Strike-first^^** for the rest of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Khornate Legion" hidden="false" id="1437-4357-25cb-fc23" publicationId="81a9-3dbf-dbc5-672e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f9bd-6d93-2ad9-3052"/>
</constraints>
<profiles>
<profile name="Butchers of Nations" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bc8a-d722-6a86-4161">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Reaction: You declared a **^^Fight^^** ability for a friendly **^^Blades of Khorne Daemon^^** unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">The target can move 3". It can move into combat.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick a friendly **^^Bloodbound^^** unit that has not used a **^^Fight^^** ability this turn and is within 12" of the unit using this ability 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.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Murder Host" hidden="false" id="5ccf-b9a-18d6-e621" publicationId="81a9-3dbf-dbc5-672e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f1d0-4637-461e-c661"/>
</constraints>
<profiles>
<profile name="Strength Through Slaughter" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="989c-d958-d667-7b15">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If a friendly non-**^^Monster Blades of Khorne Daemon^^** uses a **^^Fight^^** ability, it has **^^Ward (5+)^^** for the rest of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bloodbound Warhorde" hidden="false" id="43b-c649-d523-c32d" publicationId="81a9-3dbf-dbc5-672e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1fe6-998a-1877-9c94"/>
</constraints>
<profiles>
<profile name="Tireless Conquerers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8dab-6df3-1e4-5b29">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls for combat attacks made by friendly **^^Bloodbound^^** units that target an enemy unit that is contesting an objective you do not control.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="e1a9-e42b-9f78-9ee4" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="a357-4cbf-d348-1134" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Commanders of the Blood Legions" id="1464-5b7b-d510-3d9d" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Firebrand" hidden="false" id="7c75-846e-f3f9-a551" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Firebrand" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5b7-2469-41a5-fdd6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit is not a **^^Priest^^**, it has **^^Priest (1)^^**. If this unit is already a **^^Priest^^**, add 1 to banishment rolls for it instead.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4728-7cbe-831d-cd17" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Favoured of Khorne" hidden="false" id="e92f-179d-6fac-e594" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Favoured of Khorne" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e2dc-52bb-fc82-1e9d">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">You begin the battle with 1 **blood tithe point**.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4e9c-aeda-c3ca-9c2d" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Relentless Hunter" hidden="false" id="4c69-c9fd-b060-aff8" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Relentless Hunter" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5f0a-7fd8-8235-9604">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit is picked to be the target of the ‘Murderlust’ ability, it can move 6" instead of 3".</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="8594-1ab8-e131-7211" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3357-37d8-98e7-431b"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d82e-fe99-9e5b-3827" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Manifestation Lores" id="383d-bbab-49a9-dd66" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Judgements of Khorne" hidden="false" id="3513-9caa-3b2b-db31" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Summon Wrath-axe" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="fd45-a955-74b-78f">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">If there is not a friendly **Wrathaxe** on the battlefield, pick a friendly **^^Blades of Khorne Priest^^** to chant this prayer, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Set up a **Wrath-axe** wholly within 12" of the chanter, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Hexgorger Skulls" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="b6a5-476a-e7d5-9ceb">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">If there is not a friendly **Hexgorger Skulls** invocation on the battlefield, pick a friendly **^^Blades of Khorne Priest^^** to chant this prayer, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Set up a **Hexgorger Skulls** invocation wholly within 12" of the chanter, visible to them and more than 9" from all enemy units. A **Hexgorger Skulls** invocation has 2 parts that must be set up within 8" of each other.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Bleeding Icon" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="bb76-cde-8439-1002">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">If there is not a friendly **Bleeding Icon** on the battlefield, pick a friendly **^^Blades of Khorne Priest^^** to chant this prayer, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Set up a **Bleeding Icon** wholly within 12" of the chanter and visible to them.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2dd7-5682-b6b1-6879"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Hexgorger Skulls" hidden="false" id="592f-5799-9831-e559" type="selectionEntry" targetId="8499-3fb6-56fa-7b71">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5f0a-edc1-d443-391f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9672-c18a-c4d2-1345"/>
</constraints>
</entryLink>
<entryLink import="true" name="Bleeding Icon" hidden="false" id="154b-d89c-2a80-5515" type="selectionEntry" targetId="9cf2-1402-85ab-c410">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3277-ba33-f360-a421"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="47bb-19de-d086-c10c"/>
</constraints>
</entryLink>
<entryLink import="true" name="Wrath-axe" hidden="false" id="8916-2f45-98e8-eb78" type="selectionEntry" targetId="2186-5d86-2a34-1f6e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="233f-3c96-6ea1-8387"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="128d-bc3b-c11c-6f44"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Prayer Lores" id="554f-b4a7-5337-2204" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blood Blessings of Khorne" hidden="false" id="6633-d2f4-bab6-3a35" defaultAmount="1" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Blood Boil" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="7110-35e0-803b-2487">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">Pick a friendly **^^Blades of Khorne Priest^^** to chant this prayer, pick a visible enemy unit within 18" of them to be the target, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">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. In addition, if the chanting roll was 8+, subtract 1 from wound rolls for the target until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**</characteristic>
</characteristics>
</profile>
<profile name="Unholy Flames" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="ce16-4ab0-2908-305f">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">5</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">Pick a friendly **^^Blades of Khorne Priest^^** to chant this prayer, pick a visible friendly **^^Blades of Khorne^^** unit wholly within 12" of them to be the target, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Add 1 to the Rend characteristic of the target’s melee weapons for the rest of the turn. In addition, if the chanting roll was 10+, add 1 to wound rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="Witchbane Curse" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="3951-df2c-1c3a-2943">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">Pick a friendly **^^Blades of Khorne Priest^^** to chant this prayer, pick a visible enemy **^^Wizard^^** within 18" of them to be the target, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Subtract 1 from the target’s power level, to a minimum of 0, until the end of your next turn. In addition, if the chanting roll was 8+, inflict 3 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="26b6-2104-1b86-a0a4"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="1ecd-1dfa-2e70-4a04" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Blades of Khorne" hidden="false" id="1c5d-907-fd0c-c8a4">
<profiles>
<profile name="Spelleater Curse" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d739-397b-a186-daaf" publicationId="81a9-3dbf-dbc5-672e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a **^^Spell^^** ability</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">You can only use this ability if you have not used any **^^Blood Tithe^^** abilities this turn. Spend 2 **blood tithe points**.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">That spell is unbound.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Blood Tithe^^**</characteristic>
</characteristics>
</profile>
<profile name="The Blood Tithe" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="394d-bccb-ffa4-118c" publicationId="81a9-3dbf-dbc5-672e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">You start the battle with 0 **blood tithe points**. Earn 1 **blood tithe point** each time a unit (friendly or enemy) is destroyed.</characteristic>
</characteristics>
</profile>
<profile name="Brass Skull Meteor" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="6b75-fef6-982a-cb17" publicationId="81a9-3dbf-dbc5-672e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">You can only use this ability if you have not used any **^^Blood Tithe^^** abilities this turn. Spend 4 **blood tithe points** and pick an enemy unit that is visible to a friendly **^^Blades of Khorne Hero^^** to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll 8 dice. For each 3+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Blood Tithe^^**</characteristic>
</characteristics>
</profile>
<profile name="Heads Must Roll" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="66c-4a47-b2ee-10f" publicationId="81a9-3dbf-dbc5-672e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">You can only use this ability if you have not used any **^^Blood Tithe^^** abilities this turn. Spend 6 **blood tithe points**.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, add 1 to the Rend characteristic of melee weapons used by friendly **^^Blades of Khorne^^** units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Blood Tithe^^**</characteristic>
</characteristics>
</profile>
<profile name="Slaughter Triumphant" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1a6e-f758-dbdd-5e66" publicationId="81a9-3dbf-dbc5-672e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">You can only use this ability if you have not used any **^^Blood Tithe^^** abilities this turn. Spend 8 **blood tithe points**.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects:
• Add 1 to the Attacks characteristic of melee weapons used by friendly **^^Blades of Khorne^^** units for the rest of the battle.
• Pick a friendly non-**^^Unique Bloodthirster^^** unit that has been destroyed. Set up an identical replacement unit on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Blood Tithe^^**</characteristic>
</characteristics>
</profile>
<profile name="Murderlust" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7be9-f0a5-620c-5de2" publicationId="81a9-3dbf-dbc5-672e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">You can only use this ability if you have not used any **^^Blood Tithe^^** abilities this turn. Spend 1 **blood tithe point** and pick a friendly **^^Blades of Khorne^^** unit that is not in combat to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target can move 3". It can move into combat.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Blood Tithe^^**, **^^Move^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="42dd-d6e7-9620-968e" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
</sharedSelectionEntries>
<catalogueLinks>
<catalogueLink type="catalogue" name="Blades of Khorne - Library" id="e001-ff8c-e9dc-5555" targetId="6887-883c-79f3-9f8"/>
</catalogueLinks>
<categoryEntries>
<categoryEntry name="Bloodbound Warmonger" id="9a4a-9555-d827-3700" hidden="false"/>
<categoryEntry name="Slaughter Seeker" id="67bd-e89-e604-d3ab" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink import="true" name="Aspiring Deathbringer" hidden="false" id="beaf-b2fc-b887-ccec" type="selectionEntry" targetId="886-9e3f-ed95-f1e7">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e071-2d6b-b6e-66c9"/>
</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="e0c4-7af2-b0a2-4718" 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>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="67bd-e89-e604-d3ab" field="category"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="77b5-d3fe-3d80-7021" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="d60e-33be-8dd3-9cff" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodmaster, Herald of Khorne" hidden="false" id="37f1-444e-66cb-a888" type="selectionEntry" targetId="2724-10df-1094-e344">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="f606-f24c-2583-20b0"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="01c2-a6f2-c8f3-5a01" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="d0e3-77cf-bc37-ec06" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodsecrator" hidden="false" id="8ef0-6cad-37fa-ef09" type="selectionEntry" targetId="9943-f207-9aef-190c">
<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="e0c4-7af2-b0a2-4718" 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="1282-578a-ae7c-429b"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="67bd-e89-e604-d3ab" field="category"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="50e5-b3db-e2a5-8c40" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="e001-df91-2340-6373" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodstoker" hidden="false" id="8bce-6281-23b4-82e3" type="selectionEntry" targetId="bed-461e-b0ef-6bc3">
<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="4355-5ac0-4a0-e610" 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="bb81-b475-8c0a-35af"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="67bd-e89-e604-d3ab" field="category"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="cfe3-520d-d1a2-01e9" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="df9d-3aa5-fb1c-3521" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodthirster of Insensate Rage" hidden="false" id="bf02-446-9b32-ac2b" type="selectionEntry" targetId="ac0a-f4e1-99b-9562">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9be8-2506-9f08-9de9"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="470"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9211-60be-bef9-8cf8" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="c779-299c-dd31-c089" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodthirster of Unfettered Fury" hidden="false" id="4953-f19b-df09-5899" type="selectionEntry" targetId="9aae-e077-190b-d63b">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="6a1-da35-b4-9492"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="440"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3b13-41ec-10ff-4e63" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="291d-30ae-1061-ab4c" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Exalted Deathbringer" hidden="false" id="c67c-eda-e3d4-15ee" type="selectionEntry" targetId="4ac3-575f-5bc8-7da2">
<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="4355-5ac0-4a0-e610" 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="54a0-1ea6-584a-bc02"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="67bd-e89-e604-d3ab" field="category"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3054-7868-62c1-d39e" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="32e3-7990-df43-a3e6" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Herald of Khorne on Blood Throne" hidden="false" id="f47a-e01a-e2b0-fe44" type="selectionEntry" targetId="1c5f-4b09-e2da-7a0c">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="ee52-2002-6ae-6493"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a4bf-8746-a81f-060c" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="8c67-8b8a-7ebc-35c2" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Karanak" hidden="false" id="fec9-eb41-7b4a-cbe6" type="selectionEntry" targetId="182c-a6ee-9890-fe8e">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="f237-426d-34c4-b76a"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord of Khorne on Juggernaut" hidden="false" id="4341-d511-18ab-c937" type="selectionEntry" targetId="ce66-7711-3047-4195">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e086-96d0-364-ec8f"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="5de1-6346-3b0e-bb95" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="c998-f9e7-4001-7ce4" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Mighty Lord of Khorne" hidden="false" id="1544-2c05-b428-8528" type="selectionEntry" targetId="d9d9-55ad-2a9f-acf9">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9673-8300-5373-dec7"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="4ee4-0138-732a-5386" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="f6d9-db7c-2932-fb4d" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Realmgore Ritualist" hidden="false" id="8788-687b-384f-ca56" type="selectionEntry" targetId="2592-295e-eed8-361b">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="6bd3-56c3-fb96-ebd5"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="59c5-8b61-fd2d-d522" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="bcd4-b8b4-6f77-9a82" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Skarbrand" hidden="false" id="3690-f655-e04-9656" type="selectionEntry" targetId="b1a1-2377-3fa4-f264">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="d92c-bd89-542f-27ee"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="510"/>
</costs>
</entryLink>
<entryLink import="true" name="Skarr Bloodwrath" hidden="false" id="93a2-d9df-323f-7f15" type="selectionEntry" targetId="79a6-3d8a-8302-cc13">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="75fb-ec82-2ffc-da48"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="170"/>
</costs>
</entryLink>
<entryLink import="true" name="Skulltaker" hidden="false" id="abc9-3179-8e65-e843" type="selectionEntry" targetId="62-1d37-fc6c-515f">
<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="bc17-8cf9-ec7-e2a2" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b47-5a22-e61b-ab3e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6b18-2904-953d-b406" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d4b7-ee4a-45ab-18c7" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3b5f-188e-d4b6-f639" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2276-240a-fde6-d60a" 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="97ec-d1ed-1766-fea"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="67bd-e89-e604-d3ab" field="category"/>
<modifier type="set" value="0" field="97ec-d1ed-1766-fea">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="67bd-e89-e604-d3ab" 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>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Skullgrinder" hidden="false" id="6384-b834-1181-2418" type="selectionEntry" targetId="1232-f6cb-9900-bcba">
<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="4355-5ac0-4a0-e610" 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="291d-9734-7560-ced1"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="67bd-e89-e604-d3ab" field="category"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="24ce-9e03-b735-2ca3" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="15f3-f100-08f1-b46c" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Skullmaster, Herald of Khorne" hidden="false" id="293a-3eb8-d3b0-bad8" type="selectionEntry" targetId="383d-692c-7457-a03c">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="d6a7-6d43-3181-451c"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a112-3b9c-d4d5-f6f4" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b264-5e2a-c66e-4498" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Slaughterpriest" hidden="false" id="5954-d923-2554-dc1e" type="selectionEntry" targetId="d612-30cd-6166-f751">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="90f7-a8b0-a60e-d079"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="ce6f-0194-ab62-b93c" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="557a-c335-aa92-97c7" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Wrath of Khorne Bloodthirster" hidden="false" id="8b67-631e-880-2bb5" type="selectionEntry" targetId="3759-4ff4-40bf-6f48">
<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>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="45ee-30c2-f93b-6a1b"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="420"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="fef3-6b39-11b2-9583" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="7aa3-0155-5065-d1bb" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Wrath of Khorne Bloodthirster" hidden="false" id="2276-240a-fde6-d60a" type="selectionEntry" targetId="3759-4ff4-40bf-6f48">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="1aa6-a99c-a565-f208" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="420"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="cdb3-bd0a-5be5-a877" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="f5d6-156c-bab1-5cd4" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Aspiring Deathbringer" hidden="false" id="574c-debf-d0c8-8f7" type="selectionEntry" targetId="886-9e3f-ed95-f1e7">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="ecc2-6d56-d107-26e0" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="f0ca-0b8b-b751-1060" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2d8a-08b4-2da8-23af" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodmaster, Herald of Khorne" hidden="false" id="bc17-8cf9-ec7-e2a2" type="selectionEntry" targetId="2724-10df-1094-e344">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="73-719-1a53-d340" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="52d6-601f-95f9-354c" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="6873-cafb-dc10-1700" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodsecrator" hidden="false" id="290e-14c1-e70b-667d" type="selectionEntry" targetId="9943-f207-9aef-190c">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="3191-f5ae-225e-7778" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8778-3d8a-1354-28a6" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="7181-d8fe-fc37-4a7d" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodstoker" hidden="false" id="6c19-a114-9d38-157c" type="selectionEntry" targetId="bed-461e-b0ef-6bc3">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="9554-273-c9ae-4c7a" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="e414-c07a-bfb8-e0de" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="10bc-ddd0-e451-8694" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodthirster of Insensate Rage" hidden="false" id="b47-5a22-e61b-ab3e" type="selectionEntry" targetId="ac0a-f4e1-99b-9562">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="72d7-1feb-6fce-9370" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="470"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="b448-1d4c-e7c3-d669" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="8e89-aac0-116a-118d" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Bloodthirster of Unfettered Fury" hidden="false" id="6b18-2904-953d-b406" type="selectionEntry" targetId="9aae-e077-190b-d63b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="31b2-1f86-593-3fab" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="440"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="b38d-45f7-a3d0-47d4" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="dc88-5b09-5bba-96ab" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Exalted Deathbringer" hidden="false" id="2322-5509-fde3-44c2" type="selectionEntry" targetId="4ac3-575f-5bc8-7da2">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="1872-fdfb-1d0b-7f5" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a062-ce82-2faa-a751" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="ee45-b41e-0599-05b7" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Herald of Khorne on Blood Throne" hidden="false" id="d4b7-ee4a-45ab-18c7" type="selectionEntry" targetId="1c5f-4b09-e2da-7a0c">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="95fa-4be9-47c3-88e7" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="1e15-96b7-735e-ecb1" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="3731-ac01-3e3e-37c4" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Karanak" hidden="false" id="e1c8-45a4-88d-972a" type="selectionEntry" targetId="182c-a6ee-9890-fe8e">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="c433-675f-edb0-2594" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord of Khorne on Juggernaut" hidden="false" id="4355-5ac0-4a0-e610" type="selectionEntry" targetId="ce66-7711-3047-4195">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="ea00-288d-dfec-593b" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="4e83-a449-c69e-e348" type="selectionEntryGroup" targetId="a357-4cbf-d348-1134"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="c2fe-d6ba-a941-e01b" type="selectionEntryGroup" targetId="1ede-f90-a661-b6c2"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Mighty Lord of Khorne" hidden="false" id="e0c4-7af2-b0a2-4718" type="selectionEntry" targetId="d9d9-55ad-2a9f-acf9">
<categoryLinks>