-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathChaos - Slaanesh.cat
3394 lines (3384 loc) · 259 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="357e-20c6-ad3a-d55d" name="Chaos - Slaanesh" revision="125" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<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>
<profileType id="8f9e-ae3f-c4a0-2444" name="Glutos Orscollion Wounds">
<characteristicTypes>
<characteristicType id="ac80-f7d6-14a0-835f" name="Move"/>
<characteristicType id="61d0-95ac-b9d4-4f68" name="Crushing Claws"/>
</characteristicTypes>
</profileType>
<profileType id="e016-71d4-bd94-9424" name="New 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="HEDONITES OF SLAANESH" hidden="false"/>
<categoryEntry id="5e1b-adc3-220a-51ea" name="BLADEBRINGER" hidden="false"/>
<categoryEntry id="a26c-58dc-eef0-a36d" name="BLISSBARB ARCHERS" hidden="false"/>
<categoryEntry id="e56a-8979-a661-3bde" name="SIGVALD" hidden="false"/>
<categoryEntry id="483b-9dd2-e92f-e733" name="GLUTOS ORSCOLLION" hidden="false"/>
<categoryEntry id="6202-b4be-4fc0-d682" name="SLICKBLADE SEEKERS" hidden="false"/>
<categoryEntry id="8da9-c18f-5b45-19fb" name="BLISSBARB SEEKERS" hidden="false"/>
<categoryEntry id="f7b0-38ad-722f-c43f" name="LORD OF PAIN" hidden="false"/>
<categoryEntry id="3287-9d23-d7cb-1d32" name="SHARDSPEAKER" hidden="false"/>
<categoryEntry id="4043-807e-6b93-13f0" name="SYMBARESH TWINSOULS" hidden="false"/>
<categoryEntry id="cf59-ddee-892c-7e7a" name="MYRMIDESH PAINBRINGERS" hidden="false"/>
<categoryEntry id="1147-d5ba-417e-2599" name="Lord of Pain/Hubris General" hidden="true"/>
<categoryEntry id="5f60-270b-33b2-cdd2" name="LORD OF HUBRIS" hidden="false"/>
<categoryEntry id="3ece-0afb-a1b9-7b52" name="Mortal General" hidden="true"/>
<categoryEntry name="THE THRICEFOLD DISCORD" hidden="false" id="c5c5-31ad-f7d4-25f8"/>
</categoryEntries>
<entryLinks>
<entryLink id="765c-f319-569c-e944" name="Viceleader" hidden="false" collective="false" import="true" targetId="5b49-b9df-5a82-6598" type="selectionEntry"/>
<entryLink id="c299-135c-68cd-8835" name="The Masque" hidden="false" collective="false" import="true" targetId="6ff2-6eb8-3dcd-bd8e" type="selectionEntry"/>
<entryLink id="a7cc-e76d-99c6-b3d7" name="Keeper of Secrets" hidden="false" collective="false" import="true" targetId="43bc-62b2-ba5c-de2f" type="selectionEntry"/>
<entryLink id="ce38-55d6-f8ab-49e5" name="Exalted Chariot" hidden="false" collective="false" import="true" targetId="4b29-9ec1-b210-0d53" type="selectionEntry"/>
<entryLink id="46b5-0574-e52c-66be" name="Fiends" hidden="false" collective="false" import="true" targetId="c90b-f419-dd3d-ed81" type="selectionEntry"/>
<entryLink id="268f-bdc5-2243-f832" name="Hellflayer" hidden="false" collective="false" import="true" targetId="8447-1b5f-998c-2af9" type="selectionEntry"/>
<entryLink id="e8b8-c008-0e6b-388b" name="Seekers" hidden="false" collective="false" import="true" targetId="85d4-3780-74c0-74c8" type="selectionEntry"/>
<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"/>
<entryLink id="f31d-b76e-c0f8-df74" name="Bladebringer Herald on Exalted Chariot" hidden="false" collective="false" import="true" targetId="e697-3c08-3432-f9a4" type="selectionEntry"/>
<entryLink id="e2ed-50a7-c7f2-1ba6" name="Bladebringer Herald on Seeker Chariot" hidden="false" collective="false" import="true" targetId="8a1e-2281-5a62-3935" type="selectionEntry"/>
<entryLink id="7917-7629-08ea-344f" name="Soulfeaster Keeper of Secrets" hidden="false" collective="false" import="true" targetId="f5d3-d6a3-42af-12af" type="selectionEntry"/>
<entryLink id="bc8e-52d4-6104-8ae5" name="Infernal Enrapturess" hidden="false" collective="false" import="true" targetId="9f14-c970-b1fa-0cc0" type="selectionEntry"/>
<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="Contorted Epitome" hidden="false" collective="false" import="true" targetId="5d36-f3de-11c5-d9aa" type="selectionEntry"/>
<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"/>
<entryLink id="5c16-d3ab-bbbf-060d" name="Bladebringer Herald on Hellflayer" hidden="false" collective="false" import="true" targetId="2a25-e953-2ad1-f80b" type="selectionEntry"/>
<entryLink id="e319-ca5b-0397-63ce" name="Shalaxi Helbane" hidden="false" collective="false" import="true" targetId="1b2c-4518-ea20-684e" type="selectionEntry"/>
<entryLink id="de53-1865-0dc5-593d" name="Battalion: Epicurean Revellers" 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="8d5f-05c5-39b9-8ddc" name="Fane of Slaanesh" hidden="false" collective="false" import="true" targetId="cba8-a2de-6bbf-6dcf" type="selectionEntry"/>
<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="bd9b-4008-64fc-dc2d" name="One-Eyed Grunnock - Warstomper Mercenary" hidden="false" collective="false" import="true" targetId="40c7-4bb8-cfd9-7319" type="selectionEntry"/>
<entryLink id="cdc4-0363-e895-48fa" name="Lord of Pain" hidden="false" collective="false" import="true" targetId="701d-6e8c-b491-1ede" type="selectionEntry"/>
<entryLink id="f366-0f48-f1a8-8e83" name="The Dread Pageant" hidden="false" collective="false" import="true" targetId="6245-9e72-e4c1-8488" type="selectionEntry"/>
<entryLink id="80f4-3134-72aa-eab5" name="Battalion: Gestharx's Cavalcade (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="253f-f7f4-842d-9a4c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="206e-62eb-aebc-ca74" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d559-6c09-1709-58c2" name="Glutos Orscollion" hidden="false" collective="false" import="true" targetId="d6b8-1164-6720-675a" type="selectionEntry"/>
<entryLink id="b5a2-3da9-fe29-a63c" name="Sigvald, Prince of Slaanesh" hidden="false" collective="false" import="true" targetId="1aba-6115-f66f-504d" type="selectionEntry"/>
<entryLink id="148d-9873-8ed8-6c41" name="Blissbarb Archers" hidden="false" collective="false" import="true" targetId="a9ab-5107-fd25-5c7e" type="selectionEntry"/>
<entryLink id="be0a-8cef-a51c-1513" name="Blissbarb Seekers" hidden="false" collective="false" import="true" targetId="6a9a-5403-a0d3-e842" type="selectionEntry"/>
<entryLink id="06bf-11a3-4886-ea55" name="Slickblade Seekers" hidden="false" collective="false" import="true" targetId="6d7f-9aac-7f6e-d72f" type="selectionEntry"/>
<entryLink id="f69f-02f7-0ee2-ca73" name="Shardspeaker of Slaanesh" hidden="false" collective="false" import="true" targetId="b1e7-191f-de66-fe0b" type="selectionEntry"/>
<entryLink id="ba58-cd1c-5ec0-13e3" name="Slaangor Fiendbloods" hidden="false" collective="false" import="true" targetId="9c20-618d-5a25-10e7" type="selectionEntry"/>
<entryLink id="d8a1-db1a-7eba-6059" name="Symbaresh Twinsouls" hidden="false" collective="false" import="true" targetId="dd20-7522-9d19-1868" type="selectionEntry"/>
<entryLink id="5444-a7eb-fd79-4ac3" name="Myrmidesh Painbringers" hidden="false" collective="false" import="true" targetId="fb91-0378-0a07-4fd2" type="selectionEntry"/>
<entryLink id="d38b-8057-9e47-e202" name="Archaon the Everchosen" hidden="false" collective="false" import="true" targetId="ee9e-b8de-b25d-b6f1" type="selectionEntry"/>
<entryLink id="2fe6-a0f2-4d33-6eb6" name="Battalion: Depraved Carnival" hidden="false" collective="false" import="true" targetId="ca68-2731-02fb-bd95" type="selectionEntry"/>
<entryLink id="d95d-4b8e-6230-5d85" name="Battalion: Nobles of Excess" hidden="false" collective="false" import="true" targetId="9a07-6b46-4d0e-690f" type="selectionEntry"/>
<entryLink id="afce-3a1c-8b3e-cd83" name="Battalion: Exalted Speed-Knights" hidden="false" collective="false" import="true" targetId="68c1-f5c4-978c-dac2" type="selectionEntry"/>
<entryLink id="c679-379f-9edf-6101" name="Battalion: The Exquisite Pursuit" hidden="false" collective="false" import="true" targetId="0f5b-8139-1084-45a5" type="selectionEntry"/>
<entryLink id="2e2e-dedd-56a4-b4d1" name="Dexcessa, Talon of Slaanesh" hidden="false" collective="false" import="true" targetId="d612-7fa0-fc43-3391" type="selectionEntry"/>
<entryLink id="1d04-d698-ee4c-a98c" name="Synessa, Voice of Slaanesh" hidden="false" collective="false" import="true" targetId="23d8-b4ea-ae9f-898e" type="selectionEntry"/>
<entryLink id="f897-a558-98f3-37ce" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="8b3a-4a2a-db07-a669" type="selectionEntry">
<categoryLinks>
<categoryLink id="f117-7535-dc3f-82df" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1baf-8e93-1bb8-73f6" name="Endless Spell: Dreadful Visage" hidden="false" collective="false" import="true" targetId="9eae-5805-1fdf-eb6c" type="selectionEntry"/>
<entryLink id="bbca-7ba7-913d-3d0a" name="Endless Spell: Mesmerising Mirror" hidden="false" collective="false" import="true" targetId="c89c-bd1e-3057-c793" type="selectionEntry"/>
<entryLink id="153e-a444-a802-020d" name="Endless Spell: Wheels of Excruciation" hidden="false" collective="false" import="true" targetId="4dca-b6f1-e1c4-598e" type="selectionEntry"/>
<entryLink id="9363-e910-7166-818b" name="Slaanesh Core Battalion: Nobles of Excess" hidden="false" collective="false" import="true" targetId="25e9-84b3-97f5-7a08" type="selectionEntry"/>
<entryLink id="acdc-bbd1-e37a-e2fc" name="Slaanesh Core Battalion: Epicurean Revellers" hidden="false" collective="false" import="true" targetId="528d-983f-cbe2-ea0d" type="selectionEntry"/>
<entryLink id="4a79-8be9-41fe-eec9" name="Battle Tactics: Methods of Torture" hidden="false" collective="false" import="true" targetId="88e2-99a8-12b7-17ef" type="selectionEntry"/>
<entryLink id="78d4-32b7-9ada-ece9" name="Regiment of Renown - Hargax's Pit-beats" hidden="false" collective="false" import="true" targetId="f5e6-6888-e003-118d" type="selectionEntry"/>
<entryLink id="7ed4-b0a5-ee63-528b" name="Regiment of Renown - The Coven of Thryx" hidden="false" collective="false" import="true" targetId="66b0-4847-a04e-0375" type="selectionEntry"/>
<entryLink id="9cab-67ae-7a7c-c2ac" name="Lord of Hubris" hidden="false" collective="false" import="true" targetId="4138-378e-fef1-69d9" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Phulgoth's Shudderhood" hidden="false" type="selectionEntry" id="1687-eafc-d5ef-5374" targetId="10de-6e02-9446-6700"/>
<entryLink import="true" name="The Thricefold Discord" hidden="false" type="selectionEntry" id="f286-43ac-2477-6fea" targetId="c5cb-34b3-b9bc-8f70"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="94c0-356a-842c-e0e4" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="e9c3-daf2-d62a-a6b1" 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="fc4e-6be8-ec51-c113" 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="524e-8001-63ee-cdf7" 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 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="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3da-0c6e-1c66-8897" type="max"/>
<constraint field="selections" scope="roster" value="1" 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="3432-e7f1-1d1c-0932">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f00-43ed-32f8-eb82" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08fb-01e0-439d-237d" type="min"/>
</constraints>
<entryLinks>
<entryLink id="3432-e7f1-1d1c-0932" name="Allegiance: 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"/>
</costs>
</selectionEntry>
<selectionEntry id="6e39-0b25-0e5e-8605" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="b890-998d-cad1-b9a1" value="10">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e211-0580-4d0d-40eb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" 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="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="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="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="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2858-b8b6-aa76-ec4f" type="max"/>
<constraint field="selections" scope="roster" value="1" 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"/>
</costs>
</selectionEntry>
<selectionEntry id="4b98-6c46-bbea-761f" name="Battalion: The Choir of Torment" hidden="true" collective="false" import="true" type="upgrade">
<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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43a0-e8d5-947c-2956" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c1b-c411-f0f0-0660" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17f0-5a14-3853-40dd" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="836c-fb67-57a0-a37d" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67f8-c366-97a0-204c" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c81-1d6b-3178-0b6e" type="min"/>
<constraint field="selections" scope="parent" value="1" 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="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f2ef-d09b-02a8-274d" name="Battalion: Epicurean Revellers" hidden="true" 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>
<categoryLinks>
<categoryLink id="8a1a-8606-f5d3-7e9d" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2132-02fd-2b55-49a3" type="min"/>
<constraint field="selections" scope="parent" value="6" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b80b-d42c-f0e0-ed1b" type="min"/>
<constraint field="selections" scope="parent" value="4" 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="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">Units from this battalion are eligible to fight in the combat phase if they are within 6" of an enemy unit instead of 3", and can move an extra 3" when they pile in.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f788-aede-59b7-4ce4" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a878-8d45-a06b-36a0" type="min"/>
<constraint field="selections" scope="parent" value="6" 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 with Hellscourges" hidden="false" collective="false" import="true" targetId="3dce-5daf-85d8-f891" type="selectionEntry"/>
<entryLink id="3fed-3ab1-8061-354e" name="Blissbarb Seekers" hidden="false" collective="false" import="true" targetId="6a9a-5403-a0d3-e842" type="selectionEntry"/>
<entryLink id="ef1d-c0e4-285f-d90c" name="Slickblade Seekers" hidden="false" collective="false" import="true" targetId="6d7f-9aac-7f6e-d72f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="34b9-f98e-f0b8-b8e0" name="0-4 Seeker Chariots" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f57-785f-b660-c60c" type="min"/>
<constraint field="selections" scope="parent" value="4" 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="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f28e-fd5f-1b6a-1fa0" name="Battalion: Supreme Sybarites" hidden="true" collective="false" import="true" type="upgrade">
<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 HEROES from this battalion that are on the battlefield, you receive 1 command point.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="02af-4f79-45fa-9b81" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d302-b11f-4e80-275c" name="3-6 SLAANESH HEROES" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="d165-b4e9-6f18-4fe6" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" 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">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8d22-b8d1-7da5-8b3f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8d22-b8d1-7da5-8b3f" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="d165-b4e9-6f18-4fe6" value="1"/>
<modifier type="set" field="51de-5ffc-630c-2024" value="1"/>
<modifier type="set" field="name" value="1 SLAANESH HERO"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="51de-5ffc-630c-2024" type="max"/>
<constraint field="selections" scope="parent" value="3" 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="Shalaxi Helbane" hidden="false" collective="false" import="true" targetId="1b2c-4518-ea20-684e" 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="e66d-3ffc-473d-885f" 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 on Manticore" hidden="false" collective="false" import="true" targetId="c132-1271-a655-1e16" type="selectionEntry"/>
<entryLink id="5b91-48a4-3ff7-72f3" name="Chaos Sorcerer Lord" hidden="false" collective="false" import="true" targetId="1080-2582-0880-dd78" type="selectionEntry"/>
<entryLink id="8e4b-7e18-acc8-9c43" name="Lord of Pain" hidden="false" collective="false" import="true" targetId="701d-6e8c-b491-1ede" type="selectionEntry">
<categoryLinks>
<categoryLink id="e948-4213-0e44-0623" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4e28-98f0-d33e-6ea8" name="Glutos Orscollion" hidden="false" collective="false" import="true" targetId="d6b8-1164-6720-675a" type="selectionEntry"/>
<entryLink id="4826-5535-63ba-9d3f" name="Sigvald, Prince of Slaanesh" hidden="false" collective="false" import="true" targetId="1aba-6115-f66f-504d" type="selectionEntry"/>
<entryLink id="a76f-60f6-1790-4bdc" name="Shardspeaker of Slaanesh" hidden="false" collective="false" import="true" targetId="b1e7-191f-de66-fe0b" type="selectionEntry"/>
<entryLink id="38c5-d7ba-d9fe-f649" name="Bladebringer on Hellflayer" hidden="false" collective="false" import="true" targetId="2a25-e953-2ad1-f80b" type="selectionEntry">
<categoryLinks>
<categoryLink id="9ffe-8d2c-6270-0cd7" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bb56-9ce4-d4da-2ff9" name="Archaon the Everchosen" hidden="false" collective="false" import="true" targetId="ee9e-b8de-b25d-b6f1" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="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 HEDONITES OF SLAANESH DAEMON unit to the battlefield, you can set up that unit wholly within 12" of this terrain feature and more than 9" from all enemy units instead of wholly within 12" of a HEDONITES OF SLAANESH HERO and more than 9" from all enemy units.</characteristic>
</characteristics>
</profile>
<profile id="606a-9131-df92-c5f1" name="Damned Conduit" 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 HEDONITES OF 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 2+, add 1 to wound rolls for attacks made by that HERO until your next hero phase.
If the HERO you picked has an artefact of power, instead of suffering 1 mortal wound, they can sacrifice that artefact of power. If they do so, that artefact of power can no longer be used and you must roll a dice. On a 2+, add 1 to wound rolls for attacks made by that HERO for the rest of the battle.</characteristic>
</characteristics>
</profile>
<profile id="7cfd-da68-6e06-af4f" name="Impassable" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You cannot move a model over this terrain feature unless it can fly, and you cannot move a model onto this terrain feature (even if it can fly).</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"/>
<categoryLink id="d6e3-8e0c-aecd-e33c" name="New CategoryLink" hidden="false" targetId="bc8a-9257-1601-6d62" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3dce-5daf-85d8-f891" name="Hellstriders with Hellscourges" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<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="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ece-0afb-a1b9-7b52" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ece-0afb-a1b9-7b52" type="greaterThan"/>
</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="Hooked Tendrils" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Enemy models with a Wounds characteristic of 1 or 2 cannot contest objectives while they are within 3" of any friendly units with ability.</characteristic>
</characteristics>
</profile>
<profile id="31dc-8f36-e2c9-eb7e" name="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 either a Banner Bearer or an 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="f945-c0d8-d65b-2588" name="HEDONITE" hidden="false" targetId="e0f7-4620-9328-d15a" primary="false"/>
<categoryLink id="3f34-4f87-22ec-5d85" 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">
<modifiers>
<modifier type="set" field="name" value="10 Hellstriders">
<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 Hellstriders">
<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="false" includeChildSelections="false" includeChildForces="false" id="bf01-cd87-494e-8eb8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3043-ba8e-fe58-8bf6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</selectionEntry>
<selectionEntry id="6055-1695-45b6-025b" 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="d1dc-e8fa-1f83-b607" type="max"/>
</constraints>
<profiles>
<profile id="2056-43c1-64c1-447c" 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. You can re-roll failed battleshock tests for this unit if it includes any Hornblowers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="992c-d75f-eb13-cac5" name="Poisoned Tongue" 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="7970-eec4-91c5-3ecb" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f577-e726-9ebb-b7e1" type="max"/>
</constraints>
<profiles>
<profile id="361a-8273-8d08-cafc" name="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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af91-e01b-742f-02a0" type="max"/>
<constraint field="selections" scope="parent" value="1" 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">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="12c9-4a95-a9ba-f2f3" name="Champion" 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="38d5-fa48-ed0c-26a9" type="max"/>
</constraints>
<profiles>
<profile id="16dc-fd2d-a8bb-5ee9" 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 Hellreaver. Add 1 to the Attacks characteristic of that model's Hellscourge.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a62-0b8a-14f6-7203" name="Icon 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="f2c2-c849-5272-5373" type="max"/>
</constraints>
<profiles>
<profile id="e759-44ad-d9ab-6b54" name="Icon Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit receives the Rally command while it includes any Icon Bearers, when you roll a dice for a slain model from this unit, you can return 1 slain model to this unit on a 5+ instead of a 6.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f607-f6e1-0bef-f772" name="Banner 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="d0fb-cf0c-d054-129c" type="max"/>
</constraints>
<profiles>
<profile id="96f8-d5e3-d103-a4fd" name="Banner Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to run rolls and charge rolls for this unit while it includes any Banner Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="722e-5e02-1126-6416" 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="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ece-0afb-a1b9-7b52" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink id="6f72-1fa8-d130-2325" name="Battalions" hidden="false" collective="false" import="true" targetId="8234-b3cc-8ec7-2c45" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="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="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="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ece-0afb-a1b9-7b52" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ece-0afb-a1b9-7b52" type="greaterThan"/>
</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="Jagged Weapon-limbs" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is within 3" of any enemy units at the start of the charge phase, add 1 to the Attacks and Damage characteristics of this unit's Claw-spears in the following combat phase.</characteristic>
</characteristics>
</profile>
<profile id="c3f9-995a-1225-c353" name="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 either a Banner Bearer or an 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="5f70-e69d-13a0-0055" name="HEDONITE" hidden="false" targetId="e0f7-4620-9328-d15a" primary="false"/>
<categoryLink id="4fa5-0b6a-785c-c0b3" 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">
<modifiers>
<modifier type="set" field="name" value="10 Hellstriders">
<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 Hellstriders">
<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="false" includeChildSelections="false" includeChildForces="false" id="d2e6-846f-4bf8-24f8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bf7b-0435-8bfe-a429" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</selectionEntry>
<selectionEntry id="d445-6ae5-47f8-a465" 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="d8ce-c0fc-87f9-cedb" type="max"/>
</constraints>
<profiles>
<profile id="606d-6194-ae83-ee11" 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. You can re-roll failed battleshock tests for this unit if it includes any Hornblowers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7ae4-385a-ef2c-fb03" name="Poisoned Tongue" 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="6de1-b04a-2c1f-8405" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9057-6d33-cd61-7c95" type="max"/>
</constraints>
<profiles>
<profile id="bc5c-66ff-3028-562e" name="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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f65-f445-a7e6-b93f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="01af-67d2-6c5b-f59b" type="min"/>
</constraints>
<profiles>
<profile id="0044-aac9-7e68-b876" name="Claw-spear" 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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="2775-8b77-752f-cfd5" name="Champion" 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="f6c9-68c8-fe3d-1ba3" type="max"/>
</constraints>
<profiles>
<profile id="a17e-79ee-6706-a6c4" 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 Hellreaver. Add 1 to the Attacks characteristic of that model's Claw-spear.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8da9-40b3-0950-a0d4" name="Icon 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="99ed-1365-7661-cf73" type="max"/>
</constraints>
<profiles>
<profile id="c467-f66f-9a6f-9778" name="Icon Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit receives the Rally command while it includes any Icon Bearers, when you roll a dice for a slain model from this unit, you can return 1 slain model to this unit on a 5+ instead of a 6.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5b3-5130-7105-b998" name="Banner 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="e605-60e8-2b47-40ff" type="max"/>
</constraints>
<profiles>
<profile id="196c-28ea-f577-0794" name="Banner Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to run rolls and charge rolls for this unit while it includes any Banner Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="67b6-d9c6-35de-c5bb" 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="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ece-0afb-a1b9-7b52" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink id="91c1-a32a-2810-6bed" name="Battalions" hidden="false" collective="false" import="true" targetId="8234-b3cc-8ec7-2c45" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f8f1-43e1-68e8-192c" name="Battalion: Hedonite Host" hidden="true" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b92d-afe6-6e35-4719" name="Transcendental Warriors" 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 Bravery characteristic of units in this battalion. In addition, if this battalion is part of your army, at the start of your hero phase you receive D3 depravity points.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a5e0-ba39-7b8f-f87c" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="6ea6-7047-3c8e-792f" name="1 Supreme Sybarites" hidden="false" collective="false" import="true" defaultSelectionEntryId="3460-d110-c7dd-bba9">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a103-9d39-29ae-8275" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="422d-f952-525d-0a69" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3460-d110-c7dd-bba9" name="Battalion: Supreme Sybarites" hidden="false" collective="false" import="true" targetId="f28e-fd5f-1b6a-1fa0" type="selectionEntry">
<categoryLinks>
<categoryLink id="0c8d-94c0-74ed-5675" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3b3b-c46f-918b-5a09" name="1-3 Epicurean Revelers" hidden="false" collective="false" import="true" defaultSelectionEntryId="096f-d5cf-3b00-40f4">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a5fc-ba34-799a-176f" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="name" value="0-2 Epicurean Revelers"/>
<modifier type="set" field="f8ab-b33c-86d1-545f" value="0"/>
<modifier type="set" field="66d6-ab6d-53f4-79ab" value="2"/>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e211-0580-4d0d-40eb" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="name" value="2-4 Epicurean Revelers"/>
<modifier type="set" field="f8ab-b33c-86d1-545f" value="2"/>
<modifier type="set" field="66d6-ab6d-53f4-79ab" value="4"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f8ab-b33c-86d1-545f" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="66d6-ab6d-53f4-79ab" type="max"/>