forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Khorne.cat
6342 lines (6342 loc) · 491 KB
/
Chaos - 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 id="cac4-1eec-d548-b34d" name="Chaos - Khorne" revision="84" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="cac4-1eec-pubN65537" name="Chaos Battletome: Blades of Khorne"/>
<publication id="cac4-1eec-pubN105675" name="Grand Alliance: Chaos"/>
<publication id="cac4-1eec-pubN107006" name="Forgeworld: Monstrous Arcanum"/>
<publication id="cac4-1eec-pubN109547" name="Start Collecting: Khorne Bloodbound"/>
<publication id="cac4-1eec-pubN110134" name="Battalion Set: Khorne Bloodbound Slaughterstorm"/>
<publication id="cac4-1eec-pubN111094" name="Warscroll Compendium: Daemons of Chaos (2015)"/>
<publication id="cac4-1eec-pubN112244" name="Battletome: Everchosen"/>
<publication id="cac4-1eec-pubN114183" name="Start Collecting: Daemons of Khorne"/>
<publication id="cac4-1eec-pubN114770" name="Battletome: Khorne Bloodbound (2015)"/>
<publication id="cac4-1eec-pubN124386" name="Magore's Fiends"/>
<publication id="a4ca-1bc7-0120-7e88" name="White Dwarf 474"/>
</publications>
<profileTypes>
<profileType id="c725-ddb4-b401-25e2" name="Portal of Skulls">
<characteristicTypes>
<characteristicType id="e6dc-ce4f-c218-1e64" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="74b3-3c57-6c6a-cd77" name="Blood Tithe Table - Points Expended">
<characteristicTypes>
<characteristicType id="47cb-238b-c069-698e" name="Reward"/>
</characteristicTypes>
</profileType>
<profileType id="cb2f-d4ea-a554-595e" name="Daemon of Khorne Wounds">
<characteristicTypes>
<characteristicType id="84ef-e141-575e-918a" name="Move"/>
<characteristicType id="170b-aaaa-ada1-3cb6" name="Lash of Khorne"/>
<characteristicType id="93c1-59b7-c07b-e82a" name="Mighty Axe of Khorne"/>
</characteristicTypes>
</profileType>
<profileType id="b9cf-b0a6-b4bd-5165" name="Skarbrand Wounds">
<characteristicTypes>
<characteristicType id="b0a8-07ea-32be-9f0d" name="Rage"/>
<characteristicType id="2fde-dbf4-0aa2-648b" name="Slaughter"/>
<characteristicType id="e1e9-d2bb-f723-cd12" name="Carnage"/>
</characteristicTypes>
</profileType>
<profileType id="9c58-8858-0964-2b7d" name="Soul Grinder Wounds Suffered">
<characteristicTypes>
<characteristicType id="b0a4-7abe-3239-c92a" name="Move"/>
<characteristicType id="ebc9-9350-e12b-84a9" name="Harvester Cannon"/>
<characteristicType id="1394-0752-952b-55e7" name="Piston-driven Legs"/>
</characteristicTypes>
</profileType>
<profileType id="65ac-ba71-6bc2-4365" name="Gigantic Chaos Spawn Wounds Suffered">
<characteristicTypes>
<characteristicType id="4a7e-f7c8-6c21-acad" name="Move"/>
<characteristicType id="8ea1-0116-40b5-1b41" name="Crushing Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="b6a2-008f-9e59-df68" name="Plaything of the Gods">
<characteristicTypes>
<characteristicType id="0152-6755-50dd-c13d" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="9850-0517-4974-24ba" name="Mazrall Wounds Suffered">
<characteristicTypes>
<characteristicType id="03ed-1cd2-0d05-559d" name="Move"/>
<characteristicType id="2b90-338b-0385-ad6f" name="Harrow Meat"/>
<characteristicType id="a7b0-c2ce-697b-fba1" name="Ancyte's Shield Blades"/>
</characteristicTypes>
</profileType>
<profileType id="9980-f03a-cc21-50ab" name="Blood Tithe Table - Unit Summoning">
<characteristicTypes>
<characteristicType id="9c6e-712e-2ec7-a4cf" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="5f2c-1a47-8ba9-0051" name="Vorgaroth Wounds">
<characteristicTypes>
<characteristicType id="bb17-bd5f-d380-8823" name="Move"/>
<characteristicType id="eb34-403b-e9e9-78ba" name="Eviscerating Claws"/>
<characteristicType id="1946-c413-3a74-2262" name="Cavernous Jaws"/>
<characteristicType id="7023-9a17-0ae7-83ed" name="Brass-plated Tail"/>
</characteristicTypes>
</profileType>
<profileType id="4971-6050-1ee2-979c" name="Slaughterbrute Wounds">
<characteristicTypes>
<characteristicType id="ec89-ddfe-4de2-6c5e" name="Move"/>
<characteristicType id="ca2d-e1dd-27f5-691a" name="Razor-tipped Claws"/>
<characteristicType id="76bc-65b5-5f75-4b39" name="Mighty Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="a2ca-f96b-2c6c-41e9" name="Skaarac Wounds">
<characteristicTypes>
<characteristicType id="841f-e0ca-0308-5871" name="Move"/>
<characteristicType id="313d-a980-ef82-8686" name="Burning Blood"/>
<characteristicType id="f46b-9776-47c6-729c" name="Brutal Blades"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="7bbb-0a60-709a-6952" name="ASPIRING DEATHBRINGER" hidden="false"/>
<categoryEntry id="69ac-a4e4-52a6-2ec7" name="HERALD OF KHORNE ON BLOOD THRONE" hidden="false"/>
<categoryEntry id="2dda-37e1-7c22-9081" name="BLOODLETTER" hidden="false"/>
<categoryEntry id="8d71-7669-5436-da1a" name="SKULL CANNONS" hidden="false"/>
<categoryEntry id="e144-e909-7174-c464" name="BLOOD WARRIORS" hidden="false"/>
<categoryEntry id="7491-b301-9af8-897d" name="BLOODCRUSHERS" hidden="false"/>
<categoryEntry id="73e4-3b16-2e68-1702" name="BLOODLETTERS" hidden="false"/>
<categoryEntry id="0b24-c0ac-d1e8-9677" name="BLOODMASTER" hidden="false"/>
<categoryEntry id="e6fc-7f8a-21cd-ca24" name="BLOODREAVERS" hidden="false"/>
<categoryEntry id="8f2a-ef5b-3ef0-225f" name="BLOODSECRATOR" hidden="false"/>
<categoryEntry id="1253-eeb2-4244-42d4" name="BLOODSTOKER" hidden="false"/>
<categoryEntry id="246f-c9a0-65ab-f616" name="BLOODTHIRSTER" hidden="false"/>
<categoryEntry id="b0bb-eb26-b01d-a8a8" name="BLOODTHIRSTER OF UNFETTERED FURY" hidden="false"/>
<categoryEntry id="574b-fd53-4dd7-e39c" name="BLOODTHIRSTER OF INSENSATE RAGE" hidden="false"/>
<categoryEntry id="5238-dca9-ae44-5836" name="EXALTED DEATHBRINGER" hidden="false"/>
<categoryEntry id="55d5-ae5d-d4b5-3464" name="FLESH HOUNDS" hidden="false"/>
<categoryEntry id="7ec0-4209-c4b7-9db7" name="GARREK'S REAVERS" hidden="false"/>
<categoryEntry id="be29-a763-1a69-3af5" name="KARANAK" hidden="false"/>
<categoryEntry id="48ee-c1ab-837f-cf7a" name="KHORGORATHS" hidden="false"/>
<categoryEntry id="cf14-4b5c-1c74-17b8" name="KHORGOS KHULL" hidden="false"/>
<categoryEntry id="eade-9643-cc4a-9793" name="MIGHTY LORD OF KHORNE" hidden="false"/>
<categoryEntry id="483e-d372-62ad-99e9" name="LORD OF KHORNE ON JUGGERNAUT" hidden="false"/>
<categoryEntry id="5a33-b1d2-75c2-db03" name="MIGHTY SKULLCRUSHERS" hidden="false"/>
<categoryEntry id="3e5c-7204-e271-1e99" name="SCYLA ANFINGRIMM" hidden="false"/>
<categoryEntry id="3459-ed26-2b52-f0f1" name="SKARBRAND" hidden="false"/>
<categoryEntry id="390d-0f8a-4387-24b9" name="SKARR BLOODWRATH" hidden="false"/>
<categoryEntry id="524c-8a4c-7e20-9218" name="SKULLGRINDER" hidden="false"/>
<categoryEntry id="3e6c-0225-441d-ce43" name="SKULLMASTER" hidden="false"/>
<categoryEntry id="681d-7cda-0ff9-7c22" name="SKULLREAPERS" hidden="false"/>
<categoryEntry id="c1a9-16c6-87fc-ef12" name="SKULLTAKER" hidden="false"/>
<categoryEntry id="d835-19ec-be5f-a4e0" name="SLAUGHTERBRUTE" hidden="false"/>
<categoryEntry id="7f35-c3fd-d226-25c3" name="SLAUGHTERPRIEST" hidden="false"/>
<categoryEntry id="5850-f584-7048-f1c6" name="VALKIA THE BLOODY" hidden="false"/>
<categoryEntry id="c9ec-b573-efda-5ce4" name="WRATH OF KHORNE BLOODTHIRSTER" hidden="false"/>
<categoryEntry id="affc-db83-f2d2-9b44" name="WRATHMONGERS" hidden="false"/>
<categoryEntry id="485f-db34-ade0-cb6b" name="EXALTED GREATER DAEMON OF KHORNE" hidden="false"/>
<categoryEntry id="1c78-00b5-e5ad-adba" name="MAGORE'S FIENDS" hidden="false"/>
<categoryEntry id="5d90-1f99-fb4d-2fd7" name="RIPTOOTH" hidden="false"/>
<categoryEntry id="1c84-df70-ead8-d11c" name="CHAOS SPAWN" hidden="false"/>
<categoryEntry id="a154-9fce-7de2-439f" name="SOUL GRINDER" hidden="false"/>
<categoryEntry id="37de-a6c9-b8c0-610e" name="TAMURKHAN'S HORDE" hidden="false"/>
<categoryEntry id="9156-9f50-b935-6006" name="DAEMON PRINCE" hidden="false"/>
<categoryEntry id="0adb-3e44-760d-015f" name="FURIES" hidden="false"/>
<categoryEntry id="0124-e1e8-c2e7-ef6b" name="MAZRALL THE BUTCHER" hidden="false"/>
<categoryEntry id="0d42-43fb-57b1-0841" name="SKAARAC THE BLOODBORN" hidden="false"/>
<categoryEntry id="ad6e-0a22-fb09-e66d" name="GIGANTIC CHAOS SPAWN" hidden="false"/>
<categoryEntry id="f486-dd97-6af4-bd89" name="VORGAROTH THE SCARRED & SKALOK THE SKULL HOST OF KHORNE" hidden="false"/>
<categoryEntry id="4ba7-618a-4e30-2e0c" name="SLAVES TO DARKNESS" hidden="false">
<modifiers>
<modifier type="increment" field="6208-697e-be3f-bd12" value="2.0">
<repeats>
<repeat field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f22b-976f-fc38-366a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6208-697e-be3f-bd12" type="max"/>
</constraints>
</categoryEntry>
</categoryEntries>
<entryLinks>
<entryLink id="3a9d-107d-4df8-1346" name="Aspiring Deathbringer" hidden="false" collective="false" import="true" targetId="c098-9c13-471b-7fc8" type="selectionEntry">
<categoryLinks>
<categoryLink id="7752-729f-016c-4487" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4a03-e9ac-d013-88bc" name="Battalion: Blood Host" hidden="false" collective="false" import="true" targetId="a7fd-9b56-eaff-f352" type="selectionEntry"/>
<entryLink id="da63-e9ea-d27d-c920" name="Battalion: Blood Hunt" hidden="false" collective="false" import="true" targetId="cb7a-2a30-c407-d701" type="selectionEntry"/>
<entryLink id="51b5-fba6-be0e-0828" name="Herald of Khorne on Blood Throne" hidden="false" collective="false" import="true" targetId="f3e2-3df3-198b-52b3" type="selectionEntry">
<categoryLinks>
<categoryLink id="f236-e7d1-32d0-fe37" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4c7f-0376-a31e-9c20" name="Blood Warriors" hidden="false" collective="false" import="true" targetId="9361-fa26-31b7-4a10" type="selectionEntry"/>
<entryLink id="6981-396f-f0b1-ac6a" name="Battalion: Bloodbound Warband" hidden="false" collective="false" import="true" targetId="a584-3218-b0cd-294f" type="selectionEntry"/>
<entryLink id="a2b3-c723-4e18-d0fc" name="Battalion: Bloodbound Warhorde" hidden="false" collective="false" import="true" targetId="45b7-db81-23e4-78c8" type="selectionEntry"/>
<entryLink id="9aed-28c1-5b53-6cb1" name="Bloodcrushers" hidden="false" collective="false" import="true" targetId="41fb-f03e-b188-fdbd" type="selectionEntry"/>
<entryLink id="9f85-8653-c3dc-8afe" name="Skullmaster, Herald of Khorne" hidden="false" collective="false" import="true" targetId="0562-be54-fef3-aee8" type="selectionEntry">
<categoryLinks>
<categoryLink id="f4f8-14b3-b49e-e27f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6cf2-dbe1-e67d-f510" name="Battalion: Bloodforged *" hidden="false" collective="false" import="true" targetId="d28c-99c1-fb9b-7755" type="selectionEntry"/>
<entryLink id="ad0b-7f5b-4bc2-1780" name="Bloodletters" hidden="false" collective="false" import="true" targetId="635a-740a-3918-486d" type="selectionEntry"/>
<entryLink id="56e5-1db8-f277-df8e" name="Bloodreavers" hidden="false" collective="false" import="true" targetId="78be-9de2-98c0-1b84" type="selectionEntry"/>
<entryLink id="c300-74cd-3562-5439" name="Bloodmaster, Herald of Khorne" hidden="false" collective="false" import="true" targetId="3941-96b9-4533-17f3" type="selectionEntry"/>
<entryLink id="3298-5245-ca19-6352" name="Bloodsecrator" hidden="false" collective="false" import="true" targetId="56be-4ba7-aa8b-81d6" type="selectionEntry">
<categoryLinks>
<categoryLink id="932b-6855-0042-9172" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3287-8073-8bfb-bdeb" name="Bloodstoker" hidden="false" collective="false" import="true" targetId="7ee0-2ba0-c052-200a" type="selectionEntry">
<categoryLinks>
<categoryLink id="0896-99c3-86d5-336a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4017-51e7-4a34-d4bc" name="Bloodthirster of Insensate Rage" hidden="false" collective="false" import="true" targetId="9e48-1e04-c653-4aaf" type="selectionEntry">
<categoryLinks>
<categoryLink id="4294-2960-a344-b7c1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="59f8-f4fb-769e-8644" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8427-9f3b-991c-ffa8" name="Bloodthirster of Unfettered Fury" hidden="false" collective="false" import="true" targetId="8382-1180-29c2-b910" type="selectionEntry">
<categoryLinks>
<categoryLink id="ccc8-ebcb-0cf6-e8e4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="ae7d-1f1d-96e2-d120" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f3a2-9d22-cd33-e17a" name="Battalion: Bloodthunder Stampede" hidden="false" collective="false" import="true" targetId="80d0-e602-f091-6279" type="selectionEntry"/>
<entryLink id="8161-3a22-b9f6-f065" name="Battalion: Brass Stampede" hidden="false" collective="false" import="true" targetId="54ed-273a-ff0d-b1d0" type="selectionEntry"/>
<entryLink id="0b95-23b9-2a60-4005" name="Battalion: Charnel Host" hidden="false" collective="false" import="true" targetId="a765-6bbb-3d30-5dda" type="selectionEntry"/>
<entryLink id="fc4f-9226-a4c3-8910" name="Battalion: Council of Blood" hidden="false" collective="false" import="true" targetId="4871-f8d1-52f4-c5e0" type="selectionEntry"/>
<entryLink id="c437-801f-2604-d25d" name="Battalion: Blood Legion" hidden="false" collective="false" import="true" targetId="502c-6a0a-4fc2-5bcc" type="selectionEntry"/>
<entryLink id="22ad-c256-6f96-6af7" name="Battalion: Dark Feast" hidden="false" collective="false" import="true" targetId="ed0a-8b27-5e9c-2d74" type="selectionEntry"/>
<entryLink id="9dd1-c378-7467-be93" name="Exalted Deathbringer" hidden="false" collective="false" import="true" targetId="e888-8eef-c485-8b83" type="selectionEntry">
<categoryLinks>
<categoryLink id="4769-1f91-6808-288f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f242-5e9e-0cce-5fc6" name="Flesh Hounds" hidden="false" collective="false" import="true" targetId="689f-60c4-e598-6550" type="selectionEntry"/>
<entryLink id="0e6c-fd87-dd94-2877" name="Garrek's Reavers" hidden="false" collective="false" import="true" targetId="4473-6605-0c56-c66d" type="selectionEntry">
<categoryLinks>
<categoryLink id="552c-208c-2bca-4f15" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bc28-8568-5395-6d23" name="Battalion: Gore Pilgrims" hidden="false" collective="false" import="true" targetId="b9b7-ea01-585d-aed2" type="selectionEntry"/>
<entryLink id="d517-17eb-30a6-1c21" name="Battalion: Gorethunder Cohort" hidden="false" collective="false" import="true" targetId="38b0-9eab-8717-1264" type="selectionEntry"/>
<entryLink id="9424-1a98-6584-366f" name="Karanak" hidden="false" collective="false" import="true" targetId="c84a-8f7d-b40d-098b" type="selectionEntry">
<categoryLinks>
<categoryLink id="8964-0364-4611-a5ec" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7159-3e15-1ed1-5d7b" name="Khorgoraths" hidden="false" collective="false" import="true" targetId="86c6-8197-045c-d1bb" type="selectionEntry">
<categoryLinks>
<categoryLink id="47df-697e-ee7a-6917" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e242-b864-5104-3526" name="Korghos Khul" hidden="false" collective="false" import="true" targetId="595a-599f-1b18-246c" type="selectionEntry">
<categoryLinks>
<categoryLink id="3cfe-9ade-5b43-2fda" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3839-c614-79ec-e901" name="Lord of Khorne on Juggernaut" hidden="false" collective="false" import="true" targetId="f423-90c7-d450-d22b" type="selectionEntry">
<categoryLinks>
<categoryLink id="1188-a56e-0b56-dc3e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee25-5974-c0a8-48ec" name="Mighty Lord of Khorne" hidden="false" collective="false" import="true" targetId="50ba-f44c-8f95-a084" type="selectionEntry">
<categoryLinks>
<categoryLink id="a7ad-9517-c0b5-8927" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9785-da50-1738-7eac" name="Battalion: Murderhost" hidden="false" collective="false" import="true" targetId="3e97-a678-8853-12df" type="selectionEntry"/>
<entryLink id="d1a7-f946-3bfc-56e4" name="Mighty Skullcrushers" hidden="false" collective="false" import="true" targetId="f22b-7afb-d696-5145" type="selectionEntry"/>
<entryLink id="20e5-fe93-e44e-084d" name="Battalion: Red Headsmen" hidden="false" collective="false" import="true" targetId="c470-a112-03b6-9129" type="selectionEntry"/>
<entryLink id="9c42-1ab4-b48e-3c05" name="Scyla Anfingrimm" hidden="false" collective="false" import="true" targetId="6067-346b-d05a-72dc" type="selectionEntry">
<categoryLinks>
<categoryLink id="4b05-f0c2-43cd-7cf4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6fba-dff5-1b0e-a534" name="Skarbrand" hidden="false" collective="false" import="true" targetId="c446-6412-b68b-8cb1" type="selectionEntry">
<categoryLinks>
<categoryLink id="b7b3-76cf-fccf-e017" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="da8e-bf3f-f6b9-557e" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4278-b99a-b12f-5792" name="Skarr Bloodwrath" hidden="false" collective="false" import="true" targetId="be72-b584-fc3e-decc" type="selectionEntry">
<categoryLinks>
<categoryLink id="9f42-3fc7-4886-733d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c120-bc74-29a2-b82f" name="Skull Cannons" hidden="false" collective="false" import="true" targetId="ae26-5d97-dc6e-1e89" type="selectionEntry">
<categoryLinks>
<categoryLink id="ec7c-6f8a-f08a-3181" name="New CategoryLink" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9b4f-07af-6222-0d18" name="Skullgrinder" hidden="false" collective="false" import="true" targetId="e167-7729-8c8b-bf26" type="selectionEntry">
<categoryLinks>
<categoryLink id="fac9-4c44-ce17-4a78" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="223e-1528-1339-b145" name="Skullreapers" hidden="false" collective="false" import="true" targetId="be0c-d1b0-5f46-48c4" type="selectionEntry">
<categoryLinks>
<categoryLink id="ee2b-fdb4-f885-7d83" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a86b-87aa-75fc-4c01" name="Battalion: Skullseeker Host" hidden="false" collective="false" import="true" targetId="a5f8-e838-f2a2-2441" type="selectionEntry"/>
<entryLink id="5403-673f-a92c-7b05" name="Battalion: Skulltake" hidden="false" collective="false" import="true" targetId="3258-9691-5f0d-19e0" type="selectionEntry"/>
<entryLink id="e813-abaf-b1cd-bf32" name="Skulltaker" hidden="false" collective="false" import="true" targetId="3345-e414-3df7-8613" type="selectionEntry">
<categoryLinks>
<categoryLink id="2da0-26b8-3a25-9faa" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bf2f-7b96-174f-50c1" name="Battalion: Slaughterborn" hidden="false" collective="false" import="true" targetId="7901-eafc-3534-afe8" type="selectionEntry"/>
<entryLink id="a6ec-bc43-18b6-5c93" name="Slaughterpriest" hidden="false" collective="false" import="true" targetId="b805-6a44-d7ec-92e0" type="selectionEntry">
<categoryLinks>
<categoryLink id="7df0-7449-f4e1-2eda" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2fd1-cf92-acf2-4544" name="Battalion: The Gorechosen" hidden="false" collective="false" import="true" targetId="f7da-d7af-dfa7-865d" type="selectionEntry"/>
<entryLink id="96c5-d9a2-9217-436b" name="Valkia the Bloody" hidden="false" collective="false" import="true" targetId="c8c7-4d19-2acc-1c0c" type="selectionEntry">
<categoryLinks>
<categoryLink id="119b-c8fd-d2a2-e6c5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="eb02-ff98-b084-01f6" name="Wrath of Khorne Bloodthirster" hidden="false" collective="false" import="true" targetId="749a-2957-a8c5-8455" type="selectionEntry"/>
<entryLink id="8c7a-18ee-c18d-eccc" name="Wrathmongers" hidden="false" collective="false" import="true" targetId="4fc6-7808-d334-a716" type="selectionEntry">
<categoryLinks>
<categoryLink id="ba6e-39e3-5f3e-026e" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8719-7b62-24be-584c" name="Exalted Greater Daemon of Khorne" hidden="false" collective="false" import="true" targetId="17c4-00a9-a8e9-0f6b" type="selectionEntry">
<categoryLinks>
<categoryLink id="c72f-624a-5c3c-dc08" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="18ea-f2cc-5ce4-4dd8" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6136-e82d-4d9e-77e4" name="Magore's Fiends" hidden="false" collective="false" import="true" targetId="0b65-569d-9d0f-d290" type="selectionEntry">
<categoryLinks>
<categoryLink id="7d7b-ec93-64c5-2821" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0559-b93e-4ef3-ea45" name="Riptooth" hidden="false" collective="false" import="true" targetId="d884-a283-9eba-c27b" type="selectionEntry">
<categoryLinks>
<categoryLink id="d26e-58e5-b26b-997a" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f726-d283-09ad-8220" name="Mazarall the Butcher, Daemon Prince of Khorne" hidden="false" collective="false" import="true" targetId="ba1e-4f88-1a78-e9c5" type="selectionEntry">
<categoryLinks>
<categoryLink id="7b97-c17a-02cd-50cd" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9c94-d329-5bd2-7ba3" name="Skaarac the Bloodborn" hidden="false" collective="false" import="true" targetId="5582-7a1b-e477-10d5" type="selectionEntry">
<categoryLinks>
<categoryLink id="57be-2947-930a-d8d7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="43dc-d6b8-bb10-04b4" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="998d-f80c-337e-a974" name="Battalion: Khorne Bloodbound Slaughterstorm (Open Play)" hidden="false" collective="false" import="true" targetId="61d9-ceff-02a4-d364" type="selectionEntry"/>
<entryLink id="52c6-21b0-f723-015f" name="Battalion: Daemon Cohort of Khorne (Open Play)" hidden="false" collective="false" import="true" targetId="a9bc-7cff-e9fd-4425" type="selectionEntry"/>
<entryLink id="42d8-a359-90ec-95f7" name="Battalion: Khorne Bloodbound Murderband (Open Play)" hidden="false" collective="false" import="true" targetId="7e93-92f2-50b5-2185" type="selectionEntry"/>
<entryLink id="85bb-fd8e-2611-8937" name="Battalion: Bloodmarked Warband" hidden="false" collective="false" import="true" targetId="552b-50ad-cd20-d625" type="selectionEntry"/>
<entryLink id="2edd-afe1-6bdd-6fd8" name="Battalion: Skall'uk's Slaughterband (Open Play)" hidden="false" collective="false" import="true" targetId="4029-82e5-afde-0d4f" type="selectionEntry"/>
<entryLink id="ea5a-c7d5-39a3-f17a" name="Battalion: Goreblade Warband (Open Play) [Starter Set Battalion]" hidden="false" collective="false" import="true" targetId="bcdb-55cb-80d1-c1b4" type="selectionEntry"/>
<entryLink id="e41e-d85c-2fa1-7f9c" name="Vorgaroth the Scarred & Skalok the Skull Host of Khorne" hidden="false" collective="false" import="true" targetId="21cb-7a81-d3f9-5c05" type="selectionEntry">
<categoryLinks>
<categoryLink id="1796-c5cc-172f-56fc" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="7762-4b37-8848-3151" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9b36-c57a-fa1f-2794" name="Battalion: The Boundless Hunt" hidden="false" collective="false" import="true" targetId="91bc-3ddb-6322-6174" type="selectionEntry"/>
<entryLink id="2549-37a4-9999-4228" name="Skull Altar" hidden="false" collective="false" import="true" targetId="3bff-8d6b-bf69-fc6c" type="selectionEntry"/>
<entryLink id="ea9a-b20d-c6f8-f59e" name="Judgement: Bleeding Icon" hidden="false" collective="false" import="true" targetId="b9e5-d82c-126d-7dc7" type="selectionEntry">
<categoryLinks>
<categoryLink id="e71b-4479-a31e-a804" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7e25-4a15-a3ba-0531" name="Battalion: Brass Despoilers" hidden="false" collective="false" import="true" targetId="2cc9-966b-bc31-6ea4" type="selectionEntry">
<categoryLinks>
<categoryLink id="e842-a9f4-7096-95a5" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="35ac-5eb9-bd26-c88c" name="Judgement: Hexgorger Skulls" hidden="false" collective="false" import="true" targetId="ebf5-a5f2-89cc-f846" type="selectionEntry">
<categoryLinks>
<categoryLink id="4c4c-081b-1456-6d4f" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="16f4-0b65-a1d5-8690" name="Judgement: Wrath-Axe" hidden="false" collective="false" import="true" targetId="3d95-cf6d-c8cc-1a6c" type="selectionEntry">
<categoryLinks>
<categoryLink id="87cd-71f9-d26d-104c" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="814e-a435-a669-bff0" name="Allegiance" hidden="false" collective="false" import="true" targetId="c765-43a7-53c3-d8cf" type="selectionEntry">
<categoryLinks>
<categoryLink id="9f99-8e5a-e5fe-1c15" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4161-040f-b92f-90ad" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="f0b9-b47b-925b-2c11" type="selectionEntry">
<categoryLinks>
<categoryLink id="305d-4727-b401-6b77" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e55e-782f-ec31-3bdf" name="Battle Tactics: For the Skull Throne" hidden="false" collective="false" import="true" targetId="26f1-73f3-b27b-b3ad" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="7ab9-de0a-88c2-4fd1" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc58-70c1-6f7f-7759" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f8c3-2cbf-6dc3-15cc" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c098-9c13-471b-7fc8" name="Aspiring Deathbringer" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="append" field="name" value="with Goreaxe and Skullhammer">
<conditions>
<condition field="selections" scope="c098-9c13-471b-7fc8" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="57cc-05f8-a255-d1b9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="52cf-10b1-737e-a42f" name="Aspiring Deathbringer" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="a455-aa4d-6f28-8f34" name="Slaughter Incarnate" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick a friendly model with this command ability. Until the end of that phase, add 1 to the Attacks characteristic of melee weapons used by friendly KHORNE MORTAL units while they are wholly within 12" of that model. You cannot pick the same unit to benefit from this command ability more than once per phase.</characteristic>
</characteristics>
</profile>
<profile id="d0f7-aafe-ae08-7b09" name="Bane of Cowards" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If an enemy unit fails a battleshock test within 3" of this model, add D3 to the number of models that flee.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6d75-215b-5380-97b7" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="38aa-8b0d-1647-c5e0" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="b6a6-e2da-35d4-dd8f" name="New CategoryLink" hidden="false" targetId="f22b-976f-fc38-366a" primary="false"/>
<categoryLink id="dfd2-f9c3-783a-4b7a" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="22d8-78fc-97d7-37bb" name="New CategoryLink" hidden="false" targetId="7bbb-0a60-709a-6952" primary="false"/>
<categoryLink id="62e3-f5fa-4910-2ef8" name="BLOODBOUND" hidden="false" targetId="635b-b8a4-d5ce-1a2d" primary="false"/>
<categoryLink id="f5d5-2df0-6271-f799" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="35b9-5efe-63de-964a" name="Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="57cc-05f8-a255-d1b9">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="606b-29f6-3ec3-225f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ff1b-3dee-856b-e64c" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="47b3-88ec-1635-e022" name="Bloodaxe & Wrath-hammer" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="61d9-ceff-02a4-d364" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="852e-8cba-a1d0-bc46" type="max"/>
</constraints>
<profiles>
<profile id="6fe7-db7c-ee41-167a" name="Bloodaxe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="8b51-deb0-4a18-bde9" name="Wrath-hammer" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="57cc-05f8-a255-d1b9" name="Goreaxe & Skullhammer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="463a-257d-e699-de57" type="max"/>
</constraints>
<profiles>
<profile id="11e6-3b6f-784b-3cc6" name="Goreaxe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="e8fa-0406-8bad-eb16" name="Skullhammer" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cb1f-aaf4-f6d0-5e87" name="General" hidden="false" collective="false" import="true" targetId="7ab9-de0a-88c2-4fd1" type="selectionEntry"/>
<entryLink id="58ce-9909-ce60-9f1d" name="Command Traits" hidden="false" collective="false" import="true" targetId="0879-c394-8274-958b" type="selectionEntryGroup"/>
<entryLink id="620f-7104-a4a8-d174" name="Artefacts" hidden="false" collective="false" import="true" targetId="0740-e91a-e615-4ac9" type="selectionEntryGroup"/>
<entryLink id="94c6-1f0f-329e-62fc" name="Battalions" hidden="false" collective="false" import="true" targetId="671a-89e2-447c-95cb" type="selectionEntryGroup"/>
<entryLink id="21a9-7f2f-006a-eb0d" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="85.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a7fd-9b56-eaff-f352" name="Battalion: Blood Host" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="70a3-36f5-392f-9838" name="Cometh the Slaughter" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll charge rolls for units from this battalion while they are wholly within 16" of any BLOODTHIRSTERS from the same battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e902-45db-66f1-52fc" name="Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0c67-d015-b1bc-df03" name="Blood Host" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2765-d91e-52f8-8537" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5639-4f5b-e1d9-5b86" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="180.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="978a-4aed-b391-c1ba" name="1x BLOODTHIRSTER" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e2f-23d8-9b29-cccf" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8bb4-8978-c86f-b6bc" type="min"/>
</constraints>
<entryLinks>
<entryLink id="7c9b-cdad-9cbf-4109" name="Wrath of Khorne Bloodthirster" hidden="false" collective="false" import="true" targetId="749a-2957-a8c5-8455" type="selectionEntry">
<categoryLinks>
<categoryLink id="b2ce-220a-27af-411a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="7ced-0713-aba7-50c2" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8488-50b6-a0ab-cbe6" name="Bloodthirster of Insensate Rage" hidden="false" collective="false" import="true" targetId="9e48-1e04-c653-4aaf" type="selectionEntry">
<categoryLinks>
<categoryLink id="c287-c96d-d26b-70d7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="8a29-3323-a119-a93c" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4e47-4f1f-e24d-e918" name="Bloodthirster of Unfettered Fury" hidden="false" collective="false" import="true" targetId="8382-1180-29c2-b910" type="selectionEntry">
<categoryLinks>
<categoryLink id="5b97-57ae-d8ab-3030" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2290-20a1-ee7d-9cad" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3ef9-8398-b252-273c" name="Exalted Greater Daemon of Khorne" hidden="false" collective="false" import="true" targetId="17c4-00a9-a8e9-0f6b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d1e1-a5e3-6f87-608b" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0c39-ad0f-f876-6621" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="76c4-7816-d000-8a3f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="35c5-178e-3bbd-27bc" name="Skarbrand" hidden="false" collective="false" import="true" targetId="c446-6412-b68b-8cb1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb47-ba13-a9a3-063d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="2bf9-06fc-fa89-886a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="cd3c-f11f-2beb-355b" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9d04-2296-91e5-1a97" name="7 or more units in any combination" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="7.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7937-4ec6-55a1-ca4d" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="6c5a-8aae-0f3b-f3b6" name="BLOODLETTER HERO" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="574e-abae-4aba-816a" name="Skullmaster, Herald of Khorne" hidden="false" collective="false" import="true" targetId="0562-be54-fef3-aee8" type="selectionEntry">
<categoryLinks>
<categoryLink id="be58-1b4a-6a9b-dced" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9677-795b-7ce3-33c3" name="Skulltaker" hidden="false" collective="false" import="true" targetId="3345-e414-3df7-8613" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cfc5-81c9-c4a4-e2a3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ec6b-477f-e58f-170b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0da7-1e6c-c787-b78b" name="Bloodmaster, Herald of Khorne" hidden="false" collective="false" import="true" targetId="3941-96b9-4533-17f3" type="selectionEntry">
<categoryLinks>
<categoryLink id="2b34-ee14-86d5-100c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7565-4b14-fbfa-2050" name="Herald of Khorne on Blood Throne" hidden="false" collective="false" import="true" targetId="f3e2-3df3-198b-52b3" type="selectionEntry">
<categoryLinks>
<categoryLink id="403e-dfaf-f69a-d65a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="acc6-5cb9-b1d3-0b49" name="BLOODTHIRSTER" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="6165-7c84-ffe4-03bc" name="Wrath of Khorne Bloodthirster" hidden="false" collective="false" import="true" targetId="749a-2957-a8c5-8455" type="selectionEntry">
<categoryLinks>
<categoryLink id="9312-37f8-e712-d610" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="c42a-b55f-0edd-6296" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a7ba-5043-6a22-b3e4" name="Bloodthirster of Insensate Rage" hidden="false" collective="false" import="true" targetId="9e48-1e04-c653-4aaf" type="selectionEntry">
<categoryLinks>
<categoryLink id="f250-8d62-1f9a-31cb" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="0b6c-aedc-634f-14c5" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="dbce-4e73-df93-c492" name="Bloodthirster of Unfettered Fury" hidden="false" collective="false" import="true" targetId="8382-1180-29c2-b910" type="selectionEntry">
<categoryLinks>
<categoryLink id="1a7c-641b-900d-6e32" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="1285-6b15-9850-d501" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4ac1-ec09-860f-7576" name="Exalted Greater Daemon of Khorne" hidden="false" collective="false" import="true" targetId="17c4-00a9-a8e9-0f6b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f7a5-c501-313f-e274" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8871-0590-78bd-cdee" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="8fb9-61b2-0536-5352" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f414-689f-6402-73bc" name="Skarbrand" hidden="false" collective="false" import="true" targetId="c446-6412-b68b-8cb1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac44-8f72-1c9a-9653" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0454-b8f2-fc95-cdd4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2203-dce2-adac-4d0f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e5c9-b51f-00d9-b1ea" name="Bloodcrushers" hidden="false" collective="false" import="true" targetId="41fb-f03e-b188-fdbd" type="selectionEntry"/>
<entryLink id="1e9e-cd9b-39c4-f96e" name="Skull Cannons" hidden="false" collective="false" import="true" targetId="ae26-5d97-dc6e-1e89" type="selectionEntry">
<categoryLinks>
<categoryLink id="9d59-1ff8-bef2-32d6" name="New CategoryLink" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7af3-0ece-d9d0-e6a2" name="Bloodletters" hidden="false" collective="false" import="true" targetId="635a-740a-3918-486d" type="selectionEntry"/>
<entryLink id="9c1d-d102-0dc0-e31c" name="Flesh Hounds" hidden="false" collective="false" import="true" targetId="689f-60c4-e598-6550" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cb7a-2a30-c407-d701" name="Battalion: Blood Hunt" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="30c6-3c40-0337-a656" name="Khorne's Hunters" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to wound rolls for attacks made by units from this battalion that targets a HERO.</characteristic>
</characteristics>
</profile>
<profile id="6209-d4ea-35ca-9341" name="Battalion: Blood Hunt" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">1 Wrath of Khorne Bloodthirster
1 Karanak
3-8 Bloodcrushers or Flesh Hounds</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="42a9-5c18-0a63-5923" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6d42-3adc-3b53-1841" name="Blood Hunt" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="64ed-59ae-dde8-f7b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b37-94bd-8ee6-1c44" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e04a-a861-f864-53e4" name="Hellblades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d2f5-9f0a-8493-2fc9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9884-0298-4f2b-7743" type="max"/>
</constraints>
<profiles>
<profile id="fbd0-c517-2490-054c" name="Hellblades" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="d71b-35b5-5fe8-17d6" name="Decapitating Blow" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with a Hellblade is 6, that attack inflicts 1 mortal wound on the target in addition to any normal damage.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="275c-8db7-3d1b-8973" name="Gnashing Maw" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a291-d386-70ad-8ba7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81e4-f837-20fa-9de1" type="max"/>
</constraints>
<profiles>
<profile id="76cd-600f-8285-cf50" name="Gnashing Maw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9361-fa26-31b7-4a10" name="Blood Warriors" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="49e4-3721-a679-6056" name="Blood Warrior" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="e674-6b12-4e9b-1db5" name="Chaos Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Chaos Champion. Add 1 to the Attacks characteristic of that model's Goreaxe(s).</characteristic>
</characteristics>
</profile>
<profile id="9255-e045-eda9-bf3b" name="No Respite" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a model from this unit is slain in the combat phase, before that model is removed from play, that model can make a pile-in move and then attack with all of the melee weapons it is armed with.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7256-1688-83c4-5c98" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="c693-da59-3862-be57" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="945e-0eab-14b1-53b8" name="New CategoryLink" hidden="false" targetId="f22b-976f-fc38-366a" primary="false"/>
<categoryLink id="87d0-ae6a-bd5d-6b1e" name="New CategoryLink" hidden="false" targetId="e144-e909-7174-c464" primary="false"/>
<categoryLink id="47ed-8824-661f-6d63" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="76f4-130d-551f-2436" name="BLOODBOUND" hidden="false" targetId="635b-b8a4-d5ce-1a2d" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1899-889d-43ba-2db0" name="Goreglaives" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="e1d8-8965-6392-c3ae" value="1.0">
<repeats>
<repeat field="selections" scope="9361-fa26-31b7-4a10" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="9361-fa26-31b7-4a10" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e1d8-8965-6392-c3ae" type="max"/>
</constraints>
<profiles>
<profile id="286e-5d6a-5cd2-146f" name="Goreglaive" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2a1f-b0b4-e59d-984b" name="Icon Bearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a0e-43ed-18c2-96ff" type="max"/>
</constraints>
<profiles>
<profile id="8cdd-d7cc-bf5e-3d7b" name="Icon Bearers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 models in this unit can be an Icon Bearer. Add 1 to the Bravery characteristic of this unit while it includes any Icon Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="befb-ca49-73e4-f96a" name="10 Blood Warriors" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Blood Warriors">
<conditions>
<condition field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="20 Blood Warriors">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9640-688a-c977-b6a8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a735-63c4-769f-d9d4" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="190.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="fad9-b262-3889-16ca" name="Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="554b-39c8-fcb5-c0ed">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="70e8-39fa-d3b5-c03d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c024-58ee-06c3-3cdb" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="554b-39c8-fcb5-c0ed" name="Goreaxe and Gorefist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9720-3e37-4e6a-6300" type="max"/>
</constraints>
<profiles>
<profile id="00d4-fb47-87f9-e61d" name="Gorefists" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If an unmodified save roll for an attack made with a melee weapon that targets a unit that includes any models armed with a Goreaxe and Gorefist is 6, the attacking unit suffers 1 mortal wound after all of its attacks have been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3c25-74c3-17eb-ef69" name="Goreaxe" hidden="false" targetId="1ebc-6dfb-5777-dfab" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6d0d-e050-138c-e435" name="Paired Goreaxes" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d433-eb74-bf51-7823" type="max"/>
</constraints>
<profiles>
<profile id="87b5-b99f-67af-eb41" name="Goreaxes" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for models armed with a pair of Goreaxes.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f830-3c5e-9d34-b0bb" name="Goreaxe" hidden="false" targetId="1ebc-6dfb-5777-dfab" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="caed-6721-ab0c-fe39" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2.0"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="190.0"/>
</costs>
</entryLink>
<entryLink id="2ea2-12d5-9a2c-e7ac" name="Battalions" hidden="false" collective="false" import="true" targetId="671a-89e2-447c-95cb" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a584-3218-b0cd-294f" name="Battalion: Bloodmad Warband" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="63c1-c8de-d4cc-8f56" name="Frenzied Charge" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Attacks characteristic of melee weapons used by a unit from this battalion if that unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="445d-7b61-5970-d097" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0c5f-ab1f-8d8d-2e1e" name="Bloodmad Warband" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a60-63b6-889f-5a8c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="009a-abea-15fe-43ef" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="25b7-3946-9872-4f60" name="1 Aspiring Deathbringer" hidden="false" collective="false" import="true" defaultSelectionEntryId="41b3-ec93-d5cc-f573">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fca3-4349-ffdc-d294" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="df40-2843-ce03-4468" type="max"/>
</constraints>
<entryLinks>
<entryLink id="41b3-ec93-d5cc-f573" name="Aspiring Deathbringer" hidden="false" collective="false" import="true" targetId="c098-9c13-471b-7fc8" type="selectionEntry">
<categoryLinks>
<categoryLink id="6196-30c2-8834-c1f3" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9a25-4ce0-8ce0-7c52" name="1 Bloodsecrator" hidden="false" collective="false" import="true" defaultSelectionEntryId="bd1a-0966-0979-a829">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4e88-cf95-ad66-9bc1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9c08-07c2-3783-614e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bd1a-0966-0979-a829" name="Bloodsecrator" hidden="false" collective="false" import="true" targetId="56be-4ba7-aa8b-81d6" type="selectionEntry">
<categoryLinks>
<categoryLink id="cf4e-6e1b-c2a3-7293" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3ff6-dd05-bec2-30c3" name="3 units of Blood Warriors" hidden="false" collective="false" import="true" defaultSelectionEntryId="a558-e0cd-13dc-9137">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1b7-725b-29a7-3d51" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc3d-45b6-d5d8-2f57" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a558-e0cd-13dc-9137" name="Blood Warriors" hidden="false" collective="false" import="true" targetId="9361-fa26-31b7-4a10" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f1b0-5e41-b158-9caf" name="1-2 units of Bloodreavers" hidden="false" collective="false" import="true" defaultSelectionEntryId="76ea-9c8b-914f-c77c">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0c4a-0055-7fb1-fa83" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c622-e1b5-d2f8-6789" type="max"/>
</constraints>
<entryLinks>
<entryLink id="76ea-9c8b-914f-c77c" name="Bloodreavers" hidden="false" collective="false" import="true" targetId="78be-9de2-98c0-1b84" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="15d2-3a45-4ad9-f687" name="1 unit of Skullreapers" hidden="false" collective="false" import="true" defaultSelectionEntryId="24d8-073f-ea71-ed45">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff7c-b807-9901-7848" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d1a-3070-28c2-3b1a" type="max"/>
</constraints>