forked from BSData/wh40k-10e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Chaos Daemons Library.cat
9601 lines (9599 loc) · 693 KB
/
Chaos - Chaos Daemons 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="b45c-af22-788a-dfd6" name="Chaos - Daemons Library" revision="21" battleScribeVersion="2.03" library="true" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue">
<publications>
<publication id="e3ec-7a32-ae62-8727" name="Index - Chaos Daemons"/>
</publications>
<profileTypes>
<profileType id="76e9-dd43-4c5-910" name="Shadow Form">
<characteristicTypes>
<characteristicType id="2836-de36-3046-b7ea" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8cb8-38b8-fc83-8397" name="Skarbrand" hidden="false"/>
<categoryEntry id="987f-594d-8b73-7bca" name="Bloodthirster" publicationId="e3ec-7a32-ae62-8727" page="9-10" hidden="false"/>
<categoryEntry id="9e35-af4e-dc56-b475" name="Skulltaker" publicationId="e3ec-7a32-ae62-8727" page="11-12" hidden="false"/>
<categoryEntry id="d71b-8e77-32d0-8389" name="Bloodmaster" publicationId="e3ec-7a32-ae62-8727" page="13-14" hidden="false"/>
<categoryEntry id="eb8b-c43f-4b8b-2795" name="Skullmaster" publicationId="e3ec-7a32-ae62-8727" page="15-16" hidden="false"/>
<categoryEntry id="424d-d203-959f-8cdd" name="Rendmaster on Blood Throne" publicationId="e3ec-7a32-ae62-8727" page="17-18" hidden="false"/>
<categoryEntry id="658b-f0f5-347c-9216" name="Karanak" publicationId="e3ec-7a32-ae62-8727" page="18-19" hidden="false"/>
<categoryEntry id="93a4-ba1c-a3b5-2685" name="Bloodletters" hidden="false"/>
<categoryEntry id="eb84-815a-86e2-afd1" name="Bloodcrushers" hidden="false"/>
<categoryEntry id="f51c-62f0-adbd-94c3" name="Flesh Hounds" hidden="false"/>
<categoryEntry id="6629-4469-1dfa-a77a" name="Skull Cannon" hidden="false"/>
<categoryEntry id="e472-900b-ddbc-f548" name="Skull Altar" hidden="false"/>
<categoryEntry id="460e-859f-e347-ce8d" name="Be'lakor" hidden="false"/>
<categoryEntry id="76fd-2f64-2ec0-e4b1" name="Soul Grinder" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="96b8-1e72-366a-bd5f" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="50ce-baa9-3af1-2890" name="Daemon Prince of Chaos" hidden="false"/>
<categoryEntry id="e18a-bfc1-a234-a183" name="Daemon Prince of Chaos with wings" hidden="false"/>
<categoryEntry id="1e04-6405-591d-76d0" name="Kairos Fateweaver" hidden="false"/>
<categoryEntry id="514c-bed8-b9d3-7e0f" name="Lord of Change" hidden="false"/>
<categoryEntry id="7e18-7b06-2022-89f4" name="The Changeling" hidden="false"/>
<categoryEntry id="aae1-65a8-e037-1b09" name="Fateskimmer" hidden="false"/>
<categoryEntry id="8746-ab0d-34d-77b9" name="Fluxmaster" hidden="false"/>
<categoryEntry id="f4bc-2f2e-34f8-3029" name="The Blue Scribes" hidden="false"/>
<categoryEntry id="2375-a41b-a24f-74c5" name="Changecaster" hidden="false"/>
<categoryEntry id="ddad-e1d6-b68a-4aa8" name="Blue" hidden="false"/>
<categoryEntry id="9b87-7cc6-efb-e1b1" name="Pink" hidden="false"/>
<categoryEntry id="4163-af15-1960-5596" name="Flamers" hidden="false"/>
<categoryEntry id="4219-9006-5024-34e7" name="Exalted Flamer" hidden="false"/>
<categoryEntry id="2353-e1a0-43bc-35d0" name="Screamers" hidden="false"/>
<categoryEntry id="d6d1-fb0d-2bdd-7aaa" name="Burning Chariot" hidden="false"/>
<categoryEntry id="1a22-ebb2-b11-5ba5" name="Rotigus" hidden="false"/>
<categoryEntry id="5e28-5133-8882-ba8c" name="Great Unclean One" hidden="false"/>
<categoryEntry id="5ebd-7c70-84be-a56b" name="Poxbringer" hidden="false"/>
<categoryEntry id="c986-d8ad-587a-bfe8" name="Spoilpox Scrivener" hidden="false"/>
<categoryEntry id="f043-abd2-a30c-d77b" name="Epidemius" hidden="false"/>
<categoryEntry id="f6c8-f0c-9297-f07" name="Sloppity Bilepiper" hidden="false"/>
<categoryEntry id="a786-f05f-eb0-df11" name="Horticulous Slimux" hidden="false"/>
<categoryEntry id="4494-6619-15d9-4a6f" name="Plaguebearers" hidden="false"/>
<categoryEntry id="bc6c-c76a-8bae-e5c7" name="Nurglings" hidden="false"/>
<categoryEntry id="4708-6634-c709-219a" name="Beasts of Nurgle" hidden="false"/>
<categoryEntry id="c5b5-db18-df79-7927" name="Plague Drones" hidden="false"/>
<categoryEntry id="c344-95bf-6a3b-e050" name="Feculent Gnarlmaw" hidden="false"/>
<categoryEntry id="d200-989c-1f44-fad2" name="Shalaxi Helbane" hidden="false"/>
<categoryEntry id="49a4-d1b2-be9a-562a" name="Keeper of Secrets" hidden="false"/>
<categoryEntry id="c8dc-c657-ee4c-880e" name="Infernal Enrapturess" hidden="false"/>
<categoryEntry id="7750-481d-9ad-7b3c" name="The Masque of Slaanesh" hidden="false"/>
<categoryEntry id="a05-bf7-2667-d6a4" name="Syll'esske" hidden="false"/>
<categoryEntry id="72ec-31eb-611-6056" name="Contorted Epitome" hidden="false"/>
<categoryEntry id="79e8-a88c-ad73-2a94" name="Tormentbringer on Exalted Seeker Chariot" hidden="false"/>
<categoryEntry id="a14a-ccaa-8931-e0ab" name="Tranceweaver" hidden="false"/>
<categoryEntry id="e70c-8ee7-836c-caa2" name="Daemonettes" hidden="false"/>
<categoryEntry id="45be-dcbc-e09c-69ba" name="Fiends" hidden="false"/>
<categoryEntry id="46c8-ca2f-9529-3686" name="Seekers" hidden="false"/>
<categoryEntry id="fdd4-5656-b46b-191" name="Hellflayer" hidden="false"/>
<categoryEntry id="7c54-bc15-24dc-f64c" name="Seeker Chariot" hidden="false"/>
<categoryEntry id="3949-dc4a-2fa3-7e3" name="Exalted Seeker Chariot" hidden="false"/>
<categoryEntry name="Giant Chaos Spawn" hidden="false" id="84ba-2263-aa20-149a">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e3c7-2a29-a8ca-f2b5" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Spined Chaos Beast" hidden="false" id="d550-ad4d-14e2-10e4">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="6cb1-c80a-e8e2-fe58" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Pox Riders" hidden="false" id="1992-1150-1cf0-9968">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e3c7-2a29-a8ca-f2b5" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Plague Toads" hidden="false" id="b3ce-e371-5841-1ced">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e3c7-2a29-a8ca-f2b5" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="An'ggrath the Unbound" hidden="false" id="44f2-f864-3a76-f234">
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="d93f-614c-989a-f017" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Aetaos'rau'keres" hidden="false" id="1c65-8603-5702-eb89">
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="d93f-614c-989a-f017" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Scabeiathrax the Bloated" hidden="false" id="3763-589b-4840-f20e">
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="d93f-614c-989a-f017" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Zarakynel" hidden="false" id="3bb1-d38c-2687-7601">
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="d93f-614c-989a-f017" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Herald of Slaanesh" hidden="false" id="3454-872d-df3-914c">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e3c7-2a29-a8ca-f2b5" includeChildSelections="true"/>
</constraints>
</categoryEntry>
<categoryEntry name="Furies" hidden="false" id="2b4d-1769-dbca-fa0d">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e3c7-2a29-a8ca-f2b5" includeChildSelections="true"/>
</constraints>
</categoryEntry>
</categoryEntries>
<entryLinks>
<entryLink id="c236-c9e2-b67c-97ab" name="Detachment Choice" hidden="false" collective="false" import="false" targetId="6470-c44a-45f4-3313" type="selectionEntry"/>
<entryLink import="true" name="An'ggrath the Unbound [Legends]" hidden="false" type="selectionEntry" id="d052-16a7-4ac4-bb36" targetId="5714-846a-d343-d1b4"/>
<entryLink import="true" name="Be'lakor" hidden="false" type="selectionEntry" id="dbc7-8a96-dbbc-7e29" targetId="2c37-2898-8350-ef45">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="primary-catalogue" childId="5108-f98-63c2-53cb" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="primary-catalogue" childId="1069-10ff-3ba9-873b" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="primary-catalogue" childId="df9a-59b2-f464-59ad" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Beasts of Nurgle" hidden="false" type="selectionEntry" id="6039-56fa-5ac7-9083" targetId="2de0-5897-f724-a592"/>
<entryLink import="true" name="Bloodcrushers" hidden="false" type="selectionEntry" id="e76e-bdee-a328-890d" targetId="2f31-9132-b703-5fd8"/>
<entryLink import="true" name="Bloodletters" hidden="false" type="selectionEntry" id="208b-348-8114-b506" targetId="4ecc-6aa5-da28-2c57"/>
<entryLink import="true" name="Bloodmaster" hidden="false" type="selectionEntry" id="9312-4758-44e9-9402" targetId="ccae-b5f1-8787-4c7d"/>
<entryLink import="true" name="Bloodthirster" hidden="false" type="selectionEntry" id="365f-464c-a35d-4136" targetId="a018-ca33-afd0-be83"/>
<entryLink import="true" name="Blue Horrors" hidden="false" type="selectionEntry" id="dccc-c115-75ce-2805" targetId="b795-b936-ad61-e407"/>
<entryLink import="true" name="Burning Chariot" hidden="false" type="selectionEntry" id="1938-7714-7c82-4fe0" targetId="f6eb-b62f-5baf-d96d"/>
<entryLink import="true" name="Aetaos'rau'keres [Legends]" hidden="false" type="selectionEntry" id="c8ab-c6c8-45f5-d557" targetId="a44f-b07c-5a50-ff95"/>
<entryLink import="true" name="Changecaster" hidden="false" type="selectionEntry" id="c9df-a9e7-5a33-a30f" targetId="8b7c-d709-90d4-298e"/>
<entryLink import="true" name="Contorted Epitome" hidden="false" type="selectionEntry" id="6e82-1caa-3a56-afab" targetId="36df-8f40-8a6b-7d4c"/>
<entryLink import="true" name="Daemon Prince of Chaos" hidden="false" type="selectionEntry" id="ee4d-47d6-bd79-e4ff" targetId="497d-e065-f5a5-5e80"/>
<entryLink import="true" name="Daemon Prince of Chaos with wings" hidden="false" type="selectionEntry" id="4da3-ccfe-41e9-86bd" targetId="5800-3978-370d-b573"/>
<entryLink import="true" name="Daemonettes" hidden="false" type="selectionEntry" id="6aec-7889-8ba1-78c1" targetId="41c2-d2e6-ae43-3beb"/>
<entryLink import="true" name="Epidemius" hidden="false" type="selectionEntry" id="68f6-5d83-54cf-d216" targetId="5851-dc90-9afe-76a7"/>
<entryLink import="true" name="Exalted Flamer" hidden="false" type="selectionEntry" id="47d-dadf-863b-e8da" targetId="de54-5b38-8ca1-c39c"/>
<entryLink import="true" name="Exalted Seeker Chariot" hidden="false" type="selectionEntry" id="9292-8071-b7b4-249d" targetId="7f62-6b3f-c4fe-b971"/>
<entryLink import="true" name="Fateskimmer" hidden="false" type="selectionEntry" id="3881-b2ca-8cd4-6477" targetId="c199-b27c-7cc2-7935"/>
<entryLink import="true" name="Feculent Gnarlmaw" hidden="false" type="selectionEntry" id="57-6f18-e0cd-8dae" targetId="13f0-d2b5-6201-ba84"/>
<entryLink import="true" name="Fiends" hidden="false" type="selectionEntry" id="3e9a-3a17-9d18-fa99" targetId="d1ee-8d05-4fae-1727"/>
<entryLink import="true" name="Flamers" hidden="false" type="selectionEntry" id="da31-c890-10dd-2e14" targetId="5f23-4d6-f2f9-5973"/>
<entryLink import="true" name="Flesh Hounds" hidden="false" type="selectionEntry" id="67-74d9-ceab-69ee" targetId="fd31-64a2-b20f-f0bc"/>
<entryLink import="true" name="Fluxmaster" hidden="false" type="selectionEntry" id="a377-2016-c674-bbf" targetId="eba5-8a7a-fc5b-d7ec"/>
<entryLink import="true" name="Furies [Legends]" hidden="false" type="selectionEntry" id="c812-edb-a62f-c4fc" targetId="1b9e-e164-7a5a-c8b7"/>
<entryLink import="true" name="Giant Chaos Spawn [Legends]" hidden="false" type="selectionEntry" id="d5e4-a883-4a7d-c82d" targetId="2901-92bd-2f4-736d"/>
<entryLink import="true" name="Great Unclean One" hidden="false" type="selectionEntry" id="4033-b330-c232-b0c7" targetId="d490-6c4d-e83b-b183"/>
<entryLink import="true" name="Hellflayer" hidden="false" type="selectionEntry" id="7ac1-4d10-e8b4-bdc5" targetId="e8d-bf22-b29-d20e"/>
<entryLink import="true" name="Herald of Slaanesh on Steed of Slaanesh [Legends]" hidden="false" type="selectionEntry" id="c4d5-e085-5a5d-7439" targetId="b48f-f9b4-b47d-d181"/>
<entryLink import="true" name="Horticulous Slimux" hidden="false" type="selectionEntry" id="35a3-f267-c6cf-7272" targetId="7151-238f-a6eb-2f94"/>
<entryLink import="true" name="Infernal Enrapturess" hidden="false" type="selectionEntry" id="30f6-f452-8564-c6d5" targetId="2cc5-ef65-c4b9-28c6"/>
<entryLink import="true" name="Kairos Fateweaver" hidden="false" type="selectionEntry" id="26bd-56be-f5be-19f7" targetId="6df5-f246-6bd-55b8"/>
<entryLink import="true" name="Karanak" hidden="false" type="selectionEntry" id="f2f0-6213-2417-57dc" targetId="8436-cec1-e65a-d1a7"/>
<entryLink import="true" name="Keeper of Secrets" hidden="false" type="selectionEntry" id="26af-cfb8-dc7b-acce" targetId="a903-dd97-339d-6899"/>
<entryLink import="true" name="Khorne Soul Grinder" hidden="false" type="selectionEntry" id="98bd-6217-a3ac-b86a" targetId="8e9f-aa9-17f5-e2d3"/>
<entryLink import="true" name="Lord of Change" hidden="false" type="selectionEntry" id="d54c-41ba-2f37-22a4" targetId="3600-9f92-933-bf54"/>
<entryLink import="true" name="Nurgle Soul Grinder" hidden="false" type="selectionEntry" id="6dd1-5717-67ef-5c43" targetId="137e-d9b8-e764-c7cd"/>
<entryLink import="true" name="Nurglings" hidden="false" type="selectionEntry" id="a7b1-e21b-e5ce-104f" targetId="e403-3a9-279e-41b7"/>
<entryLink import="true" name="Pink Horrors" hidden="false" type="selectionEntry" id="e6fe-b5bd-d1b6-cff0" targetId="e7b8-aa40-6da7-778e"/>
<entryLink import="true" name="Plague Drones" hidden="false" type="selectionEntry" id="57d9-2dc6-7efe-d739" targetId="d620-146a-41cd-f28f"/>
<entryLink import="true" name="Plague Toads [Legends]" hidden="false" type="selectionEntry" id="c979-fd0f-d753-fb9a" targetId="a5c9-6285-af1e-3cc3"/>
<entryLink import="true" name="Plaguebearers" hidden="false" type="selectionEntry" id="ea8a-172d-13aa-9e91" targetId="d1eb-b092-d944-e729"/>
<entryLink import="true" name="Pox Riders [Legends]" hidden="false" type="selectionEntry" id="eca2-920e-37ba-f02b" targetId="fd5b-9e27-797d-6a3a"/>
<entryLink import="true" name="Poxbringer" hidden="false" type="selectionEntry" id="2c38-c9f2-c944-27c1" targetId="7b06-189d-b11e-c189"/>
<entryLink import="true" name="Rendmaster on Blood Throne" hidden="false" type="selectionEntry" id="a3d1-ab0d-346a-ae9b" targetId="d1cc-e17a-f1a1-4349"/>
<entryLink import="true" name="Rotigus" hidden="false" type="selectionEntry" id="1c68-23d0-67e4-6c86" targetId="cff8-7388-a2c9-946c"/>
<entryLink import="true" name="Scabeiathrax the Bloated [Legends]" hidden="false" type="selectionEntry" id="f270-114d-f09d-62f6" targetId="e57d-435b-99da-d559"/>
<entryLink import="true" name="Screamers" hidden="false" type="selectionEntry" id="9d47-bd25-e45c-18c1" targetId="550b-c5ab-5e27-f59b"/>
<entryLink import="true" name="Seeker Chariot" hidden="false" type="selectionEntry" id="c243-8748-8fbc-91c8" targetId="5fe1-5a7a-9f8e-21e0"/>
<entryLink import="true" name="Seekers" hidden="false" type="selectionEntry" id="9db9-324e-f496-9723" targetId="112d-8078-777f-76a5"/>
<entryLink import="true" name="Shalaxi Helbane" hidden="false" type="selectionEntry" id="d4fc-8d99-6848-79c3" targetId="c49d-5ebc-4ee4-689e"/>
<entryLink import="true" name="Skarbrand" hidden="false" type="selectionEntry" id="bb46-bb88-654c-faa7" targetId="7998-d0a-baa4-e8b3"/>
<entryLink import="true" name="Skull Altar" hidden="false" type="selectionEntry" id="b512-1095-3869-db85" targetId="464a-b548-355f-2058"/>
<entryLink import="true" name="Skull Cannon" hidden="false" type="selectionEntry" id="4f43-1544-c098-861e" targetId="fd37-8a80-3da8-f262"/>
<entryLink import="true" name="Skullmaster" hidden="false" type="selectionEntry" id="f9f-2100-687b-69bd" targetId="dd30-ba4c-34a4-e788"/>
<entryLink import="true" name="Skulltaker" hidden="false" type="selectionEntry" id="b032-4a6a-3900-8dcf" targetId="8872-785a-1efa-7ca1"/>
<entryLink import="true" name="Slaanesh Soul Grinder" hidden="false" type="selectionEntry" id="98e0-bfa4-7061-f9ea" targetId="5df-73b6-d758-14fc"/>
<entryLink import="true" name="Sloppity Bilepiper" hidden="false" type="selectionEntry" id="61b1-a4bf-899e-9f2c" targetId="3da0-5db0-7531-33b6"/>
<entryLink import="true" name="Spined Chaos Beast [Legends]" hidden="false" type="selectionEntry" id="88f4-168f-b314-478" targetId="da05-80d-6229-6e44"/>
<entryLink import="true" name="Spoilpox Scrivener" hidden="false" type="selectionEntry" id="85bc-9887-389b-64b8" targetId="e7cd-468b-37dd-d82f"/>
<entryLink import="true" name="Syll'esske" hidden="false" type="selectionEntry" id="cfa8-5c37-c140-915" targetId="27f6-d907-66f-ca28"/>
<entryLink import="true" name="The Blue Scribes" hidden="false" type="selectionEntry" id="e1ce-8c52-b40a-7868" targetId="caf1-8818-9e65-7154"/>
<entryLink import="true" name="The Changeling" hidden="false" type="selectionEntry" id="be77-fd68-1840-a285" targetId="ac75-c011-9a10-2c4a"/>
<entryLink import="true" name="The Masque of Slaanesh" hidden="false" type="selectionEntry" id="f135-a27-d47-d791" targetId="1567-b99b-bd8f-d485"/>
<entryLink import="true" name="Tormentbringer on Exalted Seeker Chariot" hidden="false" type="selectionEntry" id="fa07-2fe1-8621-b69d" targetId="673b-111b-6dcb-352"/>
<entryLink import="true" name="Tranceweaver" hidden="false" type="selectionEntry" id="3cf-6042-5a03-a295" targetId="dba-34e3-46f2-56e0"/>
<entryLink import="true" name="Tzeentch Soul Grinder" hidden="false" type="selectionEntry" id="73ac-1752-3efd-100a" targetId="e1b1-146f-6f77-3a15"/>
<entryLink import="true" name="Zarakynel [Legends]" hidden="false" type="selectionEntry" id="8d96-ce07-a948-add2" targetId="268e-459c-c6e8-7754"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="6470-c44a-45f4-3313" name="Detachment Choice" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1940-3de-c3d-cc32" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="60dc-c8-564e-8c07" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e246-8127-a2a9-1034" name="Configuration" hidden="false" targetId="4ac9-fd30-1e3d-b249" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5b57-21bd-d921-37f4" name="Detachment" hidden="false" collective="false" import="true" defaultSelectionEntryId="a7cf-90fa-4093-6047">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9679-f849-ace1-6ff8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="76dd-8187-1ed7-425" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="a7cf-90fa-4093-6047" name="Daemonic Incursion" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="13f1-2794-34e7-4bd6" name="Warlord" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="primary-catalogue" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d265-877b-e03d-30ca" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a24-2702-83e8-2e5d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8339-f998-321f-4cf4" name="Warlord" hidden="false" targetId="5c0e-4c31-d51b-e470" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7998-d0a-baa4-e8b3" name="Skarbrand" publicationId="e3ec-7a32-ae62-8727" page="7-8" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9f6c-cda6-26ee-c203" type="max"/>
</constraints>
<profiles>
<profile id="b0-9810-679f-bc78" name="Skarbrand" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">11</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">20</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">5</characteristic>
</characteristics>
</profile>
<profile id="37f1-31f-5342-52b5" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="f967-55db-6ead-2b62" name="Rage Embodied (Aura)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly KHORNE LEGIONES DAEMONICA unit (excluding MONSTERS and VEHICLES) is within 6" of this model, add 1 to the Attacks characteristic of melee weapons equipped by models in that unit.</characteristic>
</characteristics>
</profile>
<profile id="8b09-c3ce-ab4e-d948" name="Murderlust (Aura)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a unit is within 6" of this model, each time that unit is selected to Fall Back, it must take a Leadership test. If that test is failed, that unit must Remain Stationary this phase instead.</characteristic>
</characteristics>
</profile>
<profile id="79cd-83b3-1bc7-7f29" name="Damaged: 1-7 wounds remaining" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model has 1-7 wounds remaining, add 2 to the Attacks characteristic of this model’s Slaughter and Carnage.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="79c1-7461-158d-a062" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D6"/>
</modifiers>
</infoLink>
<infoLink id="baa5-6319-c0b4-4663" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="7fd0-efd-b163-9979" name="The Shadow of Chaos" hidden="false" targetId="a312-a2f1-e1c0-30ed" type="rule"/>
<infoLink id="a6b6-96d5-6d6a-f9f9" name="Warp Rifts" hidden="false" targetId="877e-cc0c-8a1d-be46" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ef05-606c-509e-8877" name="Faction: Legiones Daemonica" hidden="false" targetId="571f-ec3a-a5a2-751a" primary="false"/>
<categoryLink id="cce5-8401-e28f-b2b5" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="27d0-a0c-9712-a1e0" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="cd6c-5820-3075-43f2" name="Epic Hero" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="52db-9ff2-3733-15db" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="f5ed-2cb6-b486-4bb" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="7d70-710c-1d1d-defc" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="fdee-4af0-f0d3-4b09" name="Skarbrand" hidden="false" targetId="8cb8-38b8-fc83-8397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="573b-877e-5437-c3be" name="Bellow of endless fury" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81eb-c362-44ae-308b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e2-f04b-97b0-5a72" type="max"/>
</constraints>
<profiles>
<profile id="52a-c584-6d44-36cb" name="Bellow of endless fury" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bda-d18-8b33-21ae" name="Ignores Cover" hidden="false" targetId="4640-43e7-30b-215a" type="rule"/>
<infoLink id="15cc-f2b-ceb1-ecba" name="Torrent" hidden="false" targetId="5edf-d619-23e0-9b56" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d231-290d-7de8-bc49" name="Slaughter and Carnage" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81eb-c362-44ae-308b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e2-f04b-97b0-5a72" type="max"/>
</constraints>
<profiles>
<profile id="9e01-ddf2-3056-628e" name="➤ Slaughter and Carnage - strike" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">8</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">16</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-4</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">6</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
<profile id="5d3a-68b5-3d84-3714" name="➤ Slaughter and Carnage - sweep" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">16</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1582-1109-7190-937" name="Warlord" hidden="false" collective="false" import="true" targetId="13f1-2794-34e7-4bd6" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="305"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="f5f9-1339-84bb-ae85" shared="true" id="3f6e-b3c5-93d5-7d8e" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set-primary" value="887b-ab87-92a2-20f5" field="category">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="d265-877b-e03d-30ca" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="a018-ca33-afd0-be83" name="Bloodthirster" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4308-4c01-b435-cb90" type="max"/>
</constraints>
<profiles>
<profile id="d3b3-187f-88c1-549" name="Daemon Lord of Khorne (Aura)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly KHORNE LEGIONES DAEMONICA unit is within 6" of this model, each time a model in that unit makes a melee attack, add 1 to the Hit roll.</characteristic>
</characteristics>
</profile>
<profile id="63ad-593f-4956-250" name="Relentless Carnage" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the end of the Fight phase, you can select one enemy unit within Engagement Range of this model and roll eight D6: for each 4+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="6050-ce33-f984-2f5a" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Bloodthirster" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="f77f-b470-be0f-daa3">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">11</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">18</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6330-52f9-9a3d-a69d" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D6"/>
</modifiers>
</infoLink>
<infoLink id="6335-7149-d61f-6bb2" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="d39a-b935-7add-2617" name="The Shadow of Chaos" hidden="false" targetId="a312-a2f1-e1c0-30ed" type="rule"/>
<infoLink id="3a9d-9053-3135-6f8e" name="Warp Rifts" hidden="false" targetId="877e-cc0c-8a1d-be46" type="rule"/>
<infoLink id="4084-6ec6-6ff1-cb09" name="Damaged: 1-6 wounds remaining" hidden="false" targetId="80ea-c6e-ee51-da61" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f8cd-4ef7-5a77-db03" name="Faction: Legiones Daemonica" hidden="false" targetId="571f-ec3a-a5a2-751a" primary="false"/>
<categoryLink id="e03f-1cf9-a2e1-482e" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="95ab-448b-baf-931b" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="cbd4-6c6b-faf5-c4f8" name="Fly" hidden="false" targetId="c619-2086-bbcf-69c9" primary="false"/>
<categoryLink id="a198-afb0-3aa0-21e1" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="6b3f-9822-7632-2340" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="52ea-812d-b225-ba5e" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="b9a1-b577-e9a5-233e" name="Bloodthirster" hidden="false" targetId="987f-594d-8b73-7bca" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8484-4b54-f9e6-844b" name="Hellfire breath" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="593-ad9b-107d-9a9a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5a0-d2d8-ea23-63e8" type="max"/>
</constraints>
<profiles>
<profile id="5d4d-7050-d2cf-8240" name="Hellfire breath" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4326-fea7-adab-2a5e" name="Ignores Cover" hidden="false" targetId="4640-43e7-30b-215a" type="rule"/>
<infoLink id="9795-863a-2d35-51a7" name="Torrent" hidden="false" targetId="5edf-d619-23e0-9b56" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="7e92-60ac-7f9a-8e1c" name="Replace great axe" hidden="false" collective="false" import="true" defaultSelectionEntryId="f55d-30fe-6117-ac">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1707-6524-961e-fe33" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d9b-89e5-e8e6-37ca" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f55d-30fe-6117-ac" name="Great axe of Khorne" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6160-9374-7a40-76e5" name="➤ Great axe of Khorne - strike" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">7</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">16</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-4</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D6+2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
<profile id="fc9a-a154-b87e-94d9" name="➤ Great axe of Khorne - sweep" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">14</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">10</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f504-1083-7663-a961" name="Axe and flail" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="dac7-e089-fe2e-7575" name="Bloodflail" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">16</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dd3b-a024-1e7d-d5d7" name="Devastating Wounds" hidden="false" targetId="be1e-ac8e-1e2c-3528" type="rule"/>
<infoLink id="3eac-b8a8-d4b-7f79" name="➤ Axe of Khorne - strike" hidden="false" targetId="d99-5cf3-1fa9-359" type="profile"/>
<infoLink id="ddee-b1a5-c1d5-5e02" name="➤ Axe of Khorne - sweep" hidden="false" targetId="b1a8-b7d8-c2c7-6c05" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a9d-93c9-8953-72b4" name="Axe and lash" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8210-b688-f5aa-38bc" name="Lash of Khorne" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a937-5ed5-b626-63de" name="➤ Axe of Khorne - strike" hidden="false" targetId="d99-5cf3-1fa9-359" type="profile"/>
<infoLink id="2c83-5867-2f41-4020" name="➤ Axe of Khorne - sweep" hidden="false" targetId="b1a8-b7d8-c2c7-6c05" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2890-bf6a-6a72-2b86" name="Warlord" hidden="false" collective="false" import="true" targetId="13f1-2794-34e7-4bd6" type="selectionEntry"/>
<entryLink id="989e-bb86-ee0f-8127" name="Enhancements" hidden="false" collective="false" import="true" targetId="621d-b661-7461-4620" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="320"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="f5f9-1339-84bb-ae85" shared="true" id="eb16-d17-15-e0d9" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set-primary" value="887b-ab87-92a2-20f5" field="category">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="d265-877b-e03d-30ca" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="8872-785a-1efa-7ca1" name="Skulltaker" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9f6c-cda6-26ee-c203" type="max"/>
</constraints>
<profiles>
<profile id="2f74-1bd-5325-b496" name="Skulltaker" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile id="ad0c-bd5a-2ca0-ab9c" name="Invulnerable Save: Skulltaker" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="d4d3-6e32-23f-8c5a" name="Lord of Decapitations" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, melee weapons equipped by models in that unit have the [DEVASTATING WOUNDS] ability.</characteristic>
</characteristics>
</profile>
<profile id="3bc2-66b3-2336-8ad4" name="Skulls for Khorne" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model makes an attack that targets a CHARACTER unit, you can re-roll the Hit roll and you can re-roll the Wound roll. Each time this model destroys an enemy CHARACTER unit, you gain 1CP.</characteristic>
</characteristics>
</profile>
<profile id="2e0c-613c-267b-3826" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
■ BLOODLETTERS</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3e3d-b6aa-5c50-923a" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="7ef8-fe87-66a3-dcaf" name="The Shadow of Chaos" hidden="false" targetId="a312-a2f1-e1c0-30ed" type="rule"/>
<infoLink id="9c23-985f-e661-ed22" name="Warp Rifts" hidden="false" targetId="877e-cc0c-8a1d-be46" type="rule"/>
<infoLink id="61f9-7ca2-d77b-336c" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="631c-4f1c-723b-2c8d" name="Faction: Legiones Daemonica" hidden="false" targetId="571f-ec3a-a5a2-751a" primary="false"/>
<categoryLink id="5fb3-c9f9-f911-f94c" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink id="9f99-5e56-d2e7-156d" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="5bdb-7986-99f-744e" name="Epic Hero" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="37ff-fa56-1f52-bfbf" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="59c6-95ac-97-a201" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="be89-e376-a979-2bbe" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="1c03-7703-8810-d4ed" name="Skulltaker" hidden="false" targetId="9e35-af4e-dc56-b475" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fcdc-51d3-89ab-f5b6" name="The Slayer Sword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae99-d5e8-364f-36c5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b12-8ca0-5c16-39c1" type="max"/>
</constraints>
<profiles>
<profile id="7c4e-bef2-52bc-910e" name="The Slayer Sword" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds, Precision</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5a8e-cc22-73df-d684" name="Devastating Wounds" hidden="false" targetId="be1e-ac8e-1e2c-3528" type="rule"/>
<infoLink id="f546-467a-f757-30d8" name="Precision" hidden="false" targetId="9143-31ae-e0a6-6007" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="bd26-783a-c73c-81f3" name="Warlord" hidden="false" collective="false" import="true" targetId="13f1-2794-34e7-4bd6" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="f5f9-1339-84bb-ae85" shared="true" id="665e-85e5-8451-3d8d" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set-primary" value="887b-ab87-92a2-20f5" field="category">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="d265-877b-e03d-30ca" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="ccae-b5f1-8787-4c7d" name="Bloodmaster" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="79b1-c46f-8763-73f7" type="max"/>
</constraints>
<profiles>
<profile id="2821-6ed2-8263-ae64" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
■ BLOODLETTERS</characteristic>
</characteristics>
</profile>
<profile id="f278-f10f-3454-c93a" name="Invulnerable Save: Bloodmaster" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="f0f8-7bb-41bd-a6c9" name="Bloodmaster" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit makes an attack, add 1 to the Wound roll.</characteristic>
</characteristics>
</profile>
<profile id="c7b5-9c9f-cf45-fbc5" name="A Gory Path" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model’s unit Consolidates, it can move up to 6" instead of up to 3".</characteristic>
</characteristics>
</profile>
<profile id="4d6f-7bbb-3288-fe9" name="Bloodmaster" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="54d3-5ba9-4824-8431" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="2749-30cf-3ad1-862a" name="The Shadow of Chaos" hidden="false" targetId="a312-a2f1-e1c0-30ed" type="rule"/>
<infoLink id="7619-af87-4a58-925d" name="Warp Rifts" hidden="false" targetId="877e-cc0c-8a1d-be46" type="rule"/>
<infoLink id="741-b871-aae4-8176" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="86a-11ab-7af-6ffa" name="Faction: Legiones Daemonica" hidden="false" targetId="571f-ec3a-a5a2-751a" primary="false"/>
<categoryLink id="3548-a2cb-8ccf-7c49" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink id="1fe9-ca0d-fd13-b4cf" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="c2ed-43d4-1329-efc7" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="42e5-ab22-b28e-fc6b" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="3ce3-b894-81a3-2a52" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="3c09-7d15-ce92-2d0a" name="Bloodmaster" hidden="false" targetId="d71b-8e77-32d0-8389" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="be6e-3051-6ea1-298b" name="Enhancements" hidden="false" collective="false" import="true" targetId="621d-b661-7461-4620" type="selectionEntryGroup"/>
<entryLink id="7796-e54b-765c-9406" name="Warlord" hidden="false" collective="false" import="true" targetId="13f1-2794-34e7-4bd6" type="selectionEntry"/>
<entryLink id="21e2-3822-dfcb-a9eb" name="Blade of blood" hidden="false" collective="false" import="true" targetId="2eac-78bf-beb7-bfea" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="65"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="f5f9-1339-84bb-ae85" shared="true" id="f73e-d7ae-265f-5a11" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set-primary" value="887b-ab87-92a2-20f5" field="category">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="d265-877b-e03d-30ca" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="dd30-ba4c-34a4-e788" name="Skullmaster" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b65b-ae6e-8ede-dec2" type="max"/>
</constraints>
<profiles>
<profile id="6ebf-8f84-944-18e8" name="Invulnerable Save: Skullmaster" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="ba83-e38d-e665-b84e" name="Skullmaster" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">10"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">7</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
<profile id="81cc-8656-276a-d140" name="Skullmaster’s Fury" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time that unit ends a Charge move, until the end of the turn, Juggernaut’s bladed horns equipped by models in that unit have the [DEVASTATING WOUNDS] ability.</characteristic>
</characteristics>
</profile>
<profile id="59f3-5bda-5c9a-7dab" name="Devastating Charge" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model’s unit ends a Charge move, each enemy unit within Engagement Range of that unit must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
<profile id="3cd3-d7ec-3a95-f9b6" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ BLOODCRUSHERS</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="63fe-6885-2cea-41d2" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="f606-48c1-2d36-5fc8" name="The Shadow of Chaos" hidden="false" targetId="a312-a2f1-e1c0-30ed" type="rule"/>
<infoLink id="86de-b6a6-ffdd-d8c6" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
<infoLink id="687e-47e2-86c2-bae0" name="Warp Rifts" hidden="false" targetId="877e-cc0c-8a1d-be46" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="89c1-4097-5dca-f7e2" name="Faction: Legiones Daemonica" hidden="false" targetId="571f-ec3a-a5a2-751a" primary="false"/>
<categoryLink id="5433-b321-98b8-533f" name="Mounted" hidden="false" targetId="14a0-40c9-2748-ae6e" primary="false"/>
<categoryLink id="388c-8322-22c8-c62d" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="dbe6-1cfa-decd-5777" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="d708-7129-14af-3a45" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="9779-a7d7-1bb8-a2cf" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="f4ca-8d06-c85-9f4e" name="Skullmaster" hidden="false" targetId="eb8b-c43f-4b8b-2795" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="ca56-1c37-67af-923d" name="Enhancements" hidden="false" collective="false" import="true" targetId="621d-b661-7461-4620" type="selectionEntryGroup"/>
<entryLink id="625e-f2ef-174c-d623" name="Warlord" hidden="false" collective="false" import="true" targetId="13f1-2794-34e7-4bd6" type="selectionEntry"/>
<entryLink id="4a11-b99e-2e2-b95" name="Blade of blood" hidden="false" collective="false" import="true" targetId="2eac-78bf-beb7-bfea" type="selectionEntry"/>
<entryLink id="689-7023-1aaa-43b9" name="Juggernaut's bladed horn" hidden="false" collective="false" import="true" targetId="4848-c7ef-a65f-d15c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="100"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="f5f9-1339-84bb-ae85" shared="true" id="b482-6d34-d370-adc4" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set-primary" value="887b-ab87-92a2-20f5" field="category">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="d265-877b-e03d-30ca" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="2eac-78bf-beb7-bfea" name="Blade of blood" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e7f-1b2a-51a5-cd1f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55b6-a14-33e-b34f" type="max"/>
</constraints>
<profiles>
<profile id="e84f-d24f-4bb5-494f" name="Blade of blood" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4848-c7ef-a65f-d15c" name="Juggernaut's bladed horn" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9d-7fb5-34ea-60fa" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffed-f98d-c4a4-8e41" type="max"/>
</constraints>
<profiles>
<profile id="71a9-34a6-7046-d871" name="Juggernaut's bladed horn" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Extra Attacks, Lance</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4053-de09-ebc0-25bd" name="Extra Attacks" hidden="false" targetId="115b-79dc-f723-d761" type="rule"/>
<infoLink id="4395-99ec-5976-220f" name="Lance" hidden="false" targetId="2ebc-abdf-8129-6c57" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d1cc-e17a-f1a1-4349" name="Rendmaster on Blood Throne" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b65b-ae6e-8ede-dec2" type="max"/>
</constraints>
<profiles>
<profile id="a6f8-98a-2e5a-4e6d" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="2a91-3631-fe1-d803" name="Rendmaster on Blood Throne" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">9</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile id="25ee-74b5-c6e8-674a" name="Blood Throne" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, select one enemy unit within 18" of and visible to this model. Until the end of the phase, each time a friendly KHORNE LEGIONES DAEMONICA unit makes an attack that targets that unit, improve the Strength, Armour Penetration and Damage characteristics of that attack by 1.</characteristic>
</characteristics>
</profile>
<profile id="31a5-10b2-e55d-9eff" name="Champion Slayer" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model makes a melee attack that targets a CHARACTER or MONSTER unit, you can re-roll the Wound roll. Each time this model destroys an enemy CHARACTER or MONSTER unit, this model regains up to D6 lost wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="588f-68d-4255-ec73" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="aa0-5a8e-41d3-2a63" name="The Shadow of Chaos" hidden="false" targetId="a312-a2f1-e1c0-30ed" type="rule"/>
<infoLink id="c966-2505-5066-3c01" name="Warp Rifts" hidden="false" targetId="877e-cc0c-8a1d-be46" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4598-91fd-d4b3-4230" name="Faction: Legiones Daemonica" hidden="false" targetId="571f-ec3a-a5a2-751a" primary="false"/>
<categoryLink id="e9b0-d756-44e6-63c5" name="Mounted" hidden="false" targetId="14a0-40c9-2748-ae6e" primary="false"/>
<categoryLink id="2191-469d-6420-f358" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="67ba-7165-7f54-ee53" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="b49f-d473-ad44-6451" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="56dc-fe29-4a81-2e50" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="908e-5035-1697-a8dd" name="Rendmaster on Blood Throne" hidden="false" targetId="424d-d203-959f-8cdd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7f70-709e-68c5-64be" name="Attendant's hellblades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3431-9027-dff0-3bd2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c10a-e541-83e3-6b79" type="max"/>
</constraints>
<profiles>
<profile id="9e5e-dd1-2411-5587" name="Attendant's hellblades" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Extra Attacks</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="888e-c9e7-e1ad-d597" name="Extra Attacks" hidden="false" targetId="115b-79dc-f723-d761" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4c53-2f25-d2c5-bb0b" name="Blade of blood" hidden="false" collective="false" import="true" targetId="2eac-78bf-beb7-bfea" type="selectionEntry"/>
<entryLink id="dd22-2f9c-4e05-6dc7" name="Enhancements" hidden="false" collective="false" import="true" targetId="621d-b661-7461-4620" type="selectionEntryGroup"/>
<entryLink id="71cb-14e8-d92f-890b" name="Warlord" hidden="false" collective="false" import="true" targetId="13f1-2794-34e7-4bd6" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="150"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="f5f9-1339-84bb-ae85" shared="true" id="c0c3-1c8d-9be9-cce7" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set-primary" value="887b-ab87-92a2-20f5" field="category">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="d265-877b-e03d-30ca" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="8436-cec1-e65a-d1a7" name="Karanak" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8617-31f4-e81f-1248" type="max"/>
</constraints>
<profiles>
<profile id="eaf5-35a5-d722-8d1b" name="Karanak" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">7+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile id="e257-b8d-8aab-e253" name="Pack Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, you can re-roll Advance and Charge rolls made for that unit.</characteristic>
</characteristics>
</profile>
<profile id="5abc-becd-aac1-cc42" name="Prey of the Blood God" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the first battle round, select one enemy unit to be this model’s prey. Weapons equipped by models in this model’s unit have the [LETHAL HITS] ability when targeting this model’s prey. Each time this model’s prey is destroyed, select one new enemy unit to be this model’s prey.</characteristic>
</characteristics>
</profile>
<profile id="a448-9846-5967-6db1" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
■ FLESH HOUNDS</characteristic>
</characteristics>
</profile>
<profile id="d02e-5a9a-2202-d1d7" name="Invulnerable Save: Karanak" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>