generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Codex - Chaos.cat
10356 lines (10331 loc) · 741 KB
/
Codex - Chaos.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="5bd8-0ec7-a752-694d" name="Codex - Chaos" revision="8" battleScribeVersion="2.03" authorName="Boff" library="false" gameSystemId="9ea8-c89d-9104-ed03" gameSystemRevision="24" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<readme>Chaos Rewards note - You cannot give any 2 models the exact same combo of rewards. However, attempting to bulid that into this would cause unending pain. Just be mindful when gifting your little warriors</readme>
<profileTypes>
<profileType id="4fa6-d4f7-781c-53f9" name="Mark of Chaos">
<characteristicTypes>
<characteristicType id="6299-cb13-a123-d9ec" name="Special Rule"/>
</characteristicTypes>
</profileType>
<profileType id="aa04-135c-b9c2-b9e7" name="Chaos Rewards">
<characteristicTypes>
<characteristicType id="7669-0cd9-797f-2e6d" name="Gift"/>
</characteristicTypes>
</profileType>
<profileType id="a275-25b5-8af2-b46b" name="Daemon Gifts">
<characteristicTypes>
<characteristicType id="2ffc-a92b-1b66-7c03" name="Daemon Gift Amount"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="9497-ff1f-dffc-011f" name="Characters" hidden="false"/>
<categoryEntry id="6185-accd-3c7f-2fc2" name="Squads" hidden="false"/>
<categoryEntry id="db1a-73a1-08a2-0e88" name="Support" hidden="false"/>
<categoryEntry id="a0e0-2325-a03b-f876" name="Daemons" hidden="false"/>
<categoryEntry id="8544-5a1c-7169-98b6" name="Cultists" hidden="false"/>
<categoryEntry id="4817-c1e2-2c76-e5ab" name="Cult Characters" hidden="false"/>
<categoryEntry id="66dc-df7d-76d8-64b9" name="Daemon Characters" hidden="false"/>
<categoryEntry id="52e6-3267-0a43-64e3" name="Daemons and Warbands" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="7428-ade3-bde5-7955" name="Chaos" hidden="false">
<categoryLinks>
<categoryLink id="347f-9163-653d-1504" name="Characters" hidden="false" targetId="9497-ff1f-dffc-011f" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="7803-f320-33d0-e6a0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9d2c-252b-db19-5746" name="Squads" hidden="false" targetId="6185-accd-3c7f-2fc2" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="4e67-536c-e825-b108" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="208f-0a65-4a7b-6c31" name="Support" hidden="false" targetId="db1a-73a1-08a2-0e88" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="47ba-ccef-0776-eb72" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d8a2-2111-fbe5-c84b" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="3d63-ff6d-9082-d59a" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="9736-16e8-0d2c-f038" name="Chaos Cult" hidden="false">
<categoryLinks>
<categoryLink id="260f-406b-35d9-f8d5" name="Cult Characters" hidden="false" targetId="4817-c1e2-2c76-e5ab" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="cbb2-aef4-cc6c-d99c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c0b1-c52e-1b3f-d311" name="Cultists" hidden="false" targetId="8544-5a1c-7169-98b6" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="61ca-411e-8148-fa52" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="05b2-6bc1-3aac-7774" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="cf2f-957a-9921-7e1d" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="61c3-2251-db8b-52ad" name="Daemon World" hidden="false">
<categoryLinks>
<categoryLink id="83d8-3b4a-341b-399e" name="Daemons and Warbands" hidden="false" targetId="52e6-3267-0a43-64e3" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="61e5-ca7e-80bc-b59b" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="66ad-7544-2fc9-e546" name="Daemon Characters" hidden="false" targetId="66dc-df7d-76d8-64b9" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="3fb4-9573-a73d-2723" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="5329-bd34-d399-7966" name="Khorne Bezerkers" hidden="false" collective="false" import="true" targetId="8312-48e0-948c-5c6c" type="selectionEntry"/>
<entryLink id="9f7e-f014-c9ff-e48a" name="Daemonettes" hidden="false" collective="false" import="true" targetId="b9aa-46bf-dc32-ecbb" type="selectionEntry"/>
<entryLink id="d068-4f47-9e59-70de" name="Chaos Lord" hidden="false" collective="false" import="true" targetId="9075-c5e9-0912-0340" type="selectionEntry"/>
<entryLink id="e0a2-03f4-f513-430c" name="Army Icon" hidden="false" collective="false" import="true" targetId="8a58-bcf6-ca49-373e" type="selectionEntry"/>
<entryLink id="4f33-c986-7611-8abf" name="Chaos Space Marine Sorcerer" hidden="false" collective="false" import="true" targetId="da97-b3f7-1508-c78a" type="selectionEntry"/>
<entryLink id="4cd0-1c10-63be-0c94" name="Greater Daemon" hidden="false" collective="false" import="true" targetId="70b8-e189-d988-a72f" type="selectionEntry"/>
<entryLink id="98ed-f210-1b92-65d4" name="Chaos Champion" hidden="false" collective="false" import="true" targetId="5d78-a88b-49ce-e50e" type="selectionEntry"/>
<entryLink id="dab7-8313-0ea3-80f2" name="Chaos Space Marine Terminators" hidden="false" collective="false" import="true" targetId="806c-9703-b972-537f" type="selectionEntry"/>
<entryLink id="13a9-de01-4869-3d04" name="Veteran Chaos Space Marine Squad" hidden="false" collective="false" import="true" targetId="2f2f-9f5c-501f-e0df" type="selectionEntry"/>
<entryLink id="2afa-565c-0cf7-5c6e" name="Chaos Space Marine Squad" hidden="false" collective="false" import="true" targetId="05ca-994e-cb71-bb33" type="selectionEntry"/>
<entryLink id="ab59-63ab-b5e5-edd7" name="Plague Marines" hidden="false" collective="false" import="true" targetId="3623-3100-9f0c-5349" type="selectionEntry"/>
<entryLink id="ecc8-9e88-9ae3-4933" name="Thousand Sons Marines" hidden="false" collective="false" import="true" targetId="2fa2-9056-9356-61be" type="selectionEntry"/>
<entryLink id="885a-ecec-d750-5c28" name="Thousand Sons Sorcerers Bodyguard" hidden="false" collective="false" import="true" targetId="a211-a82d-7b2d-29a7" type="selectionEntry"/>
<entryLink id="f191-e7af-99a6-339f" name="Noise Marines" hidden="false" collective="false" import="true" targetId="2f21-cb67-eaae-ea51" type="selectionEntry"/>
<entryLink id="9eb8-d388-e7ed-4ae5" name="Chaos Space Marine Bikers" hidden="false" collective="false" import="true" targetId="921a-0518-ce3c-ad8e" type="selectionEntry"/>
<entryLink id="5dd2-c78f-043b-32a0" name="Chaos Space Marine Dreadnought" hidden="false" collective="false" import="true" targetId="9383-634c-6110-41d5" type="selectionEntry"/>
<entryLink id="67c9-7a36-ef1c-ef5f" name="Chaos Space Marine Land Raider" hidden="false" collective="false" import="true" targetId="bcb6-c0db-1a3d-568c" type="selectionEntry"/>
<entryLink id="149f-915a-c608-0405" name="Chaos Space Marine Rhino" hidden="false" collective="false" import="true" targetId="4566-64a7-d7fc-be46" type="selectionEntry"/>
<entryLink id="610e-8744-1d48-7833" name="Chaos Space Marine Predator" hidden="false" collective="false" import="true" targetId="b97e-2cf1-78f5-90d1" type="selectionEntry"/>
<entryLink id="d2dc-a67d-5524-a373" name="Flesh Hounds" hidden="false" collective="false" import="true" targetId="0d81-7ba2-10e6-48ed" type="selectionEntry"/>
<entryLink id="39f5-147e-4de4-1bfd" name="Bloodletters" hidden="false" collective="false" import="true" targetId="d26c-c01a-8527-0cf8" type="selectionEntry"/>
<entryLink id="12b0-6c01-5618-feb0" name="Beast of Nurgle" hidden="false" collective="false" import="true" targetId="eee2-7358-255c-3fed" type="selectionEntry"/>
<entryLink id="9d2e-b308-a8dc-f4f0" name="Nurglings" hidden="false" collective="false" import="true" targetId="2f97-8f38-f540-b684" type="selectionEntry"/>
<entryLink id="e5ae-b07c-2e66-58ea" name="Plaguebearers" hidden="false" collective="false" import="true" targetId="49bb-de15-40f6-4830" type="selectionEntry"/>
<entryLink id="d32f-4325-77ae-b27c" name="Pink Horrors" hidden="false" collective="false" import="true" targetId="13f7-e670-cb5d-0c3d" type="selectionEntry"/>
<entryLink id="34d7-ec94-4967-0837" name="Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="2452-ae13-f14d-c348" type="selectionEntry"/>
<entryLink id="bfac-1b96-0a2a-88cb" name="Fiends of Slaanesh" hidden="false" collective="false" import="true" targetId="64eb-a106-7572-3e5e" type="selectionEntry"/>
<entryLink id="7653-5fa7-4849-4419" name="Abaddon the Despoiler, Warmaster of Chaos" hidden="false" collective="false" import="true" targetId="4322-6b60-18e2-5bc7" type="selectionEntry"/>
<entryLink id="ae4c-8b58-adc8-cffa" name="Kharn the Betrayer" hidden="false" collective="false" import="true" targetId="f280-6991-f2c1-a5a9" type="selectionEntry"/>
<entryLink id="6f6b-9062-4fdf-71e7" name="Fabius Bile" hidden="false" collective="false" import="true" targetId="719b-71a6-2809-47b8" type="selectionEntry"/>
<entryLink id="6c14-8a1f-5381-5233" name="Ahriman" hidden="false" collective="false" import="true" targetId="ed46-5374-3801-0d90" type="selectionEntry"/>
<entryLink id="d22f-f110-9d98-243c" name="Chaos Cannon of Khorne" hidden="false" collective="false" import="true" targetId="fe5d-f8c0-c7de-cf40" type="selectionEntry"/>
<entryLink id="0e3c-a788-4d5d-4ccf" name="Chaos Cauldron of Blood" hidden="false" collective="false" import="true" targetId="6f63-abc1-f5b9-8116" type="selectionEntry"/>
<entryLink id="91bb-5e01-38c8-abc0" name="Defiler" hidden="false" collective="false" import="true" targetId="9d7e-e045-6565-ebac" type="selectionEntry"/>
<entryLink id="ccb7-e4f0-46d0-9fa8" name="Nurgle War Alter" hidden="false" collective="false" import="true" targetId="fb48-cfca-df49-1605" type="selectionEntry"/>
<entryLink id="021c-97f1-00e0-8b8d" name="Cypher, Fallen Dark Angel Champion" hidden="false" collective="false" import="true" targetId="23a5-6f69-0e31-5955" type="selectionEntry"/>
<entryLink id="602c-aa10-4605-823e" name="Fallen Angels" hidden="false" collective="false" import="true" targetId="35b3-756b-b545-d1c5" type="selectionEntry"/>
<entryLink id="27cf-e1d8-23f1-6f52" name="Demagogue" hidden="false" collective="false" import="true" targetId="9f2c-8f79-c22e-41d5" type="selectionEntry"/>
<entryLink id="2d46-0450-60a3-6773" name="Chaos Magus" hidden="false" collective="false" import="true" targetId="2b40-7e69-e9cf-bf96" type="selectionEntry"/>
<entryLink id="c663-5b8c-6e2e-d084" name="Cult Icon Bearer" hidden="false" collective="false" import="true" targetId="886c-7118-1ab8-c308" type="selectionEntry"/>
<entryLink id="cdf2-1919-005d-72f7" name="Chaos Cultist Coven" hidden="false" collective="false" import="true" targetId="a719-f689-519e-9356" type="selectionEntry"/>
<entryLink id="bdc5-8289-5b47-699c" name="Beastman Pack" hidden="false" collective="false" import="true" targetId="9fcd-b7eb-aa5d-3a08" type="selectionEntry"/>
<entryLink id="4745-5cb2-792f-db86" name="Daemon Prince" hidden="false" collective="false" import="true" targetId="dcb2-aa9a-0747-6579" type="selectionEntry"/>
<entryLink id="2c32-e224-86e3-9adb" name="Daemonic Icon Bearer" hidden="false" collective="false" import="true" targetId="8f7b-fa87-0318-3aa9" type="selectionEntry"/>
<entryLink id="2f28-d3ab-21b4-b5a5" name="Chaos Warrior Champion" hidden="false" collective="false" import="true" targetId="ebc6-adfd-aa4d-a861" type="selectionEntry"/>
<entryLink id="b9ff-82a8-42b8-9dc1" name="Chaos Magus" hidden="false" collective="false" import="true" targetId="e448-69ca-4634-3986" type="selectionEntry"/>
<entryLink id="85b6-2dfd-2aa3-2c72" name="Khorne Daemons" hidden="false" collective="false" import="true" targetId="800d-fc79-99ab-2b9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="4045-c982-bbd9-51db" name="Daemons and Warbands" hidden="false" targetId="52e6-3267-0a43-64e3" primary="true"/>
<categoryLink id="8063-8e1e-0233-0a16" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8a2a-ba03-5e35-3c01" name="Slaanesh Daemons" hidden="false" collective="false" import="true" targetId="96ae-e03d-2962-10ba" type="selectionEntry"/>
<entryLink id="069b-b610-a663-ae86" name="Nurgle Daemons" hidden="false" collective="false" import="true" targetId="5dad-f29a-6763-a30d" type="selectionEntry"/>
<entryLink id="7706-28c8-c132-1b3d" name="Tzeentch Daemons" hidden="false" collective="false" import="true" targetId="08e7-caa5-0e78-bb66" type="selectionEntry"/>
<entryLink id="ca3a-fc19-aaf6-2ee8" name="Chaos Warrior Warband" hidden="false" collective="false" import="true" targetId="200c-8180-1199-df0f" type="selectionEntry"/>
<entryLink id="68ae-3456-571a-4f21" name="Chaos Hound Pack" hidden="false" collective="false" import="true" targetId="0d01-978b-a882-2380" type="selectionEntry"/>
<entryLink id="f2e4-1a83-a7c2-401a" name="Beastmen" hidden="false" collective="false" import="true" targetId="3d9f-f0a6-eea2-80cc" type="selectionEntry"/>
<entryLink id="7b78-714a-5822-eea4" name="Minotaurs" hidden="false" collective="false" import="true" targetId="b01a-7ed8-9bd0-3370" type="selectionEntry"/>
<entryLink id="982a-e5d4-455e-0da6" name="Trolls" hidden="false" collective="false" import="true" targetId="922d-dd2a-b35a-e9e3" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="085c-3681-c24f-928c" name="Daemonic Animosity" publicationId="02e1-3f69-7ae7-f5c5" page="51" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="70b8-e189-d988-a72f" type="atLeast"/>
<condition field="selections" scope="a0e0-2325-a03b-f876" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Whenever you have daemons of rival Chaos Gods within 12" of each other at the start of your turn, and they are not engaged in close combat, make a Daemon Animosity test for each Greater Daemon or each unit of Daemons to determine how it reacts to the proximity of its closest rivals. This does not affect daemonic creatures used as mounts or rewards
1-2: Remove the rivals from play, but don't count as destroyed for VP
3-4: The daemons will not move or do anything else this turn, but can fight back if in close combat
5-6: Continue normally with no further effect</description>
</rule>
<rule id="a43e-0475-739d-c94b" name="Daemon Summoning Points" publicationId="02e1-3f69-7ae7-f5c5" page="61" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="70b8-e189-d988-a72f" type="atLeast"/>
<condition field="selections" scope="a0e0-2325-a03b-f876" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Points are earned differently per each god.
Khorne: Each hit scored by a Chaos model in close combat scores 1 Khorne summoning point. Models with the Mark of Khorne score 2 points per hit
Nurgle: Each wound inflicted on an enemy model by shooting or in close combat scores 1 summoning point. Wounds inflicted on the enemy by models that bear the Mark of Nurgle earn 2 summoning points.
Slaanesh: Every time an enemy unit takes a Leadership test for any reason then you score a number of Slaanesh points equal to half (rounding up) of the Leadership value of the unit taking the test. If a model with the Mark of Slaanesh forces the test they get the full value instead of half.
Tzeentch: Each force card used by either side in the psychic phase scores 1 point (Ultimate Force is worth 3). Models that bear the Mark of Tzeentch earns 2 points rather than 1. Force cards discarded unused do not earn any summoning points, but force cards used for psychic powers that are nullified do count</description>
</rule>
<rule id="d99a-ae7a-68fd-e54a" name="Possessing Models" publicationId="02e1-3f69-7ae7-f5c5" page="62" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="70b8-e189-d988-a72f" type="atLeast"/>
<condition field="selections" scope="a0e0-2325-a03b-f876" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>May possess a model with expenditure of summoning points. A daemon model can possess any other model in the Chaos Space Marine army which bears its Mark of Chaos, with the exception that Greater Daemons can only enter play by possessing a Chaos Champion, Chaos Sorcerer or Chos Lord that bears their mark.
Remove the model that has been possessed and replace it with the daemon model at the end of the psychic phase. Models that are in close combat may be possessed as well.
The model is treated as killed for all victory point purposes. Models that die this way do not count as casualties for Break test.
Daemons that are not Greater Daemons must still enter play in units of 3 or more.</description>
</rule>
<rule id="2aa4-a1d2-a736-9abb" name="Daemonic Possession" publicationId="02e1-3f69-7ae7-f5c5" page="62" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="70b8-e189-d988-a72f" type="atLeast"/>
<condition field="selections" scope="a0e0-2325-a03b-f876" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>A daemonic model can possess any other model in the Chaos Space Marine army which bears a Mark of Chaos, with the exception that Greater Daemons can only enter play by possessing a Chaos Champion, Chaos SOrcerer, or Chaos Lord that bears their Mark. Remove the possessed model and replace it with the daemon at the end of the psychic phase, at the asme time or normal summoning. Models that are in close combat may be possessed.
The model that has been possessed is killed by this transformation and treated as a casualty for VP purposes, but do not count for taking a Break test. Regular daemons must still enter in units of 3.</description>
</rule>
<rule id="27b7-648b-8c71-9b26" name="Possessing Teleporting Troops" publicationId="02e1-3f69-7ae7-f5c5" page="62" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="70b8-e189-d988-a72f" type="atLeast"/>
<condition field="selections" scope="a0e0-2325-a03b-f876" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Roll a D6 each time a model that does not belong to the Chaos army teleports in a battle where there are Daemon models waiting to be summoned. This applies to models teleporting by any means including Warp Spiders, Terminators and the Warp Jump Wargear card or psychic powers.
On a 1, the model is posssessed by a daemon, remove it from play and replace with a model from the Chaos player. Grey Knights and Inquisitors of the Ordo Malleus are immune to this</description>
</rule>
<rule id="0a56-55ae-dd04-d84b" name="Daemon Banishment" publicationId="02e1-3f69-7ae7-f5c5" page="62" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="70b8-e189-d988-a72f" type="atLeast"/>
<condition field="selections" scope="a0e0-2325-a03b-f876" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="any" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>If there are no units with a Mark of Chaos alligned to the Daemons on the table then any Daemons left are removed from play that are alligned to that god.</description>
</rule>
<rule id="93e7-2a6c-59aa-bcf4" name="Daemon Gift Table" publicationId="02e1-3f69-7ae7-f5c5" page="132" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="9736-16e8-0d2c-f038" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
<description>Daemon Gifts are randomly assigned using the numbers provided next to each Gift.
1 - Cannot be Possessed
Any Daemonic Attack Warp Cards played on this model have no effect. If this power is rolled for a model
lacking psychic powers, roll again.
2 - Weapon Jinx
The model may use this power whenever an enemy model makes a ranged attack at him. Roll a D6; on a 6, the
weapon being fired at him is jammed.
3 - Fearful Aura
The model causes Fear.
4 - Freeze Time
The model may add D6" to his basic Movement rate.
5 - Sense Presence
The model may detect any model within 12". Enemy models within this range may not hide
6 - Daemon Shot
The model will always hit a target he can see and within range on a 2+. No to-hit modifiers apply.
7 - Walk Through Walls
The model may move through walls or other obstacles less than 1" thick.
8 - Mirror Image
The model may disengage at the start of any close combat phase without penalty.
9 - Bang-Flash
The model can make an attack exactly as if he were throwing a Photon Flash grenade.
10 - Daemonic Protection
The model is protected by a Daemonic Aura (4+ unmodified save).</description>
</rule>
<rule id="d5f7-ee46-81b6-872d" name="Rapid Fire" publicationId="02e1-3f69-7ae7-f5c5" hidden="false">
<description>If a Chaos Space Marine doesn't move at all and not in close combat, they can use Rapid Fire. Each Chaos Space Marine may fire their storm bolter, boltgun, or bolt pistol twice instead of once as normal. Other members in the squad using different weapons may still fire normally.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="36e6-7b5f-1e06-2e95" name="Mark of Khorne" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72e7-4bc7-c6e6-eb23" type="max"/>
</constraints>
<profiles>
<profile id="ad0a-8ca2-22f2-2f66" name="Khorne" publicationId="02e1-3f69-7ae7-f5c5" page="27" hidden="false" typeId="4fa6-d4f7-781c-53f9" typeName="Mark of Chaos">
<characteristics>
<characteristic name="Special Rule" typeId="6299-cb13-a123-d9ec">A model with the Mark of Khorne has an armour save of 2+. In addition, the model gains the Frenzy rule. However they may still Parry even though they have Frenzy.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b8a0-6ca5-b124-7480" name="Frenzy" hidden="false" targetId="0e86-209c-fe59-fe87" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e38-ffd3-93de-5667" name="Mark of Nurgle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2216-94e5-ed0c-6840" type="max"/>
</constraints>
<profiles>
<profile id="098a-fb22-33f3-00c8" name="Nurgle" publicationId="02e1-3f69-7ae7-f5c5" page="27" hidden="false" typeId="4fa6-d4f7-781c-53f9" typeName="Mark of Chaos">
<modifiers>
<modifier type="set" field="6299-cb13-a123-d9ec" value="Model gains +1 Toughness (included in profile already)">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3623-3100-9f0c-5349" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Special Rule" typeId="6299-cb13-a123-d9ec">Model gains +1 Toughness</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c885-9d1b-76e7-6d83" name="Mark of Slaanesh" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a36a-8a26-3c06-aa62" type="max"/>
</constraints>
<profiles>
<profile id="4b29-2d4f-ce8e-aef7" name="Slaanesh" publicationId="02e1-3f69-7ae7-f5c5" page="27" hidden="false" typeId="4fa6-d4f7-781c-53f9" typeName="Mark of Chaos">
<characteristics>
<characteristic name="Special Rule" typeId="6299-cb13-a123-d9ec">A model with the mark of Slaneesh is immune to Fear and Terror. They also never need to take a Break test. If a model with the Mark of Slaneesh is with a unit that is forced to flee he is not affected and can continue to fight as normal</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ec82-b75b-46df-7ba2" name="Mark of Tzeentch" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c9dc-a577-962c-44bd" type="max"/>
</constraints>
<profiles>
<profile id="9f24-85df-3bf4-3863" name="Tzeentch" publicationId="02e1-3f69-7ae7-f5c5" page="27" hidden="false" typeId="4fa6-d4f7-781c-53f9" typeName="Mark of Chaos">
<characteristics>
<characteristic name="Special Rule" typeId="6299-cb13-a123-d9ec">If a model with the Mark of Tzeentch is targeted or is caught in the area of a psychic attack then he may successfully nullify it by rolling a 4+. If he is successful the psychic attack does not work and causes no harm</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2fa2-9056-9356-61be" name="Thousand Sons Marines" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="47e9-0895-3bad-2a6b" value="-1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da97-b3f7-1508-c78a" type="lessThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da97-b3f7-1508-c78a" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="99" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47e9-0895-3bad-2a6b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="54da-221f-c3b4-31cf" name="Spirit Warriors" hidden="false" targetId="a716-b7a1-3088-030e" type="rule"/>
<infoLink id="54d9-24d1-fd08-472e" name="Immune to Psychology" hidden="false" targetId="2e73-71d0-e4b8-58e1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ffc8-bcf4-432d-111d" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="1c28-4b87-444a-cd2d" name="Squads" hidden="false" targetId="6185-accd-3c7f-2fc2" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a078-f30f-8c1b-cdcf" name="Thousand Sons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f995-c89b-147d-c1f0" type="min"/>
<constraint field="selections" scope="parent" value="10" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6444-972b-fb94-ac79" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4212-a23e-9ed2-dab3" name="Thousand Sons Marines" hidden="false" targetId="c211-ea55-7510-182e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c6e0-1473-86fe-765c" name="Weapons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="5e59-8282-e678-dd48" name="Assault Weapons" hidden="false" collective="false" import="true" targetId="bf95-e4e4-5614-9c8a" type="selectionEntryGroup"/>
<entryLink id="fbd3-e41c-feaf-6f15" name="Heavy Weapons" hidden="false" collective="false" import="true" targetId="cd34-4e2e-6a5f-80bc" type="selectionEntryGroup">
<modifiers>
<modifier type="decrement" field="0162-e393-847f-378a" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4d14-423e-9e23-ebe0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0162-e393-847f-378a" type="max"/>
</constraints>
</entryLink>
<entryLink id="31c1-c07e-6363-8ba9" name="Special Weapons" hidden="false" collective="false" import="true" targetId="4d14-423e-9e23-ebe0" type="selectionEntryGroup">
<modifiers>
<modifier type="decrement" field="60b4-e0a1-b7db-d19e" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd34-4e2e-6a5f-80bc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="60b4-e0a1-b7db-d19e" type="max"/>
</constraints>
</entryLink>
<entryLink id="9647-cfb7-a4c1-5583" name="Boltgun" hidden="false" collective="false" import="true" targetId="0e81-7914-e52a-0a8d" type="selectionEntry">
<modifiers>
<modifier type="increment" field="a76e-1276-cb2d-6808" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a078-f30f-8c1b-cdcf" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a76e-1276-cb2d-6808" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="3"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="d334-e644-a5f8-aaf6" name="Unit Options" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="c5aa-0970-1ef6-6a0b" name="Krak Grenade" hidden="false" collective="false" import="true" targetId="7ac5-935d-8ecf-59c0" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="3">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eebd-6850-fb44-2460" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e285-a18a-3481-dd20" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="73ef-87a9-c343-f7c5" name="Mark of Tzeentch" hidden="false" collective="false" import="true" targetId="ec82-b75b-46df-7ba2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75f8-ee08-6d80-fb98" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f1f-1fbb-395c-4fc8" type="max"/>
</constraints>
</entryLink>
<entryLink id="7ca5-5fd4-8558-1984" name="Power Armour" hidden="false" collective="false" import="true" targetId="223b-6b82-1907-d976" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb63-90d0-5633-dba2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1b4-6123-c32a-d0c4" type="max"/>
</constraints>
<infoLinks>
<infoLink id="13a4-4713-5e4b-25aa" name="Frag Grenade" hidden="false" targetId="122b-b17a-4e87-5994" type="profile"/>
<infoLink id="1b24-bbc3-6561-aba2" name="Bolt Pistol" hidden="false" targetId="3741-3592-b694-79b4" type="profile"/>
</infoLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8312-48e0-948c-5c6c" name="Khorne Bezerkers" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="c861-90ed-cf54-1afc" name="Furious Charge" hidden="false" targetId="696e-5f55-fee4-3a83" type="rule"/>
<infoLink id="b37d-83ad-2312-7d9b" name="Khorne Berzerkers" hidden="false" targetId="b305-1286-1afa-3cf6" type="profile"/>
<infoLink id="7bb9-ca81-f7cf-f1e2" name="Chaos Armour" hidden="false" targetId="e387-e81c-99a3-6fe5" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="83c2-2eb6-9026-5934" name="Squads" hidden="false" targetId="6185-accd-3c7f-2fc2" primary="true"/>
<categoryLink id="23fe-b7af-1359-d159" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9e51-c7c6-761e-a5f9" name="Khorne Bezerkers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="506e-bcd3-4c3e-ec1d" type="min"/>
<constraint field="selections" scope="parent" value="19" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7606-faf9-17fd-ec8a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="b8d1-b487-db9b-de39" name="Weapons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="c502-8f8e-1e55-5cee" name="Assault Weapons" hidden="false" collective="false" import="true" targetId="bf95-e4e4-5614-9c8a" type="selectionEntryGroup"/>
<entryLink id="f917-e42d-b29c-6cc8" name="Boltgun" hidden="false" collective="false" import="true" targetId="0e81-7914-e52a-0a8d" type="selectionEntry">
<modifiers>
<modifier type="increment" field="380a-32ff-8430-0df8" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9e51-c7c6-761e-a5f9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="380a-32ff-8430-0df8" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="3"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6ae9-0a6a-5a4b-8f26" name="Unit Options" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="18ef-eb21-b8c0-c611" name="Krak Grenade" hidden="false" collective="false" import="true" targetId="7ac5-935d-8ecf-59c0" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="3">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9e51-c7c6-761e-a5f9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="575f-8ee0-1b1a-2d11" type="max"/>
</constraints>
</entryLink>
<entryLink id="1808-dcc4-8552-4b7a" name="Aspiring Champion" hidden="false" collective="false" import="true" targetId="f231-689b-05ce-27f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a36-b669-0aa1-55ac" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6d66-a306-3585-67b3" name="Mark of Khorne" hidden="false" collective="false" import="true" targetId="36e6-7b5f-1e06-2e95" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd13-1014-c9c3-5c12" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc71-492c-2ab1-4792" type="min"/>
</constraints>
</entryLink>
<entryLink id="ae5b-b442-e6ee-297e" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="b5bb-7853-53cb-bec4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5fc9-bc94-21e4-f681" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c4b-d860-8926-39cc" type="max"/>
</constraints>
</entryLink>
<entryLink id="110e-bc25-1255-657a" name="Frag Grenade" hidden="false" collective="false" import="true" targetId="cc7b-eac9-7cc5-a156" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b7a5-b167-b284-3f0b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1db-f0c3-ff30-3f9b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2f21-cb67-eaae-ea51" name="Noise Marines" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="8b7c-393c-760f-b42b" name="Psychic Cacophony" hidden="false" targetId="e9e7-658e-1d94-07e7" type="rule"/>
<infoLink id="65d3-12d3-4807-11d3" name="Noise Marines" hidden="false" targetId="9e30-2bd1-121c-47e6" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4a02-5dae-3850-c191" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="36c3-9b34-5803-7675" name="Squads" hidden="false" targetId="6185-accd-3c7f-2fc2" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="5b70-970f-ebac-f3e0" name="Noise Marines" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee31-27ac-30a4-68ca" type="min"/>
<constraint field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2649-5fed-0b16-8525" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="9cbe-cfda-baf1-008f" name="Unit Options" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="e1b3-115b-3203-c733" name="Photon Flash Flare" hidden="false" collective="false" import="true" targetId="89f8-b27c-1632-e96a" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="5">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5b70-970f-ebac-f3e0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c74f-67dd-6200-defe" type="max"/>
</constraints>
</entryLink>
<entryLink id="eb58-5a85-e471-3979" name="Aspiring Champion" hidden="false" collective="false" import="true" targetId="f231-689b-05ce-27f6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c328-4175-ff33-4b7c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9af4-75c3-3ed2-469c" name="Characters" hidden="false" targetId="9497-ff1f-dffc-011f" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="46c6-56a2-a661-fc00" name="Weapons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="3206-bbf0-1ec4-24a0" name="Doom Siren" hidden="false" collective="false" import="true" targetId="98a6-89fd-ad45-6208" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="369d-b4de-371a-31c3" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="15"/>
</costs>
</entryLink>
<entryLink id="d5ec-0980-72bc-6899" name="Blastmaster" hidden="false" collective="false" import="true" targetId="81ec-f097-1a14-6446" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b3b6-0d86-3f1e-cc70" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="45"/>
</costs>
</entryLink>
<entryLink id="ac3a-a69e-1d1c-e596" name="Sonic Blaster" hidden="false" collective="false" import="true" targetId="ffc4-c635-cf30-3777" type="selectionEntry">
<modifiers>
<modifier type="increment" field="4c8a-c062-4ff0-2756" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5b70-970f-ebac-f3e0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c8a-c062-4ff0-2756" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="10"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="bc85-1cc0-ff55-1b12" name="Mark of Slaanesh" hidden="false" collective="false" import="true" targetId="c885-9d1b-76e7-6d83" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8830-f20b-b781-e37c" type="min"/>
</constraints>
</entryLink>
<entryLink id="121f-d674-f3ef-7886" name="Power Armour" hidden="false" collective="false" import="true" targetId="223b-6b82-1907-d976" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ce3-3638-6bbf-af28" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b282-f6cf-1edf-7219" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d171-b248-3daf-ba54" name="Bolt Pistol" hidden="false" targetId="3741-3592-b694-79b4" type="profile"/>
</infoLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d26c-c01a-8527-0cf8" name="Bloodletters" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="36e6-7b5f-1e06-2e95" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="0b25-468d-fbce-6b70" name="Furious Charge" hidden="false" targetId="696e-5f55-fee4-3a83" type="rule"/>
<infoLink id="fdb4-a212-f677-db35" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="10c7-4bb1-764f-68ed" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
<infoLink id="3274-84ac-2bf4-e3fe" name="Parry" hidden="false" targetId="049d-3ed2-a1bf-86b0" type="rule"/>
<infoLink id="e14d-1a63-9719-903c" name="Hellblade" hidden="false" targetId="7391-ac2f-e68b-e70e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f7c1-e6ee-3b0a-a236" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="6fbf-5533-b2ba-cb0a" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="15b8-2564-c221-35de" name="Bloodletter" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d7b-4ace-ceaf-8f2b" type="min"/>
</constraints>
<infoLinks>
<infoLink id="536b-69b8-5d28-e788" name="Bloodletter" hidden="false" targetId="cae6-c475-5893-1be9" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0d81-7ba2-10e6-48ed" name="Flesh Hounds" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="36e6-7b5f-1e06-2e95" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="8691-9e77-9cd0-f7d1" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
<infoLink id="cbaf-8ef4-2fba-4c43" name="Collar of Khorne" hidden="false" targetId="71f6-26a7-6685-a9d9" type="profile"/>
<infoLink id="0073-8d4e-8524-7d69" name="Blood Scent" hidden="false" targetId="5517-dd7b-c0e5-9e7c" type="rule"/>
<infoLink id="e1ea-f77c-de3f-f93d" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7f90-78cf-7066-fcd8" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="c0b8-180f-1d3a-b2a6" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ea44-1b42-6a4b-5a34" name="Flesh Hound" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8493-f615-0649-ac7c" type="min"/>
</constraints>
<infoLinks>
<infoLink id="11cc-10bc-65d3-17d0" name="Flesh Hound" hidden="false" targetId="c32c-7901-1bcf-5746" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="38"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9807-0d4f-e20c-0d68" name="Juggernaut of Khorne" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="a045-d9eb-9697-59cf" name="Crush" hidden="false" targetId="7b15-0e08-7050-18e5" type="rule"/>
<infoLink id="6d3b-0a91-c9cd-7b07" name="Juggernaut Calavry" hidden="false" targetId="3eab-ce79-e971-ac0c" type="rule"/>
<infoLink id="8122-7815-bc0b-45fb" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="89c9-cab6-802b-fa2b" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
<infoLink id="84fd-9a1a-72c7-9c32" name="Juggernaut of Khorne" hidden="false" targetId="61f2-1d47-29e0-bed2" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b9aa-46bf-dc32-ecbb" name="Daemonettes" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c885-9d1b-76e7-6d83" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<rules>
<rule id="8398-850b-a40f-104f" name="Daemonettes Psychic Level" publicationId="02e1-3f69-7ae7-f5c5" page="96" hidden="false">
<description>Gain a psychic mastery level of 1 per five models, and one Slaanesh Chaos power per five models</description>
</rule>
</rules>
<infoLinks>
<infoLink id="fcbc-3b88-35d1-5c80" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="8559-6823-d2b7-57f9" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
<infoLink id="2e25-ff2b-2370-f780" name="Daemonettes" hidden="false" targetId="0f6d-1a70-a420-e979" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b9ac-e25e-af10-fad2" name="Daemons" hidden="false" targetId="0f7a-2cd5-df51-dccd" primary="false"/>
<categoryLink id="a20b-c24f-6467-1754" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="95ca-225d-6073-b975" name="Daemonette" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c04-317d-282e-d0fb" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="8c67-1717-95db-d499" name="Huge Claws" hidden="false" collective="false" import="true" targetId="7612-9080-ff1f-3cfd" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="64eb-a106-7572-3e5e" name="Fiends of Slaanesh" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c885-9d1b-76e7-6d83" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="1a77-1b1d-de1f-f2d2" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="c1ff-2d53-dcc2-72dc" name="Soporific Musk" hidden="false" targetId="0fbe-61a0-96c0-e2d3" type="rule"/>
<infoLink id="6735-9356-6d7a-6161" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
<infoLink id="1ee3-d03f-05ba-7d46" name="Huge Claws" hidden="false" targetId="f30c-ef88-96e3-e8e0" type="profile"/>
<infoLink id="600d-ba97-53b2-a1b0" name="Scorpion Tail" hidden="false" targetId="97af-a059-ccf5-1f64" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2049-719b-3281-0bbe" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="aebd-3cbb-3271-102e" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3380-62e9-e1c5-5852" name="Fiend" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b053-0758-a32b-1f1e" type="min"/>
</constraints>
<infoLinks>
<infoLink id="4f5e-7c24-987e-48d1" name="Fiends of Slaanesh" hidden="false" targetId="c630-34fe-68b9-2a7c" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a0e-ecec-358c-34a9" name="Steed of Slaneesh" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="443b-7260-e2be-c414" name="Steeds of Slaanesh" hidden="false" targetId="f358-23d6-caf5-c6c0" type="profile"/>
<infoLink id="8ba5-4c62-5eab-1418" name="Cavalry" hidden="false" targetId="cc6d-c869-82ab-fcaa" type="rule"/>
<infoLink id="5888-84e5-b16f-011b" name="Tongue Attack" hidden="false" targetId="ccc7-6b1c-8623-cc16" type="rule"/>
<infoLink id="8584-eba6-0e94-73de" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2f97-8f38-f540-b684" name="Nurglings" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6e38-ffd3-93de-5667" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="8979-8390-5f27-6b33" name="Infestations" hidden="false" targetId="4088-cddb-b3fb-bfef" type="rule"/>
<infoLink id="316c-0680-43fc-de62" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="5385-19a5-766d-bf9f" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b5fc-445b-44dd-742e" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="81fe-5f1a-f4ce-1066" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a84f-47d3-985d-cf1d" name="Nurglings" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="78e5-d548-013f-0a53" type="min"/>
</constraints>
<infoLinks>
<infoLink id="416a-34f8-660c-6874" name="Nurglings" hidden="false" targetId="60b0-dbdd-5e56-89c2" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="15"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="49bb-de15-40f6-4830" name="Plaguebearers" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6e38-ffd3-93de-5667" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<rules>
<rule id="98fc-3b33-c68f-0a93" name="Plaguebearers Psychic Level" publicationId="02e1-3f69-7ae7-f5c5" page="96" hidden="false">
<description>Gain a psychic mastery level of 1 per five models, and one Nurgle Chaos power per five models</description>
</rule>
</rules>
<infoLinks>
<infoLink id="b832-f57c-acc1-5d5a" name="Cloud of Flies" hidden="false" targetId="6695-4131-c2d7-89c8" type="rule"/>
<infoLink id="eaa4-0eb8-4033-9a03" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="1efe-fb5b-5894-531d" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
<infoLink id="5e26-f71b-f891-8f66" name="Parry" hidden="false" targetId="049d-3ed2-a1bf-86b0" type="rule"/>
<infoLink id="0ba5-d3af-a47c-cb57" name="Plaguesword" hidden="false" targetId="a9c0-f78a-85fe-0566" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a732-12f6-55b6-4295" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="5ad8-0034-1753-63d0" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="879b-0ea5-fdc9-b831" name="Plaguebearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2bae-0951-6799-850c" type="min"/>
</constraints>
<infoLinks>
<infoLink id="9feb-6064-e785-662a" name="Plaguebearer of Nurgle" hidden="false" targetId="946b-d469-52eb-ac31" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1e28-4d85-26fe-176b" name="Psyker" hidden="false" collective="false" import="true" targetId="56e9-7608-b945-ac81" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6310-efdf-953f-d527" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5eb-959f-a8cd-63a0" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="eee2-7358-255c-3fed" name="Beast of Nurgle" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6e38-ffd3-93de-5667" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e92-d7fd-51f0-a14e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="ed04-932b-8503-162d" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="9e8e-327c-aad5-b85c" name="Beast of Nurgle Attacks" hidden="false" targetId="9d2a-5d74-b2bb-f02c" type="rule"/>
<infoLink id="66fc-b6a7-8840-a55f" name="Slime Trail" hidden="false" targetId="3b5f-c057-2959-e017" type="rule"/>
<infoLink id="f1c3-69cb-cb66-9885" name="Daemonic Aura" hidden="false" targetId="938e-6cf7-fdbe-7090" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="45ab-b19a-b988-7100" name="Chaos" hidden="false" targetId="b373-19ca-9b61-1a4c" primary="false"/>
<categoryLink id="628e-39bf-d464-04aa" name="Daemons" hidden="false" targetId="a0e0-2325-a03b-f876" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3fae-91d6-ab2d-04f2" name="Beast of Nurgle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="efeb-8cfa-d37a-8fd3" type="min"/>
</constraints>
<infoLinks>
<infoLink id="4ed8-873a-a369-b763" name="Beast of Nurgle" hidden="false" targetId="808f-00dc-6a86-e38a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="38"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7f2b-516d-6caf-b5cc" name="Horrors of Tzeentch" publicationId="02e1-3f69-7ae7-f5c5" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="a176-da18-7d8b-8601" name="Blue Horror" hidden="false" targetId="9eaa-c6a1-9e13-fd34" type="profile"/>