generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Chaos - Fallen Sororitas.cat
7501 lines (7489 loc) · 574 KB
/
Chaos - Fallen Sororitas.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="5809-d9c4-364c-743c" name="Chaos - Fallen Sororitas" revision="4" battleScribeVersion="2.03" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="179" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="63e0-063f-5439-30e0" name="D3 Roll">
<characteristicTypes>
<characteristicType id="d7c6-68ba-d627-4fb4" name="Ritual"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="0f8e-a868-8864-7101" name="Faction: Slaanesh" hidden="false"/>
<categoryEntry id="670e-0c4f-8fb3-e8af" name="Faction: Fallen Sororitas" hidden="false"/>
<categoryEntry id="5158-6bf4-eb9d-fdc1" name="Faction: Brides of Slaanesh" hidden="false"/>
<categoryEntry id="75d4-763d-1dd3-da11" name="Dark Mistress" hidden="false"/>
<categoryEntry id="be03-cdc4-32e9-8f2c" name="Miriael Sabathiel" hidden="false"/>
<categoryEntry id="d9a6-b6c2-fff0-bd75" name="Faction: Niflheim Valkyries" hidden="false"/>
<categoryEntry id="14b4-c5aa-8902-9ef9" name="Faction: Dancers of Midnight" hidden="false"/>
<categoryEntry id="78e4-e1b4-d9ed-7778" name="Faction: Daughters of Asteroth" hidden="false"/>
<categoryEntry id="d9c6-677d-3f53-2cd9" name="Faction: Void Naiads" hidden="false"/>
<categoryEntry id="670d-964b-9398-3351" name="Faction: Semirites" hidden="false"/>
<categoryEntry id="c918-d060-e192-895b" name="Daemon" hidden="false"/>
<categoryEntry id="9ea6-0e8c-bbff-b93b" name="Siren" hidden="false"/>
<categoryEntry id="4f03-15a2-513b-8bad" name="Kvan" hidden="false"/>
<categoryEntry id="5fc7-76a0-fe5f-1690" name="Laufey" hidden="false"/>
<categoryEntry id="6b63-06ae-265c-0628" name="Inamorata" hidden="false"/>
<categoryEntry id="df48-68f1-cb04-3820" name="Arch-heretic" hidden="false"/>
<categoryEntry id="4a69-6f43-639d-15ca" name="Fallen Sisters" hidden="false"/>
<categoryEntry id="3ae5-c4c8-4b39-1350" name="Pleasure Cultists" hidden="false"/>
<categoryEntry id="d346-a91f-92bc-5df3" name="Paramours" hidden="false"/>
<categoryEntry id="46d4-173e-92bc-05cc" name="Deviants" hidden="false"/>
<categoryEntry id="9cd4-9579-63b0-901c" name="Mistress of Sadism" hidden="false"/>
<categoryEntry id="fe8b-5c97-d792-7183" name="Ascended" hidden="false"/>
<categoryEntry id="0f30-895a-e027-3f42" name="Flesh Shaper" hidden="false"/>
<categoryEntry id="b706-1822-7e4a-9aad" name="Lampad" hidden="false"/>
<categoryEntry id="0bc0-4820-2212-13cf" name="Apostate" hidden="false"/>
<categoryEntry id="db2d-44bd-f1d9-3c70" name="Pleasure Cult Assassins" hidden="false"/>
<categoryEntry id="5481-04c3-17ec-7540" name="Harpies" hidden="false"/>
<categoryEntry id="2540-3ca3-efc9-dc04" name="Chaos Spawn" hidden="false"/>
<categoryEntry id="e0f5-a12f-374c-d491" name="Calliope" hidden="false"/>
<categoryEntry id="7d69-c738-f242-d95c" name="Tantalus Engines" hidden="false"/>
<categoryEntry id="a2e6-c7ae-081e-3f12" name="Daemon Engine" hidden="false"/>
<categoryEntry id="4c50-733f-43b5-0d5a" name="Altar" hidden="false"/>
<categoryEntry id="321a-002e-a3a7-176f" name="Altar of Agony" hidden="false"/>
<categoryEntry id="1f60-c53e-fcd2-0b5b" name="Fallen Rhino" hidden="false"/>
<categoryEntry id="274d-93ba-3af4-7c55" name="Rhino" hidden="false"/>
<categoryEntry id="1cc7-d9fa-f2c2-a7d8" name="Fallen Immolator" hidden="false"/>
<categoryEntry id="543f-175a-dfd5-9d3f" name="Fallen Repressor" hidden="false"/>
<categoryEntry id="e647-0d4b-f9be-023f" name="Noctilith Crown" hidden="false"/>
<categoryEntry id="7533-0baf-cd11-ccd0" name="Faction: Daemon" hidden="false"/>
<categoryEntry id="96a3-ae72-8433-eac7" name="Fane of Slaanesh" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="38c4-ac35-ba22-7e8b" name="Miriael Sabathiel" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3cb0-13f0-fcbf-7d7e" type="max"/>
</constraints>
<profiles>
<profile id="4f3d-effd-94a3-ebc6" name="Miriael Sabathiel" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="3844-34a4-cd2a-92b8" name="Damning Strike" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time you roll a hit roll of 6+ for Miriael Sabathiel in the Fight phase, she can immediately make an extra attack against the same unit using the same weapon. If she is targeting an ADEPTA SORORITAS unit, this ability takes effect on any hit rolls of 4+ instead. These extra attacks cannot themselves generate any further attacks.</characteristic>
</characteristics>
</profile>
<profile id="4c3f-2bb2-f1d3-7666" name="Armour of Ecstasy" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to Licentious Thirst rolls made to ignore wounds by Miriael Sabathiel.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="28f0-630d-c281-3012" name="Sororitas Rules" hidden="false" targetId="b07c-d4d5-28bf-caaf" type="infoGroup"/>
<infoLink id="818d-0ae0-bf6a-fd98" name="Corrupted Rosarius" hidden="false" targetId="06c6-1863-9e02-ca9e" type="profile"/>
<infoLink id="5450-8530-d766-f271" name="Mistress of Traitors" hidden="false" targetId="7973-92aa-13c8-1704" type="infoGroup"/>
<infoLink id="c147-5e7b-6c1f-78d2" name="Soul Eater" hidden="false" targetId="3979-5037-584b-a0ea" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="38c4-ac35-ba22-7e8b" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8f80-139a-b6c9-3b51" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="4779-bba9-e9c1-8f9d" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="41c1-0974-6161-c7dc" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="b577-d805-b429-a34c" name="Faction: Slaanesh" hidden="false" targetId="0f8e-a868-8864-7101" primary="false"/>
<categoryLink id="500a-0c93-0d29-c3b0" name="Faction: Fallen Sororitas" hidden="false" targetId="670e-0c4f-8fb3-e8af" primary="false"/>
<categoryLink id="026f-066e-9f78-5ca3" name="Faction: Brides of Slaanesh" hidden="false" targetId="5158-6bf4-eb9d-fdc1" primary="false"/>
<categoryLink id="18db-1bd7-9ab4-a5a5" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="bf41-c837-3fe6-39dd" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="a143-771c-e430-c51d" name="Dark Mistress" hidden="false" targetId="75d4-763d-1dd3-da11" primary="false"/>
<categoryLink id="daf6-ef8e-6da1-e92c" name="Miriael Sabathiel" hidden="false" targetId="be03-cdc4-32e9-8f2c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="be32-efaa-4473-13a8" name="Cyber-kestral" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce62-65ed-8256-b734" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b42-e24f-3834-e1ce" type="max"/>
</constraints>
<profiles>
<profile id="d62a-4cc7-ecd4-ec86" name="Cyber-kestral" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ca60-a96c-f887-5a9c" name="The Agonizer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b09-57a4-dd48-5dbe" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ab5-d417-ea22-a7d4" type="max"/>
</constraints>
<profiles>
<profile id="d420-688e-9c47-2c5f" name="The Agonizer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">For every wound roll of 6+, the target suffers a mortal wound in addition to this weapons usual damage.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b5e4-1822-833e-f1d7" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fcf3-0fb1-2caa-3c43" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a9ed-13b1-f815-d654" type="min"/>
</constraints>
</entryLink>
<entryLink id="046e-323c-814f-d2f7" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f3c-4376-1788-40c5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b934-658b-5d29-0d3c" type="min"/>
</constraints>
</entryLink>
<entryLink id="726a-930e-84f9-e20b" name="Warlord" hidden="false" collective="false" import="true" targetId="8f80-139a-b6c9-3b51" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="pts" typeId="points" value="110.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f729-d1e0-58ed-66c1" name="Kvan" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5a13-62e1-4419-8f17" type="max"/>
</constraints>
<profiles>
<profile id="65c1-a10a-9aba-6685" name="Mesmerising Melodies (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Enemy units within 6” of Kvan must subtract 1 from their Leadership characteristic. Enemy units within this radius must also subtract 1 from all hit rolls.</characteristic>
</characteristics>
</profile>
<profile id="29f8-69e3-198e-93d3" name="Siren Queen (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">During your Movement phase, Kvan may sing two of the songs below. All friendly VOID NAIADS INFANTRY, BIKER and CAVALRY units within 6” of her may gain the relevant benefits until the start of your next turn. A unit can only be affected by this ability or the Siren's Song ability once per battle round.
• Song of Profusion: All Assault and Rapid Fire weapons in the affected units fire 1 additional shot at units within half range.
• Song of Bliss: Add 1 to Licentious Thirst rolls made by the affected units.
• Song of Quicksilver: Affected units improve the AP of their weapons by 1 during the Fight phase (e.g. a weapon with AP 0 would become AP -1).
• Song of Gaiety: Affected units may use Kvan's Leadership characteristic instead of their own.</characteristic>
</characteristics>
</profile>
<profile id="b289-2f8f-958e-693a" name="Kvan" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c906-14d8-16a0-a7e9" name="Sororitas Rules" hidden="false" targetId="b07c-d4d5-28bf-caaf" type="infoGroup"/>
<infoLink id="8477-c849-e19c-d470" name="Corrupted Rosarius" hidden="false" targetId="06c6-1863-9e02-ca9e" type="profile"/>
<infoLink id="7917-8391-1d37-f5f3" name="Song of Slaanesh" hidden="false" targetId="0a48-2647-c63c-df0b" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="f729-d1e0-58ed-66c1" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8f80-139a-b6c9-3b51" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="6392-ad80-b2a5-a904" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="1fe0-a86d-4235-0127" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="d8c0-2bed-5781-59c4" name="Faction: Slaanesh" hidden="false" targetId="0f8e-a868-8864-7101" primary="false"/>
<categoryLink id="1fa4-3f0a-3619-d556" name="Faction: Fallen Sororitas" hidden="false" targetId="670e-0c4f-8fb3-e8af" primary="false"/>
<categoryLink id="2202-eed5-ea79-564f" name="Faction: Void Naiads" hidden="false" targetId="d9c6-677d-3f53-2cd9" primary="false"/>
<categoryLink id="f68e-5050-c557-d864" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="707f-0c52-7f9f-02dd" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="b188-ec79-9dac-af57" name="Daemon" hidden="false" targetId="c918-d060-e192-895b" primary="false"/>
<categoryLink id="80c0-1a79-ad76-a950" name="Siren" hidden="false" targetId="9ea6-0e8c-bbff-b93b" primary="false"/>
<categoryLink id="8195-1603-d688-1880" name="Kvan" hidden="false" targetId="4f03-15a2-513b-8bad" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="16ee-a1ca-2886-20a6" name="Melody" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ffe-9f69-c8d6-d86f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cecf-acb7-25ec-f77a" type="max"/>
</constraints>
<profiles>
<profile id="22c8-0ce7-1195-e59d" name="Melody" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its target. Units attacked by this weapon do not gain any bonus to their saving throws for being in cover.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a133-06e8-baf3-8595" name="Harmony" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e23-511a-73f2-cace" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9936-dfec-588f-35fb" type="max"/>
</constraints>
<profiles>
<profile id="d2b2-56f0-b450-a90b" name="Harmony" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">-</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When attacking with this weapon, choose one of the profiles below.</characteristic>
</characteristics>
</profile>
<profile id="62f1-fa0f-467c-f040" name="Harmony - Single frequency" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Units attacked by this weapon do not gain any bonus to their saving throws.</characteristic>
</characteristics>
</profile>
<profile id="29cb-45c7-32e2-6f4c" name="Harmony - Varied frequency" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Units attacked by this weapon do not gain any bonus to their saving throws.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ff20-6930-c3ab-1713" name="Warlord" hidden="false" collective="false" import="true" targetId="8f80-139a-b6c9-3b51" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="pts" typeId="points" value="175.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="361f-7730-7914-a208" name="Laufey" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="dd64-cc5b-202a-532a" name="Tyrant of Niflheim (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Friendly NIFLHEIM VALKYRIES units within 6” of Laufey can never lose more than one model as a result of any single failed Morale test.</characteristic>
</characteristics>
</profile>
<profile id="1c73-dc01-89a3-ec80" name="Freezing Blizzard" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Enemy units targeting Laufey in the shooting phase must subtract 1 from their hit rolls. Enemy units attempting to charge her must subtract 2 from their charge distance.</characteristic>
</characteristics>
</profile>
<profile id="0de4-50b2-ffdf-acf0" name="Laufey" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">2</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">2</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite and two powers from the Dark Theurgy discipline.</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b">-</characteristic>
</characteristics>
</profile>
<profile id="0a06-b7b2-7d07-6446" name="Laufey" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">7+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c100-cb10-08bd-5498" name="Sororitas Rules" hidden="false" targetId="b07c-d4d5-28bf-caaf" type="infoGroup"/>
<infoLink id="bc1b-a718-876b-c3b6" name="Corrupted Rosarius" hidden="false" targetId="06c6-1863-9e02-ca9e" type="profile"/>
<infoLink id="daa5-9eeb-8ff8-750f" name="Chill Aura" hidden="false" targetId="e8da-c3b6-df19-37a7" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="361f-7730-7914-a208" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8f80-139a-b6c9-3b51" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="36c7-b844-9765-bcfa" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="0d89-31bd-dc63-841d" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8963-bda2-11f9-7f30" name="Faction: Slaanesh" hidden="false" targetId="0f8e-a868-8864-7101" primary="false"/>
<categoryLink id="a90e-b754-ef65-d022" name="Faction: Fallen Sororitas" hidden="false" targetId="670e-0c4f-8fb3-e8af" primary="false"/>
<categoryLink id="3007-f00b-d54d-bac9" name="Faction: Niflheim Valkyries" hidden="false" targetId="d9a6-b6c2-fff0-bd75" primary="false"/>
<categoryLink id="e3e1-d585-7001-9839" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="b834-10fe-a474-532b" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="aa7d-1845-d3f1-b15f" name="Psyker" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="6997-a8b6-9222-4c34" name="Laufey" hidden="false" targetId="5fc7-76a0-fe5f-1690" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e394-4639-cc6d-1a81" name="Freezing blast" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08e7-cfe9-c765-03fd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee98-9bc3-134f-265e" type="max"/>
</constraints>
<profiles>
<profile id="ccec-ec1b-64d4-5547" name="Freezing blast" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">-</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When attacking with this weapon, choose one of the profiles below. If a model suffers any unsaved wounds from this weapon but is not slain, roll a D6; on a 6, the target suffers a mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="a36b-09f0-4729-328c" name="Freezing blast - Dispersed" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="7363-795b-aa04-6861" name="Freezing blast - Focused" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e117-186d-c0dd-7a53" name="Frozen touch" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9ed-4e06-ccda-f6d3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a19-a33e-aef1-1179" type="max"/>
</constraints>
<profiles>
<profile id="df4c-021e-1b07-75d4" name="Frozen touch" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If a model suffers any unsaved wounds from this weapon but is not slain, roll a D6; on a 6, the target suffers a mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="6f3c-0f80-55a2-df3a" name="Smite" hidden="false" collective="false" import="true" targetId="03fd-db47-5333-1e1f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc58-7d20-6e3f-e32c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e81-5f93-6f3d-e0b2" type="max"/>
</constraints>
</entryLink>
<entryLink id="639c-c825-965e-0424" name="Dark Theurgy discipline" hidden="false" collective="false" import="true" targetId="f873-5548-b76d-6be8" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="375d-7407-4ac3-3882" type="max"/>
</constraints>
</entryLink>
<entryLink id="1dfc-eebb-2d54-0031" name="Warlord" hidden="false" collective="false" import="true" targetId="8f80-139a-b6c9-3b51" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="95.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4680-5bb8-f5f9-7ff0" name="Dark Mistress" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Dark Mistress with Jump Pack">
<conditions>
<condition field="selections" scope="4680-5bb8-f5f9-7ff0" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="55b7-a67c-a86e-bed4" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Sect Faction Category modifiers</comment>
<modifiers>
<modifier type="add" field="category" value="14b4-c5aa-8902-9ef9">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9958-a401-36a1-b987" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="5158-6bf4-eb9d-fdc1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="259d-ee55-96f7-ff1e" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d9a6-b6c2-fff0-bd75">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eefe-f4fe-69c1-5c7b" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="670d-964b-9398-3351">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e4d0-e90a-58a6-7d6c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="78e4-e1b4-d9ed-7778">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="543b-736a-d3b6-fa39" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d9c6-677d-3f53-2cd9">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e6b-8502-7709-9d7c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="34ae-2009-8f13-5da0" name="Dark Mistress" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="4680-5bb8-f5f9-7ff0" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="55b7-a67c-a86e-bed4" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1477-217c-e15c-0495" name="Sororitas Rules" hidden="false" targetId="b07c-d4d5-28bf-caaf" type="infoGroup"/>
<infoLink id="8ae2-2554-64b9-2458" name="Mistress of Traitors" hidden="false" targetId="7973-92aa-13c8-1704" type="infoGroup"/>
<infoLink id="2e17-a390-f017-2e65" name="Corrupted Rosarius" hidden="false" targetId="06c6-1863-9e02-ca9e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1e2b-99da-c589-a2d8" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="8b92-efa4-71cc-795f" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="f61e-98ce-f265-56c5" name="Faction: Slaanesh" hidden="false" targetId="0f8e-a868-8864-7101" primary="false"/>
<categoryLink id="ce38-b617-ce21-47a8" name="Faction: Fallen Sororitas" hidden="false" targetId="670e-0c4f-8fb3-e8af" primary="false"/>
<categoryLink id="a208-699d-1c84-1b04" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="d9fa-444a-0b20-299b" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="9ab3-2873-da17-6533" name="Dark Mistress" hidden="false" targetId="75d4-763d-1dd3-da11" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="55b7-a67c-a86e-bed4" name="Jump Pack" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="18e6-50e0-d16b-b0fb" type="max"/>
</constraints>
<profiles>
<profile id="efac-f06b-7f46-5ab4" name="Sky Strike" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">During deployment, if this model has a jump pack, you can set it up high in the skies instead of placing it on the battlefield. At the end of any of your Movement phases this model can descend from the sky – set it up anywhere on the battlefield that is more than 9" away from any enemy models.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e27e-1379-404e-028a" name="Fly" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="5d5a-9f9e-8b21-900d" name="Jump Pack" hidden="false" targetId="f627-f23e-a3b4-dc2c" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="1910-8c58-bb56-b35c" name="Exchange bolt pistol" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e1ea-e82e-b890-9b24" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd50-a44f-8546-c649" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4874-eefb-ad83-d423" name="Pistols" hidden="false" collective="false" import="true" targetId="65a7-ba54-face-0b64" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="d9a7-265a-57e8-c3e8" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e66-b821-fef1-434e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9a7-265a-57e8-c3e8" type="min"/>
</constraints>
</entryLink>
<entryLink id="f7c4-ffc6-73b3-b619" name="Ranged weapons" hidden="false" collective="false" import="true" targetId="43fa-9355-df11-e8d9" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1fad-23dd-f667-2bcf" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2c6b-c956-3b3f-2efd" name="Melee weapons" hidden="false" collective="false" import="true" targetId="df85-4715-1223-1bcb" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c6d0-96e8-a539-ecc1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a9f-9ea1-86f4-9d5a" type="max"/>
</constraints>
</entryLink>
<entryLink id="436d-97ee-cf9f-ef5c" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3ab0-1c57-19f5-cf15" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5359-7c32-6d10-409c" type="max"/>
</constraints>
</entryLink>
<entryLink id="b262-0429-da09-fe4a" name="Warlord" hidden="false" collective="false" import="true" targetId="8f80-139a-b6c9-3b51" type="selectionEntry"/>
<entryLink id="2c1c-7e68-00b3-d293" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="78b1-eaa8-8883-5efe" type="selectionEntryGroup"/>
<entryLink id="fdaf-5f3b-839f-92e7" name="Relics of Defilement" hidden="false" collective="false" import="true" targetId="3224-8a33-9c13-5ef4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="55.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8673-6934-5eb7-6fc4" name="Sect Choice" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc58-f0fd-cbdc-dc3b" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="791c-071c-2415-8928" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3388-6bc5-9d1d-a2f8" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="4340-cad5-cc89-7179" name="Sect Choice" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0b65-ab23-a8c1-c100" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ab3b-eca5-bdd1-5cbd" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="259d-ee55-96f7-ff1e" name="Brides of Slaanesh" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6624-3f43-26f8-4057" name="Scintillating Seductresses" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Subtract 1 from the Leadership characteristic of enemy units while they are within 6" of any units with this Indulgence. In addition, each time an enemy model within 6" of a unit with this indulgence flees as a result of a failed morale test, roll a D6 before removing that model: on a 5+, that model attacks its former allies and its unit suffers a mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eefe-f4fe-69c1-5c7b" name="Niflheim Valkyries" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cb53-2cdc-e1f8-4281" name="Permafrost Protection" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Enemy units targeting INFANTRY, BIKERS, or CAVALRY with this indulgence must re-roll wound rolls of 6. In addition, when a model with this indulgence would lose a wound as a result of a mortal wound in the Psychic phase, roll one D6; on a 5+ that wound is not lost.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e4d0-e90a-58a6-7d6c" name="Semirites" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9e70-75e7-1798-b4d8" name="Semirites" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Units with this Indulgence increase the AP and Damage of their weapons by 1 when targeting units with the HQ or Elites battlefield role. For example, a boltgun wielded by a Semirite unit would increase its AP from 0 to -1 and its Damage from 1 to 2.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9958-a401-36a1-b987" name="Dancers of Midnight" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a327-cc2b-fbeb-c458" name="Monstrous Modifications" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When resolving an attack made with a melee weapon by a model with this indulgence, an unmodified hit roll of 6 scores 1 additional hit. Additionally, when a unit with this indulgence Advances or makes a charge move, add 1 to the Advance roll or charge roll. VEHICLES and CHARIOTS do not benefit from this indulgence.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="543b-736a-d3b6-fa39" name="Daughters of Asteroth" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ad64-2f40-5f73-7bb8" name="Insidious Infiltrators" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Roll a D6 each time your enemy spends 1 or more command points. On a 5+, you gain 1 Command Point. Additionally, roll a D6 whenever you spend 1 or more command points. On a 4+, you gain a Sin Token. This does not count towards the usual amount of Sin Tokens you can receive in a phase, but you can only gain 1 Sin Token per battle round in this manner.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e6b-8502-7709-9d7c" name="Void Naiads" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6b9e-4d06-45ab-44bf" name="Void Naiads" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When an enemy unit within 6" of a unit with this indulgence makes a Morale test, that unit must roll an additional die and discard the lowest result. Furthermore, units with this indulgence increase the range of sonic weapons they wield by 6".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1091-b1a1-dd33-68ad" name="Dark Mistress on Steed of Slaanesh" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<comment>Sect Faction Category modifiers</comment>
<modifiers>
<modifier type="add" field="category" value="14b4-c5aa-8902-9ef9">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9958-a401-36a1-b987" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="5158-6bf4-eb9d-fdc1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="259d-ee55-96f7-ff1e" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d9a6-b6c2-fff0-bd75">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eefe-f4fe-69c1-5c7b" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="670d-964b-9398-3351">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e4d0-e90a-58a6-7d6c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="78e4-e1b4-d9ed-7778">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="543b-736a-d3b6-fa39" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d9c6-677d-3f53-2cd9">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e6b-8502-7709-9d7c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="09d7-e0ec-3af4-88b1" name="Dark Mistress on Steed of Slaanesh" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">14"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dfbe-71f2-23dd-14f1" name="Sororitas Rules" hidden="false" targetId="b07c-d4d5-28bf-caaf" type="infoGroup"/>
<infoLink id="1c7c-9448-41fb-2e90" name="Mistress of Traitors" hidden="false" targetId="7973-92aa-13c8-1704" type="infoGroup"/>
<infoLink id="32aa-dee2-e546-438c" name="Corrupted Rosarius" hidden="false" targetId="06c6-1863-9e02-ca9e" type="profile"/>
<infoLink id="b10f-dd16-b824-3fdb" name="Unholy Speed" hidden="false" targetId="3a25-648e-fbc6-1f9d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3b5a-027d-df1e-17c4" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="b972-cd05-7c27-ff8d" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="05ca-f8db-9073-b5af" name="Faction: Slaanesh" hidden="false" targetId="0f8e-a868-8864-7101" primary="false"/>
<categoryLink id="8421-7ece-34c0-3f3b" name="Faction: Fallen Sororitas" hidden="false" targetId="670e-0c4f-8fb3-e8af" primary="false"/>
<categoryLink id="e66f-b9c5-468a-7ee1" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="0aac-0c6d-a80e-f2bc" name="Cavalry" hidden="false" targetId="ad01-caec-17d9-cb8d" primary="false"/>
<categoryLink id="67c8-5047-7af0-e9fd" name="Daemon" hidden="false" targetId="c918-d060-e192-895b" primary="false"/>
<categoryLink id="1495-8e60-1bc7-5479" name="Dark Mistress" hidden="false" targetId="75d4-763d-1dd3-da11" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="dfa8-0cb5-0f75-f80b" name="Exchange bolt pistol" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="daaf-da12-5d8b-cda3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8dee-f6de-8e56-dbc8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4f43-1d7c-bd7d-6fef" name="Pistols" hidden="false" collective="false" import="true" targetId="65a7-ba54-face-0b64" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="7271-7b11-0abb-3171" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0105-d3a6-5a3f-488e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7271-7b11-0abb-3171" type="min"/>
</constraints>
</entryLink>
<entryLink id="32f3-36ac-fb0b-f716" name="Ranged weapons" hidden="false" collective="false" import="true" targetId="43fa-9355-df11-e8d9" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="24d1-e778-a122-acfa" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0583-2b73-6f7e-32d6" name="Melee weapons" hidden="false" collective="false" import="true" targetId="df85-4715-1223-1bcb" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a771-f1f6-05b8-430d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b81-e8d7-e34d-c74c" type="max"/>
</constraints>
</entryLink>
<entryLink id="9fba-d570-b6bf-93b7" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd3d-49fe-1de4-4b74" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0fc-1391-1393-16da" type="max"/>
</constraints>
</entryLink>
<entryLink id="83ff-1325-ff45-8538" name="Lashing tongue" hidden="false" collective="false" import="true" targetId="664f-ae7c-c2da-cf75" type="selectionEntry"/>
<entryLink id="986a-3bcb-629c-dacd" name="Warlord" hidden="false" collective="false" import="true" targetId="8f80-139a-b6c9-3b51" type="selectionEntry"/>
<entryLink id="a225-c992-bf0e-a7f4" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="78b1-eaa8-8883-5efe" type="selectionEntryGroup"/>
<entryLink id="f80f-c9da-1130-66e2" name="Relics of Defilement" hidden="false" collective="false" import="true" targetId="3224-8a33-9c13-5ef4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="69.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3665-94c0-bc91-1424" name="Siren" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<comment>Sect Faction Category modifiers</comment>
<modifiers>
<modifier type="add" field="category" value="14b4-c5aa-8902-9ef9">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9958-a401-36a1-b987" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="5158-6bf4-eb9d-fdc1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="259d-ee55-96f7-ff1e" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d9a6-b6c2-fff0-bd75">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eefe-f4fe-69c1-5c7b" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="670d-964b-9398-3351">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e4d0-e90a-58a6-7d6c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="78e4-e1b4-d9ed-7778">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="543b-736a-d3b6-fa39" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d9c6-677d-3f53-2cd9">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e6b-8502-7709-9d7c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="7cb4-5492-836d-c654" name="Siren" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">7+</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="083c-868c-8169-086b" name="Sacrificial Slaves" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="3665-94c0-bc91-1424" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ff4a-165a-2561-87fd" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="a494-6395-ed4e-8ded" name="Sacrificial slaves" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d9a6-b6c2-fff0-bd75" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit has one or more Sacrificial Slaves, then at the beginning of a phase, you can sacrifice one Sacrificial Slave. If you do, that Sacrificial Slave is removed from play and you gain one Sin Token (pg 4). Select a friendly NIFLHEIM VALKYRIES unit within 6” of this model. The Sin Token you gain can only be used to perform a Sin of Excess for the selected unit, and only in that phase – at the end of the phase, if the Sin Token has not been used, it is lost.
A Sacrificial Slave is represented by a Sacrificial Slave model, but does not count as a model for any rules purposes. Whilst a unit with one or more Sacrificial Slaves is on the battlefield, those Sacrificial Slaves must be within 2” of it.</characteristic>
</characteristics>
</profile>
<profile id="9e11-8821-b127-0c7d" name="Sacrificial slaves" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="14b4-c5aa-8902-9ef9" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit has one or more Sacrificial Slaves, then at the beginning of a phase, you can sacrifice one Sacrificial Slave. If you do, that Sacrificial Slave is removed from play and you gain one Sin Token (pg 4). Select a friendly DANCERS OF MIDNIGHT unit within 6” of this model. The Sin Token you gain can only be used to perform a Sin of Excess for the selected unit, and only in that phase – at the end of the phase, if the Sin Token has not been used, it is lost.
A Sacrificial Slave is represented by a Sacrificial Slave model, but does not count as a model for any rules purposes. Whilst a unit with one or more Sacrificial Slaves is on the battlefield, those Sacrificial Slaves must be within 2” of it.</characteristic>
</characteristics>
</profile>
<profile id="d2d5-e42b-6601-4ebd" name="Sacrificial slaves" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="78e4-e1b4-d9ed-7778" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit has one or more Sacrificial Slaves, then at the beginning of a phase, you can sacrifice one Sacrificial Slave. If you do, that Sacrificial Slave is removed from play and you gain one Sin Token (pg 4). Select a friendly DAUGHTERS OF ASTEROTH unit within 6” of this model. The Sin Token you gain can only be used to perform a Sin of Excess for the selected unit, and only in that phase – at the end of the phase, if the Sin Token has not been used, it is lost.
A Sacrificial Slave is represented by a Sacrificial Slave model, but does not count as a model for any rules purposes. Whilst a unit with one or more Sacrificial Slaves is on the battlefield, those Sacrificial Slaves must be within 2” of it.</characteristic>
</characteristics>
</profile>
<profile id="1d7b-b1fe-2df0-acae" name="Sacrificial slaves" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5158-6bf4-eb9d-fdc1" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit has one or more Sacrificial Slaves, then at the beginning of a phase, you can sacrifice one Sacrificial Slave. If you do, that Sacrificial Slave is removed from play and you gain one Sin Token (pg 4). Select a friendly BRIDES OF SLAANESH unit within 6” of this model. The Sin Token you gain can only be used to perform a Sin of Excess for the selected unit, and only in that phase – at the end of the phase, if the Sin Token has not been used, it is lost.
A Sacrificial Slave is represented by a Sacrificial Slave model, but does not count as a model for any rules purposes. Whilst a unit with one or more Sacrificial Slaves is on the battlefield, those Sacrificial Slaves must be within 2” of it.</characteristic>
</characteristics>
</profile>
<profile id="003b-6445-9364-9325" name="Sacrificial Slaves" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="670d-964b-9398-3351" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit has one or more Sacrificial Slaves, then at the beginning of a phase, you can sacrifice one Sacrificial Slave. If you do, that Sacrificial Slave is removed from play and you gain one Sin Token (pg 4). Select a friendly SEMIRITES unit within 6” of this model. The Sin Token you gain can only be used to perform a Sin of Excess for the selected unit, and only in that phase – at the end of the phase, if the Sin Token has not been used, it is lost.
A Sacrificial Slave is represented by a Sacrificial Slave model, but does not count as a model for any rules purposes. Whilst a unit with one or more Sacrificial Slaves is on the battlefield, those Sacrificial Slaves must be within 2” of it.</characteristic>
</characteristics>
</profile>
<profile id="2636-106b-f125-bc73" name="Sacrificial Slaves" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d9c6-677d-3f53-2cd9" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit has one or more Sacrificial Slaves, then at the beginning of a phase, you can sacrifice one Sacrificial Slave. If you do, that Sacrificial Slave is removed from play and you gain one Sin Token (pg 4). Select a friendly VOID NAIADS unit within 6” of this model. The Sin Token you gain can only be used to perform a Sin of Excess for the selected unit, and only in that phase – at the end of the phase, if the Sin Token has not been used, it is lost.
A Sacrificial Slave is represented by a Sacrificial Slave model, but does not count as a model for any rules purposes. Whilst a unit with one or more Sacrificial Slaves is on the battlefield, those Sacrificial Slaves must be within 2” of it.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<infoLinks>
<infoLink id="a26f-2a58-b3fd-16da" name="Corrupted Rosarius" hidden="false" targetId="06c6-1863-9e02-ca9e" type="profile"/>
<infoLink id="dde7-831d-c95b-68a4" name="Sororitas Rules" hidden="false" targetId="b07c-d4d5-28bf-caaf" type="infoGroup"/>
<infoLink id="cf81-68ed-bb59-7ff7" name="Hypnotic Melodies (Aura)" hidden="false" targetId="59e7-3a79-eadb-8c56" type="profile"/>
<infoLink id="6c01-cdc0-dad0-d3f8" name="Siren's Song" hidden="false" targetId="cbbf-cf8e-7459-280c" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="af0e-5e88-3b15-18d2" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="1fd3-5576-6415-ea34" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="195d-f9f2-3db0-eefe" name="Faction: Slaanesh" hidden="false" targetId="0f8e-a868-8864-7101" primary="false"/>
<categoryLink id="5744-90d6-6db6-91d2" name="Faction: Fallen Sororitas" hidden="false" targetId="670e-0c4f-8fb3-e8af" primary="false"/>
<categoryLink id="1e7c-2256-e2d5-3f3d" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="202b-5214-7db5-df2e" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="d7be-3afc-285f-a11a" name="Siren" hidden="false" targetId="9ea6-0e8c-bbff-b93b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ff4a-165a-2561-87fd" name="Sacrificial slave" hidden="false" collective="false" import="true" type="upgrade">