-
Notifications
You must be signed in to change notification settings - Fork 82
/
Chaos - Slaves to Darkness Data.cat
10848 lines (10842 loc) · 806 KB
/
Chaos - Slaves to Darkness Data.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="e0d8-b631-6934-ee34" name="Chaos - Slaves to Darkness Data" revision="148" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<profileTypes>
<profileType id="56f6-e336-faed-bb00" name="Aura of Chaos Power">
<characteristicTypes>
<characteristicType id="8e00-4c24-48e5-3381" name="Ability"/>
</characteristicTypes>
</profileType>
<profileType id="ac36-1184-21dd-d1f0" name="Eye of the Gods - 2D6 roll">
<characteristicTypes>
<characteristicType id="79c2-2d84-0b83-6bf3" name="Reward"/>
</characteristicTypes>
</profileType>
<profileType id="1d9d-3543-a777-a151" name="Aura of Mutation - D6">
<characteristicTypes>
<characteristicType id="f5fc-dc0c-4c0d-4d1b" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="5e19-9fd5-0cef-27fe" name="Archaon Damage">
<characteristicTypes>
<characteristicType id="513f-7c33-2b23-d08d" name="Move"/>
<characteristicType id="5bc6-6003-6dc4-c692" name="Chimeric Heads"/>
<characteristicType id="f34f-ebad-f121-747c" name="Monstrous Claws"/>
</characteristicTypes>
</profileType>
<profileType id="5c5d-f32c-f118-f1c6" name="Slaughterbrute Damage">
<characteristicTypes>
<characteristicType id="9293-f6a4-a38d-389a" name="Move"/>
<characteristicType id="03cd-9c89-4af4-6f60" name="Razor-tipped Claws"/>
<characteristicType id="5f40-0a64-7438-b26f" name="Mighty Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="8620-df2a-54f8-726a" name="Vortex Beast Damage">
<characteristicTypes>
<characteristicType id="f364-959b-b9d8-5d98" name="Move"/>
<characteristicType id="9e45-cf03-0ffd-9f8f" name="Crushing Claws"/>
<characteristicType id="90bd-e441-aa68-0f3c" name="Betentacled Maw"/>
</characteristicTypes>
</profileType>
<profileType id="d5ed-1416-23a2-db62" name="Warshrine Damage">
<characteristicTypes>
<characteristicType id="b65b-fc94-4bf1-6770" name="Move"/>
<characteristicType id="0390-86fe-f058-bd48" name="Flailing Fists"/>
<characteristicType id="f01f-e32a-ef3e-d76d" name="Protection of the Dark Gods"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="9a1c-e2b4-88c8-61dc" name="CHAOS CHARIOT" hidden="false"/>
<categoryEntry id="34db-a213-41b8-ec7e" name="CHAOS CHOSEN" hidden="false"/>
<categoryEntry id="7898-8596-c8eb-34b2" name="CHAOS KNIGHTS" hidden="false"/>
<categoryEntry id="0b0a-fadd-b917-2285" name="CHAOS LORD" hidden="false"/>
<categoryEntry id="65d0-763b-b7e0-02b0" name="MANTICORE" hidden="false"/>
<categoryEntry id="58ca-ebcf-0efc-0ed7" name="CHAOS MARAUDER HORSEMEN" hidden="false"/>
<categoryEntry id="d8ae-0ff1-7ac3-68b7" name="CHAOS MARAUDERS" hidden="false"/>
<categoryEntry id="e311-3765-39bf-9daf" name="CHAOS SORCERER LORD" hidden="false"/>
<categoryEntry id="0513-d95b-1cf0-71fd" name="CHAOS SPAWN" hidden="false"/>
<categoryEntry id="4d1b-af5b-3b36-6425" name="CHAOS WARRIORS" hidden="false"/>
<categoryEntry id="5f3f-1875-359d-fa1b" name="CHAOS WARSHRINE" hidden="false"/>
<categoryEntry id="84ea-2e37-06de-d81e" name="DAEMON PRINCE" hidden="false"/>
<categoryEntry id="7511-1dd8-d7c0-18e8" name="DARKOATH CHIEFTAIN" hidden="false"/>
<categoryEntry id="e4dd-5cfa-cb1b-cb21" name="DARKOATH WARQUEEN" hidden="false"/>
<categoryEntry id="02b4-a965-7a25-897d" name="EXALTED HERO OF CHAOS" hidden="false"/>
<categoryEntry id="817f-b47c-51ad-578d" name="LORD OF CHAOS" hidden="false"/>
<categoryEntry id="092b-8369-e651-418b" name="CHAOS WAR MAMMOTH" hidden="false"/>
<categoryEntry id="e02b-3e33-44be-0ec2" name="SAYL THE FAITHLESS" hidden="false"/>
<categoryEntry id="592a-2a1e-6dea-722f" name="NIGHTMAW" hidden="false"/>
<categoryEntry id="07b0-4d11-9fb8-bbda" name="MONSTERS OF CHAOS" hidden="false"/>
<categoryEntry id="40a1-75e5-b77f-5924" name="SLAMBO" hidden="false"/>
<categoryEntry id="52ec-fd49-1015-f908" name="CULTISTS" hidden="false"/>
<categoryEntry id="15d7-fe48-39be-718f" name="UNMADE" hidden="false"/>
<categoryEntry id="be85-00fe-2199-9f03" name="SPLINTERED FANG" hidden="false"/>
<categoryEntry id="47d7-36eb-c3e3-92d4" name="UNTAMED BEASTS" hidden="false"/>
<categoryEntry id="c0b6-7edf-f884-56a0" name="CYPHER LORDS" hidden="false"/>
<categoryEntry id="2e28-0732-fe20-bf9e" name="IRON GOLEMS" hidden="false"/>
<categoryEntry id="112f-b8bb-e0bf-8256" name="CORVUS CABAL" hidden="false"/>
<categoryEntry id="07df-ac79-3896-05ab" name="FURIES" hidden="false"/>
<categoryEntry id="602a-3cb3-a56f-9dbc" name="RAPTORYX" hidden="false"/>
<categoryEntry id="defc-5dd5-d209-c623" name="EVERCHOSEN" hidden="false"/>
<categoryEntry id="aaac-2517-1bc0-1cfa" name="HEDONITE" hidden="false"/>
<categoryEntry id="8d3e-fc64-803a-9c71" name="IDOLATOR LORD" hidden="false"/>
<categoryEntry id="52bf-703f-13a8-ae6f" name="SCIONS OF THE FLAME" hidden="false"/>
<categoryEntry id="afd1-921b-48a5-0741" name="Primary: STD" hidden="false"/>
<categoryEntry id="624c-a3f1-ce3c-0169" name="Coalition: STD" hidden="false">
<modifiers>
<modifier type="increment" field="dc8b-7d38-8954-a2c0" value="1">
<repeats>
<repeat field="selections" scope="roster" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="2" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="dc8b-7d38-8954-a2c0" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="180b-3f6e-d7ff-0871" name="VARANGUARD" hidden="false"/>
<categoryEntry id="fb1b-2f1f-4cc1-2677" name="STD Core Battalion" hidden="false"/>
<categoryEntry id="2d4c-494b-bec9-4e38" name="Khorne General" hidden="false"/>
<categoryEntry id="48b2-0867-4477-3f7f" name="Nurgle General" hidden="false"/>
<categoryEntry id="28cf-a8ba-8a7e-b407" name="Slaanesh General" hidden="false"/>
<categoryEntry id="407d-8b9c-e01a-d75b" name="Tzeentch General" hidden="false"/>
<categoryEntry id="ec93-8088-046f-c50c" name="Undivided General" hidden="false"/>
<categoryEntry id="d067-c83e-7292-83fe" name="TARANTULOUS BROOD" hidden="false"/>
<categoryEntry id="52d8-c77b-7343-3f66" name="DARKOATH SAVAGERS" hidden="false"/>
<categoryEntry id="3b65-64b8-8475-1ff7" name="DARKOATH" hidden="false"/>
<categoryEntry id="7bfe-9a5c-5d12-3a18" name="HORNS OF HASHUT" hidden="false"/>
<categoryEntry id="ae25-2d4a-633b-e7d8" name="CHAOS LEGIONNAIRES" hidden="false"/>
<categoryEntry id="9e58-9ea8-6faf-ab31" name="CENTURION MARSHALL" hidden="false"/>
<categoryEntry id="0c55-fcc4-067f-0e1b" name="OGROID THERIDONS" hidden="false"/>
<categoryEntry id="6d69-c749-5733-a710" name="ETERNUS" hidden="false"/>
<categoryEntry id="59c9-6833-1ddb-b990" name="ZARSHIA BITTERSOUL" hidden="false"/>
<categoryEntry id="9990-21ba-46fb-4c73" name="SPHIRANX" hidden="false"/>
<categoryEntry id="e3de-a269-6cfb-15f2" name="MINDSTEALER SPHIRANX" hidden="false"/>
<categoryEntry id="9f59-3677-18a5-902e" name="ARCHAON" hidden="false"/>
<categoryEntry id="8707-160c-0e9c-f3ff" name="FOMOROID" hidden="false"/>
<categoryEntry id="a585-d6f7-48d4-084d" name="FOMOROID CRUSHER" hidden="false"/>
<categoryEntry id="6ccd-3479-b334-8d9e" name="KHAGRA'S RAVAGERS" hidden="false"/>
<categoryEntry id="176a-8f98-a742-0782" name="SPIRE TYRANTS" hidden="false"/>
<categoryEntry id="e09b-c982-6772-8470" name="GOREBEAST CHARIOT" hidden="false"/>
<categoryEntry id="c564-ece1-b927-699e" name="MUTALITH VORTEX BEAST" hidden="false"/>
<categoryEntry id="7496-9446-38f3-b340" name="SLAUGHTERBRUTE" hidden="false"/>
<categoryEntry id="3b5c-2261-3346-d61e" name="THEDDRA SKULL-SCRYER" hidden="false"/>
<categoryEntry id="84bc-7f12-e5f4-d7d9" name="GODSWORN HUNT" hidden="false"/>
<categoryEntry id="1c9b-2a07-1640-3d75" name="Ogroid Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="573c-79be-eeb4-0bc2" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="efee-980d-07bd-6218" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="573c-79be-eeb4-0bc2" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="efee-980d-07bd-6218" name="OGROID MYRMIDON" hidden="false"/>
<categoryEntry id="4d05-e576-bd9f-f48a" name="STD Warscroll Battalion" hidden="false"/>
<categoryEntry id="a20c-a150-5372-1778" name="SARRAKKAR BLACKWING" hidden="false"/>
<categoryEntry id="1290-2b2c-a73f-39b5" name="THE GNARLSPIRIT PACK" hidden="false"/>
<categoryEntry name="DARKOATH WILDERFIEND" id="ee0d-78fd-d9fd-1b90" hidden="false"/>
<categoryEntry name="DARKOATH MARAUDERS" id="b63f-eb6f-32aa-49ff" hidden="false"/>
<categoryEntry name="Darkoath General" id="e950-df57-2d7e-ba9a" hidden="false"/>
<categoryEntry name="DARKOATH FELLRIDERS" id="5992-1bd4-e1e5-a512" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="8bc4-05d4-ff31-086b" name="Chaos Chariots" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="624c-a3f1-ce3c-0169">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6cfb-e3ec-d110-80ae" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="17d3-987c-71d4-ae24" name="Don't Spare the Lash" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, this unit can run and still charge later in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="3b32-6ec8-36a2-dff5" name="Swift Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this unit makes a charge move, you can pick 1 enemy unit within 1" of this unit and roll a number of dice equal to the charge roll for that charge move. For each 5+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="8fef-ae05-9db5-ade9" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit has 2 or more models, 1 model in this unit can be an Exalted Charioteer. Add 1 to the Attacks characteristic of that model’s melee weapons (not including those of its mount).</characteristic>
</characteristics>
</profile>
<profile id="745f-bf5b-ee24-898a" name="Chaos Chariot" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">7</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="aed0-d9d7-d760-e1fe" name="CHAOS CHARIOT" hidden="false" targetId="9a1c-e2b4-88c8-61dc" primary="false"/>
<categoryLink id="936c-7c33-7352-d0d8" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="33fe-a739-b14d-03d7" name="MORTAL" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="ad32-491e-1691-3b48" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="784f-b5e1-beb5-6aa7" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="adb1-ff97-465c-420b" name="MARK OF CHAOS" hidden="false" targetId="4aac-dedf-8e4b-e00a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e9bc-8707-25c0-d9b4" name="Lashing Whip" 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="1af3-de08-47ad-2f02" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db8e-583d-d9c3-7daa" type="max"/>
</constraints>
<profiles>
<profile id="9b8c-3bdf-805d-23ab" name="Lashing Whip" 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">2"</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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="2929-2332-98d0-8b39" name="Trampling Hooves" 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="47ef-051d-5196-b76e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6df2-f347-b64e-2b5f" type="max"/>
</constraints>
<profiles>
<profile id="51ed-2526-97f0-69ca" name="Trampling Hooves" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</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"/>
</costs>
</selectionEntry>
<selectionEntry id="e969-6035-df98-cff5" name="1 Chaos Chariot" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="3 Chaos Chariots">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="2 Chaos Chariots">
<conditions>
<condition field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a02-0d44-722d-5a5d" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ea3-19cc-6c22-db46" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="e964-6dd6-9fac-f38f" name="Passenger weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1eca-6836-25f7-6e02" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="470e-cda3-63cb-eef5" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="7a48-fa14-91c1-fe45" name="Chaos Greatblade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d6c7-50d4-9c98-cb27" name="Chaos Greatblade" 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">2"</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2e8c-5938-581c-31b0" name="Chaos War-flail" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1fda-27a7-e592-41f6" name="Chaos War-flail" 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">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</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">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0816-9efb-9fe1-7d2c" name="Marks of Chaos" hidden="false" collective="false" import="true" targetId="a8e3-b2cd-762d-14e3" type="selectionEntryGroup"/>
<entryLink id="77c5-3650-3904-01a5" 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"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</entryLink>
<entryLink id="dac0-3e4a-ea0e-6dbe" name="Battalions" hidden="false" collective="false" import="true" targetId="f862-da0a-22bb-e3c1" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="783c-899b-9c19-1423" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="1513-fe00-85d9-bfe5" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1513-fe00-85d9-bfe5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5dd5-4ae6-674b-fc66" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="1605-c1ef-8c06-f1e7" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="1944-58a6-5662-40ea">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05ee-bdcc-fa3f-afe3" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b0c-e0b9-a155-01cb" type="min"/>
</constraints>
<entryLinks>
<entryLink id="1944-58a6-5662-40ea" name="Allegiance: Slaves to Darkness" hidden="false" collective="false" import="true" targetId="812a-a8b3-7158-4adb" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7117-c074-dd10-883d" name="Chaos Chosen" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="624c-a3f1-ce3c-0169">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6cfb-e3ec-d110-80ae" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5b93-77a7-e224-34c9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5b93-77a7-e224-34c9" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="605f-9d5f-715e-bbbe" name="Chaos Chosen" 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">3</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="bd6d-af16-ec94-11f5" name="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 an Exalted Champion. Add 1 to the Attacks characteristic of that model’s Soul Splitter</characteristic>
</characteristics>
</profile>
<profile id="27ef-3fb3-ba8a-b9ee" name="Heralds of Ruination" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, in the combat phase, after this unit has fought for the first time in that phase, you can say that they will unleash ruin. If you do so, this unit can fight for a second time in that phase. The strike-last effect applies to this unit when they fight for the second time.</characteristic>
</characteristics>
</profile>
<profile id="a773-1896-8c15-4117" name="The Rewards of Chaos" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is part of a Slaves to Darkness army, after deployment, you can roll once of the Eye of the Gods table for this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e1be-84a3-eec6-07e1" name="CHAOS CHOSEN" hidden="false" targetId="34db-a213-41b8-ec7e" primary="false"/>
<categoryLink id="7466-ac4e-8f79-861a" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="336b-269b-0aa2-7e87" name="MORTAL" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="f4ad-6272-a4e0-c55e" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="a230-f18a-deb5-954b" name="MARK OF CHAOS" hidden="false" targetId="4aac-dedf-8e4b-e00a" primary="false"/>
<categoryLink id="670b-581b-7db9-8f6b" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d72c-f132-51f1-d944" name="Soul Splitter" 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="37a4-870e-788d-c3f5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00f5-c625-1a8e-4b15" type="max"/>
</constraints>
<profiles>
<profile id="8035-ed75-06f4-66cb" name="Soul Splitter" 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">2"</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">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="090c-2a9a-6690-13e6" name="Soul Splitter" 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 Soul Splitter 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"/>
</costs>
</selectionEntry>
<selectionEntry id="2601-5c92-dac9-1b68" name="5 Chaos Chosen" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="10 Chaos Chosen">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="15 Chaos Chosen">
<conditions>
<condition field="selections" scope="parent" value="2" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="80d6-690d-707e-8058" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e9a-5e76-8a61-50c9" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="230"/>
</costs>
</selectionEntry>
<selectionEntry id="4adb-e84d-8026-9635" name="Musician" 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="9aaf-5480-bfb4-7bd9" type="max"/>
</constraints>
<profiles>
<profile id="d09d-c201-3953-7086" name="Musician" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Skull Drummer. Add 1 to charge rolls for this unit while it includes any Skull Drummers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c005-241b-fe89-906b" name="Standard Bearer" 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="c6e4-b481-6c6f-ef4e" type="max"/>
</constraints>
<profiles>
<profile id="0262-ac0d-b309-56fb" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be an Icon Bearer. Add 1 to the Bravery characteristic of this unit if it includes any Icon Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1b0e-a97c-b19b-8b44" name="Marks of Chaos" hidden="false" collective="false" import="true" targetId="a8e3-b2cd-762d-14e3" type="selectionEntryGroup"/>
<entryLink id="c316-e11a-5174-d4e0" 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">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5b93-77a7-e224-34c9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="230"/>
</costs>
</entryLink>
<entryLink id="2e9b-937c-6f5f-0edd" name="Battalions" hidden="false" collective="false" import="true" targetId="f862-da0a-22bb-e3c1" type="selectionEntryGroup"/>
<entryLink id="1a0d-89f0-6a7a-3100" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="31c1-bbc0-cd12-02b8" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="44d4-5116-6301-5c92" name="Gorebeast Chariots" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="624c-a3f1-ce3c-0169">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6cfb-e3ec-d110-80ae" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="7706-4714-c9b0-a4d8" name="Unstoppable Momentum" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of your combat phase, if this unit made a charge move this turn, it can make a normal move and can do so even if it is within 3" of any enemy units. If it does so, it can pass across other models with a Wounds characteristic of 4 or less in the same manner as a model that can fly. In addition, after each such move, you can pick 1 enemy unit it passed across and roll a dice for each model in this unit. For each 3+, that enemy unit suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="f797-a33f-ea01-c627" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit has 2 or more models, 1 model in this unit can be an Exalted Charioteer. Add 1 to the Attacks characteristic of that model's melee weapons (not including its mount).</characteristic>
</characteristics>
</profile>
<profile id="e1bb-207a-008a-9f43" name="Chaos Gorebeast Chariot" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">9"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ee2d-8cab-9128-cf35" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="23ae-bf56-2285-0fb4" name="MORTAL" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="a7c5-6fa5-7349-f193" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="a85c-ffb0-34bd-34c3" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="73a1-69fb-173a-33ae" name="GOREBEAST CHARIOT" hidden="false" targetId="e09b-c982-6772-8470" primary="false"/>
<categoryLink id="397d-92d9-ec7d-4fec" name="MARK OF CHAOS" hidden="false" targetId="4aac-dedf-8e4b-e00a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="62ca-c787-cbf7-6cd2" name="1 Gorebeast Chariot" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="2 Gorebeast Chariots">
<conditions>
<condition field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4919-f4f7-b3f1-f174" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="38ea-3ff9-411e-1760" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</selectionEntry>
<selectionEntry id="a588-bb2b-b31f-946b" name="Crushing Fists" 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="149f-7421-e1d4-47fc" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="15e4-3a00-38c2-509c" type="max"/>
</constraints>
<profiles>
<profile id="2884-d089-62be-e5b8" name="Crushing Fists" 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">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a118-4eb5-2931-45b2" name="Lashing Whip" 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="a06d-5eb3-eb83-dcda" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c42e-71b4-fe05-de5b" type="max"/>
</constraints>
<profiles>
<profile id="7c9d-4e7e-8cab-f0af" name="Lashing Whip" 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">2"</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">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"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="9041-12cd-e909-527c" name="Passenger weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e624-46f5-94ba-363f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eaf4-cdb8-c5d3-b22f" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="eb9c-a990-7a74-e982" name="Chaos Greatblade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="52b1-f995-9f3a-5bc9" name="Chaos Greatblade" 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">2"</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7bc1-7c59-02bc-1a0a" name="Chaos War-flail" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9276-f373-4212-fe8d" name="Chaos War-flail" 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">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</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">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0e64-cfc8-f8e8-a942" name="Marks of Chaos" hidden="false" collective="false" import="true" targetId="a8e3-b2cd-762d-14e3" type="selectionEntryGroup"/>
<entryLink id="e446-020a-4a46-b38f" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</entryLink>
<entryLink id="5974-6710-79c9-690c" name="Battalions" hidden="false" collective="false" import="true" targetId="f862-da0a-22bb-e3c1" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e432-9436-085d-4c93" name="Chaos Knights" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="624c-a3f1-ce3c-0169">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6cfb-e3ec-d110-80ae" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="6a19-9bad-60d7-d5c1" name="Chaos Knights" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">3</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="398e-bab9-0306-3002" name="Riders of Doom" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When a model in this unit make an attack with its Cursed Lance, instead of a using the Range characteristic for that attack, you can target enemy units that are within 1/2" of another model from this unit that is itself within 1/2" of the attacking model.</characteristic>
</characteristics>
</profile>
<profile id="fcca-163e-fc65-a267" name="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 Doom Knight. Add 1 to the Attacks characteristic that model’s Cursed Lance. A Doom Knight can be armed with a Cursed Flail or Ensorcelled Warhammer instead of a Cursed Lance.</characteristic>
</characteristics>
</profile>
<profile id="e612-772d-e2af-ee22" name="Impaling Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Damage characteristic and improve the Rend characteristic of this unit’s Cursed Lances by 1 if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c18d-f77f-8355-e70c" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="9ee1-5d2a-5e09-0bce" name="MORTAL" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="f6dc-3e2f-41a9-44ea" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="1d84-171f-7b62-d15d" name="CHAOS KNIGHTS" hidden="false" targetId="7898-8596-c8eb-34b2" primary="false"/>
<categoryLink id="306b-deb2-dfe5-de8d" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="9e51-9751-c230-f0e5" name="MARK OF CHAOS" hidden="false" targetId="4aac-dedf-8e4b-e00a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a94a-894a-9a26-62dc" name="Chaos Runeshields" 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="e9c2-6533-5dd1-86bf" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c21f-7931-6a7e-0186" type="max"/>
</constraints>
<profiles>
<profile id="21f9-25cd-3550-e752" name="Chaos Runeshield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+ against mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="60b0-c815-e72b-9793" name="Standard Bearer" 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="4fb8-2b71-f3f0-d04b" type="max"/>
</constraints>
<profiles>
<profile id="e234-e346-0f74-154d" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Standard Bearer. Add 1 to the Bravery characteristic of this unit while it includes any Standard Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dcea-2f0c-43b8-7b8b" name="Musician" 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="a36f-b516-3954-2ca9" type="max"/>
</constraints>
<profiles>
<profile id="50ba-bfe7-0c3e-c6c7" name="Musician" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Hornblower. When you make a charge roll for this unit, if it includes any Hornblowers, you can change one of the dice in that roll to a 4.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5e0-d5ce-ec24-df29" name="Trampling Hooves" 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="d164-c09d-8c55-2305" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31b9-a310-c4f1-8e54" type="max"/>
</constraints>
<profiles>
<profile id="ae0f-75bd-82f3-22c3" name="Trampling Hooves" 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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="1939-537b-18b0-f4a9" name="5 Chaos Knights" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="10 Chaos Knights">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="15 Chaos Knights">
<conditions>
<condition field="selections" scope="parent" value="2" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b08-7989-837d-8238" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db75-b6fc-366b-450a" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</selectionEntry>
<selectionEntry id="d5eb-8968-5ea6-4f7d" name="Cursed Lance" 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="cdc7-2fa4-f06a-5130" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d42a-5e8f-c887-7f51" type="max"/>
</constraints>
<profiles>
<profile id="d8af-d894-5ce1-2705" name="Cursed Lance" 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">2"</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="b7e4-dda4-8964-e222" name="Champion Weapon Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c960-6ab3-b205-c9b6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="939e-9b47-a917-77c1" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f28c-eb44-532e-d5ac" name="Ensorcelled Warhammer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4216-8849-32eb-68e6" name="Ensorcelled Warhammer" 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">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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="df65-9460-6afb-14bc" name="Cursed Lance" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="036d-6620-5728-c2df" name="Cursed Lance (Doom Knight)" 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">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</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>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bcbe-cf30-2b7c-790b" name="Cursed Flail" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a828-4a6b-9dca-4c49" name="Cursed Flail" 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">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</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">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="06e1-21aa-775d-5423" name="Marks of Chaos" hidden="false" collective="false" import="true" targetId="a8e3-b2cd-762d-14e3" type="selectionEntryGroup"/>
<entryLink id="b8b1-9099-d9a4-4724" 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"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink id="93f0-48ba-0047-898d" name="Battalions" hidden="false" collective="false" import="true" targetId="f862-da0a-22bb-e3c1" type="selectionEntryGroup"/>
<entryLink id="883e-b6ca-9585-0de8" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="31c1-bbc0-cd12-02b8" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ae9b-b9fe-18ba-2f9a" name="Chaos Lord on Daemonic Mount" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="624c-a3f1-ce3c-0169">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6cfb-e3ec-d110-80ae" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="4f53-8230-2f02-9639">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6298-ee44-c8f2-522e" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6298-ee44-c8f2-522e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="14ec-7920-9c2c-ec1d" name="Chaos Lord on Daemonic Mount" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="147c-d24d-83b8-9a68" name="The Knights of Chaos" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The strike-first effect applies to this unit if it made a charge move in the same turn. In addition, if this unit has made a charge in the same turn, after this unit has fought in the combat phase for the first time, you can pick 1 friendly CHAOS KNIGHT, CHAOS CHARIOT or GOREBEAST CHARIOT unit wholly within 12" of this unit and that has not yet fought in that phase. That unit can fight immediately.</characteristic>
</characteristics>
</profile>
<profile id="9257-c1d5-7c68-2661" name="Chaos Runeshield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+ against mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0df0-565c-4ef3-e570" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="b36c-e71d-8d39-37ca" name="MORTAL" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="fec7-1845-e5f7-99fc" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="41f3-0fd3-cba9-05d8" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="2345-ce22-eb9b-d8ce" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="384e-b049-b9e9-0bd8" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="9cc3-19fa-8175-221a" name="EYE OF THE GODS" hidden="false" targetId="e784-1dc1-6543-1186" primary="false"/>
<categoryLink id="0293-84fe-feac-8c7c" name="CHAOS LORD" hidden="false" targetId="0b0a-fadd-b917-2285" primary="false"/>
<categoryLink id="acf2-824b-c5c0-dfd2" name="MARK OF CHAOS" hidden="false" targetId="4aac-dedf-8e4b-e00a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7cb3-45b2-6165-c0cd" name="Mighty Hooves" 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="c18b-cf0c-8fc4-4d55" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ebc-6701-7c57-0c03" type="max"/>
</constraints>
<profiles>
<profile id="c02c-5b77-c044-829a" name="Mighty Hooves" 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">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"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="6b6e-249b-f8e6-35d4" name="Weapon Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="105b-a7fc-9188-845d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ab20-8b4d-66fc-40c4" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="12ed-7ff3-47f5-34a3" name="Cursed Warhammer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="629a-df46-c406-8f1d" name="Cursed Warhammer" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>