-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathChaos - Tzeentch.cat
3680 lines (3678 loc) · 280 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="40a7-b89a-b3cb-cea9" name="Chaos - Tzeentch" revision="119" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<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="TZAANGOR" 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="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"/>
<categoryEntry id="30b5-f65b-0110-cd08" name="TZAANGOR HOST" hidden="false"/>
<categoryEntry id="dd44-3dfd-4d27-7bf1" name="TZAANGOR ENLIGHTENED ON DISKS OF TZEENTCH" hidden="false"/>
<categoryEntry id="6d9f-55dc-54a8-ade1" name="MAGISTER ON DISC OF TZEENTCH" hidden="false"/>
<categoryEntry id="d7f4-6d35-41a3-0a2c" name="CULT OF THE TRANSIENT FORM" hidden="false"/>
<categoryEntry id="8b42-9761-57f6-04c0" name="JADE OBELISK" hidden="false"/>
<categoryEntry id="6f52-ce18-420b-4758" name="EPHILIM THE UNKNOWABLE" hidden="false"/>
<categoryEntry id="4f81-f21d-8f87-6fc6" name="EPHILIM'S PANDAEMONIUM" 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="Disciples of Tzeentch Chaos Spawn" hidden="false" collective="false" import="true" targetId="34fd-bbe6-5117-1a03" 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" 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 of Tzeentch" hidden="false" collective="false" import="true" targetId="16fa-c9dc-0b3c-fc42" type="selectionEntry"/>
<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 of Tzeentch" 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 of Tzeentch" 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="3711-1fdf-7e33-6ac5" 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="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="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="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="The 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="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"/>
<entryLink id="855b-491c-0785-0c74" name="Gaunt Summoner on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="be2a-336a-c2c5-86e5" type="selectionEntry"/>
<entryLink id="8628-e153-5217-390c" name="Tzeentch Warscroll Battalion: Alter-kin Coven" hidden="false" collective="false" import="true" targetId="3afa-06e3-a270-fff3" type="selectionEntry"/>
<entryLink id="5723-a9f8-f75e-88ec" name="Tzeentch Warscroll Battalion: Arcanite Cabal" hidden="false" collective="false" import="true" targetId="169b-8f49-9a82-08f4" type="selectionEntry"/>
<entryLink id="79a8-aea1-7979-d024" name="Tzeentch Warscroll Battalion: Skyshoal Coven" hidden="false" collective="false" import="true" targetId="d75a-c055-1b0b-b29f" type="selectionEntry"/>
<entryLink id="9ee9-fd5b-5593-fe05" name="Tzeentch Warscroll Battalion: Tzaangor Coven" hidden="false" collective="false" import="true" targetId="29d0-afd2-cbac-afea" type="selectionEntry"/>
<entryLink id="309d-ae3e-79f7-29fa" name="Tzeentch Warscroll Battalion: Witchfyre Coven" hidden="false" collective="false" import="true" targetId="6c2c-a1f2-4d2e-92dd" type="selectionEntry"/>
<entryLink id="e6d6-c303-65fa-78d8" name="Tzeentch Warscroll Battalion: Aether-eater Host" hidden="false" collective="false" import="true" targetId="df95-b0fb-4a51-8e77" type="selectionEntry"/>
<entryLink id="ee41-5444-98be-43b4" name="Tzeentch Warscroll Battalion: Change Host" hidden="false" collective="false" import="true" targetId="e6aa-834d-a6ff-028e" type="selectionEntry"/>
<entryLink id="ddb8-be5e-be19-0ef7" name="Tzeentch Warscroll Battalion: Multitudinous Host" hidden="false" collective="false" import="true" targetId="abf1-efe1-552b-3965" type="selectionEntry"/>
<entryLink id="9f32-a42b-832d-7560" name="Tzeentch Warscroll Battalion: Overseer's Fate-twisters" hidden="false" collective="false" import="true" targetId="01b9-8c35-89fc-338a" type="selectionEntry"/>
<entryLink id="107d-67f7-7ca3-fba8" name="Tzeentch Warscroll Battalion: Warpflame Host" hidden="false" collective="false" import="true" targetId="cc4b-93ec-b7e1-b9c6" type="selectionEntry"/>
<entryLink id="63d6-a7dd-15b3-6e1f" name="Tzeentch Core Battalion: Omniscient Oracles" hidden="false" collective="false" import="true" targetId="2656-8c35-b164-94a8" type="selectionEntry"/>
<entryLink id="de55-7c9f-7e95-3bc1" name="Jade Obelisk" hidden="false" collective="false" import="true" targetId="bf3b-7b8c-dfca-7021" type="selectionEntry"/>
<entryLink id="d440-23f3-3648-c705" name="Regiment of Renown - Hargax's Pit-beats" hidden="false" collective="false" import="true" targetId="f5e6-6888-e003-118d" type="selectionEntry"/>
<entryLink id="6369-ee09-ee78-ee24" name="Ephilim the Unknowable" hidden="false" collective="false" import="true" targetId="4839-d22f-27a6-b1f1" type="selectionEntry">
<categoryLinks>
<categoryLink id="739a-333c-49c4-d8ae" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f403-6467-61b0-8a2c" name="Ephilim's Pandaemonium" hidden="false" collective="false" import="true" targetId="c6e1-a584-afb9-c865" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Phulgoth's Shudderhood" hidden="false" type="selectionEntry" id="e632-9dd8-4c65-c575" targetId="10de-6e02-9446-6700"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="7c81-4505-a4ab-e9fe" name="Curseling, Eye of Tzeentch" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<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">3+</characteristic>
</characteristics>
</profile>
<profile id="5670-3c74-f0b8-c26c" name="Wizard" 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">4</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">30"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy WIZARD within range and visible to the caster. Pick 1 spell from that WIZARD's warscroll that is possible for this unit to cast and roll a dice. On a 2+, the caster knows that spell for the rest of the battle.</characteristic>
</characteristics>
</profile>
<profile id="ad6a-6eb2-fa98-549d" name="Disrupter of the Arcane" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll unbinding and dispelling rolls for this unit.</characteristic>
</characteristics>
</profile>
<profile id="c32c-36fe-3b54-e6ad" 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 unit successfully unbinds a spell, it can immediately attempt to cast the Glean Magic 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa44-3875-e754-4bb3" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9967-b862-152a-5742" name="Hurled Arcane Energy" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bfb2-dbf2-5cb0-15b5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6425-9b0b-42d2-da9c" type="max"/>
</constraints>
<profiles>
<profile id="4dfc-171d-4085-37ea" name="Hurled Arcane Energy" 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">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c4fb-4e67-6293-a805" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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"/>
<entryLink id="a82e-58e4-ac22-3df9" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="d327-b794-76e4-172d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</selectionEntry>
<selectionEntry id="10e7-ad24-4c7a-a9e9" name="Magister" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="9c11-0627-7949-2975" name="Magister" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</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">5+</characteristic>
</characteristics>
</profile>
<profile id="266c-4557-2d13-a154" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Bolt of Change</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3c99-bbdd-9069-aa52" name="Bolt of Change" hidden="false" targetId="8c35-36a9-b15f-37d4" type="profile"/>
<infoLink id="6a95-80b3-9da4-d522" name="Magic-touched" hidden="false" targetId="8eb4-c7d3-d148-6040" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="558c-9f05-9ecd-0c33" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="d2fd-98fa-459c-9a60" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="ddae-889a-983c-85d2" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="7692-e4ef-250b-54ba" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="0c73-86cf-7110-e6eb" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="64fb-48fc-fdb5-3bfb" name="New CategoryLink" hidden="false" targetId="74c8-f7d1-fc1e-6e7a" primary="false"/>
<categoryLink id="eb4f-b5d6-f970-cda6" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="5d2f-5c9a-c731-f3a1" name="ARCANITE" hidden="false" targetId="a91f-7130-5f9c-30bf" primary="false"/>
<categoryLink id="a5fb-c3c7-ca1e-db28" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="f7e9-685e-dcc1-dbe6" name="DISCIPLES OF TZEENTCH" hidden="false" targetId="874b-91b7-c2e3-c0db" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="4296-88b2-e3ff-7067" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3115-1020-af5e-db5f" name="Tzeenchian Runestaff" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b0bd-32ae-77a9-fbd9" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c898-b242-ae3f-f69f" type="max"/>
</constraints>
<profiles>
<profile id="306c-1ab4-4f9b-6edf" name="Tzeenchian Runestaff" 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"/>
</costs>
</selectionEntry>
<selectionEntry id="2ef8-0486-3b9a-9f5c" name="Warpsteel Sword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd3f-3351-4dd8-5c95" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a0a-c61b-a585-561d" type="max"/>
</constraints>
<profiles>
<profile id="b592-2ff3-55ac-9a61" name="Warpsteel 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">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="15c4-1b2a-0a7d-c109" name="General" hidden="false" collective="false" import="true" targetId="1a9a-117d-b9af-93ed" type="selectionEntry"/>
<entryLink id="bbc7-e54e-cf98-3f1d" name="Arcane Bolt" hidden="false" collective="false" import="true" targetId="869c-168d-eba5-eacf" type="selectionEntry"/>
<entryLink id="4120-fddb-dd33-155e" name="Mystic Shield" hidden="false" collective="false" import="true" targetId="5fdd-6634-f9f8-068a" type="selectionEntry"/>
<entryLink id="cce9-8891-ee43-1ea4" name="Spell Lores" hidden="false" collective="false" import="true" targetId="265e-c66c-c5ff-ab54" type="selectionEntryGroup"/>
<entryLink id="c33e-3e52-1415-0b05" name="Artefacts" hidden="false" collective="false" import="true" targetId="1687-e52d-0f7e-41f6" type="selectionEntryGroup"/>
<entryLink id="7ecf-b97f-a4df-273e" name="Command Traits" hidden="false" collective="false" import="true" targetId="3d9a-645a-2df7-ea6b" type="selectionEntryGroup"/>
<entryLink id="5969-e6ef-cf8a-a81a" name="Battalions" hidden="false" collective="false" import="true" targetId="dfe6-eb18-39a8-161d" type="selectionEntryGroup"/>
<entryLink id="1ede-459e-f326-b6be" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="0343-99e9-ad0d-ae4c" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="d327-b794-76e4-172d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</selectionEntry>
<selectionEntry id="51c6-2f9d-2cfd-05db" name="Ogroid Thaumaturge" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="87e2-6c29-1a07-3412" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Choking Tendrils</characteristic>
</characteristics>
</profile>
<profile id="61cd-e8c0-c2ef-2bd2" name="Berserk Rage" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls and wound rolls for attacks made with melee weapons by this unit if any wounds or mortal wounds were allocated to this unit earlier in the phase.</characteristic>
</characteristics>
</profile>
<profile id="2cb4-a414-e21e-5f54" name="Ogroid Thaumaturge" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="c751-f01f-4570-c4bb" name="Choking Tendrils" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster. That unit suffers D6 mortal wounds. For each model that is slain by mortal wounds caused by this spell, you can heal 1 wound allocated to the caster.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="551b-26eb-2e85-d2fe" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="61c5-ce91-e00f-a84a" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="8450-2fa4-e8e2-771b" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="13c3-cf06-c4b2-2421" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="ebed-b9d8-972a-aed6" name="New CategoryLink" hidden="false" targetId="ce66-e219-fca7-a1ce" primary="false"/>
<categoryLink id="c332-5f23-41a7-e9c3" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="83ce-f0fb-b258-b98e" name="ARCANITE" hidden="false" targetId="a91f-7130-5f9c-30bf" primary="false"/>
<categoryLink id="239a-6f5a-807e-9f01" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="4bcd-5914-ac8f-a153" name="DISCIPLES OF TZEENTCH" hidden="false" targetId="874b-91b7-c2e3-c0db" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="6312-6b46-ab80-5f80" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="49ae-48fb-05c4-da2f" name="Thaumaturge Staff" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f6e-c450-8167-2518" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb24-5874-cde5-9fde" type="max"/>
</constraints>
<profiles>
<profile id="ae4c-8fb2-fe5b-e323" name="Thaumaturge Staff" 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">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5579-90a6-e334-2d17" name="Great Horns" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="740a-378c-5e3e-7a22" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2391-5081-ff31-74f2" type="max"/>
</constraints>
<profiles>
<profile id="c37d-3127-82cf-42a6" name="Great Horns" 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">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="279b-42b8-6600-a4d2" name="Cloven Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="deef-4453-114f-2527" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f43-5e13-5b93-6bdd" type="max"/>
</constraints>
<profiles>
<profile id="37cc-435a-120a-8ea8" name="Cloven Hooves" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</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"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="bea0-8e72-027e-c301" name="General" hidden="false" collective="false" import="true" targetId="1a9a-117d-b9af-93ed" type="selectionEntry"/>
<entryLink id="8b30-c272-bc57-8dc2" name="Arcane Bolt" hidden="false" collective="false" import="true" targetId="869c-168d-eba5-eacf" type="selectionEntry"/>
<entryLink id="f6cb-a21a-2a80-2625" name="Spell Lores" hidden="false" collective="false" import="true" targetId="265e-c66c-c5ff-ab54" type="selectionEntryGroup"/>
<entryLink id="fef6-d56d-9cfe-0dc3" name="Artefacts" hidden="false" collective="false" import="true" targetId="1687-e52d-0f7e-41f6" type="selectionEntryGroup"/>
<entryLink id="2953-5f23-60b5-7b54" name="Command Traits" hidden="false" collective="false" import="true" targetId="3d9a-645a-2df7-ea6b" type="selectionEntryGroup"/>
<entryLink id="60be-efd9-a7e6-01c7" name="Mystic Shield" hidden="false" collective="false" import="true" targetId="5fdd-6634-f9f8-068a" type="selectionEntry"/>
<entryLink id="720d-21ae-e0db-3dd9" name="Battalions" hidden="false" collective="false" import="true" targetId="dfe6-eb18-39a8-161d" type="selectionEntryGroup"/>
<entryLink id="a8ee-073c-be82-5d5d" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="c9c9-7140-38ed-f2a5" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="d327-b794-76e4-172d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</selectionEntry>
<selectionEntry id="1a9a-117d-b9af-93ed" 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="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dec-594e-dd91-d16b" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="23ed-939e-ad8a-c9ad" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="61b5-cb2e-123a-6f35" name="Kairic Acolytes" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="36ed-5fb0-dcb4-0e48" name="Kairic Acolytes" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="3d04-bf71-241c-af6f" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Kairic Adept. Add 1 to the Attacks characteristic of that model’s melee weapons.</characteristic>
</characteristics>
</profile>
<profile id="88af-ef2a-2149-45b1" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Gestalt Sorcery</characteristic>
</characteristics>
</profile>
<profile id="5827-cb0a-3d5f-a1a8" name="Wizard" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit is a WIZARD while this unit has 9 or more models. It only knows the Gestalt Sorcery spell and cannot attempt to cast any other spells. Any number of KAIRIC ACOLYTES units can attempt to cast Gestalt Sorcery in the same hero phase.</characteristic>
</characteristics>
</profile>
<profile id="a032-7ae8-e901-b278" name="Gestalt Sorcery" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">9"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 friendly KAIRIC ACOLYTES unit wholly within range of the caster. Until your next hero phase, improve the Rend characteristic of that unit's Sorcerous Bolts by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e349-2cd7-445a-15a1" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="9027-6c59-eb45-1008" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="9628-8937-4e79-7039" name="New CategoryLink" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="cf0b-7021-dd4b-c677" name="New CategoryLink" hidden="false" targetId="a221-bf3d-65c6-d088" primary="false"/>
<categoryLink id="e0bd-dcf6-9f9e-13e5" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="d6c0-6b3c-cfc2-bbc4" name="DISCIPLES OF TZEENTCH" hidden="false" targetId="874b-91b7-c2e3-c0db" primary="false"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="8f7d-74d4-bd5a-ca0f" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d04a-eb8f-b330-9e01" name="Sorcerous Bolt" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b43-1d46-b7db-f12e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e14c-a37e-23a2-f551" type="max"/>
</constraints>
<profiles>
<profile id="0c58-0a68-2db8-0d14" name="Sorcerous Bolt" 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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="b3d7-8cb7-3878-519d" name="Scrollholders" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e099-76cd-1e5b-59a8" type="max"/>
</constraints>
<profiles>
<profile id="9701-3af5-0cd4-792f" name="Scroll of Dark Arts" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 models in this unit can carry a Scroll of Dark Arts. Add 1 to casting and unbinding rolls for this unit while it has any Scrolls of Dark Arts.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2fd1-effd-8cef-529a" name="Vulcharc" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1028-87e8-cc7d-aede" type="max"/>
</constraints>
<profiles>
<profile id="60d2-39ce-17f7-f6f7" name="Vulcharc" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 models in this unit can be accompanied by a Vulcharc.
If an enemy WIZARD successfully casts a spell within 18" of a friendly unit that includes any Vulcharcs, roll a dice. On a 4+, that WIZARD suffers 1 mortal wound after the effects of that spell have been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="51e0-9975-dfea-5020" name="10 Kairic Acolytes" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Kairic Acolytes">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="20 Kairic Acolytes">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="622a-c027-e757-e45d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1ea4-7b7e-9069-10ab" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</selectionEntry>
<selectionEntry id="19a8-b5db-2dc6-f6eb" name="Cursed Glaive and Arcanite Shield" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="d04b-5bf4-0dce-5be0" value="3">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d04b-5bf4-0dce-5be0" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b13b-a0c9-7230-538c" type="min"/>
</constraints>
<profiles>
<profile id="c817-410e-f299-b5f4" name="Cursed Glaive" 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">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="53ff-aefa-1c2e-5634" name="Arcanite Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A model that has an Arcanite Shield has a ward of 6+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="9a0b-3bc2-9db2-299b" name="Weapon Choices" hidden="false" collective="false" import="true" defaultSelectionEntryId="87d6-b9cc-b6ef-9c18">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e86f-4bb3-7d1c-6ef0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a0d6-ef8a-3f13-0933" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="a803-cfce-7adf-bf84" name="Pair of Cursed Blades" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2be7-5480-6616-2577" name="Pair of Cursed Blades" 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">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</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"/>
</costs>
</selectionEntry>
<selectionEntry id="87d6-b9cc-b6ef-9c18" name="Cursed Blade and Arcanite Shield" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bec6-8901-afc0-a560" name="Cursed 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">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>
<profile id="1541-09a3-75c3-620f" name="Arcanite Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A model that has an Arcanite Shield has a ward of 6+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="3b07-a078-fccc-863b" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</entryLink>
<entryLink id="2f26-0a2c-b750-9871" name="Battalions" hidden="false" collective="false" import="true" targetId="dfe6-eb18-39a8-161d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d462-f108-8e30-daf4" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="2923-9d34-9930-4c04" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2923-9d34-9930-4c04" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9198-00b3-345a-21cc" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="699e-eea0-4825-289f" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="3560-f986-5784-b2f6">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed89-bdec-d018-0282" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd49-80ef-168c-9f52" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3560-f986-5784-b2f6" name="Allegiance: Tzeentch" hidden="false" collective="false" import="true" targetId="065f-c64d-3eb7-79d2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee18-8d7a-1ae2-763a" name="Battalion: M'Zarr's Aetherhost (OPEN PLAY)" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b1b4-6c99-5eb3-ec21" name="Spontaneous Destruction" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In each of your hero phases, pick either the Herald of Tzeentch or another unit from this battalion within 9" of them; you can choose either to cast one additional spell with that unit this phase or make a shooting attack with all the models in that unit as if it were the shooting phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9d2a-afa4-b6eb-da39" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8ea8-8051-10a5-fb9f" name="1 Herald of Tzeentch" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c7b1-9b2e-0b52-d22f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99eb-1eb7-9e47-fb0b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="44e3-4bbb-c895-740d" name="Changecaster, Herald of Tzeentch" hidden="false" collective="false" import="true" targetId="591e-abe6-795e-ea08" type="selectionEntry">
<categoryLinks>
<categoryLink id="ecff-9031-38df-a94d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7fd7-38b3-532c-0b62" name="1 unit of Flamers of Tzeentch" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e27-4c0d-6ce3-a7ce" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6861-56cc-5ce6-85b8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bcee-4c2b-34e6-df0a" name="Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="5e5d-e5ea-80ba-eac8" type="selectionEntry">
<categoryLinks>
<categoryLink id="69c5-26e5-616b-14c8" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c034-be7f-fcdb-1c94" name="1 unit of Screamers of Tzeentch" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fce2-e278-987c-ee7b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8efb-a484-9c27-89a6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ea33-4a92-91e8-5013" name="Screamers of Tzeentch" hidden="false" collective="false" import="true" targetId="f35b-6382-ab4a-64af" type="selectionEntry">