forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChaos Data.cat
4418 lines (4416 loc) · 322 KB
/
Chaos Data.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="0339-0157-6910-d29c" name="Chaos Data" revision="14" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="15" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="c9b2-1fe6-pubN65537" name="Battletome: Beasts of Chaos"/>
<publication id="c9b2-1fe6-pubN83353" name="1"/>
<publication id="4be9-7bc9-ca17-b1b4" name="Chaos Battletome: Maggotkin of Nurgle"/>
</publications>
<profileTypes>
<profileType id="7b16-1457-b3e4-b90c" name="Chimera Wounds">
<characteristicTypes>
<characteristicType id="1177-1d73-c1e9-1af5" name="Fiery Breath"/>
<characteristicType id="2387-cbdb-2b6c-a56a" name="Avian Head"/>
<characteristicType id="121d-1113-217d-9bc4" name="Leonine Head"/>
</characteristicTypes>
</profileType>
<profileType id="fd46-5bf4-a5cc-f4eb" name="Gargant Wounds">
<characteristicTypes>
<characteristicType id="9351-6382-fb70-8e24" name="Move"/>
<characteristicType id="1cb4-9037-5862-664b" name="Massive Club"/>
<characteristicType id="696c-59f2-2e6d-79d0" name="Vicious 'Eadbutt"/>
</characteristicTypes>
</profileType>
<profileType id="8f00-6e3d-cead-a1d0" name="Primordial Call Table">
<characteristicTypes>
<characteristicType id="08dc-8cf5-5cde-f2df" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="2e4a-4480-cd92-0b43" name="Blood Tithe Table - Points Expended">
<characteristicTypes>
<characteristicType id="c248-0586-10ea-3e0c" name="Reward"/>
</characteristicTypes>
</profileType>
<profileType id="53ae-6af8-0d87-ae4d" name="Blood Tithe Table - Unit Summoning">
<characteristicTypes>
<characteristicType id="d5b0-7d16-f65b-4b39" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="5e08-385d-d0b5-1a1e" name="Summon Daemons of Nurgle">
<characteristicTypes>
<characteristicType id="c472-5508-d8bb-1667" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="42a2-33a9-9123-aca4" name="Cycle of Corruption">
<characteristicTypes>
<characteristicType id="fb21-7a55-687d-0cf0" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="1fa2-590a-fcd4-f2a2" name="Depravity Point Table">
<characteristicTypes>
<characteristicType id="b198-e549-0614-9c8a" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="c0b9-c8dd-f7fd-3f8f" name="Fate Point Summoning Table - Unit">
<characteristicTypes>
<characteristicType id="70aa-1485-ad49-102d" name="Cost"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="a65c-12b4-8978-4013" name="BEASTLORD" hidden="false"/>
<categoryEntry id="f6d6-2138-e413-49cf" name="BEASTMAN" hidden="false"/>
<categoryEntry id="2087-1476-7590-473b" name="CENTIGOR" hidden="false"/>
<categoryEntry id="b04f-e687-f85d-0b36" name="GOR" hidden="false"/>
<categoryEntry id="1ecf-67b0-98d3-f870" name="UNGOR" hidden="false"/>
<categoryEntry id="16b0-d1d2-6e48-f877" name="GREAT BRAY-SHAMAN" hidden="false"/>
<categoryEntry id="bec6-9e93-870a-1018" name="UNGOR RAIDERS" hidden="false"/>
<categoryEntry id="6188-9126-8813-8505" name="BESTIGORS" hidden="false"/>
<categoryEntry id="91fd-3254-1b11-c779" name="TUSKGOR CHARIOTS" hidden="false"/>
<categoryEntry id="dcec-7da2-0ccd-ca86" name="DOOMBULL" hidden="false"/>
<categoryEntry id="0137-3314-e905-285a" name="BULLGOR" hidden="false"/>
<categoryEntry id="d809-dc0b-17c2-c7ac" name="WARHERD" hidden="false"/>
<categoryEntry id="0eff-3787-7ce8-f79b" name="CYGOR" hidden="false"/>
<categoryEntry id="d58d-ffaa-6d24-1a5e" name="GHORGON" hidden="false"/>
<categoryEntry id="4d26-d95f-9bcd-aeff" name="MONSTERS OF CHAOS" hidden="false"/>
<categoryEntry id="120a-b4f8-cf68-0480" name="CHAOS WARHOUNDS" hidden="false"/>
<categoryEntry id="675d-4c51-5823-2962" name="JABBERSLYTHE" hidden="false"/>
<categoryEntry id="e2f4-9429-13a3-c681" name="COCKATRICE" hidden="false"/>
<categoryEntry id="bb97-9935-5ccd-67b7" name="CHAOS SPAWN" hidden="false"/>
<categoryEntry id="248f-83c5-8cea-6ac2" name="CHIMERA" hidden="false"/>
<categoryEntry id="c2ae-c785-1e40-0891" name="GARGANT" hidden="false"/>
<categoryEntry id="7fd3-01d8-3a52-8de5" name="CHAOS GARGANT" hidden="false"/>
<categoryEntry id="0a23-1dea-91f1-9ad3" name="DRAGON OGOR" hidden="false"/>
<categoryEntry id="7020-fecd-a479-8a04" name="SHAGGOTH" hidden="false"/>
<categoryEntry id="9a13-aa85-e9e2-9793" name="THUNDERSCORN" hidden="false"/>
<categoryEntry id="2973-d8ab-165b-c11e" name="RAZORGOR" hidden="false"/>
<categoryEntry id="a91f-7130-5f9c-30bf" name="ARCANITE" hidden="false"/>
<categoryEntry id="00bd-5d9e-6d0b-9e10" name="TZAANGOR SKYFIRE" hidden="false"/>
<categoryEntry id="cb6b-150d-1eda-84a7" name="TZAANGOR SHAMAN" hidden="false"/>
<categoryEntry id="01c3-a8a3-0323-85aa" name="TZAANGOR ENLIGHTENED" hidden="false"/>
<categoryEntry id="bd0e-f2ff-1677-8b2e" name="TZAANGORS" hidden="false"/>
<categoryEntry id="da11-9f25-386f-a978" name="EVERCHOSEN" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="1982-d915-63a1-b8fb" name="1. Arch-Slaughterer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7a84-0481-685b-039e" name="Arch-Slaughterer" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">Each time an attack made by this general with a melee weapon slays an enemy HERO or MONSTER, you receive 2 Blood Tithe points instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1fee-d7c7-7a12-758c" name="2. Unrivalled Battlelust" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4c6d-16fe-a262-4a51" name="Unrivalled Battlelust" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">At the end of your opponent's charge phase, if this general is within 12" of any enemy units (but not within 3" of any enemy units), you can attempt to make a charge move with this general.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="40b7-86d2-2f0b-164b" name="3. Slaughterborn" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8210-18e0-4dbf-be3a" name="Slaughterborn" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">You can re-roll hit rolls for attacks made with melee weapons by this general.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e55-96a1-c28d-3347" name="1. Grandfather's Blessing" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7ed5-bd52-34ac-938c" name="Grandfather's Blessing" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">Once per battle, at the start of your hero phase, you can move the Cycle of Corruption one stage forward or backward if your general has not been slain.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0ac8-3f27-65a4-8f35" name="2. Living Plague" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="133b-b6cf-ccae-5dfc" name="Living Plague" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">At the start of your hero phase, roll a dice for each enemy unit within 1" of your general. On a 4+ the unit being rolled for suffers 1 mortal wound and you receive 1 contagion point.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6071-13c4-6f0e-7336" name="3. Hulking Physique" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ede9-2b7b-11fa-d7d1" name="Hulking Physique" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">Add 1 to wound rolls for your general in the combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5383-6978-9324-eb23" name="3. Magical Supremacy" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9c61-0f3b-bcd3-9e42" name="Magical Supremacy" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">Add 12" to the range at which your general can attempt to unbind spells.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a68c-f836-7ae7-10e7" name="2. Nexus of Fate" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d740-8fb7-8ee0-d4b1" name="Nexus of Fate" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">If your general is on the battlefield at the start of your hero phase, roll a dice; on a 1 or 6, you can choose to replace one Destiny Dice from your pool with the number you rolled.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d7d9-b723-6fdb-51cb" name="Slaanesh" 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="b1fa-074b-aa3b-15e2" type="max"/>
</constraints>
<profiles>
<profile id="c1c2-940b-4ea0-7222" name="Feast of Depravities" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can summon units of SLAANESH DAEMONS to the battlefield if you collect enough depravity points (DPs). Each time a wound or mortal wound is inflicted on an enemy model by an attack made by a friendly SLAANESH HERO or a spell cast by a friendly SLAANESH HERO, and that enemy model is not slain by that wound or mortal wound, you receive 1 depravity point. In addition, every time a wound or mortal wound is allocated to a friendly SLAANESH HERO and not negated, and that friendly model is not slain by that wound or mortal wound, you receive 1 depravity point.
If you have any depravity points at the end of your movement phase, you can summon one or more units from the list below to the battlefield, and add them to your army. Each unit you summon costs a number of depravity points, as shown on the list, and you can only summon a unit if you have enough depravity points to pay its cost. Summoned units must be set up wholly within 12" of a friendly SLAANESH HERO and more than 9" from any enemy units. Subtract the cost of the summoned unit from the number of depravity points you have immediately after it has been set up.</characteristic>
</characteristics>
</profile>
<profile id="446b-f154-4a48-4afe" name="Locus of Diversion" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of the charge phase, each friendly HEDONITE HERO that is within 6" of an enemy unit can create a locus of diversion. If they do so, pick 1 enemy unit that is within 6" of that HEDONITE HERO and roll a dice, adding 2 if that HEDONITE HERO is a GREATER DAEMON. On a 4+, that enemy unit fights at the end of the following combat phase, after the players have picked any other units to fight in that combat phase. You cannot pick the same unit as the target for this ability more than once in the same charge phase (whether the roll is successful or not).
If a unit that is affected by this battle trait is also affected by any rules that would allow it to fight at the start of the following combat phase, that unit is not affected by this rule or those other rules (the effects cancel each other out).</characteristic>
</characteristics>
</profile>
<profile id="7228-10dd-3553-915e" name="Euphoric Killers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the unmodified hit roll for an attack made with a melee weapon by a CHAOS SLAANESH model is 6, that attack inflicts 2 hits on the target instead of 1. Make a wound and save roll for each hit. If the attacking model’s unit has 20 or more models, its attacks inflict 3 hits on an unmodified hit roll of 6 instead.</characteristic>
</characteristics>
</profile>
<profile id="689a-8d6d-780d-2af4" name="Hosts of Slaanesh" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After you have chosen the Slaanesh allegiance for your army, you must also choose a Host of Slaanesh keyword for your army. You can choose for your army to be an INVADERS HOST, a PRETENDERS HOST, or a GODSEEKERS HOST. All units in your army gain the keyword of the host that you have chosen. All units with that keyword benefit from the host’s allegiance abilities, which are presented on the following pages, in addition to the allegiance abilities they have for being from a Slaanesh army.</characteristic>
</characteristics>
</profile>
<profile id="df66-f89d-bb9d-3623" name="(16) 10 Daemonettes" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">9</characteristic>
</characteristics>
</profile>
<profile id="4888-a52e-cafc-9fd3" name="(14) 1 Seeker Chariot" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">10</characteristic>
</characteristics>
</profile>
<profile id="19bf-9786-f813-f60d" name="(01) 1 Keeper of Secrets" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">30</characteristic>
</characteristics>
</profile>
<profile id="fafc-4539-fe0c-4eef" name="(13) 1 Viceleader, Herald of Slaanesh" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">10</characteristic>
</characteristics>
</profile>
<profile id="845b-40ca-be0c-dbc8" name="(12) 1 Hellflayer" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">12</characteristic>
</characteristics>
</profile>
<profile id="fcf0-ec00-fa28-35a5" name="(11) 1 Bladebringer, Herald on Seeker Chariot" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">12</characteristic>
</characteristics>
</profile>
<profile id="9b34-9988-57db-3edd" name="(10) 1 Infernal Enrapturess, Herald of Slaanesh" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">12</characteristic>
</characteristics>
</profile>
<profile id="d084-82bd-7ba8-9f52" name="(09) 1 Exalted Chariot" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">15</characteristic>
</characteristics>
</profile>
<profile id="1b65-d5c1-bedf-37e7" name="(08) 1 Bladebringer, Herald on Hellflayer" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">15</characteristic>
</characteristics>
</profile>
<profile id="379d-4e35-e9f6-8fe5" name="(15) 5 Seekers" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">10</characteristic>
</characteristics>
</profile>
<profile id="53d8-fec7-08ad-dead" name="(06) 3 Feinds)" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">18</characteristic>
</characteristics>
</profile>
<profile id="ca98-1735-82d3-e9aa" name="(05) 1 Bladebringer, Herald on Exalted Chariot" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">18</characteristic>
</characteristics>
</profile>
<profile id="0c36-e7e5-3398-0c14" name="(04) 1 Contorted Epitome" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">18</characteristic>
</characteristics>
</profile>
<profile id="4982-3db7-f442-c824" name="(03) 30 Daemonettes" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">25</characteristic>
</characteristics>
</profile>
<profile id="9ecb-7501-8b93-b1a3" name="(07) 20 Daemonettes" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">18</characteristic>
</characteristics>
</profile>
<profile id="1dcc-8d25-ec18-2575" name="(02) 3 Seeker Chariots" hidden="false" typeId="1fa2-590a-fcd4-f2a2" typeName="Depravity Point Table">
<characteristics>
<characteristic name="Cost" typeId="b198-e549-0614-9c8a">30</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="98ab-c93a-fe10-bc5f" name="Hosts of Slaanesh" hidden="false" collective="false" import="true" targetId="6ef7-1ab0-9923-7fee" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b541-3b22-08bb-d772" name="Khorne" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cd58-f2c2-f861-e9a6" name="Blood for the Blood God!" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can receive rewards from the Blood Tithe Rewards Table below by using Blood Tithe points. You receive 1 Blood Tithe point each time a unit is destroyed. At the start of the hero phase, you can use 1 or more Blood Tithe points to receive 1 reward from the Blood Tithe Rewards table. Immediately carry out that reward's effect. Each reward costs a number of points as shown on the Blood Tithe Rewards table, and you can only receive a reward if you have enough Blood Tithe points to pay its cost. Note that Blood Tithe points can be spent to receive the Spelleater Curse reward at any point during the hero phase, instead of at the start of the hero phase. If you choose a reward, after resolving its effect your Blood Tithe points total is reset to zero.</characteristic>
</characteristics>
</profile>
<profile id="0d58-d83e-cad6-bf97" name="1" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Bloody Exemplar: You receive 1 command point.</characteristic>
</characteristics>
</profile>
<profile id="c0af-f92b-0c8f-8758" name="2" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Spelleater Curse: Choose this reward immediately after a WIZARD has cast a spell anywhere on the battlefield, before any attempts to unbind that spell are made. That spell is not successfully cast.</characteristic>
</characteristics>
</profile>
<profile id="c7a4-56b9-0b8b-989e" name="3" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Murderlust: Pick 1 friendly KHORNE unit; that unit can make a normal move. If it is within 12" of an enemy model, it can either make a normal move or attempt to make a charge move. </characteristic>
</characteristics>
</profile>
<profile id="7c59-b7ea-fdd3-44ab" name="4" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Apoplectic Frenzy: Pick 1 friendly KHORNE unit within 3" of an enemy unit. That KHORNE unit can make a pile-in move and then attack with all of the melee weapons it is armed with.</characteristic>
</characteristics>
</profile>
<profile id="c9ef-8405-a7fe-2ce5" name="5" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Brass Skull Meteor: Pick 1 unit anywhere on the battlefield, that unit suffers D3 mortal wounds. In addition, roll a dice for each unit within 8" of that unit; on a 3+ the unit being rolled for suffers 1 mortal wound. On a 6, the unit being rolled for suffers D3 mortal wounds instead.</characteristic>
</characteristics>
</profile>
<profile id="b513-b4b7-cf40-0ffc" name="6" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Relentless Fury: Until your next hero phase, each time a friendly KHORNE model is slain in the combat phase, before the model is removed from play, it can make a pile-in move and then attack with all of the melee weapons it is armed with.</characteristic>
</characteristics>
</profile>
<profile id="53be-1111-f402-7d1e" name="7" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Crimson Rain: You can choose this reward once per battle. Immediately after you do so, and at the start of each of your subsequent hero phases, you can heal up to D3 wounds allocated to each friendly KHORNE unit on the battlefield.</characteristic>
</characteristics>
</profile>
<profile id="9cdd-abbf-87c3-932a" name="8" hidden="false" typeId="2e4a-4480-cd92-0b43" typeName="Blood Tithe Table - Points Expended">
<characteristics>
<characteristic name="Reward" typeId="c248-0586-10ea-3e0c">Slaughter Triumphant: You can choose this reward once per battle. After you do so, if the unmodified hit roll for an attack made with a melee weapon by a friendly KHORNE unit is 6, that attack scores 2 hits on the target instead of 1. Make a wound roll and save roll for each hit.</characteristic>
</characteristics>
</profile>
<profile id="18cd-9282-6d84-33e8" name="(03) 1 Bloodthirster of Insensate Rage" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">8</characteristic>
</characteristics>
</profile>
<profile id="1cd6-32de-5d3a-4a84" name="(02) 1 Wrath of Khorne Bloodthirster" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">8</characteristic>
</characteristics>
</profile>
<profile id="2ecd-daea-2365-ae23" name="(06) 15 Bloodletters" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">6</characteristic>
</characteristics>
</profile>
<profile id="8695-0c77-7b9e-1678" name="Summon Daemons of Khorne" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can summon units of KHORNE DAEMONS to the battlefield by expending Blood Tithe points. If you have 2 or more Blood Tithe points at the end of your movement phase, you can summon one unit from the list below onto the battlefield, and add it to your army. Each unit you summon costs a number of Blood Tithe points to pay its cost. If you summon a unit in this manner, your Blood Tithe points total is reset to zero immediately after the unit has been set up (you cannot save any Blood Tithe points you did not use). Units summoned in this way must be set up wholly within 12" of a friendly KHORNE HERO or SKULL ALTAR and more than 9" from any enemy units.</characteristic>
</characteristics>
</profile>
<profile id="79e3-e822-e294-ae4a" name="(05) 20 Bloodletters" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">7</characteristic>
</characteristics>
</profile>
<profile id="4fa5-8bc5-873a-47d2" name="(04) 1 Bloodthirster of Unfettered Fury" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">8</characteristic>
</characteristics>
</profile>
<profile id="63be-d82b-f68d-9e42" name="(07) 10 Flesh Hounds" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">6</characteristic>
</characteristics>
</profile>
<profile id="4e1e-1b9c-172e-87ac" name="(15) 1 Bloodmaster, Herald of Khorne" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">2</characteristic>
</characteristics>
</profile>
<profile id="915e-bd46-0caa-7859" name="(08) 3 Bloodcrushers" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">5</characteristic>
</characteristics>
</profile>
<profile id="198a-4ff6-0bcc-455d" name="(13) 1 Skullmaster, Herald of Khorne" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">3</characteristic>
</characteristics>
</profile>
<profile id="fbd2-b430-93d5-0d78" name="(12) 5 Flesh Hounds" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">4</characteristic>
</characteristics>
</profile>
<profile id="a784-e9c1-d286-8614" name="(11) 1 Herald of Khorne on Blood Throne" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">4</characteristic>
</characteristics>
</profile>
<profile id="488d-52a2-c491-63b4" name="(10) 10 Bloodletters" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">4</characteristic>
</characteristics>
</profile>
<profile id="f7ce-dbcf-5f71-0ae8" name="(09) 1 Skull Cannon" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">5</characteristic>
</characteristics>
</profile>
<profile id="7e0f-5f88-576f-55c5" name="(14) 5 Bloodletters" hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">2</characteristic>
</characteristics>
</profile>
<profile id="a7c2-aee2-e2a0-c37c" name="(01) 1 Exalted Greater Daemon of Khorne " hidden="false" typeId="53ae-6af8-0d87-ae4d" typeName="Blood Tithe Table - Unit Summoning">
<characteristics>
<characteristic name="Cost" typeId="d5b0-7d16-f65b-4b39">16</characteristic>
</characteristics>
</profile>
<profile id="3a10-c998-d24f-7111" name="Locus of Fury" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll hit rolls of 1 for attacks made by friendly KHORNE DAEMON units while they are wholly within 12" of any friendly KHORNE DAEMON HEROES, or wholly within 16" of any friendly KHORNE GREATER DAEMONS.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="915c-9a1f-05e3-6c98" name="New CategoryLink" hidden="false" targetId="be2f-aa63-6d82-e2fc" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="5e67-fc29-3f20-4d53" name="Slaughterhost" hidden="false" collective="false" import="true" targetId="92c7-7625-2526-73bc" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff93-966b-c16d-8149" name="Nurgle" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4d08-bb08-5b1e-d416" name="Cycle of Corruption" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Roll a dice at the start of the first battle round of any battle that includes any NURGLE armies, before rolling to see who has the first turn. Refer to the table to see which stage of the Cycle of Corruption is currently taking place - this applies to all NURGLE armies. The Cycle of Corruption moves on one step at the start of each new battle round. For example, if the roll on the Cycle of Corruption table was a 5, then Nauseous Revulsion would apply in the first battle round, Rampant Disease in the second, Corrupted Regrowth in the third, and so on. The rule for the current stage applies for the duration of the battle round.</characteristic>
</characteristics>
</profile>
<profile id="5d37-a3b4-7df8-c564" name="The Garden of Nurgle" page="60" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After all other terrain features are set up, but before you choose a territory or set up your army, you can set up one Feculent Gnarlmaw (pg 103) anywhere on the battlefield that is more than 1" from any other terrain feature. If both players can set up a Feculent Gnarlmaw, each player rolls a dice, rolling again in the case of a tie, and whoever rolls higher can choose the order in which the Feculent Gnarlmaws are set up.</characteristic>
</characteristics>
</profile>
<profile id="db57-be7a-63c2-1bcf" name="Summon Daemons of Nurgle" page="61" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can summon units of NURGLE DAEMONS to the battlefield if you collect enough contagion points. At the start of each of your hero phases, you receive 3 contagion points if there are any friendly NURGLE models in your own territory, and 3 additional contagion points if there are any friendly NURGLE models in your opponent’s territory. If there are no enemy models in the same territory as friendly NURGLE models, you receive 1 extra contagion point for that territory. In addition, you receive D3 contagion points for each Feculent Gnarlmaw that has no enemy models within 3" of it. If you have 7 or more contagion points at the end of your movement phase, you can summon one or more units from the following list to the battlefield, and add them to your army. Each unit you summon costs a number of contagion points, as shown on the list, and you can only summon a unit if you have enough contagion points remaining to pay its cost. Summoned units must be set up wholly within 12" of a Feculent Gnarlmaw or a friendly NURGLE HERO, and more than 9" from any enemy models. If the summoned unit is a Feculent Gnarlmaw, it must also be set up more than 1" from any terrain features. Subtract the cost of the summoned unit from the number of contagion points you have available immediately after it has been set up.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="d9a6-1f44-9ebf-b5b0" name="Tamurkhan's Horde Army" page="2" 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="b993-122b-41ea-4574" type="max"/>
</constraints>
<profiles>
<profile id="1e56-5d32-cabe-b5b7" name="Tamurkhan's Horde Army" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After you have chosen the Maggotkin of Nurgle allegiance for your army, you can give it the TAMURKHAN'S HORDE keyword. All MAGGOTKIN OF NURGLE units in your army gain that keyword (with the exception of named characters that do not already have the TAMURKHAN'S HORDE keyword on their warscroll). All units with that keyword benefit from the Tamurkhan's Horde allegiance abilities, in addition to the allegiance abilities in Battletome: Maggotkin of Nurgle.</characteristic>
</characteristics>
</profile>
<profile id="39df-1b3c-d90d-f193" name="Winds of Corruption" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Subtract 1 from run and charge rolls for enemy units.</characteristic>
</characteristics>
</profile>
<profile id="0bb2-c5b0-e7bb-6a72" name="Shout of Command" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your charge phase. If you do so, pick 1 friendly TAMURKHAN'S HORDE HERO. You can re-roll charge rolls for friendly TAMURKHAN'S HORDE units while they are wholly within 14" of that HERO in that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="edd5-8098-ce0b-c549" name="Additional Rules" hidden="false" collective="true" import="true">
<selectionEntries>
<selectionEntry id="59cd-0544-9b23-8703" name="Cycle of Corruption" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f71a-c4fb-4650-9fa8" type="max"/>
</constraints>
<profiles>
<profile id="59a6-af40-0501-27c6" name="1. Unnatural Vitality" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">Add 2" to the move characteristic of NURGLE units.</characteristic>
</characteristics>
</profile>
<profile id="f1e4-c0b2-cd55-27c6" name="2. Fecund Vigour" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">Add 1 to the wound rolls of all attacks made by NURGLE units in the combat phase.</characteristic>
</characteristics>
</profile>
<profile id="6db9-684e-7833-8f98" name="3. The Burgeoning" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">Roll a dice for each unit within 1" of a terrain feature at the start of your hero phase. On a roll of 5 or more the unit suffers 1 mortal wound. NURGLE units heal 1 wound instead.</characteristic>
</characteristics>
</profile>
<profile id="8930-638c-11ab-aae3" name="4. Plague of Misery" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">Re-roll battleshock test rolls of 1 for enemy units (excluding NURGLE units).</characteristic>
</characteristics>
</profile>
<profile id="34c8-de0f-910a-fc63" name="5. Nauseous Revulsion" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">Re-roll wound rolls of 6 or more for attacks made by enemy units (excluding NURGLE units) in the combat phase.</characteristic>
</characteristics>
</profile>
<profile id="2cc7-0aa4-6cf3-f75c" name="6. Rampant Disease" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">At the start of your hero phase, pick D3 different enemy units (excluding NURGLE units) within 12" of each other. Each unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="0e0f-a821-31da-1161" name="Corrupted Regrowth" publicationId="4be9-7bc9-ca17-b1b4" page="59" hidden="false" typeId="42a2-33a9-9123-aca4" typeName="Cycle of Corruption">
<characteristics>
<characteristic name="Effect" typeId="fb21-7a55-687d-0cf0">NURGLE units heal D3 wounds at the start of their hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9163-c0e0-7459-fe71" name="Summon Daemons of Nurgle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9259-ae11-9b42-068c" type="max"/>
</constraints>
<profiles>
<profile id="9b7b-f46a-2189-8c0d" name="(01) 1 Great Unclean One" publicationId="4be9-7bc9-ca17-b1b4" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">28</characteristic>
</characteristics>
</profile>
<profile id="d9a0-d501-0c28-663d" name="(02) 1 Horticulous Slimux" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">21</characteristic>
</characteristics>
</profile>
<profile id="159b-8668-7e26-510e" name="(03) 3 Plague Drones" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">21</characteristic>
</characteristics>
</profile>
<profile id="e936-8716-13b3-a2f4" name="(04) 20 Plaguebearers" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">21</characteristic>
</characteristics>
</profile>
<profile id="1b42-9dc8-1e3d-d1cd" name="(05) 1 Poxbringer, Herald of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="729c-1de7-05b7-38b1" name="(06) 1 Sloppity Bilepiper, Herald of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="71b4-50e4-2047-87d1" name="(07) 1 Spoilpox Scrivener, Herald of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="1f81-5888-d068-5e7b" name="(08) 10 Plaguebearers" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="2033-0d3b-dba1-aafa" name="(09) 1 Beast of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="039c-ccf1-c83e-85e7" name="(10) 3 Nurgling bases" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="7990-9fad-e09a-a38c" name="(11) 5 Plaguebearers" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">7</characteristic>
</characteristics>
</profile>
<profile id="714b-b3d0-dd68-07ba" name="(12) 1 Nurgling base" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">7</characteristic>
</characteristics>
</profile>
<profile id="710c-e2d3-6f81-1be3" name="(13) 1 Feculent Gnarlmaw" publicationId="4be9-7bc9-ca17-b1b4" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">7</characteristic>
</characteristics>
</profile>
<profile id="5a31-8509-1437-6607" name="(00) 3 Daemon Plague Toads of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">14</characteristic>
</characteristics>
</profile>
<profile id="84ef-6470-1644-05be" name="(00) 3 Daemon Pox Riders of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">21</characteristic>
</characteristics>
</profile>
<profile id="9944-9a79-0856-7d5e" name="(00) 1 Exalted Greater Daemon of Nurgle" hidden="false" typeId="5e08-385d-d0b5-1a1e" typeName="Summon Daemons of Nurgle">
<characteristics>
<characteristic name="Cost" typeId="c472-5508-d8bb-1667">35</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="065f-c64d-3eb7-79d2" name="Tzeentch" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="aa6c-4b65-26b1-5501" name="Masters of Destiny" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After set-up, but before rolling to see which player takes the first turn in the first battle round, roll 9 dice and keep them to one side; this is your pool of Destiny Dice. Though it is possible for some or even all of these dice to be replenished during the course of the battle, the number of dice in your pool of Destiny Dice can never exceed 9. Before rolling any dice for a TZEENTCH unit, you can use one or more of the remaining Destiny Dice from your pool in their stead; the result of the roll you would have made is automatically substituted with the result shown on the Destiny Dice you have chosen to use. [...] Destiny Dice can be expended to fix the result of any of the following nine types of dice rolls: Casting roll; Unbinding roll; Run roll; Charge roll; Hit roll; Wound roll; Save roll; Damage roll (e.g. any roll that determines a Damage characteristic, but not any roll that determines the number of mortal wounds inflicted by a spell or ability); Battleshock test</characteristic>
</characteristics>
</profile>
<profile id="0d1f-7342-9eee-ed69" name="Summon Daemons of Tzeentch" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can summon units of Tzeentch Daemons to the battlefield by expending Fate Points. You receive 1 Fate Point each time a casting roll is successful, and the spell is not unbound. Note that you receive Fate Points whenever a spell is cast, be it by friend or foe – Tzeentch cares not from whence the magic flows! If you have 10 or more Fate Points at the end of your movement phase, you can summon one or more units from the list below onto the battlefield, and add them to your army. Each unit you summon costs a number of Fate Points, as shown on the list, and you can only summon a unit if you have enough Fate Points to pay its cost. Summoned units must be set up wholly within 12" of a friendly Tzeentch Hero and more than 9" from any enemy units. Subtract the cost of the summoned unit from the number of Fate Points you have immediately after the summoned unit has been set up.</characteristic>
</characteristics>
</profile>
<profile id="f8d5-c78e-9061-bb50" name="1 Exalted Flamer of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">12</characteristic>
</characteristics>
</profile>
<profile id="7e1d-3e85-fc7a-cb92" name="10 Blue Horrors of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">10</characteristic>
</characteristics>
</profile>
<profile id="0943-a082-1f7b-706b" name="10 Brimstone Horrors of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">10</characteristic>
</characteristics>
</profile>
<profile id="370b-9360-fb6c-9b78" name="3 Screamers of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">10</characteristic>
</characteristics>
</profile>
<profile id="8d44-16bf-2720-271f" name="1 Herald of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">12</characteristic>
</characteristics>
</profile>
<profile id="3c2c-ad03-c441-bf89" name="1 Herald of Tzeentch on Disc" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">12</characteristic>
</characteristics>
</profile>
<profile id="1b7d-0025-0527-c8f3" name="1 Burning Chariot of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">18</characteristic>
</characteristics>
</profile>
<profile id="7ca2-7ea7-7622-7bb9" name="3 Flamers of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">18</characteristic>
</characteristics>
</profile>
<profile id="fc06-5f95-37d3-b3c1" name="10 Pink Horrors of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">20</characteristic>
</characteristics>
</profile>
<profile id="c99e-534e-cf9e-715a" name="1 Herald of Tzeentch on Burning Chariot" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">24</characteristic>
</characteristics>
</profile>
<profile id="84e9-358f-1a24-6b2c" name="1 Lord of Change" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">36</characteristic>
</characteristics>
</profile>
<profile id="9f0a-a2bd-18c4-0c72" name="1 Exalted Greater Daemon of Tzeentch" hidden="false" typeId="c0b9-c8dd-f7fd-3f8f" typeName="Fate Point Summoning Table - Unit">
<characteristics>
<characteristic name="Cost" typeId="70aa-1485-ad49-102d">45</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9ea4-da3a-bff7-dd6b" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4bd5-9ba3-7bfb-49ef" name="Chaos" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="b484-708c-6839-3e17" name="Unbridled Malice" hidden="false" targetId="6884-967e-0150-274e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a43e-ee01-c76d-d3a7" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b78c-c342-c8aa-aa45" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="62e4-370f-3318-cdbd" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d02c-40ae-7a75-2578" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6b58-ce55-d0fd-e60a" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="32de-5ab3-e368-f002" name="Gaunt Summoner & Chaos Familiars" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="3aec-6817-f280-2656" name="Gaunt Summoner & Chaos Familiars" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="cfbb-970d-44a5-6ac0" name="Gaunt Summoner & Chaos Familiars" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/2</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Infernal Flames</characteristic>
</characteristics>
</profile>
<profile id="f21d-9082-21cf-c51b" name="Infernal Flames" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">8</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick a visible enemy unit and roll 1 dice for each model in the target unit that is within 18" of the caster; the unit suffers 1 mortal wound for each roll of 4 or more. Roll 3 dice for each MONSTER or WAR MACHINE in the target unit, rather than only 1 dice.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="baea-32a6-2ee5-04f8" name="Book of Profane Secrets" hidden="false" targetId="283c-7a19-f2e0-bee5" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d40f-5efd-5f20-fb9c" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="6d84-e5d0-d078-5876" name="New CategoryLink" hidden="false" targetId="1418-9a68-9f9e-e9a7" primary="false"/>
<categoryLink id="0513-b70a-7049-0906" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="0cda-30a1-2303-8757" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="f8c7-6b9a-51af-c353" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="d5e1-03cb-1276-466d" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="c0a3-90da-429a-45f0" name="ARCANITE" hidden="false" targetId="a91f-7130-5f9c-30bf" primary="false"/>
<categoryLink id="01d6-9d40-ca88-43a2" name="EVERCHOSEN" hidden="false" targetId="da11-9f25-386f-a978" primary="false"/>
<categoryLink id="aea3-eb82-1f3e-9721" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="389d-01df-8071-b1a3" name="Chaos Familiars" 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="f11b-3de5-ef99-01ef" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf31-db53-8060-e53a" type="max"/>
</constraints>
<profiles>
<profile id="2edd-cc6c-4a61-af41" name="Chaos Familiars" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The Gaunt Summoner is accompanied by four Chaos Familiars: Tweak, Slop, Blot and Pug. Whenever the Gaunt Summoner is setup or finished a move, place each surviving Familiar within 1" of him. The range to or from the Gaunt Summoner can be measured to his own model or to any of his Chaos Familiars. When a wound is inflicted upon the Gaunt Summoner, the attacker can choose for the wound to either affect the Gaunt Summoner normally, or for it to remove one of the Chaos Familiars instead. All remaining Chaos Familiars are removed if the Gaunt Summoner is slain. The Chaos Familiars have the following effects as long as they are alive (they cannot do anything else).</characteristic>
</characteristics>
</profile>
<profile id="0a39-78f5-a0e8-0a11" name="Chaos Familiars - Tweak (bird)" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the hit rolls for the Gaunt Summoner's Warptongue Blade, as long as he is accompanied by Tweak.</characteristic>
</characteristics>
</profile>
<profile id="4827-a97c-5ade-45c5" name="Chaos Familiars - Slop (fish)" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Your opponent must subtract 1 from the save rolls of enemy models that are within 3" of the Gaunt Summoner, as long as he is accompanied by Slop.</characteristic>
</characteristics>
</profile>
<profile id="e279-c18b-577c-5e62" name="Chaos Familiars - Blot (book)" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the casting rolls for the Gaunt Summoner, as long as he is accompanied by Blot.</characteristic>
</characteristics>
</profile>
<profile id="9848-37ed-5965-743a" name="Chaos Familiars - Pug (moon faced imp)" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Your opponent must subtract 1 from any hit rolls that target the Gaunt Summoner in the combat phase, as long as he is accompanied by Pug.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9e2b-c8d7-ab17-c79d" name="Warptongue Blade" 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="55b9-1a23-ae3b-0261" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="de65-1f3a-0b8a-a54a" type="max"/>
</constraints>
<profiles>
<profile id="555d-7629-06dd-2ac9" name="Warptongue Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">See Ability</characteristic>
</characteristics>
</profile>
<profile id="f759-cab0-dad5-f01d" name="Warptongue Blade" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">[...] If a Warptongue Blade inflicts damage on an enemy unit, roll two dice. If the roll is higher than the enemy unit’s Bravery, one model in the unit is slain. Otherwise, the blade inflicts 1 wound.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bfe6-6c59-8dcd-4021" name="Changestaff" 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="2c7a-2ae7-8e72-2ba3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3062-060b-75b9-e115" type="max"/>
</constraints>
<profiles>
<profile id="47b6-ab90-7694-543c" name="Changestaff" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">18"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="5bd4-23b0-0b70-5683" name="Command Traits" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8008-2c35-463b-69a1" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2e56-854a-a248-27ba" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1869-b807-f9bf-62fc" name="Traits: Tzeentch Mortal" hidden="false" collective="false" import="true" targetId="f264-4e0d-4f4d-7d3b" type="selectionEntryGroup"/>
<entryLink id="d190-c915-9ba4-95a8" name="Traits: Tzeentch Arcanite" hidden="false" collective="false" import="true" targetId="bdb7-2e77-4755-e337" type="selectionEntryGroup"/>
<entryLink id="e504-1942-f91c-f10b" name="Chaos Command Traits" hidden="false" collective="false" import="true" targetId="f179-9104-3d7f-1ea1" type="selectionEntryGroup"/>
<entryLink id="5fef-136f-7c1e-cda8" name="Traits: Tzeentch Daemon" hidden="false" collective="false" import="true" targetId="8dba-9de2-482b-ed5b" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="20da-949f-d096-bfbb" name="Spell Lores" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="065f-c64d-3eb7-79d2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="93c3-1e1b-88b3-acd7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73a5-f882-8e5e-f420" type="min"/>
</constraints>
<entryLinks>
<entryLink id="1936-f561-2cd8-bba4" name="Lore of Change" hidden="false" collective="false" import="true" targetId="386a-83d1-48c8-5297" type="selectionEntryGroup"/>
<entryLink id="7735-d937-1ae9-42ca" name="Lore of Fate" hidden="false" collective="false" import="true" targetId="0e12-63ba-82cd-c6d5" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2d17-eb24-c8a0-0bfb" name="Artefacts" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="95cb-1d25-fac2-2299" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5b8e-ebb3-a81f-4de8" name="Artefacts: Treasures of the Cults" hidden="false" collective="false" import="true" targetId="3261-1fc9-eba8-e646" type="selectionEntryGroup"/>
<entryLink id="b5f0-9f27-3345-13af" name="Artefacts of Chaos" hidden="false" collective="false" import="true" targetId="3c13-922a-683d-7de7" type="selectionEntryGroup"/>
<entryLink id="d92e-d1b6-9020-2756" name="Artefacts: Fated Artefacts" hidden="false" collective="false" import="true" targetId="dfdf-9d22-6e78-49f0" type="selectionEntryGroup"/>
<entryLink id="504c-2db2-6d85-dd72" name="Artefacts: Fated Artefacts" hidden="false" collective="false" import="true" targetId="dfdf-9d22-6e78-49f0" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b571-5707-7547-94f5" name="General" hidden="false" collective="false" import="true" targetId="a43e-ee01-c76d-d3a7" type="selectionEntry"/>
<entryLink id="f963-b154-29ba-be3e" name="Arcane Bolt" hidden="false" collective="false" import="true" targetId="869c-168d-eba5-eacf" type="selectionEntry"/>
<entryLink id="38aa-69b3-84f2-eac3" name="Mystic Shield" hidden="false" collective="false" import="true" targetId="5fdd-6634-f9f8-068a" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3df8-78a6-7028-906a" name="Gaunt Summoner of Tzeentch" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="ccae-6db8-758b-4c00" name="Infernal Flames" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">8</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick a visible enemy unit and roll 1 dice for each model in the target unit that is within 18" of the caster; the unit suffers 1 mortal wound for each roll of 4 or more. Roll 3 dice for each MONSTER or WAR MACHINE in the target unit, rather than only 1 dice.</characteristic>
</characteristics>
</profile>
<profile id="fb2a-8e4c-9fd0-769d" name="Gaunt Summoner" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="9117-9860-e228-9aac" name="Gaunt Summoner" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/2</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Infernal Flames</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4a19-66b0-1963-b56a" name="Book of Profane Secrets" hidden="false" targetId="283c-7a19-f2e0-bee5" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b140-a8b5-6403-d974" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="902a-97e0-9bfd-4237" name="New CategoryLink" hidden="false" targetId="1418-9a68-9f9e-e9a7" primary="false"/>
<categoryLink id="2469-0ec8-0c73-46b2" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="46b9-3efc-6303-bc1f" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="15f6-85cd-874b-628a" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="7dc3-34e8-50cd-2e18" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="ecbd-4208-632d-2277" name="ARCANITE" hidden="false" targetId="a91f-7130-5f9c-30bf" primary="false"/>
<categoryLink id="9944-6bb5-bbb2-413c" name="EVERCHOSEN" hidden="false" targetId="da11-9f25-386f-a978" primary="false"/>
<categoryLink id="bfb4-6eb7-f328-4bbb" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ba10-c70b-ef94-f234" name="Warptongue Blade" 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="74c9-a9f7-dfb1-4cb2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a243-20ea-6fc3-5249" type="max"/>
</constraints>
<profiles>
<profile id="3306-9934-69a8-d258" name="Warptongue Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">See Ability</characteristic>
</characteristics>
</profile>
<profile id="3883-b088-bf2c-017d" name="Warptongue Blade" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">[...] If a Warptongue Blade inflicts damage on an enemy unit, roll two dice. If the roll is higher than the enemy unit’s Bravery, one model in the unit is slain. Otherwise, the blade inflicts 1 wound.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="98b0-dc87-e60b-327a" name="Changestaff" 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="b081-54d0-10cb-b194" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0269-3024-ac6e-4b80" type="max"/>
</constraints>
<profiles>
<profile id="4c1a-127d-b10b-d5f8" name="Changestaff" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>