forked from BSData/age-of-sigmar-4th
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blades of Khorne - Library.cat
2946 lines (2946 loc) · 214 KB
/
Blades of Khorne - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="6887-883c-79f3-9f8" name="Blades of Khorne - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Skull Cannon" hidden="false" id="597f-3928-bede-9c43" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1469-56fd-fcf1-792f" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Skull Cannon" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b184-8964-627a-4576">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Gruesome Bombardment" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="88b9-89a9-cb26-7e69">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If any damage points are allocated to an enemy unit by a **^^Shoot^^** ability used by this unit, subtract 3 from that enemy unit’s control score for the rest of the turn.</characteristic>
</characteristics>
</profile>
<profile name="Grind Their Bones, Seize Their Skulls" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="186d-bc82-3631-6bba">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If any enemy models are slain by a **^^Fight^^** ability used by this unit, after that **^^Fight^^** ability has been resolved, this unit can immediately use a **^^Shoot^^** ability as if it were your shooting phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="92df-4b7-1e8f-4fd6" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="abc7-ec41-d271-81e0" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="a44c-84e-708b-24bd" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="775a-a574-a597-3817" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="e1ca-4d29-e125-3b5f" targetId="f7bc-b618-4b5d-2bae" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Skull Cannon" hidden="false" id="f6a4-d770-ad82-a5df">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Burning Skulls" hidden="false" id="5fa0-7761-6234-630c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4c4b-4147-7818-b169"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9d6-8de5-1bba-a69f"/>
</constraints>
<profiles>
<profile name="Burning Skulls" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="393c-e6-80d7-7e5c">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">15"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gnashing Maw" hidden="false" id="ddf7-5920-4843-6223">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fe1-7983-567e-bf06"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9158-f125-4fb8-5480"/>
</constraints>
<profiles>
<profile name="Gnashing Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="bbe1-bb7d-2275-3770">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">1</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hellblades" hidden="false" id="fcf2-d1d2-b2a6-3b5a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a3df-b2cf-a901-e615"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="154d-398c-842c-a10"/>
</constraints>
<profiles>
<profile name="Hellblades" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="9ba9-9465-3619-f89c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="3049-c849-ccc6-143e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="aaaf-8ed2-6dff-6472"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Skarbrand" hidden="false" id="b1a1-2377-3fa4-f264" publicationId="81a9-3dbf-dbc5-672e">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ef30-141f-d77b-f08c" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="6e85-e853-87f3-964a" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Skarbrand's Rage" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1da1-b47-89a6-db58">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, or if it did not use a **^^Fight^^** ability last turn, or if it is the first turn of the battle, the Attacks characteristic of its **Slaughter** is 6.</characteristic>
</characteristics>
</profile>
<profile name="Skarbrand" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="522b-c7eb-f55c-cb">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Roar of Total Rage" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="341e-7778-5a15-2647">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll either 3 dice or a number of dice equal to the number of damage points this unit has. For each 4+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Inescapable Wrath" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f1c8-2850-58c0-ebc8">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the number of dice rolled when making charge rolls for this unit, to a maximum of 3.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="9e4c-dea3-7eb-2aaf" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="4ce2-4a74-106a-ff41" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="f512-70ae-c671-7596" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="925f-9edd-6148-da5f" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="9d5a-4e10-78d6-54c7" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="ea2c-31be-687f-d70e" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="9bf6-155f-6415-8702" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="baad-fc69-1d9e-de6a" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="6fe2-5f9f-6c00-afdf" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="BLOODTHIRSTER" hidden="false" id="d92b-2a96-f154-63bd" targetId="ee38-20ac-f92f-50e5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Skarbrand" hidden="false" id="5409-a8ae-b70a-ddfb">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Slaughter" hidden="false" id="7812-ed7-1859-71ae">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1d0c-c807-956c-8c7c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7eba-c631-6924-e36d"/>
</constraints>
<profiles>
<profile name="Slaughter" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f0b2-6974-57c4-f4ac">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Carnage" hidden="false" id="f78-b11e-430-7c12">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3cbb-9878-a4a7-fd44"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ea3c-a4fb-5e98-cf93"/>
</constraints>
<profiles>
<profile name="Carnage" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2a40-b5a3-433c-dc02">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">8</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="dea1-af1d-96a9-8162"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="cd72-f5f3-d823-2665"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Wrath of Khorne Bloodthirster" hidden="false" id="3759-4ff4-40bf-6f48" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="8c46-f88e-318f-3658" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8813-1cbf-a200-a1e0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Mighty Axe of Khorne and Bloodflail** is 4.</characteristic>
</characteristics>
</profile>
<profile name="Wrath of Khorne Bloodthirster" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ad3a-a111-502b-b3db">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Vengeance of Khorne" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="34e9-d6e7-8745-b045">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), 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">Roll 8 dice. For each 4+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Commander of Tyrants" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7ab7-3451-fc0f-c995">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 other visible friendly non-**^^Unique Bloodthirster^^** units to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Attacks characteristic of each target’s melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="7ca-cff7-5459-5fdb" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="d9b4-1ad9-3f54-9ea2" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="391a-eddb-f830-fbcc" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="a68d-4c01-6278-91d8" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="29c9-5403-32f6-eede" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="ee45-2b62-92db-aeb6" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="3887-1a3b-1a49-e5e" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="BLOODTHIRSTER" hidden="false" id="c97-f2c3-7777-d83c" targetId="ee38-20ac-f92f-50e5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wrath of Khorne Bloodthirster" hidden="false" id="7974-edee-6e9a-97d7">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mighty Axe of Khorne and Bloodflail" hidden="false" id="b824-5768-5fa2-bf58">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4eef-355e-9493-a6b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf26-cd24-97fa-b9ff"/>
</constraints>
<profiles>
<profile name="Mighty Axe of Khorne and Bloodflail" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2e73-ccd3-ef4f-81ab">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Hero^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hellfire Breath" hidden="false" id="88e2-e028-78ae-2a3d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a1f9-fccf-74cd-8e64"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f7b8-f0b-c829-a4f5"/>
</constraints>
<profiles>
<profile name="Hellfire Breath" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="1166-e17d-3194-5174">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">8"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="8927-553c-ebd-cc6a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4bb7-ce3b-4060-fbe7"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Bloodthirster of Insensate Rage" hidden="false" id="ac0a-f4e1-99b-9562" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="c786-8e64-faa3-ec5f" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2de3-10bd-1c27-c445">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Great Axe of Khorne** is 3.</characteristic>
</characteristics>
</profile>
<profile name="Bloodthirster of Insensate Rage" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b747-7828-455a-92c3">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Vengeance of Khorne" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7014-cac0-86da-e7a2">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll. If the target is **^^Infantry^^**, inflict an additional 3 mortal damage on it.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Outrageous Carnage" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="7a75-67db-b858-1b30">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time an attack made by this unit scores a critical hit, inflict D3 mortal damage on each enemy unit within 8" of it after the **^^Fight^^** ability has been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="91d6-2e1b-5006-4b57" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="ec39-4d8-ba10-8be1" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="9b7c-e95c-8120-e910" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="59d5-303e-672d-da07" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="e1cc-afaa-14bd-fade" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="7923-efc7-278a-75ef" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="2b83-19a9-ff14-2423" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="BLOODTHIRSTER" hidden="false" id="4657-3f44-8074-58ce" targetId="ee38-20ac-f92f-50e5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bloodthirster of Insensate Rage" hidden="false" id="2992-e22-b067-bca0">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Great Axe of Khorne" hidden="false" id="5da9-f86-f72e-9229">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="195e-e63a-703a-f2e4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6071-553a-a245-b256"/>
</constraints>
<profiles>
<profile name="Great Axe of Khorne" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="9ad1-9114-19be-8ce5">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">5</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="f606-a7a8-38ca-3ad"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="a41f-4d5c-4dc8-7776"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Lord of Khorne on Juggernaut" hidden="false" id="ce66-7711-3047-4195" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="533-c66a-8bb2-6a59" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Lord of Khorne on Juggernaut" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a275-7e76-647d-60de">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">2+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Lord of the Brass Stampede" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1b61-fb90-f68a-a754">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit charged this turn, for the rest of the turn, the following effects apply to friendly **^^Blades of Khorne Cavalry^^** units while they are wholly within 18" of this unit:
• Add 1 to charge rolls for those units.
• You can re-roll crushing charge rolls for those units.</characteristic>
</characteristics>
</profile>
<profile name="Slaughterous Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d7c0-d49c-ff0c-f39d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Make a crushing charge roll of D3. 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"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="5fbd-ab7d-be1-d16" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="bca1-a9bd-80d6-6fcf" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="751-57ee-5ae2-26aa" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="BLOODBOUND" hidden="false" id="f0ab-6a51-3179-7cc5" targetId="971a-1bec-c9dc-f9c4" primary="false"/>
<categoryLink name="GORECHOSEN" hidden="false" id="f886-ae6a-636f-41f4" targetId="916b-ca14-decf-5845" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="d2be-b307-88d-2467" targetId="926c-df8c-6841-d49e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lord of Khorne on Juggernaut" hidden="false" id="1685-4967-ed12-8411">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wrathforged Axe" hidden="false" id="26f5-8f8d-4d3d-e1f8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bdfa-2873-3405-37e9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8c62-50c5-4cbc-bc4"/>
</constraints>
<profiles>
<profile name="Wrathforged Axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="afe9-771b-df1e-b7bd">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Juggernaut’s Brazen Hooves" hidden="false" id="a94b-dfc1-1bef-69d1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3c3a-7e15-71ec-502d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2e52-d394-7cf6-faa0"/>
</constraints>
<profiles>
<profile name="Juggernaut’s Brazen Hooves" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="8881-a8d3-ef76-9d5b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="4799-963e-6e13-7399"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="efe2-e3cd-af11-5599"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Karanak" hidden="false" id="182c-a6ee-9890-fe8e" publicationId="81a9-3dbf-dbc5-672e">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a132-574b-a8a7-25af" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="874c-1b86-d187-f7e2" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Prey of the Blood God" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3f27-b7c4-6efd-c774">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick an enemy **^^Hero^^** to be this unit’s quarry (see ‘Stalk the Prey’). You can pick a **^^Hero^^** in reserve.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Karanak" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9af5-477d-16cb-da04">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Stalk the Prey" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cc0b-7545-3f68-8cbd">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Enemy Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit’s quarry moved this phase, this unit can move up to 8". It cannot move into combat during any part of that move and must end that move closer to its quarry</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**, **^^Move^^**</characteristic>
</characteristics>
</profile>
<profile name="First of the Pack" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="bdda-4c1a-3bc5-7824">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is wholly within 12" of a friendly **Flesh Hounds** unit, add 2 to charge rolls for this unit. In addition, while any friendly **Flesh Hounds** units are wholly within 12" of this unit, they can ignore the effect of the ‘Beast’ ability</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="504f-9114-593-d79f" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="e108-3a07-9ce1-1e93" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c6fc-12f3-965-b4fd" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="4e1f-d97-8f68-d64f" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="c735-44bd-5300-6d44" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="BEAST" hidden="false" id="2f6a-c10a-d51f-b0df" targetId="b224-8c8e-ca93-9860" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="2c3d-4095-dac0-def0" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Karanak" hidden="false" id="a415-a4df-2bd0-1b6e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Savage Maws and Goreslick Claws" hidden="false" id="36b9-477c-3167-e6ba">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b782-6e03-253e-abfb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="281f-162a-4050-6a75"/>
</constraints>
<profiles>
<profile name="Savage Maws and Goreslick Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7e0d-83c-cec-8912">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Hero^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="3b19-ff0f-22c8-e640"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="27e0-c3e3-6a16-b752"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Wrathmongers" hidden="false" id="8aed-ea87-e4c8-97ea" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Wrathmongers" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="28ac-632d-11cb-9d31">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">3</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Bloodfury" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="b2c9-c7f6-dea1-637f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time an unmodified hit roll for a combat attack that targets this unit is 1, inflict 1 mortal damage on the attacking unit after the Fight ability has been resolved.</characteristic>
</characteristics>
</profile>
<profile name="Crimson Haze" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="96b0-b748-91d7-118d">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is in combat, add 1 to the Attacks characteristic of melee weapons used by friendly **^^Bloodbound^^** units, excluding **Wrathmongers** units, while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="960c-7cc4-5ca3-a0e7" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="KHORNE" hidden="false" id="bf12-70e5-f55c-1db1" targetId="2fe7-eb4-81bd-bdcd" primary="false"/>
<categoryLink name="CHAMPION" hidden="false" id="e957-991c-e908-95aa" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="BLOODBOUND" hidden="false" id="1c3c-15b6-41d4-8028" targetId="971a-1bec-c9dc-f9c4" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="c706-7e8-ca18-c841" targetId="75d6-6995-dfcc-3898" primary="true"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Wrathmonger" hidden="false" id="dcff-e60d-8d88-2897" defaultAmount="1,4">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="false" id="87a2-9d17-8b24-b08f"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="false" id="6247-719a-fb3a-f81b"/>
</constraints>
<modifiers>
<modifier type="increment" value="5" field="87a2-9d17-8b24-b08f">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="5" field="6247-719a-fb3a-f81b">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wrath-flails" hidden="false" id="cdfc-481b-cf14-7dd1">
<profiles>
<profile name="Wrath-flails" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="787a-e6f-9014-5b06">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="193c-a03f-8d87-67bf"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4ad1-6fdf-29b2-8468"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="d3f-9bb7-ca60-8fcc" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7e8c-fac-8edf-214c" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="375d-9205-32a1-4e97" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="8aed-ea87-e4c8-97ea" shared="true" id="44b2-6303-1b1a-90b3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4ce3-5d0b-17a-c376"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Bloodthirster of Unfettered Fury" hidden="false" id="9aae-e077-190b-d63b" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="eff2-9e53-decb-9c5f" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ab73-a893-5f41-95bb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Mighty Axe of Khorne** is 4.</characteristic>
</characteristics>
</profile>
<profile name="Bloodthirster of Unfettered Fury" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="4eed-a4a8-2d64-3950">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Ensnaring Lash" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5dac-23eb-107b-660d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If the target is in combat with this unit when the target is picked to use a **^^Fight^^** ability:
• It must pick this unit to be the target of the pile-in move (Core Rules, 15.3).
• Subtract 1 from hit rolls and wound rolls for attacks made as part of that **^^Fight^^** ability against this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Beckon the Hunt" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9105-a40c-f13-920c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly non-**^^Unique Blades of Khorne Daemon^^** unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, add 1 to the number of dice rolled when making charge rolls for the target, to a maximum of 3.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="bdb1-3ce0-bb77-d0fb" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="d6fe-eaaa-a78f-701d" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="7990-3ffa-49eb-7ddc" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="aa5-f95b-5239-2d0c" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="8179-1911-10d0-4b3f" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="d9ea-172d-f9e4-233c" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="a6b4-559-869d-f1d4" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="BLOODTHIRSTER" hidden="false" id="ad82-7e3c-65f6-c585" targetId="ee38-20ac-f92f-50e5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bloodthirster of Unfettered Fury" hidden="false" id="4d46-774f-509b-dbb8">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mighty Axe of Khorne" hidden="false" id="ab52-a503-3af8-498c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="172f-1e43-9587-99d3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4af0-a5f4-bac9-43b1"/>
</constraints>
<profiles>
<profile name="Mighty Axe of Khorne" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7553-280a-74bb-89e2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Monster^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Lash of Khorne" hidden="false" id="8646-d362-11dd-8d2f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6211-2357-7984-7f29"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fbd3-aedd-af3a-934d"/>
</constraints>
<profiles>
<profile name="Lash of Khorne" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="7a79-f550-e956-d4ff">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">8"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="433-19b8-575e-4e3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="5040-9920-cc24-6414"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Bloodmaster, Herald of Khorne" hidden="false" id="2724-10df-1094-e344" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a9fb-a7d8-62a5-81fa" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Bloodmaster, Herald of Khorne" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9f09-4129-2295-212f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="The Blood Must Flow" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c54d-2571-272f-79b3">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a Fight ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick a friendly **Bloodletters** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved. If it is picked to do so, subtract 1 from ward rolls for damage points inflicted by each of those **^^Fight^^** abilities.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="364d-f804-d16f-9ed9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="4c71-9674-634f-b4fb" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="d758-e329-ed15-bc01" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="BLADES OF KHORNE" hidden="false" id="2afa-a6c0-e562-e8bf" targetId="34e2-3c11-76bc-a2e" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6f42-db9-552a-e1a3" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="6f59-afaa-e68b-de7f" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="PRIEST (1)" hidden="false" id="3ff6-89b2-ab90-a3ef" targetId="3fe-84f4-cec6-a1c1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bloodmaster, Herald of Khorne" hidden="false" id="7afe-aae2-eab9-d402">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blade of Blood" hidden="false" id="84a8-ffcc-a2a2-8c9e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4a59-e343-43c7-63fb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6535-64e7-3116-691a"/>
</constraints>
<profiles>
<profile name="Blade of Blood" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3c51-36f-b946-1da2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend), Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="dee-ae36-8a73-ba07"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="16f2-4807-6c6f-7e77"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Claws of Karanak" hidden="false" id="e7fd-3790-fce1-2de9" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Claws of Karanak" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c86f-54b8-cdba-5249">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="The Scent of Blood" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c5fc-a58e-9094-31d9">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit can use the ‘Normal Move’ ability as if it were your movement phase.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Pack Hunters" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="af0-a85e-2565-c69f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is wholly within 12" of a friendly Flesh Hounds unit, this unit’s combat attacks score critical hits on unmodified hit rolls of 5+.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="WARD (6+)" hidden="false" id="ddd0-71ec-8667-5764" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="952b-8c9f-c420-2ffb" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="KHORNE" hidden="false" id="2272-d19c-517a-c3bb" targetId="2fe7-eb4-81bd-bdcd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="29af-eb15-bd25-8eed" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION (1/8)" hidden="false" id="37d3-1177-a8a5-afe3" targetId="d131-3bfe-3ff4-a703" primary="false"/>
<categoryLink name="BLOODBOUND" hidden="false" id="ff7f-ce69-41c4-1852" targetId="971a-1bec-c9dc-f9c4" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Claw of Karanak" hidden="false" id="7aa7-9314-1840-5d8b" defaultAmount="1,7">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="false" id="7e68-e6c4-276d-4c86"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="false" id="bef0-16a1-5df5-ce32"/>
</constraints>
<modifiers>
<modifier type="increment" value="5" field="7e68-e6c4-276d-4c86">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="5" field="bef0-16a1-5df5-ce32">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Weapons of the Hunt" hidden="false" id="8e02-b73f-de91-a1f1">
<profiles>
<profile name="Weapons of the Hunt" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2d27-342b-85e3-dbd3">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="9fc5-3d93-be3c-53fc"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="5b90-2919-d5b3-90e4"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="5f4-f474-b6bd-d911" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bb19-3d47-85b9-8cc2" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="4a1e-85ba-d7-461" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="e7fd-3790-fce1-2de9" shared="true" id="4e23-5670-6b16-929a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="10d9-ff4a-581e-ec4"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="4e23-5670-6b16-929a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Bloodreavers" hidden="false" id="187b-b09b-5efa-c1e5" publicationId="81a9-3dbf-dbc5-672e">
<profiles>
<profile name="Bloodreavers" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="fb6b-ae44-6535-c038">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Blood for the Blood God" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c6f2-92f-f1cb-2771">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Rend characteristic of this unit’s melee weapons for the rest of the turn if this unit charged in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="7a9c-a87c-4be6-ce61" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="KHORNE" hidden="false" id="26db-19ba-6416-fd16" targetId="2fe7-eb4-81bd-bdcd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="9404-c361-9ce-de0f" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="de75-98da-f896-b859" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="STANDARD BEARER (1/10)" hidden="false" id="684f-a8e3-6fc4-2830" targetId="1f17-ad98-ada0-ccf" primary="false"/>
<categoryLink name="MUSICIAN (1/10)" hidden="false" id="c6a1-f6cd-ad14-6d5a" targetId="eeed-ef77-b0d-fa9d" primary="false"/>
<categoryLink name="BLOODBOUND" hidden="false" id="ffd6-695f-ce00-4f88" targetId="971a-1bec-c9dc-f9c4" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Bloodreaver" hidden="false" id="786b-eb51-858f-a343" defaultAmount="1,1,1,7">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="false" id="2cea-d15f-9824-8be1"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="false" id="6a16-e685-11a4-7225"/>
</constraints>
<modifiers>
<modifier type="increment" value="10" field="2cea-d15f-9824-8be1">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="6a16-e685-11a4-7225">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Reaver Blades and Axes" hidden="false" id="df46-a2d7-509-68c1">
<profiles>
<profile name="Reaver Blades and Axes" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5e17-2ed0-2961-e095">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="3fa6-252-4d7b-dd5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4a57-ceff-2f46-6fb"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="dbf1-c967-3596-25da" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e292-6d88-7082-ea56" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="ca08-8d9d-3a88-9d7d" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="187b-b09b-5efa-c1e5" shared="true" id="4702-5cc5-d90d-b8e9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ffc7-6cf4-dd4b-396f"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="1e1b-9a2e-4f14-f252" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="187b-b09b-5efa-c1e5" shared="true" id="b1ab-4006-9ca1-64e8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fa9d-1d77-6fdd-d776"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="b1ab-4006-9ca1-64e8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="716-4bb0-9453-8eca" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="187b-b09b-5efa-c1e5" shared="true" id="98eb-7510-d4b5-4225"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5c7d-fd95-e600-963b"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="98eb-7510-d4b5-4225">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Exalted Deathbringer" hidden="false" id="4ac3-575f-5bc8-7da2" publicationId="81a9-3dbf-dbc5-672e">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="35bc-ba3b-3528-17e6" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Exalted Deathbringer" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="6eb8-46f7-ba8f-a9b0">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="First of the Gorechosen" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f921-e507-d745-9b9f">
<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 damage points were allocated to an enemy unit by this unit’s combat attacks this turn and that enemy unit has been destroyed, **Heal (5)** this unit and give this unit a **glorious ascent token**.</characteristic>