forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Slaanesh.cat
1831 lines (1829 loc) · 135 KB
/
Chaos - Slaanesh.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="357e-20c6-ad3a-d55d" name="Chaos - Slaanesh" revision="38" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="23" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="357e-20c6-pubN65537" name="Grand Alliance Chaos"/>
<publication id="357e-20c6-pubN71272" name="Grand Alliance: Chaos - Official Errata, December 2018"/>
<publication id="357e-20c6-pubN76312" name="Forgeworld: Monstrous Arcanum"/>
</publications>
<profileTypes>
<profileType id="babb-0e0d-260c-4043" name="Keeper of Secrets Wounds">
<characteristicTypes>
<characteristicType id="be86-1c25-4eab-e089" name="Move"/>
<characteristicType id="15da-4bda-eba6-27f6" name="Elegant Greatblade"/>
<characteristicType id="b00a-0d16-d383-2e6f" name="Impaling Claws"/>
</characteristicTypes>
</profileType>
<profileType id="28c3-3ac8-4042-0357" name="Daemon of Slaanesh Wounds">
<characteristicTypes>
<characteristicType id="4489-883d-d8ae-ea41" name="Move"/>
<characteristicType id="5760-9aa0-e823-0982" name="Razor-sharp Claws"/>
<characteristicType id="6cf9-1351-d323-ad31" name="Elegant Greatblade"/>
</characteristicTypes>
</profileType>
<profileType id="fd95-9188-cba6-69eb" name="Shalaxi Helbane Wounds">
<characteristicTypes>
<characteristicType id="3e41-462c-325c-675e" name="Move"/>
<characteristicType id="09f9-fc6b-456b-e781" name="Soulpiercer"/>
<characteristicType id="08b0-766e-acd6-c1d2" name="Impaling Claws"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="7625-b9c9-f5a2-ca3b" name="DAEMONETTE" hidden="false"/>
<categoryEntry id="2e85-3415-8c74-7722" name="SLAANESH HELLFLAYERS" hidden="false"/>
<categoryEntry id="14f5-b155-3e7b-5c70" name="EXALTED CHARIOTS" hidden="false"/>
<categoryEntry id="4da4-52bb-9817-e1f4" name="FIENDS" hidden="false"/>
<categoryEntry id="055f-d5f3-9951-9cf0" name="HELLSTRIDERS OF SLAANESH" hidden="false"/>
<categoryEntry id="144c-dbf9-5fe7-315d" name="KEEPER OF SECRETS" hidden="false"/>
<categoryEntry id="1646-eb72-b92d-95c3" name="LORD OF SLAANESH" hidden="false"/>
<categoryEntry id="dba8-bc95-d721-2466" name="SEEKER CHARIOT" hidden="false"/>
<categoryEntry id="4397-8773-9a64-e2c1" name="THE MASQUE" hidden="false"/>
<categoryEntry id="e064-00bd-4d84-e362" name="SEEKERS" hidden="false"/>
<categoryEntry id="0cd6-d99c-27f8-70a8" name="HERALD OF SLAANESH" hidden="false"/>
<categoryEntry id="8766-e5a7-64a1-7895" name="CHAOS LORD OF SLAANESH" hidden="false"/>
<categoryEntry id="46b5-4edc-2b39-cf9b" name="EXALTED GREATER DAEMON OF SLAANESH" hidden="false"/>
<categoryEntry id="2ae4-b390-2fc5-f5a6" name="INFERNAL ENRAPTURESS" hidden="false"/>
<categoryEntry id="e0f7-4620-9328-d15a" name="HEDONITE" hidden="false"/>
<categoryEntry id="5e1b-adc3-220a-51ea" name="BLADEBRINGER" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="765c-f319-569c-e944" name="Viceleader" hidden="false" collective="false" import="true" targetId="5b49-b9df-5a82-6598" type="selectionEntry">
<categoryLinks>
<categoryLink id="5a6e-c0f5-ffad-661b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c299-135c-68cd-8835" name="The Masque" hidden="false" collective="false" import="true" targetId="6ff2-6eb8-3dcd-bd8e" type="selectionEntry">
<categoryLinks>
<categoryLink id="a188-fbcd-083f-d904" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a7cc-e76d-99c6-b3d7" name="Keeper of Secrets" hidden="false" collective="false" import="true" targetId="43bc-62b2-ba5c-de2f" type="selectionEntry">
<categoryLinks>
<categoryLink id="a0c4-40bc-5d2e-6854" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="37a1-f217-40f0-a38c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ce38-55d6-f8ab-49e5" name="Exalted Chariot" hidden="false" collective="false" import="true" targetId="4b29-9ec1-b210-0d53" type="selectionEntry">
<categoryLinks>
<categoryLink id="f78d-b683-1bc7-29ec" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="46b5-0574-e52c-66be" name="Fiends" hidden="false" collective="false" import="true" targetId="c90b-f419-dd3d-ed81" type="selectionEntry">
<categoryLinks>
<categoryLink id="2ffa-464a-9ee5-a1de" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="268f-bdc5-2243-f832" name="Hellflayer" hidden="false" collective="false" import="true" targetId="8447-1b5f-998c-2af9" type="selectionEntry">
<categoryLinks>
<categoryLink id="a321-1daf-9c3d-24aa" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e8b8-c008-0e6b-388b" name="Seekers" hidden="false" collective="false" import="true" targetId="85d4-3780-74c0-74c8" type="selectionEntry">
<categoryLinks>
<categoryLink id="08c3-0f61-f210-f76c" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63ac-ff00-0953-34db" name="Allegiance" hidden="false" collective="false" import="true" targetId="94c0-356a-842c-e0e4" type="selectionEntry">
<categoryLinks>
<categoryLink id="acf7-9582-8921-55cc" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8010-bce3-564e-6993" name="Hellstriders with Hellscourges" hidden="false" collective="false" import="true" targetId="3dce-5daf-85d8-f891" type="selectionEntry"/>
<entryLink id="4f3f-4076-4fec-0903" name="Seeker Chariots" hidden="false" collective="false" import="true" targetId="f229-e93f-dadd-f361" type="selectionEntry"/>
<entryLink id="4966-cf1e-8aef-5bfa" name="Daemonettes" hidden="false" collective="false" import="true" targetId="01a7-7785-07b8-3834" type="selectionEntry">
<categoryLinks>
<categoryLink id="a0e0-62dd-6e4b-2552" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f31d-b76e-c0f8-df74" name="Bladebringer on Exalted Seeker Chariot" hidden="false" collective="false" import="true" targetId="e697-3c08-3432-f9a4" type="selectionEntry">
<categoryLinks>
<categoryLink id="00c1-8cce-45b8-f5d0" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e2ed-50a7-c7f2-1ba6" name="Bladebringer on Seeker Chariot" hidden="false" collective="false" import="true" targetId="8a1e-2281-5a62-3935" type="selectionEntry">
<categoryLinks>
<categoryLink id="8b21-be32-d228-c414" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7917-7629-08ea-344f" name="Exalted Greater Daemon of Slaanesh" hidden="false" collective="false" import="true" targetId="f5d3-d6a3-42af-12af" type="selectionEntry">
<categoryLinks>
<categoryLink id="ac33-37cc-57c8-5123" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2c33-986b-cc49-6644" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bc8e-52d4-6104-8ae5" name="Infernal Enrapturess" hidden="false" collective="false" import="true" targetId="9f14-c970-b1fa-0cc0" type="selectionEntry">
<categoryLinks>
<categoryLink id="21ac-b220-96c4-eee1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3625-4796-6e5c-619d" name="Battalion: The Choir of Torment" hidden="false" collective="false" import="true" targetId="4b98-6c46-bbea-761f" type="selectionEntry">
<categoryLinks>
<categoryLink id="9995-850c-d2e0-f543" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="260c-0e09-0033-3feb" name="Hellstriders with Claw-spears" hidden="false" collective="false" import="true" targetId="a1d4-33d6-3cea-eb56" type="selectionEntry"/>
<entryLink id="d1c3-44d9-83d4-2aa7" name="The Contorted Epitome" hidden="false" collective="false" import="true" targetId="5d36-f3de-11c5-d9aa" type="selectionEntry">
<categoryLinks>
<categoryLink id="9626-a05b-c0fc-4733" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bc75-86c5-70f5-4c0a" name="Syll'esske the Vengeful Allegiance" hidden="false" collective="false" import="true" targetId="eb48-9244-b6b0-c83c" type="selectionEntry">
<categoryLinks>
<categoryLink id="74f3-be0d-73db-ad8f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5c16-d3ab-bbbf-060d" name="Bladebringer on Hellflayer" hidden="false" collective="false" import="true" targetId="2a25-e953-2ad1-f80b" type="selectionEntry">
<categoryLinks>
<categoryLink id="c4d4-6a16-22da-c617" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e319-ca5b-0397-63ce" name="Shalaxi Helbane" hidden="false" collective="false" import="true" targetId="1b2c-4518-ea20-684e" type="selectionEntry">
<categoryLinks>
<categoryLink id="7731-6acb-4504-fa81" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="5c15-290f-48cd-2597" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7924-6afc-c924-e09a" name="Endless Spell: Wheels of Excruciation" hidden="false" collective="false" import="true" targetId="37c1-dc08-74bd-575f" type="selectionEntry">
<categoryLinks>
<categoryLink id="f1ba-55ee-6ffc-f52d" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b460-3889-3962-ef42" name="Battalion: Depraved Drove" hidden="false" collective="false" import="true" targetId="2bdd-7375-7d96-1766" type="selectionEntry">
<categoryLinks>
<categoryLink id="c341-9066-1681-161c" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de53-1865-0dc5-593d" name="Battalion: Epicurean Raiders" hidden="false" collective="false" import="true" targetId="f2ef-d09b-02a8-274d" type="selectionEntry">
<categoryLinks>
<categoryLink id="4f6c-d7a5-31d7-6ec8" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f274-6e1f-5d6c-6e60" name="Battalion: Hedonite Host" hidden="false" collective="false" import="true" targetId="f8f1-43e1-68e8-192c" type="selectionEntry">
<categoryLinks>
<categoryLink id="2ef1-540b-64b1-8e0f" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a42c-6306-9933-2145" name="Battalion: Seeker Cavalcade" hidden="false" collective="false" import="true" targetId="15dd-f0d9-d80d-4725" type="selectionEntry">
<categoryLinks>
<categoryLink id="74c1-5922-6735-9152" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f5fc-2b0b-17f4-7208" name="Battalion: Supreme Sybarites" hidden="false" collective="false" import="true" targetId="f28e-fd5f-1b6a-1fa0" type="selectionEntry">
<categoryLinks>
<categoryLink id="bb63-6bb0-66ee-5de0" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="237a-568d-714f-6444" name="Chaos Chariots" hidden="false" collective="false" import="true" targetId="8bc4-05d4-ff31-086b" type="selectionEntry">
<categoryLinks>
<categoryLink id="92c3-5da4-5001-bfa3" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6c32-ab4c-9801-b804" name="Lord of Chaos" hidden="false" collective="false" import="true" targetId="1ccb-5743-64df-f027" type="selectionEntry">
<categoryLinks>
<categoryLink id="4649-a507-0e50-c5fe" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8137-dd40-2ece-79f5" name="Exalted Hero of Chaos" hidden="false" collective="false" import="true" targetId="69e5-b08e-9813-f378" type="selectionEntry">
<categoryLinks>
<categoryLink id="173a-e0af-2490-5fe8" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9561-27a2-8008-19d0" name="Chaos Warshrine" hidden="false" collective="false" import="true" targetId="89b1-9d63-4211-96da" type="selectionEntry">
<categoryLinks>
<categoryLink id="a202-0d14-28fd-8563" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="477c-cc99-a919-c662" name="Chaos Warriors" hidden="false" collective="false" import="true" targetId="22ed-600b-a62c-7ebe" type="selectionEntry">
<categoryLinks>
<categoryLink id="4499-064d-2a5e-b5a8" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7d0e-1052-9cac-a6b0" name="Chaos War Mammoth" hidden="false" collective="false" import="true" targetId="23e4-3184-435d-9681" type="selectionEntry">
<categoryLinks>
<categoryLink id="4d7e-a356-3826-86d3" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cb5b-5a8b-973c-2824" name="Chaos Spawn" hidden="false" collective="false" import="true" targetId="494c-81bb-bb30-3d33" type="selectionEntry">
<categoryLinks>
<categoryLink id="2c98-3c04-733f-6f84" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3bce-c7cf-833f-01b4" name="Chaos Sorcerer Lord on Manticore" hidden="false" collective="false" import="true" targetId="c132-1271-a655-1e16" type="selectionEntry">
<categoryLinks>
<categoryLink id="5591-1747-077f-9095" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="0ffb-99dd-932e-bc70" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d6a4-4518-b476-4b5a" name="Chaos Sorcerer Lord" hidden="false" collective="false" import="true" targetId="1080-2582-0880-dd78" type="selectionEntry">
<categoryLinks>
<categoryLink id="a8d9-a50f-0912-89ff" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6d36-23c1-56ce-9eba" name="Chaos Marauders" hidden="false" collective="false" import="true" targetId="08c1-05a1-4828-6983" type="selectionEntry">
<categoryLinks>
<categoryLink id="3be8-ec75-97bb-b374" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f337-7550-adff-d0e1" name="Chaos Marauder Horsemen" hidden="false" collective="false" import="true" targetId="ce01-c0f8-2c4b-fddc" type="selectionEntry">
<categoryLinks>
<categoryLink id="d04e-6e82-7099-6658" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e1cb-c943-428d-90e0" name="Chaos Lord on Manticore" hidden="false" collective="false" import="true" targetId="3303-cef0-2064-a5f5" type="selectionEntry">
<categoryLinks>
<categoryLink id="f575-ac20-76ee-22e8" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="0510-5905-03ac-74b7" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c32a-beab-6961-ccf6" name="Chaos Lord on Daemonic Mount" hidden="false" collective="false" import="true" targetId="ae9b-b9fe-18ba-2f9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="503f-e81e-589e-147a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bba0-cc20-0359-3164" name="Chaos Knights" hidden="false" collective="false" import="true" targetId="e432-9436-085d-4c93" type="selectionEntry">
<categoryLinks>
<categoryLink id="bc7f-b33f-ef2f-a776" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="95f7-035b-3fe4-2096" name="Chaos Gorebeast Chariots" hidden="false" collective="false" import="true" targetId="44d4-5116-6301-5c92" type="selectionEntry">
<categoryLinks>
<categoryLink id="402d-fb83-8618-f49f" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8fca-f25c-eda9-db71" name="Chaos Chosen" hidden="false" collective="false" import="true" targetId="7117-c074-dd10-883d" type="selectionEntry">
<categoryLinks>
<categoryLink id="3760-4590-4f45-9ba3" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8d5f-05c5-39b9-8ddc" name="Fane of Slaanesh" hidden="false" collective="false" import="true" targetId="cba8-a2de-6bbf-6dcf" type="selectionEntry">
<categoryLinks>
<categoryLink id="98a1-ccde-2a44-3e82" name="SCENERY" hidden="false" targetId="8910-7c1d-6c74-37ff" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b1a3-8a61-7182-67ed" name="Endless Spell: Mesmerising Mirror" hidden="false" collective="false" import="true" targetId="c88a-81ae-8f7b-6bcc" type="selectionEntry">
<categoryLinks>
<categoryLink id="bca7-191f-d06c-3882" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e950-2309-b2bf-0685" name="Endless Spell: Dreadful Visage" hidden="false" collective="false" import="true" targetId="a2b5-a614-1174-0ff6" type="selectionEntry">
<categoryLinks>
<categoryLink id="6c51-4237-591b-9930" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4323-125a-e48d-d0fa" name="Slaves to Darkness Daemon Prince" hidden="false" collective="false" import="true" targetId="b2a4-c572-6ab2-6b4e" type="selectionEntry"/>
<entryLink id="16a0-5845-30a2-916e" name="Soul Grinder" hidden="false" collective="false" import="true" targetId="8713-fb95-f605-7be2" type="selectionEntry">
<categoryLinks>
<categoryLink id="a73d-eaab-d0d8-6dc9" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3171-23b1-d95e-287a" name="Battalion: Daemonsteel Contingent" hidden="false" collective="false" import="true" targetId="eff3-af2c-a1fd-033b" type="selectionEntry"/>
<entryLink id="c546-92e1-7887-64ed" name="Battalion: Devout Supplicants" hidden="false" collective="false" import="true" targetId="7b7d-3356-7c77-8dc1" type="selectionEntry"/>
<entryLink id="bbf4-b0eb-69e5-85b9" name="Battalion: The Vengeful Alliance" hidden="false" collective="false" import="true" targetId="ea45-533d-696c-6e01" type="selectionEntry"/>
<entryLink id="9c1e-a82e-ceed-e92d" name="Battalion: Vengeful Throng" hidden="false" collective="false" import="true" targetId="7171-f00e-52d9-ab7f" type="selectionEntry"/>
<entryLink id="46bd-c9f8-0f98-baae" name="Chaos Lord on Karkadrak" hidden="false" collective="false" import="true" targetId="e6c9-c984-cd6f-33e3" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e50-8114-b34d-fb31" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="94c0-356a-842c-e0e4" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3da-0c6e-1c66-8897" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e9c3-daf2-d62a-a6b1" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="745e-7351-9c45-e4df" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="1cf8-db33-e53d-62ea">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f00-43ed-32f8-eb82" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08fb-01e0-439d-237d" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="e018-797a-00de-0de2" name="Chaos" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="d6cb-3460-8767-451b" name="Unbridled Malice" hidden="false" targetId="6884-967e-0150-274e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1cf8-db33-e53d-62ea" name="Slaanesh" hidden="false" collective="false" import="true" targetId="d7d9-b723-6fdb-51cb" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e39-0b25-0e5e-8605" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="b890-998d-cad1-b9a1" value="3.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e211-0580-4d0d-40eb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2858-b8b6-aa76-ec4f" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b890-998d-cad1-b9a1" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="eac0-8f0b-941b-8f87" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4b98-6c46-bbea-761f" name="Battalion: The Choir of Torment" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="597b-61d4-b5ca-7b78" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="ee98-f688-9e18-fb5d" name="Fanatical Guardians" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Attacks characteristic of melee weapons used by units from this battalion while the unit is wholly within 12" of the INFERNAL ENRAPTURESS from the same battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="1504-f616-8962-e990" name="The Choir of Torment" hidden="false">
<description>The Choir of Torments are from one of the Pretenders hosts of Slaanesh. If they are part of a Slaanesh army, that army must use the Pretenders battle trait.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="d984-c94b-e864-f9db" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="cf44-3980-9dcb-f3db" name="The Choir of Torment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43a0-e8d5-947c-2956" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c1b-c411-f0f0-0660" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="259e-d22a-a586-be25" name="1 Infernal Enrapturess" hidden="false" collective="false" import="true" defaultSelectionEntryId="804b-7f5b-6409-43a3">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17f0-5a14-3853-40dd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ce5-cc96-6da1-5bea" type="max"/>
</constraints>
<entryLinks>
<entryLink id="804b-7f5b-6409-43a3" name="Infernal Enrapturess" hidden="false" collective="false" import="true" targetId="9f14-c970-b1fa-0cc0" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b77-cb6b-a0b4-843e" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="d652-aa81-82bd-b741" name="1 Unit of Daemonettes" hidden="false" collective="false" import="true" defaultSelectionEntryId="d6db-a338-44f1-fb54">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="836c-fb67-57a0-a37d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08e8-7c0a-6fb8-afb1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d6db-a338-44f1-fb54" name="Daemonettes" hidden="false" collective="false" import="true" targetId="01a7-7785-07b8-3834" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="54ac-d06f-88b4-b0ee" name="1 Unit of Fiends" hidden="false" collective="false" import="true" defaultSelectionEntryId="72a7-6114-3f1d-9479">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67f8-c366-97a0-204c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f3ce-64e4-8010-2640" type="max"/>
</constraints>
<entryLinks>
<entryLink id="72a7-6114-3f1d-9479" name="Fiends" hidden="false" collective="false" import="true" targetId="c90b-f419-dd3d-ed81" type="selectionEntry">
<categoryLinks>
<categoryLink id="4993-df84-c5b9-4c62" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6a54-24ec-36ee-92b5" name="1 Unit of Seekers" hidden="false" collective="false" import="true" defaultSelectionEntryId="9d26-8498-5561-3332">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c81-1d6b-3178-0b6e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6d6-0990-d4c4-cc0f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9d26-8498-5561-3332" name="Seekers" hidden="false" collective="false" import="true" targetId="85d4-3780-74c0-74c8" type="selectionEntry">
<categoryLinks>
<categoryLink id="b78b-22e7-d30e-4af1" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f2ef-d09b-02a8-274d" name="Battalion: Epicurean Raiders" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="66cf-c49b-7c9f-6e75" name="Perfect Destroyers" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If the unmodified wound roll for an attack made with a melee weapon by a DAEMONETTE from this battalion is 6, that attack inflicts 1 mortal wound on the target and the attack sequence ends (do not make a save roll).</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="f052-bc85-3b91-b9b2" name="2-6 Units of Daemonettes" hidden="false" collective="false" import="true" defaultSelectionEntryId="e97c-11e3-b819-33f4">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2132-02fd-2b55-49a3" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50dc-a82b-3442-1cf6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e97c-11e3-b819-33f4" name="Daemonettes" hidden="false" collective="false" import="true" targetId="01a7-7785-07b8-3834" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="eab2-011f-7bbe-b227" name="0-4 Hellflayers, Exalted Chariots, Fiends" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b80b-d42c-f0e0-ed1b" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe71-e72c-1c03-2f73" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7e69-3fc4-444b-f097" name="Hellflayer" hidden="false" collective="false" import="true" targetId="8447-1b5f-998c-2af9" type="selectionEntry">
<categoryLinks>
<categoryLink id="a4e4-39e3-06a6-a5d5" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0e87-f70b-8f32-d0c4" name="Exalted Chariot" hidden="false" collective="false" import="true" targetId="4b29-9ec1-b210-0d53" type="selectionEntry"/>
<entryLink id="4a09-28b5-0b2a-90cf" name="Fiends" hidden="false" collective="false" import="true" targetId="c90b-f419-dd3d-ed81" type="selectionEntry">
<categoryLinks>
<categoryLink id="1658-3a13-e34d-e842" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="180.0"/>
</costs>
</selectionEntry>
<selectionEntry id="15dd-f0d9-d80d-4725" name="Battalion: Seeker Cavalcade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d667-62c4-747a-ad7e" name="Drawn to Battle" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">A model from this battalion is eligible to fight in the combat phase if it is within 6" of an enemy unit instead of 3", and can move an extra 3" when it piles in.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="1de9-2de2-bcac-f6ad" name="2-6 Seekers or Hellstriders" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a878-8d45-a06b-36a0" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3efe-f9ba-b459-5c6b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bef2-6cc0-3e4f-144b" name="Seekers" hidden="false" collective="false" import="true" targetId="85d4-3780-74c0-74c8" type="selectionEntry">
<categoryLinks>
<categoryLink id="e8a6-9afa-2506-4b20" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4148-e48a-54e0-1f0e" name="Hellstriders of Slaanesh with Claw-spears" hidden="false" collective="false" import="true" targetId="a1d4-33d6-3cea-eb56" type="selectionEntry"/>
<entryLink id="1d47-cb9f-3372-1037" name="Hellstriders of Slaanesh with Hellscourges" hidden="false" collective="false" import="true" targetId="3dce-5daf-85d8-f891" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="34b9-f98e-f0b8-b8e0" name="0-4 Seeker Chariots" hidden="false" collective="false" import="true" defaultSelectionEntryId="4df7-4c57-a46b-b498">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f57-785f-b660-c60c" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db10-c1ce-870b-1be3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4df7-4c57-a46b-b498" name="Seeker Chariots" hidden="false" collective="false" import="true" targetId="f229-e93f-dadd-f361" type="selectionEntry">
<categoryLinks>
<categoryLink id="e776-f668-ff28-1679" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f28e-fd5f-1b6a-1fa0" name="Battalion: Supreme Sybarites" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="597b-61d4-b5ca-7b78" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c2ab-2f6b-aa7b-b305" name="Ruling Cabal" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase, roll a dice. If the roll is less than or equal to the number of HEORES from this battalion that are on the battlefield, you receive 1 command point. </characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="d302-b11f-4e80-275c" name="3-6 CHAOS SLAANESH HEROES" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="d165-b4e9-6f18-4fe6" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8d22-b8d1-7da5-8b3f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="51de-5ffc-630c-2024" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8d22-b8d1-7da5-8b3f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="51de-5ffc-630c-2024" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d165-b4e9-6f18-4fe6" type="min"/>
</constraints>
<entryLinks>
<entryLink id="74b2-3f0a-5ec5-192b" name="Bladebringer on Seeker Chariot" hidden="false" collective="false" import="true" targetId="8a1e-2281-5a62-3935" type="selectionEntry">
<categoryLinks>
<categoryLink id="ec3f-8f6f-0897-2c6f" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f25e-4618-6ddf-9643" name="Keeper of Secrets" hidden="false" collective="false" import="true" targetId="43bc-62b2-ba5c-de2f" type="selectionEntry">
<categoryLinks>
<categoryLink id="1781-63c2-d4a6-3abe" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="643d-dc75-8b8d-a151" name="Infernal Enrapturess" hidden="false" collective="false" import="true" targetId="9f14-c970-b1fa-0cc0" type="selectionEntry">
<categoryLinks>
<categoryLink id="749d-ab92-a3e7-f871" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f417-6a7f-afea-0cdd" name="The Masque" hidden="false" collective="false" import="true" targetId="6ff2-6eb8-3dcd-bd8e" type="selectionEntry"/>
<entryLink id="dd9b-3970-d3d2-b84b" name="Sayl the Faithless" hidden="false" collective="false" import="true" targetId="689f-b7f7-e2ec-8a31" type="selectionEntry">
<categoryLinks>
<categoryLink id="8203-5012-8454-a5f8" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ba8c-4027-9953-1fce" name="Syll'esske the Vengeful Allegiance" hidden="false" collective="false" import="true" targetId="eb48-9244-b6b0-c83c" type="selectionEntry">
<categoryLinks>
<categoryLink id="5a83-e479-8ab9-8416" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="01ca-cae0-d186-0855" name="The Contorted Epitome" hidden="false" collective="false" import="true" targetId="5d36-f3de-11c5-d9aa" type="selectionEntry">
<categoryLinks>
<categoryLink id="9755-9459-37cb-7546" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d83b-0723-ad4a-792d" name="Viceleader" hidden="false" collective="false" import="true" targetId="5b49-b9df-5a82-6598" type="selectionEntry">
<categoryLinks>
<categoryLink id="5505-8cc6-c0e6-78ed" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0045-d9c3-7ebc-8593" name="Bladebringer on Exalted Seeker Chariot" hidden="false" collective="false" import="true" targetId="e697-3c08-3432-f9a4" type="selectionEntry">
<categoryLinks>
<categoryLink id="d951-644e-8ba2-9357" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f583-fb1a-c725-eceb" name="Chaos Lord on Manticore" hidden="false" collective="false" import="true" targetId="3303-cef0-2064-a5f5" type="selectionEntry"/>
<entryLink id="6790-24a1-3961-7576" name="Chaos Lord on Karkadrak" hidden="false" collective="false" import="true" targetId="e6c9-c984-cd6f-33e3" type="selectionEntry"/>
<entryLink id="949d-d3a6-b372-b246" name="Chaos Lord on Daemonic Mount" hidden="false" collective="false" import="true" targetId="ae9b-b9fe-18ba-2f9a" type="selectionEntry"/>
<entryLink id="6dd3-4bf7-e83d-d6f0" name="Chaos Lord" hidden="false" collective="false" import="true" targetId="1ccb-5743-64df-f027" type="selectionEntry"/>
<entryLink id="4354-4f0d-a847-8e1f" name="Exalted Hero of Chaos" hidden="false" collective="false" import="true" targetId="69e5-b08e-9813-f378" type="selectionEntry"/>
<entryLink id="fe01-6ae0-069e-6248" name="Slaves to Darkness Daemon Prince" hidden="false" collective="false" import="true" targetId="b2a4-c572-6ab2-6b4e" type="selectionEntry"/>
<entryLink id="606d-f397-f418-4199" name="Exalted Greater Daemon of Slaanesh" hidden="false" collective="false" import="true" targetId="f5d3-d6a3-42af-12af" type="selectionEntry"/>
<entryLink id="6eeb-e0db-9af9-9cd0" name="Chaos Sorcerer Lord" hidden="false" collective="false" import="true" targetId="1080-2582-0880-dd78" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a2b5-a614-1174-0ff6" name="Endless Spell: Dreadful Visage" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="ab93-e66d-496a-774e" name="Summon Dreadful Visage" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">Only CHAOS SLAANESH WIZARDS can attempt to cast this spell. If successfully cast, set up 1 Dreadful Visage model wholly within 12" of the caster.</characteristic>
</characteristics>
</profile>
<profile id="48a5-49d8-655c-1f8c" name="Swooping Horror" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this model is set up, the player who set it up can immediately make a move with it.</characteristic>
</characteristics>
</profile>
<profile id="917d-3bbe-e803-ff2d" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Dreadful Visage is a predatory endless spell. It can move up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="058a-8f58-9e9d-eaa7" name="Terrifying Entity" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from the Bravery characteristic of units while they are within 12" of this model. Add 1 to the Bravery characteristic of CHAOS SLAANESH units while they are within 12" of this model instead of subtracting 1.
</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e9ed-5069-6f65-6c27" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0e2a-2cba-2a15-44a0" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c88a-81ae-8f7b-6bcc" name="Endless Spell: Mesmerising Mirror" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="619e-03d2-c029-53a7" name="Summon Mesmerising Mirror" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">Only CHAOS SLAANESH WIZARDS can attempt to cast this spell. If successfully cast, set up 1 Mesmerising Mirror model wholly within 18" of the caster.</characteristic>
</characteristics>
</profile>
<profile id="33a4-e60c-fe2f-6151" name="Irresistible Lure" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a unit starts a move within 12" of this model, it suffers D3 mortal wounds unless it finishes the move closer to this model than it was before the move was made. This ability has no effect on CHAOS SLAANESH units.</characteristic>
</characteristics>
</profile>
<profile id="69f1-aed7-4432-e534" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Mesmerising Mirror is a predatory endless spell. It can move up to 6" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="9804-3304-d63d-0b51" name="Terrifying Entity" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this model is set up, and after this model has moved, roll 6 dice for each HERO within 6" of this model (roll separately for each Hero). For each 6, that HERO suffers a number of mortal wounds equal to the number of 6s that were rolled for that HERO.
For example, if you rolled one 6 for a HERO, that HERO would suffer 1 x 1 = 1 mortal wound. If you rolled two 6s, that HERO would suffer 2 x 2 = 4 mortal wounds, if you rolled three 6s, that HERO would suffer 3 x 3 = 9 mortal wounds, and so on. This ability has no effect on CHAOS SLAANESH HEROES.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1ad3-d808-8ff8-3f25" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6824-487b-26ac-e703" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37c1-dc08-74bd-575f" name="Endless Spell: Wheels of Excruciation" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2131-d9ad-39dc-af26" name="Summon Wheels of Excruciation" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">Only CHAOS SLAANESH WIZARDS can attempt to cast this spell. If successfully cast, set up 1 Wheels of Excruciation model wholly within 6" of the caster.</characteristic>
</characteristics>
</profile>
<profile id="236d-5bc7-02fa-232b" name="Swirling Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this model is set up, the player who set it up can immediately make a move with it.</characteristic>
</characteristics>
</profile>
<profile id="a3bc-eaa0-9e89-00d5" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Wheels of Excruciation is a predatory endless spell. It can move up to 12" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="406b-c284-b00f-e774" name="Exquisite Agony" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this model has moved, roll 6 dice for each unit that has any models that this model passed across. That unit suffers 1 mortal wound for each roll that is less than that unit’s unmodified Save characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="07f6-d530-c6c0-dcec" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c183-6b0e-1be7-ae04" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cba8-a2de-6bbf-6dcf" name="Fane of Slaanesh" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="75d7-1a69-7711-3d52" name="Power of Slaanesh" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If you spend depravity points to summon a unit to the battlefield, and that unit is set up wholly within 12" of this terrain feature, you receive D3 depravity points after that unit has been set up.</characteristic>
</characteristics>
</profile>
<profile id="606a-9131-df92-c5f1" name="Locus of Savagery" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your hero phase, you can pick 1 friendly CHAOS SLAANESH HERO within 6" of this terrain feature to make a sacrifice. If you do so, that Hero suffers 1 mortal wound, and you must roll a dice. On a 1, nothing happens. On a 2+ you can re-roll hit rolls for attacks made by that HERO until your next hero phase.
If that HERO has an artefact of power, they can sacrifice that instead of suffering 1 mortal wound. If they do so, that artefact of power can no longer be used (if a weapon was picked when the artefact of power was selected, that weapon reverts to normal). However, on a roll of 2+, you can re-roll hit rolls for attacks made by that HERO for the rest of the battle instead of only until your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="438f-e248-8aef-05c9" name="SCENERY" hidden="false" targetId="8910-7c1d-6c74-37ff" primary="false"/>
<categoryLink id="3442-3814-3dde-d2cf" name="SLAANESH" hidden="false" targetId="3963-2e99-aa63-c65e" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3dce-5daf-85d8-f891" name="Hellstriders with Hellscourges" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d7d9-b723-6fdb-51cb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="9d59-8edd-7036-a729" name="Hellstriders" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="1a47-5eb0-eb2a-1563" name="Soul Hunters" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If any enemy models were slain by wounds inflicted by this unit’s attacks in the combat phase, add 1 to the Attacks characteristic of this unit’s melee weapons in the next combat phase. </characteristic>
</characteristics>
</profile>
<profile id="31dc-8f36-e2c9-eb7e" name="Icon and Standard Bearers" 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 Seeker Banner Bearer, and 1 in every 5 models in this unit can be a Seeker Icon Bearer. </characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5854-1088-87b9-47b7" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="8588-f5e8-7fc9-d0d5" name="New CategoryLink" hidden="false" targetId="055f-d5f3-9951-9cf0" primary="false"/>
<categoryLink id="a0d2-a9b0-ea23-7e45" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="d7fe-0a84-f3c8-ee5b" name="New CategoryLink" hidden="false" targetId="3963-2e99-aa63-c65e" primary="false"/>
<categoryLink id="0fb0-3faf-20bb-4cef" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b158-9ba1-3142-ea05" name="5 Hellstriders" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bf01-cd87-494e-8eb8" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3043-ba8e-fe58-8bf6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6055-1695-45b6-025b" name="Hornblower" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d1dc-e8fa-1f83-b607" type="max"/>
</constraints>
<profiles>
<profile id="2056-43c1-64c1-447c" name="Hornblower" 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 Hellstrider Hornblower. If the unmodified roll for a battleshock test for an enemy unit that is within 6" of this unit while this unit includes any Hellstrider Hornblowers is 1, that battleshock test must be re-rolled. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="992c-d75f-eb13-cac5" name="Steed of Slaanesh's Poisoned Tongue" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7970-eec4-91c5-3ecb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f577-e726-9ebb-b7e1" type="max"/>
</constraints>
<profiles>
<profile id="361a-8273-8d08-cafc" name="Steed of Slaanesh's Poisoned Tongue" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0aaa-a2f8-5301-60d8" name="Hellscourge" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af91-e01b-742f-02a0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0801-8f92-a1e8-3b61" type="min"/>
</constraints>
<profiles>
<profile id="9409-015f-e35f-53fd" name="Hellscourge" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="12c9-4a95-a9ba-f2f3" name="Hellreaver" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="38d5-fa48-ed0c-26a9" type="max"/>
</constraints>
<profiles>
<profile id="16dc-fd2d-a8bb-5ee9" name="Hellreaver" 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 Hellreaver. Add 1 to the Attacks characteristic of a Hellreaver’s Hellscourge.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a62-0b8a-14f6-7203" name="Hellstrider Icon Bearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f2c2-c849-5272-5373" type="max"/>
</constraints>
<profiles>
<profile id="e759-44ad-d9ab-6b54" name="Hellstrider Icon Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 2 to the Bravery characteristic of this unit while it includes any Hellstrider Icon Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f607-f6e1-0bef-f772" name="Hellstrider Banner Bearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0fb-cf0c-d054-129c" type="max"/>
</constraints>
<profiles>
<profile id="96f8-d5e3-d103-a4fd" name="Hellstrider Banner Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll charge rolls for this unit while it includes any Hellstrider Banner Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a1d4-33d6-3cea-eb56" name="Hellstriders with Claw-spears" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d7d9-b723-6fdb-51cb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="d065-ff48-6410-45f6" name="Hellstriders" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="85a0-16eb-16a1-b107" name="Soul Hunters" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If any enemy models were slain by wounds inflicted by this unit’s attacks in the combat phase, add 1 to the Attacks characteristic of this unit’s melee weapons in the next combat phase. </characteristic>
</characteristics>
</profile>
<profile id="c3f9-995a-1225-c353" name="Icon and Standard Bearers" 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 Seeker Banner Bearer, and 1 in every 5 models in this unit can be a Seeker Icon Bearer. </characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d010-911d-5bed-65f2" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="1c27-5ae0-c7fe-93a6" name="New CategoryLink" hidden="false" targetId="055f-d5f3-9951-9cf0" primary="false"/>
<categoryLink id="db98-abee-3b31-8a85" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="4998-b86a-ecce-04b2" name="New CategoryLink" hidden="false" targetId="3963-2e99-aa63-c65e" primary="false"/>
<categoryLink id="d60a-dd87-1b60-7eb0" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="89e4-51e9-48c0-0861" name="5 Hellstriders" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d2e6-846f-4bf8-24f8" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bf7b-0435-8bfe-a429" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d445-6ae5-47f8-a465" name="Hornblower" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d8ce-c0fc-87f9-cedb" type="max"/>
</constraints>
<profiles>
<profile id="606d-6194-ae83-ee11" name="Hornblower" 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 Hellstrider Hornblower. If the unmodified roll for a battleshock test for an enemy unit that is within 6" of this unit while this unit includes any Hellstrider Hornblowers is 1, that battleshock test must be re-rolled. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7ae4-385a-ef2c-fb03" name="Steed of Slaanesh's Poisoned Tongue" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6de1-b04a-2c1f-8405" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9057-6d33-cd61-7c95" type="max"/>
</constraints>
<profiles>
<profile id="bc5c-66ff-3028-562e" name="Steed of Slaanesh's Poisoned Tongue" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="34d3-0416-7cea-a209" name="Claw-spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f65-f445-a7e6-b93f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="01af-67d2-6c5b-f59b" type="min"/>
</constraints>
<profiles>
<profile id="0044-aac9-7e68-b876" name="Hellscourge" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2775-8b77-752f-cfd5" name="Hellreaver" hidden="false" collective="false" import="true" type="upgrade">