forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Tzeentch.cat
3565 lines (3564 loc) · 273 KB
/
Chaos - Tzeentch.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="40a7-b89a-b3cb-cea9" name="Chaos - Tzeentch" revision="83" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="40a7-b89a-pubN65537" name="Chaos Battletome: Disciples of Tzeentch"/>
<publication id="40a7-b89a-pubN75398" name="1"/>
<publication id="40a7-b89a-pubN80233" name="DoT"/>
<publication id="40a7-b89a-pubN102034" name="Forgeworld: Monstrous Arcanum"/>
</publications>
<profileTypes>
<profileType id="b6a2-008f-9e59-df68" name="Plaything of the Gods">
<characteristicTypes>
<characteristicType id="0152-6755-50dd-c13d" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="65ac-ba71-6bc2-4365" name="Gigantic Chaos Spawn Wounds Suffered">
<characteristicTypes>
<characteristicType id="4a7e-f7c8-6c21-acad" name="Move"/>
<characteristicType id="8ea1-0116-40b5-1b41" name="Crushing Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="1d9d-3543-a777-a151" name="Aura of Mutation - D6">
<characteristicTypes>
<characteristicType id="f5fc-dc0c-4c0d-4d1b" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="9c58-8858-0964-2b7d" name="Soul Grinder Wounds Suffered">
<characteristicTypes>
<characteristicType id="b0a4-7abe-3239-c92a" name="Move"/>
<characteristicType id="ebc9-9350-e12b-84a9" name="Harvester Cannon"/>
<characteristicType id="1394-0752-952b-55e7" name="Piston-driven Legs"/>
</characteristicTypes>
</profileType>
<profileType id="9ee8-5118-59ca-884d" name="Lord of Change Wounds Suffered">
<characteristicTypes>
<characteristicType id="b630-426f-8031-1ab8" name="Move"/>
<characteristicType id="8697-234c-ecaf-2e97" name="Staff of Tzeentch"/>
<characteristicType id="035d-f0d7-6e93-8991" name="Infernal Gateway"/>
</characteristicTypes>
</profileType>
<profileType id="aa47-75cd-6786-6613" name="Kairos Fateweaver Wounds Suffered">
<characteristicTypes>
<characteristicType id="6945-f496-219d-266d" name="Move"/>
<characteristicType id="4ae9-7cbd-826e-e6c5" name="Staff of Tomorrow"/>
<characteristicType id="acfb-04f2-5651-2e3a" name="Gift of Change"/>
</characteristicTypes>
</profileType>
<profileType id="a174-f8c2-c6c2-59ca" name="Mutalith Wounds Suffered">
<characteristicTypes>
<characteristicType id="6179-d786-3d4f-a55b" name="Move"/>
<characteristicType id="263e-9493-d235-3545" name="Crushing Claws"/>
<characteristicType id="838f-dbcc-d2f0-aad7" name="Betentacled Maw"/>
</characteristicTypes>
</profileType>
<profileType id="ae39-3790-fcac-9a71" name="Fate Point Summoning Table - Unit">
<characteristicTypes>
<characteristicType id="89b0-2321-cb37-ba8f" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="bb59-f648-6ec2-8307" name="Horror Table">
<characteristicTypes>
<characteristicType id="34c5-373e-bcd6-a16f" name="Horror Colour"/>
<characteristicType id="7bbe-355c-6d24-2dec" name="Magical Flames"/>
<characteristicType id="f9b4-48be-8dc1-e4ff" name="Taloned Hands"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8aa4-d812-a406-633f" name="GIGANTIC CHAOS SPAWN" hidden="false"/>
<categoryEntry id="2abb-a147-0d83-5204" name="DAEMON PRINCE" hidden="false"/>
<categoryEntry id="36d4-f127-206e-7444" name="TAMURKHAN'S HORDE" hidden="false"/>
<categoryEntry id="90ec-8475-f7a7-bd48" name="MUTALITH VORTEX BEAST" hidden="false"/>
<categoryEntry id="fa5a-6b72-a4df-e132" name="FLAMER" hidden="false"/>
<categoryEntry id="35be-e0ea-741f-d211" name="HORROR" hidden="false"/>
<categoryEntry id="d25e-f256-298f-390d" name="BURNING CHARIOTS" hidden="false"/>
<categoryEntry id="ffaa-d66d-8953-8a53" name="BLUE HORRORS" hidden="false"/>
<categoryEntry id="7817-a9b5-bc6a-adcd" name="BRIMSTONE HORRORS" hidden="false"/>
<categoryEntry id="8222-f368-8544-6967" name="PINK HORRORS" hidden="false"/>
<categoryEntry id="2784-9cbb-a4b5-3043" name="FLAMERS" hidden="false"/>
<categoryEntry id="b5d6-fff3-9e97-abc3" name="EXALTED FLAMERS" hidden="false"/>
<categoryEntry id="c1b4-e84a-8264-5ecf" name="SCREAMERS" hidden="false"/>
<categoryEntry id="1d53-d333-5ceb-9bd7" name="THE BLUE SCRIBES" hidden="false"/>
<categoryEntry id="19be-85be-1aeb-2464" name="HERALD OF TZEENTCH" hidden="false"/>
<categoryEntry id="1e7f-5179-a314-faad" name="THE CHANGLING" hidden="false"/>
<categoryEntry id="0b1a-e233-e72f-93ce" name="HERALD ON DISC" hidden="false"/>
<categoryEntry id="d804-84a3-6200-e94a" name="HERALD ON BURNING CHARIOT" hidden="false"/>
<categoryEntry id="b6a3-dca6-901a-2b93" name="LORD OF CHANGE" hidden="false"/>
<categoryEntry id="3118-83b7-37d0-aacf" name="KAIROS FATEWEAVER" hidden="false"/>
<categoryEntry id="9a14-d1d0-510c-dc89" name="TZAANGOR SHAMAN" hidden="false"/>
<categoryEntry id="1e67-d8c2-51de-a233" name="CURSELING" hidden="false"/>
<categoryEntry id="74c8-f7d1-fc1e-6e7a" name="MAGISTER" hidden="false"/>
<categoryEntry id="432d-59c6-89a2-5c7e" name="GAUNT SUMMONER" hidden="false"/>
<categoryEntry id="638c-5f85-816a-bc08" name="EVERCHOSEN" hidden="false"/>
<categoryEntry id="0e0d-7197-bf1d-8501" name="FATEMASTER" hidden="false"/>
<categoryEntry id="ce66-e219-fca7-a1ce" name="OGROID THAUMATURGE" hidden="false"/>
<categoryEntry id="a7e9-9cbb-cd42-f992" name="TZAANGORS" hidden="false"/>
<categoryEntry id="c5dc-0f16-2665-52d2" name="GOR" hidden="false"/>
<categoryEntry id="a221-bf3d-65c6-d088" name="KAIRIC ACOLYTES" hidden="false"/>
<categoryEntry id="0b3a-ec47-36d4-fc8a" name="TZAANGOR ENLIGHTENED" hidden="false"/>
<categoryEntry id="0845-43a1-2b5d-ab8f" name="TZAANGOR SKYFIRES" hidden="false"/>
<categoryEntry id="6e65-d235-4d36-fe7d" name="CHAOS SPAWN" hidden="false"/>
<categoryEntry id="7043-6efb-5fe8-3019" name="CHAOS SORCERER LORD" hidden="false"/>
<categoryEntry id="5f92-cfa2-187b-2707" name="SOUL GRINDER" hidden="false"/>
<categoryEntry id="d93c-5caa-e4d0-5c45" name="ARCANITES" hidden="false"/>
<categoryEntry id="1cda-a20e-a1b5-2513" name="GAUNT SUMMONER AND CHAOS FAMILIARS" hidden="false"/>
<categoryEntry id="1765-da1d-67e4-28d6" name="EXALTED GREATER DAEMON OF TZEENTCH" hidden="false"/>
<categoryEntry id="61e5-283b-fdbd-45b7" name="EYES OF THE NINE" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="c359-4ac3-5bea-3228" name="Exalted Greater Daemon of Tzeentch" hidden="false" collective="false" import="true" targetId="d367-61a5-8672-59bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="5ed1-8734-f400-9d78" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="76fe-fd17-1727-e811" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ef63-8695-9ed1-7ae6" name="Tzeentch Chaos Spawn " hidden="false" collective="false" import="true" targetId="1919-4d02-5b7d-1311" type="selectionEntry">
<categoryLinks>
<categoryLink id="55ed-bb8e-24fc-1434" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="51eb-435c-cbf5-68d7" name="Allegiance" hidden="false" collective="false" import="true" targetId="d462-f108-8e30-daf4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7e65-352f-96aa-bc08" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f602-68ee-ef4a-edd7" name="Kairic Acolytes" hidden="false" collective="false" import="true" targetId="61b5-cb2e-123a-6f35" type="selectionEntry"/>
<entryLink id="d535-5724-0a80-74a3" name="Horrors" hidden="false" collective="false" import="true" targetId="16fa-c9dc-0b3c-fc42" type="selectionEntry"/>
<entryLink id="ade5-7a3f-4e13-8b64" name="Battalion: Multitudinous Host" hidden="false" collective="false" import="true" targetId="f20a-2bc1-fb2c-4b88" type="selectionEntry">
<categoryLinks>
<categoryLink id="bf5e-5257-0fea-82d4" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="77a9-4dcd-225d-7f57" name="Changecaster, Herald of Tzeentch" hidden="false" collective="false" import="true" targetId="591e-abe6-795e-ea08" type="selectionEntry">
<categoryLinks>
<categoryLink id="eb05-f002-fe34-90ef" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee81-0f7c-f918-77f2" name="Burning Chariots" hidden="false" collective="false" import="true" targetId="135f-d746-b867-4539" type="selectionEntry"/>
<entryLink id="ef39-bd71-e551-d4c7" name="Tzaangors" hidden="false" collective="false" import="true" targetId="7203-0266-45a6-5a9d" type="selectionEntry"/>
<entryLink id="7dc3-2d3f-86fc-9c8a" name="Exalted Flamers" hidden="false" collective="false" import="true" targetId="0298-7b9d-8aec-096f" type="selectionEntry"/>
<entryLink id="b91f-8047-6b9d-acb7" name="Fatemaster" hidden="false" collective="false" import="true" targetId="5567-ffa8-1173-9862" type="selectionEntry">
<categoryLinks>
<categoryLink id="cf3e-4f0a-7d6a-26a6" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c3b9-d958-2805-9325" name="Tzaangor Enlightened" hidden="false" collective="false" import="true" targetId="853e-1098-bdfe-97f8" type="selectionEntry">
<categoryLinks>
<categoryLink id="ed63-279f-2a1b-1591" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="99b3-7c1d-b1f2-66f4" name="Gaunt Summoner of Tzeentch" hidden="false" collective="false" import="true" targetId="3df8-78a6-7028-906a" type="selectionEntry"/>
<entryLink id="9d01-b1c8-b394-0542" name="Tzaangor Shaman" hidden="false" collective="false" import="true" targetId="adc7-da7b-7c27-0089" type="selectionEntry">
<categoryLinks>
<categoryLink id="7fe7-eab4-c5cf-17a1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b290-2332-e379-2e03" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" collective="false" import="true" targetId="23d2-8dc5-15ad-0d77" type="selectionEntry">
<categoryLinks>
<categoryLink id="6478-4d0a-bce0-5026" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7337-80d3-dc33-09c7" name="The Blue Scribes" hidden="false" collective="false" import="true" targetId="8d33-371b-71d9-ae31" type="selectionEntry">
<categoryLinks>
<categoryLink id="a549-aec8-de30-e104" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b08-fcb9-752e-818a" name="The Changeling" hidden="false" collective="false" import="true" targetId="4ba1-99e4-e532-1046" type="selectionEntry">
<categoryLinks>
<categoryLink id="2426-df23-2c7e-c216" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="edbc-39bb-3471-5788" name="Fluxmaster, Herald of Tzeentch on Disc" hidden="false" collective="false" import="true" targetId="3ede-0b81-99c2-0370" type="selectionEntry">
<categoryLinks>
<categoryLink id="50d6-6e66-fab8-37c0" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="eceb-f3a0-1d2c-7d66" name="Magister" hidden="false" collective="false" import="true" targetId="10e7-ad24-4c7a-a9e9" type="selectionEntry">
<categoryLinks>
<categoryLink id="2775-4e3c-29b5-66da" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e881-870a-cd77-3117" name="Ogroid Thaumaturge" hidden="false" collective="false" import="true" targetId="51c6-2f9d-2cfd-05db" type="selectionEntry">
<categoryLinks>
<categoryLink id="5755-794d-7f7f-4d6c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8941-c9b6-f218-9172" name="Kairos Fateweaver" hidden="false" collective="false" import="true" targetId="2630-15e7-36f6-8067" type="selectionEntry">
<categoryLinks>
<categoryLink id="5f35-8780-2c5b-c9af" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="c926-c278-9ba3-7e95" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0481-9525-70a4-fcad" name="Lord of Change" hidden="false" collective="false" import="true" targetId="8808-b8bb-2c9c-0e7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="aedc-6aa3-3a60-b72a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="197d-fd5c-7e70-f471" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="cfff-f8f3-d8c0-d43d" name="Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="5e5d-e5ea-80ba-eac8" type="selectionEntry"/>
<entryLink id="5a93-6093-c418-10eb" name="Screamers of Tzeentch" hidden="false" collective="false" import="true" targetId="f35b-6382-ab4a-64af" type="selectionEntry">
<categoryLinks>
<categoryLink id="20c6-cd50-4166-ccb8" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f662-7a6a-9d87-0a08" name="Tzaangor Skyfires" hidden="false" collective="false" import="true" targetId="4871-652b-72b3-7bc8" type="selectionEntry">
<categoryLinks>
<categoryLink id="15ba-c7ff-09ad-7d9c" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="90e6-bffc-20f2-b5f5" name="Battalion: Aether-eater Host" hidden="false" collective="false" import="true" targetId="cf18-2210-6e3e-c4d5" type="selectionEntry">
<categoryLinks>
<categoryLink id="138f-f39a-3bb9-7a0b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="be8a-3567-8a47-b3d2" name="Battalion: Alter-kin Coven" hidden="false" collective="false" import="true" targetId="4cab-0995-14f5-41da" type="selectionEntry">
<categoryLinks>
<categoryLink id="f502-c1a8-2c5c-e7a1" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8ce3-7f20-88bc-7ed8" name="Battalion: Arcanite Cabal" hidden="false" collective="false" import="true" targetId="c046-b308-7d09-cadc" type="selectionEntry">
<categoryLinks>
<categoryLink id="08d0-e3b7-63ec-0b8c" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e649-bf0d-5739-abd3" name="Super Battalion: Arcanite Cult" hidden="false" collective="false" import="true" targetId="8236-b4b3-248f-59a6" type="selectionEntry">
<categoryLinks>
<categoryLink id="4836-492d-3c74-7ee6" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="59bb-a960-4680-c36e" name="Battalion: Changehost" hidden="false" collective="false" import="true" targetId="b121-3c47-7734-0328" type="selectionEntry">
<categoryLinks>
<categoryLink id="40b3-113b-e61b-671f" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ee5-b6df-1deb-a6de" name="Battalion: M'Zarr's Aetherhost (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="ee18-8d7a-1ae2-763a" type="selectionEntry">
<categoryLinks>
<categoryLink id="89ed-e3de-5821-1424" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b301-2a28-e65f-d851" name="Battalion: Omniscient Oracles" hidden="false" collective="false" import="true" targetId="7b0b-13de-d31a-3d32" type="selectionEntry">
<categoryLinks>
<categoryLink id="56b0-cc90-8c93-7cf5" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4132-0ed2-028f-a5e8" name="Battalion: Overseer's Fate-twisters" hidden="false" collective="false" import="true" targetId="f4fa-d5d4-f8f0-e6a0" type="selectionEntry">
<categoryLinks>
<categoryLink id="c0d0-8da8-918f-682f" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee40-a533-828d-f1c4" name="Battalion: Skyshoal Coven" hidden="false" collective="false" import="true" targetId="5ec2-eb5e-00a8-9a9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="5078-fcd5-5fd3-79c4" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="eabf-bada-6a2e-b8ee" name="Battalion: Tzaangor Coven" hidden="false" collective="false" import="true" targetId="62af-003a-a68f-f316" type="selectionEntry">
<categoryLinks>
<categoryLink id="e007-15bb-9519-84c2" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5e48-ac7f-15b3-1d1a" name="Battalion: Warpflame Host" hidden="false" collective="false" import="true" targetId="3c12-4cee-c69b-a341" type="selectionEntry">
<categoryLinks>
<categoryLink id="96e9-90aa-654b-38ba" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bd42-5d41-0a38-7980" name="Battalion: Witchfyre Coven" hidden="false" collective="false" import="true" targetId="878c-9222-ae05-ab4b" type="selectionEntry">
<categoryLinks>
<categoryLink id="08f4-b73a-6b13-7f85" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8414-b2de-5c91-f5c2" name="Curseling, Eye of Tzeentch" hidden="false" collective="false" import="true" targetId="7c81-4505-a4ab-e9fe" type="selectionEntry">
<categoryLinks>
<categoryLink id="3544-93ec-4e01-369f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="199b-b621-d23c-be4d" name="Battalion: Phantasmagoria of Fate" hidden="false" collective="false" import="true" targetId="6224-8832-fe98-1596" type="selectionEntry">
<categoryLinks>
<categoryLink id="7e94-4cfd-9cc5-7829" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b74d-6e80-ea35-44df" name="Tzaangor Enlightened on Discs of Tzeentch" hidden="false" collective="false" import="true" targetId="4e7b-bd46-fad7-4e21" type="selectionEntry">
<categoryLinks>
<categoryLink id="cc9f-e474-f947-3388" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4890-b5e2-f418-9a57" name="Vortemis the All-Seeing" hidden="false" collective="false" import="true" targetId="6248-9626-de8a-3ee5" type="selectionEntry"/>
<entryLink id="08eb-4f1a-a105-c9f0" name="Eyes of the Nine" hidden="false" collective="false" import="true" targetId="eb28-d2ca-f780-08b6" type="selectionEntry"/>
<entryLink id="f87a-3cb1-39cb-9ecb" name="Magister on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="2eca-78e3-762e-c0b3" type="selectionEntry">
<categoryLinks>
<categoryLink id="0c59-0ea4-4193-e9c3" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6abf-3fc0-eb73-88b7" name="One-Eyed Grunnock - Warstompa Mercenary" hidden="false" collective="false" import="true" targetId="40c7-4bb8-cfd9-7319" type="selectionEntry"/>
<entryLink id="d0f8-34fc-526f-5ba1" name="Battalion: Fatesworn Warband" hidden="false" collective="false" import="true" targetId="e608-f9b6-63f4-075c" type="selectionEntry"/>
<entryLink id="93b6-6643-6489-6227" name="Archaon the Everchosen" hidden="false" collective="false" import="true" targetId="ee9e-b8de-b25d-b6f1" type="selectionEntry"/>
<entryLink id="9601-45dd-6c3e-e607" name="Battalion: Atra'zan's Blazing Cavalcade" hidden="false" collective="false" import="true" targetId="d832-129f-f529-c32a" type="selectionEntry"/>
<entryLink id="bee5-dd7c-dd45-4b5d" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="8b3a-4a2a-db07-a669" type="selectionEntry">
<categoryLinks>
<categoryLink id="0197-955e-84e0-26c9" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4dd5-4fd8-102d-fc8d" name="Endless Spell: Burning Sigil of Tzeentch" hidden="false" collective="false" import="true" targetId="74a6-a8b9-234c-7c0a" type="selectionEntry"/>
<entryLink id="c054-9269-2f80-76fc" name="Endless Spell: Daemonic Simulacrum" hidden="false" collective="false" import="true" targetId="0d20-c548-bfb4-0fec" type="selectionEntry"/>
<entryLink id="891f-6c04-738a-9ce1" name="Endless Spell: Tome of Eyes" hidden="false" collective="false" import="true" targetId="199e-1bbf-76f3-6654" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="7c81-4505-a4ab-e9fe" name="Curseling, Eye of Tzeentch" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="784f-6a51-9a32-15b9" name="Curseling, Eye of Tzeentch" 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">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="5670-3c74-f0b8-c26c" name="Curseling, Eye of Tzeentch" 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 Glean Magic</characteristic>
</characteristics>
</profile>
<profile id="6f83-0b8f-a6a4-b4c7" name="Glean Magic" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">3</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705"/>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy WIZARD within 24" of the caster and visible to them. Pick 1 spell from that WIZARD’s warscroll that is possible for this model to cast and roll a dice. On a 3+, the caster knows that spell for the rest of the battle.</characteristic>
</characteristics>
</profile>
<profile id="ad6a-6eb2-fa98-549d" name="Vessel of Chaos" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this model successfully unbinds a spell that is possible for it to cast, it can immediately attempt to cast that spell even though it is the enemy hero phase. If that spell is successfully cast, it cannot be unbound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8ca8-c7f7-4122-2831" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="c7f1-dfa1-010c-c41f" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="59ce-2d4d-8fae-21ae" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="f244-d1e6-7498-5472" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="d5b6-2002-b607-b593" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="ae77-f987-fde7-5890" name="New CategoryLink" hidden="false" targetId="1e67-d8c2-51de-a233" primary="false"/>
<categoryLink id="21b5-d6f9-a3f8-546f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6f59-2d19-e4c4-f088" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="c718-cb42-2a85-6ddd" name="ARCANITE" hidden="false" targetId="a91f-7130-5f9c-30bf" primary="false"/>
<categoryLink id="1b64-002e-42de-e659" name="DISCIPLES OF TZEENTCH" hidden="false" targetId="874b-91b7-c2e3-c0db" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="beca-f485-1bac-a05c" name="Blazing Sword" 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="aa44-3875-e754-4bb3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e50-4cb1-bead-8d82" type="max"/>
</constraints>
<profiles>
<profile id="04b3-d6d3-6fe2-ce8d" name="Blazing Sword" 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">3</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9967-b862-152a-5742" name="Threshing Flail" 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="bfb2-dbf2-5cb0-15b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6425-9b0b-42d2-da9c" type="max"/>
</constraints>
<profiles>
<profile id="4dfc-171d-4085-37ea" name="Threshing Flail" 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">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2838-62e5-47c0-b4bb" name="Staff of Tzeentch" 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="c4fb-4e67-6293-a805" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ab03-8b55-bad6-7def" type="max"/>
</constraints>
<profiles>
<profile id="54ed-234c-1601-5346" name="Staff of Tzeentch" 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">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</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>
<entryLinks>
<entryLink id="1f35-cc9a-bd1f-b79a" name="General" hidden="false" collective="false" import="true" targetId="1a9a-117d-b9af-93ed" type="selectionEntry"/>
<entryLink id="2da5-f333-59be-153d" name="Arcane Bolt" hidden="false" collective="false" import="true" targetId="869c-168d-eba5-eacf" type="selectionEntry"/>
<entryLink id="7c1a-1e21-a144-b1fc" name="Mystic Shield" hidden="false" collective="false" import="true" targetId="5fdd-6634-f9f8-068a" type="selectionEntry"/>
<entryLink id="f268-e596-ad99-d7da" name="Spell Lores" hidden="false" collective="false" import="true" targetId="265e-c66c-c5ff-ab54" type="selectionEntryGroup"/>
<entryLink id="a9c5-2372-f717-7f34" name="Command Traits" hidden="false" collective="false" import="true" targetId="3d9a-645a-2df7-ea6b" type="selectionEntryGroup"/>
<entryLink id="7160-fb26-5001-a17f" name="Artefacts" hidden="false" collective="false" import="true" targetId="1687-e52d-0f7e-41f6" type="selectionEntryGroup"/>
<entryLink id="d07f-3236-3208-3d93" name="Battalions" hidden="false" collective="false" import="true" targetId="dfe6-eb18-39a8-161d" type="selectionEntryGroup"/>
<entryLink id="3cf2-174e-4963-ca10" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="185.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b121-3c47-7734-0328" name="Battalion: Changehost" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="eceb-4d84-7c0b-6304" name="Deceive and Dismay" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase, if the LORD OF CHANGE in this battalion is your general and is on the battlefield, you can pick 1 other friendly unit in this battalion and remove it from the battlefield. If you do so, set up that unit again anywhere on the battlefield more than 9" from all enemy units. That unit cannot move in the following movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="14f2-831a-dd5b-c81a" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="166f-29d8-0e40-48f8" name="Changehost" 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="fb98-8ad2-0910-eda9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e598-e619-d7ea-d4ef" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="180.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="fa37-fd40-8603-26e2" name="1 Lord of Change" hidden="false" collective="false" import="true" defaultSelectionEntryId="4d83-2fef-6f14-b7e1">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c47-f051-befd-0c81" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="90f0-532a-c12f-e0e4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4d83-2fef-6f14-b7e1" name="Lord of Change" hidden="false" collective="false" import="true" targetId="8808-b8bb-2c9c-0e7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="373c-efb3-20c0-b5fd" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="43bd-aed0-1685-b5af" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9e00-b0c6-5e31-e0b9" name="8 units chosen from the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="8.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="dd76-a028-012d-c278" type="min"/>
<constraint field="selections" scope="parent" value="8.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d55d-163d-2bfc-59eb" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="dfbc-28a5-37c4-b800" name="HORROR HERO" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b85-4cb9-65fa-e3bc" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e855-f0f1-46c6-ba30" name="Changecaster, Herald of Tzeentch" hidden="false" collective="false" import="true" targetId="591e-abe6-795e-ea08" type="selectionEntry">
<categoryLinks>
<categoryLink id="21eb-4fdb-4ede-c4b1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fa36-8a2f-7d04-df50" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" collective="false" import="true" targetId="23d2-8dc5-15ad-0d77" type="selectionEntry">
<categoryLinks>
<categoryLink id="2427-8bde-d7a1-9f34" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0989-7736-254b-5973" name="Fluxmaster, Herald of Tzeentch on Disc" hidden="false" collective="false" import="true" targetId="3ede-0b81-99c2-0370" type="selectionEntry">
<categoryLinks>
<categoryLink id="5b2e-fd9f-ee55-7b3c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b4b3-0e5e-5d3e-840e" name="The Changeling" hidden="false" collective="false" import="true" targetId="4ba1-99e4-e532-1046" type="selectionEntry">
<categoryLinks>
<categoryLink id="4678-cbd7-f12f-4965" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a434-9bc8-5a3e-9a4c" name="The Blue Scribes" hidden="false" collective="false" import="true" targetId="8d33-371b-71d9-ae31" type="selectionEntry">
<categoryLinks>
<categoryLink id="b321-8e47-6b31-9ccf" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="a33e-393e-261b-09b9" name="Exalted Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="0298-7b9d-8aec-096f" type="selectionEntry">
<categoryLinks>
<categoryLink id="a91f-6fe2-28a2-c387" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af97-7d68-536a-744b" name="Horrors of Tzeentch" hidden="false" collective="false" import="true" targetId="16fa-c9dc-0b3c-fc42" type="selectionEntry">
<categoryLinks>
<categoryLink id="ef0d-4120-3f38-5578" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d8a1-f89d-770c-903d" name="Screamers of Tzeentch" hidden="false" collective="false" import="true" targetId="f35b-6382-ab4a-64af" type="selectionEntry">
<categoryLinks>
<categoryLink id="1021-c6ea-494a-0641" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="98d3-d43c-e6da-daaa" name="Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="5e5d-e5ea-80ba-eac8" type="selectionEntry">
<categoryLinks>
<categoryLink id="e669-cf26-f62e-513e" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4378-ac80-d3d9-d8d3" name="Burning Chariots of Tzeentch" hidden="false" collective="false" import="true" targetId="135f-d746-b867-4539" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3c12-4cee-c69b-a341" name="Battalion: Warpflame Host" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bc09-c5b1-fd6e-2275" name="Storm of Daemonic Fire" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the end of the charge phase, roll a dice for each enemy unit within 9" of any friendly units from this battalion. On a 6, that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8c9c-6577-4e87-310d" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2e50-77c3-4e7d-5f3d" name="Warpflame Host" 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="7a62-227f-e171-3503" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3015-50d3-b268-0e6a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="4e94-3b8b-2bdc-7b3e" name="1 Exalted Flamer of Tzeentch" hidden="false" collective="false" import="true" defaultSelectionEntryId="49eb-7ce9-070f-dd6a">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="188f-e2bd-2082-2e07" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d0d7-563a-f7c9-a94e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="49eb-7ce9-070f-dd6a" name="Exalted Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="0298-7b9d-8aec-096f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="407c-1378-6129-222e" name="3-8 units chosen from the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39ea-b81a-9e3b-a881" type="min"/>
</constraints>
<entryLinks>
<entryLink id="f6a6-ea30-5c16-a28d" name="Burning Chariots of Tzeentch" hidden="false" collective="false" import="true" targetId="135f-d746-b867-4539" type="selectionEntry"/>
<entryLink id="2dd4-7524-375c-b6fd" name="Exalted Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="0298-7b9d-8aec-096f" type="selectionEntry">
<categoryLinks>
<categoryLink id="ec1f-7ec0-663d-6317" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="37c6-8668-cea4-23a5" name="Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="5e5d-e5ea-80ba-eac8" type="selectionEntry">
<categoryLinks>
<categoryLink id="fad1-c115-d24f-f223" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f20a-2bc1-fb2c-4b88" name="Battalion: Multitudinous Host" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3296-cbc8-3661-6022" name="Horrors Without Number" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase, you can return D3 slain HORRORS OF TZEENTCH models to each friendly HORRORS OF TZEENTCH unit from this battalion (roll separately for each unit).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9cdd-f64f-6078-919b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ae76-b29f-6002-065e" name="Multitudinous Host" 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="dad8-ced0-0ed4-cf96" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b53b-a021-f4c0-e75f" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a967-9d84-4296-cf02" name="8 units of Horrors" hidden="false" collective="false" import="true" defaultSelectionEntryId="22ca-5dc6-1256-4646">
<constraints>
<constraint field="selections" scope="parent" value="8.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f48-d9ae-1e47-bf57" type="min"/>
<constraint field="selections" scope="parent" value="8.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba18-3e51-d481-baad" type="max"/>
</constraints>
<entryLinks>
<entryLink id="22ca-5dc6-1256-4646" name="Horrors of Tzeentch" hidden="false" collective="false" import="true" targetId="16fa-c9dc-0b3c-fc42" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b58b-5274-50b7-1e82" name="1 Changecaster" hidden="false" collective="false" import="true" defaultSelectionEntryId="d6d6-86ff-356b-ea20">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b69c-dc1f-1078-d3df" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2623-3504-bcca-6e7f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="06b2-74e9-aed3-57c2" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="d6d6-86ff-356b-ea20" name="Changecaster, Herald of Tzeentch" hidden="false" collective="false" import="true" targetId="591e-abe6-795e-ea08" type="selectionEntry">
<categoryLinks>
<categoryLink id="325e-9df4-6d70-8ca3" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf18-2210-6e3e-c4d5" name="Battalion: Aether-eater Host" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0693-646b-9f21-79dc" name="Feed on Magic" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If a friendly unit from this battalion successfully unbinds a spell in the enemy hero phase, you can immediately heal D3 wounds allocated to that unit. In addition, 1 friendly SCREAMERS OF TZEENTCH unit from this battalion can attempt to unbind 1 spell in the enemy hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="66cd-bcd0-b72a-bafe" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b009-4507-a921-e701" name="Aether-eater Host" 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="8a8f-97ee-12dc-28c6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb66-e8dd-2826-5a1d" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="8369-6ac2-71b6-28d9" name="3-8 units:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="127f-cc25-d3b5-a97d" type="min"/>
</constraints>
<entryLinks>
<entryLink id="a0a9-eb62-0d50-a7ce" name="Fluxmaster, Herald of Tzeentch on Disc" hidden="false" collective="false" import="true" targetId="3ede-0b81-99c2-0370" type="selectionEntry">
<categoryLinks>
<categoryLink id="0adc-2466-6c23-e9b1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0567-0c2b-0756-db0f" name="The Blue Scribes" hidden="false" collective="false" import="true" targetId="8d33-371b-71d9-ae31" type="selectionEntry">
<categoryLinks>
<categoryLink id="3ac8-ff36-81df-08b4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="614a-e6ab-70bb-7083" name="Screamers of Tzeentch" hidden="false" collective="false" import="true" targetId="f35b-6382-ab4a-64af" type="selectionEntry">
<categoryLinks>
<categoryLink id="1427-8b90-6c1a-dde0" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9fc3-8e70-50c3-de6e" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" collective="false" import="true" targetId="23d2-8dc5-15ad-0d77" type="selectionEntry">
<categoryLinks>
<categoryLink id="6244-bbc9-8840-11d8" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9f6e-4369-5c31-b2bd" name="1 Fateskimmer" hidden="false" collective="false" import="true" defaultSelectionEntryId="9253-ac3c-d255-d160">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1697-a642-fece-f880" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a30-a327-e5e5-b847" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9253-ac3c-d255-d160" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" collective="false" import="true" targetId="23d2-8dc5-15ad-0d77" type="selectionEntry">
<categoryLinks>
<categoryLink id="0307-1111-5a4e-863d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f4fa-d5d4-f8f0-e6a0" name="Battalion: Overseer's Fate-twisters" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9f51-ac49-f4e4-a896" name="The Will of Tzeentch" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase, if 1 or more friendly units from this battalion are on the battlefield, you can roll a dice and add it to your Destiny Dice. In addition, at the start of your hero phase, if the LORD OF CHANGE from this battalion is on the battlefield, you can re-roll one of your Destiny Dice.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6be9-c7bb-b8ac-c379" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3a63-1898-9a36-91e1" name="Overseer's Fate-twisters" 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="b716-c10b-a089-b127" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50f6-b82b-bd74-e2b0" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="7e7c-8eed-28b9-c5bb" name="1 Lord of Change" hidden="false" collective="false" import="true" defaultSelectionEntryId="9c72-1f89-da2d-bb7f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e05-d7d1-3adf-96c1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1af-1f91-f266-e7af" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9c72-1f89-da2d-bb7f" name="Lord of Change" hidden="false" collective="false" import="true" targetId="8808-b8bb-2c9c-0e7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="a6f1-68e1-69b4-a9d6" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="fd33-2aeb-c51d-ddf2" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9cd5-65cb-3497-d279" name="8 units chosen from the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="8.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2987-96bb-4185-0145" type="min"/>
<constraint field="selections" scope="parent" value="8.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="940d-27ed-2c61-dd90" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="6eec-1519-7079-d872" name="HORROR HERO" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="90e4-8b95-d5fa-f57c" type="min"/>
</constraints>
<entryLinks>
<entryLink id="ebcc-0db1-156c-4ff1" name="Changecaster, Herald of Tzeentch" hidden="false" collective="false" import="true" targetId="591e-abe6-795e-ea08" type="selectionEntry">
<categoryLinks>
<categoryLink id="307a-c36f-aa1d-237d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4686-7668-c420-196e" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" collective="false" import="true" targetId="23d2-8dc5-15ad-0d77" type="selectionEntry">
<categoryLinks>
<categoryLink id="923c-2ce1-bd69-54fa" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d239-be3b-339d-0220" name="Fluxmaster, Herald of Tzeentch on Disc" hidden="false" collective="false" import="true" targetId="3ede-0b81-99c2-0370" type="selectionEntry">
<categoryLinks>
<categoryLink id="db4c-e0f4-8298-8b7c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b935-93af-490f-0d93" name="The Changeling" hidden="false" collective="false" import="true" targetId="4ba1-99e4-e532-1046" type="selectionEntry">
<categoryLinks>
<categoryLink id="4c8a-3c5f-3199-e0aa" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a1eb-b3b6-b1f4-4762" name="The Blue Scribes" hidden="false" collective="false" import="true" targetId="8d33-371b-71d9-ae31" type="selectionEntry">
<categoryLinks>
<categoryLink id="0abc-3ae5-07f4-7e84" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f81e-3313-7aed-bdd1" name="Exalted Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="0298-7b9d-8aec-096f" type="selectionEntry">
<categoryLinks>
<categoryLink id="2c70-138d-e26b-676a" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="78b8-a806-c823-ee57" name="Burning Chariots of Tzeentch" hidden="false" collective="false" import="true" targetId="135f-d746-b867-4539" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7b0b-13de-d31a-3d32" name="Battalion: Omniscient Oracles" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cacb-1e35-3f25-bac4" name="Knowledge of the Past, Present and Future" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll hit, wound and save rolls of 1 for friendly units from this battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6d7a-23dd-3eeb-2f15" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9486-cae3-fd4b-dc13" name="Omniscient Oracles" 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="7017-6901-4063-b769" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="293e-dee0-c4e0-50d6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="043c-1681-eae0-e3bd" name="Kairos Fateweaver" hidden="false" collective="false" import="true" defaultSelectionEntryId="8f32-2fc7-3696-5724">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="845d-e521-d704-eb40" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="41e1-82eb-c9e9-8a97" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8f32-2fc7-3696-5724" name="Kairos Fateweaver" hidden="false" collective="false" import="true" targetId="2630-15e7-36f6-8067" type="selectionEntry">
<categoryLinks>
<categoryLink id="b9ba-cb25-cfe3-2903" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6b7b-c09c-10ab-b78e" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="07c0-c424-d7ca-ebcf" name="3 Lords of Change" hidden="false" collective="false" import="true" defaultSelectionEntryId="d6fb-cc83-8401-6c44">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c05-1bdc-331c-c2a2" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8551-0a86-0b3d-787f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d6fb-cc83-8401-6c44" name="Lord of Change" hidden="false" collective="false" import="true" targetId="8808-b8bb-2c9c-0e7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="0178-3b42-7c3b-70ed" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="54c8-8262-dc69-a19d" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8236-b4b3-248f-59a6" name="Super Battalion: Arcanite Cult" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0ee7-c871-63bb-d476" name="Destiny Preordained" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If your army includes this battalion, instead of rolling 9 dice for the Masters of Destiny battle trait (pg 69), you can choose the values of 6 of the Destiny Dice and then roll the remaining 3 dice as normal.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="632f-1ce1-6030-8e55" name="Arcanite Cult" 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="9baf-6309-ee7d-7efc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c34d-fa98-ae2f-89a1" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="ee62-9a18-51da-7839" name="1 Arcanite Cabal" hidden="false" collective="false" import="true" defaultSelectionEntryId="ba46-ce31-960d-6b97">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6d3-00f9-b36d-cd1c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39f5-3e33-8dfc-5766" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ba46-ce31-960d-6b97" name="Battalion: Arcanite Cabal" hidden="false" collective="false" import="true" targetId="c046-b308-7d09-cadc" type="selectionEntry">
<categoryLinks>
<categoryLink id="a0f5-016d-df09-bd72" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="dde5-c822-8fd0-a13f" name="8 warscroll battalions chosen from the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed16-1902-7ca6-7f2b" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eee6-b88b-2cc1-94c7" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e7f5-3214-20c3-0d93" name="Battalion: Alter-kin Coven" hidden="false" collective="false" import="true" targetId="4cab-0995-14f5-41da" type="selectionEntry">
<categoryLinks>
<categoryLink id="be82-0b5e-ed5b-a326" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1f3c-93d3-0d05-0193" name="Battalion: Skyshoal Coven" hidden="false" collective="false" import="true" targetId="5ec2-eb5e-00a8-9a9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="249a-810f-6797-98f8" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6dbc-3857-d705-fa00" name="Battalion: Tzaangor Coven" hidden="false" collective="false" import="true" targetId="62af-003a-a68f-f316" type="selectionEntry">
<categoryLinks>
<categoryLink id="67e3-4818-e13a-1a90" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="75fa-2905-3a2a-c8eb" name="Battalion: Witchfyre Coven" hidden="false" collective="false" import="true" targetId="878c-9222-ae05-ab4b" type="selectionEntry">
<categoryLinks>
<categoryLink id="aab1-5e45-51c0-bfa8" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c046-b308-7d09-cadc" name="Battalion: Arcanite Cabal" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5532-d074-a74c-d2d2" name="Master of the Cults" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">After armies have been set up but before the first battle round begins, pick 1 friendly model from this battalion. For the rest of the battle, each time you spend a Destiny Dice to replace a dice roll for that model, roll a dice. On a 2+, you can replace one of your remaining Destiny Dice with that roll. </characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ed73-2d13-984b-7b4d" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a437-f52d-9281-3a19" name="Arcanite Cabal" 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="3657-c3cf-6d1e-0f48" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7664-e7a5-a346-78fc" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="08ef-1ba2-aa31-1e1c" name="3 - 9 units chosen from the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd44-d080-a1d0-9d97" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a3b-7c0b-1224-03fd" type="max"/>
</constraints>
<entryLinks>
<entryLink id="525f-7148-1bf7-eae8" name="Fatemaster" hidden="false" collective="false" import="true" targetId="5567-ffa8-1173-9862" type="selectionEntry">
<categoryLinks>
<categoryLink id="5c66-357f-29d0-2e31" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7041-45d8-1fe0-75a3" name="Vortemis the All-Seeing" hidden="false" collective="false" import="true" targetId="6248-9626-de8a-3ee5" type="selectionEntry">
<categoryLinks>
<categoryLink id="b064-af10-d4eb-86f9" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4aff-3452-8e37-9fe0" name="Tzaangor Shaman" hidden="false" collective="false" import="true" targetId="cad5-c0e6-cbf2-99fb" type="selectionEntry">
<categoryLinks>
<categoryLink id="60c6-3f09-74a5-69e5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fe20-b6c5-2058-3604" name="Magister" hidden="false" collective="false" import="true" targetId="10e7-ad24-4c7a-a9e9" type="selectionEntry">
<categoryLinks>
<categoryLink id="0671-54aa-621b-ed95" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="85c1-72b7-4409-0d64" name="Magister on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="2eca-78e3-762e-c0b3" type="selectionEntry">
<categoryLinks>
<categoryLink id="0ad3-e5d3-0d4e-c4e4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4cab-0995-14f5-41da" name="Battalion: Alter-kin Coven" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1fe7-940d-eb3b-9054" name="Boon of Mutation" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the end of the charge phase, roll a dice for each enemy unit within 3" of a friendly unit from this battalion. On a 6, that unit suffers D3 mortal wounds. If any models are slain by this ability, before removing the first slain model, you can add 1 TZAANGOR model to an existing TZAANGOR unit in your army. If you do so, set up that TZAANGOR model within 1" of a friendly TZAANGOR unit that is within 9" of the slain model. The model can only be set up within 3" of an enemy unit if the friendly TZAANGOR unit was within 3" of that enemy unit before any models were added.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b8cd-29b5-3f89-1dd6" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntries>