generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHedonites of Slaanesh - Library.cat
3307 lines (3307 loc) · 243 KB
/
Hedonites of Slaanesh - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="34e0-2290-e185-efd2" name="Hedonites of Slaanesh - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Bladebringer, Herald on Exalted Chariot" hidden="false" id="95eb-6e32-fd0f-7b39" publicationId="95fc-e96f-a916-bba1">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="da4a-90c3-77a4-3339" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Bladebringer, Herald on Exalted Chariot" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b86f-a293-9fd7-7f08">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Soulgorgers" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="b6c5-d7db-cdde-9884">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 friendly non-Unique **^^Hedonites of Slaanesh War Machines^^** wholly within 12" of this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Attacks characteristic of the targets’ melee weapons for the rest of the turn. This ability also affects **Companion** weapons.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Mutilating Blades" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2227-a3c3-63a4-efdf">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="3e63-8159-95c1-6616" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="7d95-1877-ed71-9da9" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="9233-21ff-c107-d521" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="c647-95d6-37b-4fb8" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="9058-d60b-3d8f-b254" targetId="f7bc-b618-4b5d-2bae" primary="false"/>
<categoryLink name="HERO" hidden="false" id="396-aea0-7586-fb91" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WIZARD (1)" hidden="false" id="ea06-7158-a474-1063" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Bladebringer, Herald on Exalted Chariot" hidden="false" id="4ed0-f85f-9e3-e2bb">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Steeds’ Poisoned Tongues" hidden="false" id="ff7c-2782-44a7-6013">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="be57-1812-8ee4-a6a6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9f9b-d417-d657-584f"/>
</constraints>
<profiles>
<profile name="Steeds’ Poisoned Tongues" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="569b-505f-7ba6-18f2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Flensing Whips and Piercing Claws" hidden="false" id="562f-609f-ce0c-17ed">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2dc8-be9b-8d98-351b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d368-d2be-c74e-62c5"/>
</constraints>
<profiles>
<profile name="Flensing Whips and Piercing Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="221c-4f94-91d2-f5b2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="9f9d-c704-e163-b32"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="6fa7-65e8-ddff-2719"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Shalaxi Hellbane" hidden="false" id="288-b306-7776-96b5" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="aaea-c838-9204-f622" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="3784-1991-71a8-3943" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Excess of Violence" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7e9d-6c7-e6aa-88b2">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly 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">The target can use 2 **^^Fight^^** abilities this turn. After the first is used, however, the target has **^^Strike-last^^** 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>
<profile name="Shalaxi Hellbane" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9d6c-f084-7381-a9a7">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">14"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Paramount Hunter" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="67ca-3436-910-c622">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Reaction: Opponent declared a **^^Charge^^** ability for a **^^Hero^^** within 9" of this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is not in combat, it can immediately move 2D6". It can pass through the combat ranges of enemy units but it must end that move within ½" of that **^^Hero^^**. If it does so, this unit has charged, and that **^^Hero^^**’s **^^Charge^^** ability has no effect.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**, **^^Move^^**, **^^Charge^^**, **^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Supernatural Grace" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="bbd0-62b7-cb3a-68a9">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from hit rolls for combat attacks that target this unit.</characteristic>
</characteristics>
</profile>
<profile name="Refine Senses" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="5ce3-79b1-1338-f8ec">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">4</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">For the rest of the turn:
• Add 1 to wound rolls for this unit’s attacks that target enemy **^^Heroes^^**.
• Add 1 to save rolls for attacks made by enemy **^^Heroes^^** that target this unit</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2"/>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="bbd4-a864-c34-9fe6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Soulpiercer** is 4.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="e329-fff5-2d09-c3da" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="e308-c780-e8b1-a7ea" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="73d4-457c-6fdb-a572" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="4c54-f860-1af5-af16" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="6821-e612-98f4-33d5" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="db68-989f-cdd2-1c49" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="a522-cf72-aba7-5891" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="f781-4f02-cd66-231a" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="e65-f41c-d629-fbae" targetId="67df-cdfb-d83f-3197" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Shalaxi Hellbane" hidden="false" id="9846-f238-fcdc-ad15">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Impaling Claws" hidden="false" id="443a-7539-773b-c04b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cff-f11c-4a60-aaf1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bc04-2215-11c5-54bb"/>
</constraints>
<profiles>
<profile name="Impaling Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b677-72b0-bde3-79a7">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Soulpiercer" hidden="false" id="b859-1a8e-b99b-96d8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="de2d-b9ea-8-ab82"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="883d-5fcc-82e1-673e"/>
</constraints>
<profiles>
<profile name="Soulpiercer" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ed01-6a17-ad1f-b376">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">2+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti‑**^^Hero^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="2413-6005-3a17-6f41"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="e07b-e5b-41e-e3da"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="The Masque" hidden="false" id="19fa-187-b059-ffce" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d112-e427-943d-48df" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a512-21ff-e264-219d" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="The Endless Dance" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4be4-1dbc-986c-28f2">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove this unit from the battlefield and set it up again on the battlefield more than 3" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="The Masque" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="aabd-e28e-1fbb-609a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Staff of Masks" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9f28-f70-c560-158f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects:
• Add 3 to the Attacks characteristic of this unit’s **Razor-edged Claws** for the rest of the 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>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="70c9-79bc-5bd9-b526" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="186-3239-4ef2-8cf0" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="86d2-1727-c879-23e0" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="d7d0-d602-3902-e03c" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="eb19-90f8-3242-5216" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="5112-1f18-7e1e-f22e" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (4+)" hidden="false" id="e0d5-69d7-44c-9798" targetId="f99f-98ee-909f-57cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="The Masque" hidden="false" id="e3ed-1397-36a0-7f11">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Razor-edged Claws" hidden="false" id="1d15-ad9d-ffb-6088">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6f2c-d8da-4dd7-c763"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c7cc-c287-1c86-8cad"/>
</constraints>
<profiles>
<profile name="Razor-edged Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="11ae-7fd2-845b-465d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="96b1-de53-cdd6-5ec0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4d06-5b3b-1379-f7da"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Sigvald, Prince of Slaanesh" hidden="false" id="a172-db1d-3ad4-c354" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="54e5-34e4-a0f4-4e2c" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="4827-6ca1-2139-cd54" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Sigvald, Prince of Slaanesh" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c5d6-e3c2-8769-3ff6">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Shardslash" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c741-a37c-d1dd-2922">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Ward rolls cannot be made for damage points inflicted by this unit’s combat attacks.</characteristic>
</characteristics>
</profile>
<profile name="The Glorious Reborn" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="9cd3-71bf-b0bc-c9a1">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit has **^^Strike-first^^** if it charged in the same turn.</characteristic>
</characteristics>
</profile>
<profile name="Powered by Vainglory" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="4940-f42a-8dca-ba24">
<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 6+, the Attacks characteristic of this unit’s **Shardslash** is equal to the unmodified charge roll.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="d5d-cac6-5ffb-511d" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="a404-6077-fbd0-15fe" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="c866-49d7-bf5d-7750" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="846e-daad-4787-7bec" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="3b7f-c673-8345-eedb" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="SYBARITE" hidden="false" id="c201-29ce-3efc-3ef5" targetId="9a4b-cd0b-84e1-16c5" primary="false"/>
<categoryLink name="WARD (4+)" hidden="false" id="8292-6a7a-b837-b3df" targetId="f99f-98ee-909f-57cd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="89c1-cab2-912f-95e1" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Sigvald, Prince of Slaanesh" hidden="false" id="19d6-6cd3-ca23-249e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Shardslash" hidden="false" id="6924-5205-6a01-f4b2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8c8f-a712-3978-3a4f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1849-b4ea-98f2-32d1"/>
</constraints>
<profiles>
<profile name="Shardslash" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ce0d-2441-f621-fc70">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">2+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="9324-3286-f512-61e8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="6eff-2c32-552b-ccda"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Dexcessa, Talon of Slaanesh" hidden="false" id="7c43-7c1e-d92c-f199" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="94ed-697c-af9b-e723" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="4898-fb0f-a944-58e0" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Joyous Battle Fury" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="33fa-e63b-972e-b465">
<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 enemy models were slain by this unit’s combat attacks this turn, **Heal (D3)** this unit, then place a **battle fury token** next to it.
Add 1 to the Attacks characteristic of this unit’s **Impaling Talons** for each **battle fury token** it has until the end of the next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Dexcessa, Talon of Slaanesh" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ae1f-40ce-28a6-4ba0">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">10</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Redolence of Violence" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="376b-72a-a3ac-faa8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick up to D3 other friendly non-**^^Hero Hedonites of Slaanesh Daemon^^** units wholly within 12" of this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Attacks characteristic of the targets’ melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Fleeting Dance of Death" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e38f-3ebf-80ca-50cc">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use **^^Charge^^** abilities even if it used a **^^Retreat^^** ability in the same turn. In addition, no mortal damage is inflicted on this unit by **^^Retreat^^** abilities.</characteristic>
</characteristics>
</profile>
<profile name="Scion of Slaanesh" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f1eb-18bc-1827-e173">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While a friendly **Synessa** is on the battlefield, subtract 1 from hit rolls for attacks that target this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="157b-d439-d07a-6ee5" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="8133-3410-94dd-e170" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="18fd-a28b-da9d-f0b" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="43e1-f127-976f-790c" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="8492-a381-6473-62c2" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="cb00-3551-ebf4-ec71" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="8b58-4e6-2344-8c98" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="67d6-9e67-1bba-7075" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="FLY" hidden="false" id="acae-885b-a9f2-d6a0" targetId="b979-4c3e-7d0e-6921" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Dexcessa, Talon of Slaanesh" hidden="false" id="73a3-a7ef-a34d-adb9">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Impaling Talons" hidden="false" id="b78e-152c-3d2d-74f9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6dc1-7c34-5eb4-3e16"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9ec8-7bff-e432-77d4"/>
</constraints>
<profiles>
<profile name="Impaling Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4b9b-1852-8949-740f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="cdf0-cd25-9829-4b93"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="6507-368e-4c37-3a84"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Keeper of Secrets" hidden="false" id="4011-5d78-a180-3c22" publicationId="95fc-e96f-a916-bba1">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="6510-cbf3-bdbf-23fd" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Locus of Slaanesh" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3202-5f34-c593-6008">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Hedonites of Slaanesh Daemon^^** unit that started the battle with 3 or more models and has been destroyed to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 4+, set up a replacement unit with half the number of models from the target unit (rounding up) wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Keeper of Secrets" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="295f-da80-a5bf-44e8">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Dark Temptations" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="fac7-e6a2-3799-be9d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat
with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects:
• Add 1 to hit rolls for the target’s attacks for the rest of the turn.
• Add 1 to save rolls for the target for the rest of the turn.
• If the target is damaged, **Heal (D3)** the target.
Then, add 1 to the Damage characteristic of this unit’s **Elegant Greatblade** for attacks that target that enemy unit for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Supernatural Grace" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ef74-ce62-b83d-127f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from hit rolls for combat attacks that target this unit.</characteristic>
</characteristics>
</profile>
<profile name="Cacophonic Choir" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="1bff-adc2-c078-9207">
<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 up to 3 visible enemy units within 6" of this unit to be the targets, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a dice for each target. If the roll exceeds the target’s Control characteristic, inflict D3 mortal damage on it.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2"/>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="32e1-9355-edf-c70">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Elegant Greatblade** is 4.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="705f-5686-86ec-41e6" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="a07c-40c6-34f5-35ab" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="7a44-9af1-d9c-a35f" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="6712-413d-47f8-7f69" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="a17a-dfdb-aad2-286a" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="b343-b9c6-dca4-789c" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="7fe8-9e69-899d-2179" targetId="8179-697a-9f4c-91d4" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Keeper of Secrets" hidden="false" id="aee0-9dc5-ffd0-8b2a">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Impaling Claws" hidden="false" id="6fd-4e16-ac1a-934c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="386-6ac9-e323-b9d1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="18f7-ba9f-6173-e1a8"/>
</constraints>
<profiles>
<profile name="Impaling Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="675d-5199-663-54fa">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Elegant Greatblade" hidden="false" id="ea65-458f-a4c2-2040">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b58-6eaa-11f8-e690"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="acd-c80f-79a5-51f7"/>
</constraints>
<profiles>
<profile name="Elegant Greatblade" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="976d-26bb-1caa-33fa">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">2+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="bb1b-6203-1326-204b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="8a37-3578-624e-b065"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Contorted Epitome" hidden="false" id="7ff4-32c2-f67e-5476" publicationId="95fc-e96f-a916-bba1">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5b4-eade-b3d5-347a" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Contorted Epitome" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="83b6-1839-b8f7-5126">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">9"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Horrible Fascination" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c149-4284-d4f8-abc9">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a command or **^^Retreat^^** ability for a unit in combat with this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Inflict D3 mortal damage on that enemy unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Swallow Energy" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2819-fbe5-f4b6-d237">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If you make a successful ward roll for this unit, add 1 to this unit’s power level until the end of your next turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="3f25-4827-c0be-a348" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="63af-b129-ac0d-e11b" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="8771-aa2b-9498-25b6" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="f398-78e6-e9cd-82cf" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="fce2-3493-b1a-5a89" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="ea5d-fd4a-508b-f946" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="WARD (4+)" hidden="false" id="4018-92ee-d1d-19fc" targetId="f99f-98ee-909f-57cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Contorted Epitome" hidden="false" id="db0f-33b1-7429-f65c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Piercing Claws and Coiled Tentacles" hidden="false" id="8da1-842f-fe5c-7d55">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a6c7-647b-419f-f11c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ae6c-826a-a201-1168"/>
</constraints>
<profiles>
<profile name="Piercing Claws and Coiled Tentacles" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="62a0-8db8-4df9-e06d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="fa2c-e0e6-23-d547"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4cb3-c2c5-36a9-2c8b"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Syll'Esske, the Vengeful Allegiance" hidden="false" id="89b7-8cfa-f458-12c0" publicationId="95fc-e96f-a916-bba1">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5d29-784f-2e8e-a1ed" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="2bc1-ddc6-9e82-79ee" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Deadly Symbiosis" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f9f0-b860-9f86-708f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly non-**^^Hero Sybarite^^** unit and a friendly non-**^^Hero Hedonites of Slaanesh Daemon^^** unit to be the targets. Both units must be wholly within 12" of this unit.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, if either target uses the ‘All-out Attack’ or ‘All-out Defence’ command, the other target can also use the same command in the same phase and no command points are spent to use the command a second time.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Syll'Esske, the Vengeful Allegiance" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c6aa-2ba3-b977-1029">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">9</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">4</characteristic>
</characteristics>
</profile>
<profile name="Subvert" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="64e9-6359-bfa9-48f8">
<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 visible enemy unit within 12" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The target cannot use commands for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="The Vengeful Allegiance" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="54d7-ea45-2331-be59">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time you make an unmodified save roll of 6 for a combat attack that targets this unit, inflict 1 mortal damage on the attacking unit after the **^^Fight^^** ability has been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="4887-5e3b-5d6f-65bf" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="bbf2-b4aa-94c2-c8ce" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="baf6-21c3-cb0-a619" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="8ee5-a02b-61ff-8eb8" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="b8b5-e6af-178d-aba4" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="9fc8-ea29-b7bf-8d3" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="SYBARITE" hidden="false" id="ebb4-93b4-2868-f11a" targetId="9a4b-cd0b-84e1-16c5" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="2b11-7069-5724-8d99" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="3072-8077-b9e3-3a1f" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Syll'Esske, the Vengeful Allegiance" hidden="false" id="8d4f-1390-6596-ef54">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Axe of Dominion" hidden="false" id="63fc-cf16-21fe-2041">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="226d-ae44-93a1-cd69"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4396-8635-1fb1-dc76"/>
</constraints>
<profiles>
<profile name="Axe of Dominion" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="9a02-2ce1-227c-e033">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scourging Whip" hidden="false" id="fc7a-cca3-892f-f432">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ec3-26c2-3ea0-54d5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d025-7f1b-104e-1123"/>
</constraints>
<profiles>
<profile name="Scourging Whip" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5423-62a0-2bcf-ee0">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">2+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="eb75-3af7-71e1-1f2e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="54e9-48fb-52e-6825"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Shardspeaker of Slaanesh" hidden="false" id="27ef-714f-2f7-3770" publicationId="95fc-e96f-a916-bba1">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="20f1-a7-5c74-ce70" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Shardspeaker of Slaanesh" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e666-f47e-b166-e0a3">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Mist Lurkers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3e1c-89b2-8934-e4f0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit successfully casts a spell, until the start of your next turn, it can attack with its **Shadowcloaked Claws**.</characteristic>
</characteristics>
</profile>
<profile name="Twisted Mirror" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5f99-7d41-9196-8cad">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit within 8" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 4+, subtract 1 from save rolls for the target until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="b4b6-cce-8a6-307e" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="5a17-c5e-5b72-7365" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="212f-72d7-88de-24bf" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="451-8845-a6e5-5537" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="SYBARITE" hidden="false" id="eca3-ad07-63b-a112" targetId="9a4b-cd0b-84e1-16c5" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="b328-a400-335a-bba3" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="1e7-b8d-40f6-1cfd" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Shardspeaker of Slaanesh" hidden="false" id="2d89-e7a0-73b8-c61d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Haze Staff" hidden="false" id="b24c-a58f-3c3b-4dfa">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8858-3928-ca6b-b1e9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e448-b88d-c464-e0c4"/>
</constraints>
<profiles>
<profile name="Haze Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c486-57b0-890b-9260">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Shadow-cloaked Claws" hidden="false" id="145d-efc5-ecdc-e7d7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fcdb-97b7-98ff-6a1b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="45b4-edcf-caf6-33e7"/>
</constraints>
<profiles>
<profile name="Shadow-cloaked Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e60b-543-aaa4-3405">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="Shadow-cloaked Claws" id="d375-b91e-a3e0-c7bb" hidden="false">
<description>This unit can only attack with Shadow-cloaked Claws by using the ‘Mist Lurkers’ ability.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="1d4a-113f-b526-7c95"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="cfc0-a769-a6cb-2621"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Seeker Chariot" hidden="false" id="4b99-af35-44db-7fd8" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Seeker Chariot" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d8ab-11d5-252d-4851">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Mutilating Blades" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bc71-d656-79e0-2aa0">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="2888-a81f-e3a8-ef51" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="dedc-213d-b933-5fdd" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="62b1-bdbb-5542-e9e3" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="a65a-5312-6385-6efc" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="6ee5-2153-c9dc-f3c6" targetId="f7bc-b618-4b5d-2bae" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Seeker Chariot" hidden="false" id="d68f-5841-bd0-8c02">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Flensing Whips and Piercing Claws" hidden="false" id="1b07-4857-fb31-8df3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8426-6bf1-5644-cbc1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="95c2-d084-3308-804a"/>
</constraints>
<profiles>
<profile name="Flensing Whips and Piercing Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3712-24bd-9422-ac34">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Steeds’ Poisoned Tongues" hidden="false" id="e74-75c5-9d61-3930">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="62c2-a277-afe6-5590"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dd49-ac1c-c315-713d"/>
</constraints>
<profiles>
<profile name="Steeds’ Poisoned Tongues" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d72f-a9d3-504c-8ab8">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="d505-4ba-e529-7014"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="8b5a-e3a7-2c17-5f5c"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Hellflayer" hidden="false" id="f41c-5481-64ee-8868" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Hellflayer" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="f620-91c1-c506-e682">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Soulscent" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d087-e01-a337-cc67">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 enemy units that this unit passed across this phase to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3 for each target. On a 2+, inflict an amount of mortal damage on the target equal to the roll. If any models are slain by this ability, this unit has **^^Ward (5+) 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>
<profile name="Threshing Doom" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3689-4fe6-8401-be4c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">When this unit moves, it can pass through models in enemy **^^Infantry^^** units and can pass through the combat ranges of enemy **^^Infantry^^** units, but it cannot end a move in combat unless specified in the ability used.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="beb9-fc-2c0e-b272" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="499b-2a70-ee6f-9bed" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="HEDONITES OF SLAANESH" hidden="false" id="6614-3472-4ec0-3fe" targetId="67df-cdfb-d83f-3197" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="78b-7ac9-1d9d-81f8" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="5fc5-f4ce-2ff8-d899" targetId="f7bc-b618-4b5d-2bae" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Hellflayer" hidden="false" id="b372-2af2-81c5-4da9">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Axle Blades" hidden="false" id="24ee-ccb5-749b-94a3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6af0-c0c1-79c0-60b6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="46fd-c2e-3aaa-a7f6"/>
</constraints>
<profiles>
<profile name="Axle Blades" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4015-1b12-7b35-fe41">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Steeds’ Poisoned Tongues" hidden="false" id="4d8b-5b7a-91eb-1bb0">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="50a1-ee3e-f76e-bc44"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ebf-1169-3139-650e"/>
</constraints>
<profiles>
<profile name="Steeds’ Poisoned Tongues" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c6fb-f0c7-647d-5b08">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Flensing Whips and Piercing Claws" hidden="false" id="6f7b-b915-7bc7-720">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2936-302e-9417-ee45"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b432-f6b-95b4-5adc"/>
</constraints>
<profiles>
<profile name="Flensing Whips and Piercing Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b033-3c8a-9639-829a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="6689-b066-d5ff-be95"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="c5dd-b81-da45-6ceb"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Slaangor Fiendbloods" hidden="false" id="de32-60a4-2468-ea8a" publicationId="95fc-e96f-a916-bba1">
<profiles>
<profile name="Slaangor Fiendbloods" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d035-8250-8324-8c1b">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">3</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Slaughter at Any Cost" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8d5f-41b0-5b25-65ee">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Enemy Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>