generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Hedonites of Slaanesh.cat
1854 lines (1853 loc) · 116 KB
/
Hedonites of 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 library="false" id="afdb-68a1-283e-3bf2" name="Hedonites of Slaanesh" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<catalogueLinks>
<catalogueLink type="catalogue" name="Hedonites of Slaanesh - Library" id="253b-dcd3-c7aa-eab" targetId="34e0-2290-e185-efd2"/>
</catalogueLinks>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Hedonites of Slaanesh" hidden="false" id="77b8-2e38-40f0-4472">
<profiles>
<profile name="An Excess of Depravity" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5e45-93e3-812-ec14" publicationId="95fc-e96f-a916-bba1">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle Round (Army), Start of Battle Round</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 friendly **^^Hedonites of Slaanesh units to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The targets have the **^^Euphoric^^** keyword for the rest of the battle round.
In addition, for each friendly unit you pick, give your opponent 1 temptation dice. Your opponent can use 1 temptation dice to replace 1 wound roll, 1 save roll, 1 ward roll or 1 run roll for a unit in their army with a 6, or they can use 2 temptation dice to replace 2 of the dice in a charge roll for a unit in their army with two 6s.
Each time your opponent uses a **temptation dice**, they must roll it. On a 1-2, your opponent’s roll is replaced by that value instead of a 6, and you must allocate D3 damage points to the unit for which the roll was replaced immediately after the ability used by that unit has been resolved (ward rolls cannot be made for those damage points).
At the end of the battle round, any temptation dice that have not been used are lost.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Euphoric Killers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f71a-320b-cc60-c9ff" publicationId="95fc-e96f-a916-bba1">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While a friendly unit has the **^^Euphoric^^** keyword:
• That unit’s weapons have **Crit (2 Hits)**.
• That unit can use a **^^Run^^** ability and still use **^^Shoot^^** and/or **^^Charge^^** abilities later in the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="14f3-4a27-2d85-ba87" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Artefacts of Power" id="521a-8c3e-b543-3b40" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Coveted Treasures" id="c782-bf56-82c4-458e" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Icon of Infinite Excess" hidden="false" id="4d93-cffa-3772-3bc" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Icon of Infinite Excess" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4838-b034-28ab-378b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a non-**^^Hero Hedonites of Slaanesh^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Attacks characteristic of the target’s melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="35b7-c906-49df-edd3" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Pendant of Slaanesh" hidden="false" id="f321-ad71-d2c6-457e" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Pendant of Slaanesh" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8f5f-aeb-b615-1cfa">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If any damage points were allocated to this unit this turn, **Heal (3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5575-472b-472a-ffcf" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Threnody Voicebox" hidden="false" id="8b0b-791a-7873-1a61" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Threnody Voicebox" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1e95-1a75-154b-6d17">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, subtract 1 from the Attacks characteristic of melee weapons used by enemy units while they are in combat with this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="53c8-d59c-5a97-eeeb" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1901-6d78-a0b-cccb"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a5de-6bfb-9812-f23c" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Hedonites of Slaanesh" id="22cc-a0d6-614c-3468" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Depraved Carnival" hidden="false" id="c895-e297-46ec-513f" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4c03-e746-b6de-e7dc"/>
</constraints>
<profiles>
<profile name="The Ecstatic Throngs" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a6fd-bf86-e9ee-7dab">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls for friendly **^^Sybarite Infantry^^** units while they are damaged or if they had any models slain in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Seeker Cavalcade" hidden="false" id="56b6-867a-f5b6-7d94" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="19a8-8353-c97a-3f00"/>
</constraints>
<profiles>
<profile name="Reckless Haste" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="51fe-fc34-203e-442">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Friendly **^^Hedonites of Slaanesh Cavalry^^** units can use a **^^Retreat^^** ability and still use **^^Charge^^** abilities later in the turn. In addition, no mortal damage is inflicted on **^^Hedonites of Slaanesh Cavalry^^** units by **^^Retreat^^** abilities.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Epicurean Revellers" hidden="false" id="68a0-a6a9-1040-cf34" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="81ba-548-f11a-7248"/>
</constraints>
<profiles>
<profile name="Exquisite Palate" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5cd3-21bd-c314-1642">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time a friendly non-**^^Hero Hedonites of Slaanesh Daemon^^** uses the ‘Rally’ command, you can make 3 additional rally rolls of D6.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Supreme Sybarites" hidden="false" id="6f63-45c7-28bd-68fd" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bdba-ba0a-8571-f3fa"/>
</constraints>
<profiles>
<profile name="Godly Ambitions" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="896c-7f7b-defc-587b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 3 to the control scores of friendly non-**^^Hero Hedonites of Slaanesh^^** units while they are within the combat ranges of any friendly **^^Hedonites of Slaanesh Heroes^^**.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="93d3-2663-cb7e-8088" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="c061-56e0-f2c0-af3e" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Figureheads of the Dark Prince" id="d339-c30e-fdae-edef" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Strongest Alone" hidden="false" id="e233-e686-52f-d61e" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Strongest Alone" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c834-2adb-2878-b102">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls and wound rolls for this unit’s attacks while it is more than 6" from all other friendly units.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="b20c-5c4-9647-99f" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Glory Hog" hidden="false" id="7396-d029-dcc2-fac4" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Glory Hog" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="6b86-d4a3-1cc4-4edb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If an enemy **^^Hero^^** is destroyed by this unit, this unit has the **^^Euphoric^^** keyword for the rest of the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="84f9-a7d7-4d4c-1fd5" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Into the Fray" hidden="false" id="6332-3846-cea0-858" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Into the Fray" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="7344-d235-48ec-c0c8">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit charged this turn and the unmodified charge roll was 8+, this unit has Strike-first for the rest of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="841e-383-a922-1551" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="48d9-83ff-af5a-c424"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="c6a5-ffa4-c464-de54" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Manifestation Lores" id="8cde-4480-bc83-af0e" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Manifestations of Depravity" hidden="false" id="8518-8841-8152-3ede" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Summon Mesmerising Mirror" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="4939-1e19-7294-fb59">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Mesmerising Mirror** on the battlefield, pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Mesmerising Mirror** wholly within 12" of the caster and visible to them.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Wheels of Excruciation" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="42f2-b28-e43e-4bb2">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Wheels of Excruciation** endless spell on the battlefield, pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Wheels of Excruciation** endless spell wholly within 12" of the caster, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Dreadful Visage" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="daee-6de6-4c2a-e574">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Dreadful Visage** on the battlefield, pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">If there is not a friendly **Dreadful Visage** on the battlefield, pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7c9a-b784-3368-ce24"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Mesmerising Mirror" hidden="false" id="6616-9a04-5593-8044" type="selectionEntry" targetId="61ca-47bf-34ed-c847">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6d5e-d653-c81b-a796"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cbc7-edec-8347-bc14"/>
</constraints>
</entryLink>
<entryLink import="true" name="Wheels of Excruciation" hidden="false" id="22cd-22d7-6bd2-4c02" type="selectionEntry" targetId="14ec-16c5-a9d2-7252">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8100-964b-7af9-d144"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="684e-d6c3-d579-1b8d"/>
</constraints>
</entryLink>
<entryLink import="true" name="Dreadful Visage" hidden="false" id="42c-c93-ca5d-53c7" type="selectionEntry" targetId="25c4-8769-f67a-78c3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="64c-44fd-2a24-68b7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="44be-49c0-4ce4-14a"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Spell Lores" id="a0dd-82b8-8dcd-c15a" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lore of Extravagance" hidden="false" id="c085-6e5e-a0ce-fb46" defaultAmount="1" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Sadistic Spite" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="fd34-61d4-3eab-e844">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, pick a visible friendly **^^Euphoric^^** unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The target’s melee weapons have **Crit (Mortal)** instead of **Crit (2 Hits)** for the rest of the battle round.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="Overwhelming Acquiescence" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="4e7-3bd0-b982-e2ac">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, pick a visible enemy unit within 18" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Add 1 to wound rolls for attacks that target that enemy unit until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Phantasmagoria" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="90b7-4f61-a98c-ffc1">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">5</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Hedonites of Slaanesh Wizard^^** to cast this spell, pick a visible enemy unit within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Until the start of your next turn, each time the target is picked to use a **^^Fight^^** ability, before reactions are used, you can pick a friendly unit in combat with the target. That friendly unit can move 2D3". It can pass through the combat ranges of enemy units and can end that move in combat.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="424a-3eff-4c28-b7e5"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="962-79a3-1893-371f" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Bladebringer, Herald on Exalted Chariot" hidden="false" id="2a70-316d-aa05-119b" type="selectionEntry" targetId="95eb-6e32-fd0f-7b39">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="a6e5-a87b-f738-88c7"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="bdaf-d1d4-36e2-56b4" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9393-6106-7840-6ce9" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
</entryLink>
<entryLink import="true" name="Contorted Epitome" hidden="false" id="d020-4ef6-10c2-b2de" type="selectionEntry" targetId="7ff4-32c2-f67e-5476">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="ea0d-652-d7a-1055"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="47df-42c9-3c4-150f" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="649-e1d2-6a3f-5166" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Dexcessa, Talon of Slaanesh" hidden="false" id="aef5-ae76-3646-e83e" type="selectionEntry" targetId="7c43-7c1e-d92c-f199">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c3d7-ea6c-249e-8e86" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9423-721e-7294-aee4"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="0" field="9423-721e-7294-aee4">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="bf83-8936-c723-921a" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="240"/>
</costs>
</entryLink>
<entryLink import="true" name="Glutos Orscollion, Lord of Gluttony" hidden="false" id="e92b-705c-75c9-f634" type="selectionEntry" targetId="fac2-b0a0-feec-f70f">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9c30-f6b1-140-f431"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="470"/>
</costs>
</entryLink>
<entryLink import="true" name="Infernal Enrapturess, Herald of Slaanesh" hidden="false" id="4418-f455-872b-5c33" type="selectionEntry" targetId="37ec-d134-cffd-d637">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8fb0-25a8-5bd2-4d01" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fc94-72c-a558-c907" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fa3c-59e-ef8e-d133" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4dd8-2eb6-1e7d-ba23" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3dc-2b50-5aef-e9d4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="de65-6b19-da44-4b2b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c3d7-ea6c-249e-8e86" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="8298-b020-8587-9ad4"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="5887-a39a-9b4e-a630" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="f230-cd46-6bc8-229f" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="bf83-8936-c723-921a" field="category"/>
<modifier type="set" value="0" field="8298-b020-8587-9ad4">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="aef5-ae76-3646-e83e" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="14c2-ceed-8427-b5c6" shared="true"/>
<condition type="atLeast" value="2" field="selections" scope="force" childId="bf83-8936-c723-921a" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</entryLink>
<entryLink import="true" name="Keeper of Secrets" hidden="false" id="1694-ac90-1d19-b789" type="selectionEntry" targetId="4011-5d78-a180-3c22">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="d5a2-d26a-b245-a309"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="639a-7561-5d43-890c" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="9d42-8e94-ee08-d1e4" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="440"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord of Hubris" hidden="false" id="8fda-94a4-7fd5-29ed" type="selectionEntry" targetId="ef1b-a791-66b4-735f">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e6cc-9cda-6e08-4921" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d62-3e9e-6c66-6e2c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c193-2e94-c3ab-ca05" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="de65-6b19-da44-4b2b" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="3fe3-f8b8-3b97-d751"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8d20-254e-e23a-1c99" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="4c2d-3fc5-7416-ca7f" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="d7aa-c392-f0a6-dad9" field="category"/>
<modifier type="set" value="0" field="3fe3-f8b8-3b97-d751">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="d7aa-c392-f0a6-dad9" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="bf83-8936-c723-921a" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="8d4f-1390-6596-ef54" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord of Pain" hidden="false" id="f921-f7c0-5a6d-7ec6" type="selectionEntry" targetId="4890-8c79-a2bd-b1ad">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e6cc-9cda-6e08-4921" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d62-3e9e-6c66-6e2c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c193-2e94-c3ab-ca05" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="de65-6b19-da44-4b2b" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="f1d1-e10d-f8c6-734a"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8969-262a-172e-c929" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2ed3-126b-601a-e112" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="d7aa-c392-f0a6-dad9" field="category"/>
<modifier type="set" value="0" field="f1d1-e10d-f8c6-734a">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="d7aa-c392-f0a6-dad9" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="bf83-8936-c723-921a" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="8d4f-1390-6596-ef54" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Shalaxi Hellbane" hidden="false" id="79a6-40ee-6379-39a4" type="selectionEntry" targetId="288-b306-7776-96b5">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="66dc-f192-3254-fd2e"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="490"/>
</costs>
</entryLink>
<entryLink import="true" name="Shardspeaker of Slaanesh" hidden="false" id="c464-941f-6bd1-c4c5" type="selectionEntry" targetId="27ef-714f-2f7-3770">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="3341-e39c-63da-35ce"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8949-f1af-fd12-fcd6" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="c219-2322-9813-e934" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Syll'Esske, the Vengeful Allegiance" hidden="false" id="5eab-d8e5-8142-e97d" type="selectionEntry" targetId="89b7-8cfa-f458-12c0">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="6405-ab19-589e-8cef"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Sigvald, Prince of Slaanesh" hidden="false" id="d949-ec2f-c492-3b94" type="selectionEntry" targetId="a172-db1d-3ad4-c354">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="1ce7-f4ab-ef26-a604"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
</entryLink>
<entryLink import="true" name="Synessa, the Voice of Slaanesh" hidden="false" id="14c2-ceed-8427-b5c6" type="selectionEntry" targetId="eb63-b209-7932-2b43">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fa3c-59e-ef8e-d133" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="7285-1a4a-d3bd-665b"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="0" field="7285-1a4a-d3bd-665b">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="bf83-8936-c723-921a" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="The Masque" hidden="false" id="f09a-c265-e3cd-6130" type="selectionEntry" targetId="19fa-187-b059-ffce">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8fb0-25a8-5bd2-4d01" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fc94-72c-a558-c907" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fa3c-59e-ef8e-d133" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4dd8-2eb6-1e7d-ba23" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3dc-2b50-5aef-e9d4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="de65-6b19-da44-4b2b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c3d7-ea6c-249e-8e86" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="81a1-7711-dc08-b726"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="bf83-8936-c723-921a" field="category"/>
<modifier type="set" value="0" field="f825-683e-6681-c7b8">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="aef5-ae76-3646-e83e" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="14c2-ceed-8427-b5c6" shared="true"/>
<condition type="atLeast" value="2" field="selections" scope="force" childId="bf83-8936-c723-921a" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="The Masque" hidden="false" id="5c24-aded-3430-9992" type="selectionEntry" targetId="19fa-187-b059-ffce">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="7e38-a76f-741e-c4fb" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Bladebringer, Herald on Exalted Chariot" hidden="false" id="8fb0-25a8-5bd2-4d01" type="selectionEntry" targetId="95eb-6e32-fd0f-7b39">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="ecda-1a7b-2096-aee1" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a04f-e4d9-7727-52d1" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="cb0c-1a1e-9335-f87d" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
</entryLink>
<entryLink import="true" name="Contorted Epitome" hidden="false" id="fc94-72c-a558-c907" type="selectionEntry" targetId="7ff4-32c2-f67e-5476">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="363c-62c3-5e77-b537" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a17e-57f9-844-a85b" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b0d5-b2bd-5b2-e6d2" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Dexcessa, Talon of Slaanesh" hidden="false" id="fa3c-59e-ef8e-d133" type="selectionEntry" targetId="7c43-7c1e-d92c-f199">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="4abf-8d78-3a78-5f7a" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="240"/>
</costs>
</entryLink>
<entryLink import="true" name="Glutos Orscollion, Lord of Gluttony" hidden="false" id="e6cc-9cda-6e08-4921" type="selectionEntry" targetId="fac2-b0a0-feec-f70f">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="17e8-f874-ad65-5ead" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="470"/>
</costs>
</entryLink>
<entryLink import="true" name="Infernal Enrapturess, Herald of Slaanesh" hidden="false" id="b2ba-e9f5-44b1-5b29" type="selectionEntry" targetId="37ec-d134-cffd-d637">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="13f9-605a-fc70-c955" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="2ca0-796c-72a3-61c" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="4b4c-741b-cbc7-695b" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</entryLink>
<entryLink import="true" name="Keeper of Secrets" hidden="false" id="4dd8-2eb6-1e7d-ba23" type="selectionEntry" targetId="4011-5d78-a180-3c22">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="4839-41b4-61b6-2002" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="446-a916-1589-d635" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2ea2-10b6-ee12-3c7f" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="440"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord of Hubris" hidden="false" id="e120-58a7-b8ef-ab66" type="selectionEntry" targetId="ef1b-a791-66b4-735f">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="5bb7-4a71-5496-5460" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="76f4-bec-a868-eda1" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="273c-cb07-4ca3-e083" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord of Pain" hidden="false" id="5c9a-9bc-17a5-10c4" type="selectionEntry" targetId="4890-8c79-a2bd-b1ad">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="13bb-7008-2b34-2401" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9b43-f62a-9101-46e0" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="543b-af72-d005-fea6" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Shalaxi Hellbane" hidden="false" id="3dc-2b50-5aef-e9d4" type="selectionEntry" targetId="288-b306-7776-96b5">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="f233-a1a9-f1e7-9f3f" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="490"/>
</costs>
</entryLink>
<entryLink import="true" name="Shardspeaker of Slaanesh" hidden="false" id="d62-3e9e-6c66-6e2c" type="selectionEntry" targetId="27ef-714f-2f7-3770">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="7c3e-173-75d4-fbe0" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="47f-ae9-30ea-3c3a" type="selectionEntryGroup" targetId="c061-56e0-f2c0-af3e"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b14b-1062-6b60-da94" type="selectionEntryGroup" targetId="521a-8c3e-b543-3b40"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Sigvald, Prince of Slaanesh" hidden="false" id="c193-2e94-c3ab-ca05" type="selectionEntry" targetId="a172-db1d-3ad4-c354">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="d221-1186-c36f-bb27" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
</entryLink>
<entryLink import="true" name="Syll'Esske, the Vengeful Allegiance" hidden="false" id="de65-6b19-da44-4b2b" type="selectionEntry" targetId="89b7-8cfa-f458-12c0">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="a7-a9b5-6aab-c743" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Synessa, the Voice of Slaanesh" hidden="false" id="c3d7-ea6c-249e-8e86" type="selectionEntry" targetId="eb63-b209-7932-2b43">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="649d-cef2-a109-1dcd" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Battle Traits: Hedonites of Slaanesh" hidden="false" id="9eab-ba5b-5d29-3c72" type="selectionEntry" targetId="77b8-2e38-40f0-4472">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="fc41-6b69-996b-29da" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fane of Slaanesh" hidden="false" id="a080-ae8d-69c-3193" type="selectionEntry" targetId="bad2-41cf-b054-d9b3"/>
<entryLink import="true" name="Blissbarb Archers" hidden="false" id="9d84-476c-99d7-bc26" type="selectionEntry" targetId="7516-fef5-83f7-22a7">
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fa3c-59e-ef8e-d133" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e6cc-9cda-6e08-4921" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4dd8-2eb6-1e7d-ba23" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e120-58a7-b8ef-ab66" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5c9a-9bc-17a5-10c4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3dc-2b50-5aef-e9d4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d62-3e9e-6c66-6e2c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c193-2e94-c3ab-ca05" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="de65-6b19-da44-4b2b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c3d7-ea6c-249e-8e86" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="4e6-33d6-5d6d-9a4f" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Blissbarb Seekers" hidden="false" id="86ef-7afc-8a53-73d5" type="selectionEntry" targetId="1a3b-a566-401c-d9c4">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="ed72-e45a-82d4-c68" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="fa3c-59e-ef8e-d133" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e6cc-9cda-6e08-4921" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4dd8-2eb6-1e7d-ba23" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e120-58a7-b8ef-ab66" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5c9a-9bc-17a5-10c4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3dc-2b50-5aef-e9d4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d62-3e9e-6c66-6e2c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c193-2e94-c3ab-ca05" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="de65-6b19-da44-4b2b" shared="true"/>