generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDisciples of Tzeentch.cat
1879 lines (1879 loc) · 125 KB
/
Disciples of 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 library="false" id="d731-9058-b0e5-6ff5" name="Disciples of Tzeentch" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<catalogueLinks>
<catalogueLink type="catalogue" name="Disciples of Tzeentch - Library" id="61ad-3d4e-f82-7dfb" targetId="bb28-eb3d-b408-7bb8"/>
<catalogueLink type="catalogue" name="Path to Glory - Ravaged Coast" id="d449-4709-6d8f-5ce0" importRootEntries="true" targetId="a434-b1ba-922b-7624"/>
</catalogueLinks>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Disciples of Tzeentch" hidden="false" id="164c-a3a9-554f-a02d">
<profiles>
<profile name="Conflagration of Tzeentch" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9aab-2117-d699-8eef">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit that had any damage points allocated to it this turn by **^^Wyrdflame Spell^^** abilities or shooting attacks made with weapons that have the **Wyrdflame** weapon ability to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target has the **^^Burning^^** keyword.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Quenching the Flames" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="90a7-fb66-4aaa-baee">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If an ability would heal or return slain models to a **^^Burning^^** enemy unit, **^^Manifestation^^** or terrain feature, that ability does not heal or return any slain models to it. Instead, it no longer has the **^^Burning^^** keyword.</characteristic>
</characteristics>
</profile>
<profile name="Burning Wyrdflame" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cebd-703c-bccb-a5c3">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Inflict D3 mortal damage on each **^^Burning^^** enemy unit, **^^Manifestation^^** and faction terrain feature.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Masters of Destiny" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f55e-9317-a160-9f0f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll 9 dice and place them to one side. These are your **destiny dice**. **Destiny dice** can be spent during the battle to change certain dice rolls. You can never have more than 9 **destiny dice** at once.
During the battle, instead of making a roll from the list below for a friendly **^^Disciples of Tzeentch^^** unit, you can spend your **destiny dice**. The roll you would have made is replaced with the roll on the **destiny dice** you spend. If you want to replace a 2D6 roll, 3D6 roll, etc. you must spend a number of **destiny dice** equal to the number before ‘D6’. Any rolls that have been replaced count as unmodified rolls, and they cannot be re-rolled, they cannot be changed and they cannot be modified by other friendly abilities except for those that apply negative modifiers (but they can be modified by enemy abilities). You cannot spend **destiny dice** to replace re-rolls.
**Destiny dice** can be spent in place of the following dice rolls:
• Casting rolls
• Unbinding rolls
• Banishment rolls
• Run rolls
• Charge rolls in your turn
• Hit rolls
• Wound rolls
• Save rolls</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="c300-3b8f-7ad7-3e69" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bolt of Tzeentch" hidden="false" id="36cc-453b-4cff-9191">
<profiles>
<profile name="Bolt of Tzeentch" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="ccce-99b1-df36-6f2">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, pick a visible enemy unit within 18" of them to be the target, then make a casting roll of 2D6</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Inflict D3 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**, **^^Wyrdflame^^**</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fold Reality" hidden="false" id="c83b-14bd-391d-ef7f">
<profiles>
<profile name="Fold Reality" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="c824-1201-79f4-614c">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, pick a visible friendly **^^Disciples of Tzeentch^^** unit wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Remove the target from the battlefield and set it up again on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Transformed to Spawn" hidden="false" id="88dc-534c-630b-8e6b">
<profiles>
<profile name="Transformed to Spawn" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="405e-94ad-65b3-c0c9">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, pick a visible enemy unit within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Inflict D3 mortal damage on the target. If any models are slain by this ability, pick a friendly **Chaos Spawn of Tzeentch** unit that is in reserve **as a potential fate** or that has been destroyed.
If you picked a unit in reserve **as a potential fate**, set it up on the battlefield in combat with the target. If you picked a unit that has been destroyed, set up an identical replacement unit on the battlefield in combat with the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Glimpse the Future" hidden="false" id="cc15-b786-7bb2-1107">
<profiles>
<profile name="Glimpse the Future" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="bb2c-e4ec-f732-bfe8">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set aside any **destiny dice** that have a value of 6, and roll all of your other **destiny dice** again. If you have no **destiny dice**, roll a dice and add it to your **destiny dice**.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Infernal Gateway" hidden="false" id="9425-88f3-f324-8886">
<profiles>
<profile name="Infernal Gateway" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="8b94-2e2f-f247-3305">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, pick a visible enemy unit within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll either 4 dice or a number of dice equal to the number of destiny dice you have left, whichever is greater. For each 4+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Shield of Fate" hidden="false" id="fbfd-1702-fb81-593d">
<profiles>
<profile name="Shield of Fate" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="4312-c1f4-bd9-b99f">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, pick a visible friendly **^^Disciples of Tzeentch^^** unit wholly within 18" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The target has **^^Ward (5+)^^** until the start of your next turn. In addition, if you have 4 or more **destiny dice** left, subtract 1 from hit rolls for attacks that target that unit until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Spell Lores" id="756c-d787-1761-de38" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lore of Fate" hidden="false" id="f574-a98c-79bd-9365" defaultAmount="0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8077-b91e-f3dc-deca"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Shield of Fate" hidden="false" id="91a8-37c3-2d6f-23ff" type="selectionEntry" targetId="fbfd-1702-fb81-593d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a3e8-7964-03c0-bde7-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a3e8-7964-03c0-bde7-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Glimpse the Future" hidden="false" id="dcdb-b8a0-50d9-a3b6" type="selectionEntry" targetId="cc15-b786-7bb2-1107">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7a40-cedf-eb55-1b59-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7a40-cedf-eb55-1b59-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Infernal Gateway" hidden="false" id="0fb9-f813-ff4a-9f52" type="selectionEntry" targetId="9425-88f3-f324-8886">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4820-34fd-0c48-d900-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4820-34fd-0c48-d900-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Lore of Change" hidden="false" id="900d-7e6e-86ae-b6d4" defaultAmount="0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cdc2-fbf8-b109-618c"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Transformed to Spawn" hidden="false" id="1602-97b5-c101-63c0" type="selectionEntry" targetId="88dc-534c-630b-8e6b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5a44-133e-a6d0-0487-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5a44-133e-a6d0-0487-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Bolt of Tzeentch" hidden="false" id="a27b-b74d-3235-1f49" type="selectionEntry" targetId="36cc-453b-4cff-9191">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a8b5-ac05-7138-6249-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a8b5-ac05-7138-6249-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fold Reality" hidden="false" id="7a9b-bf5c-1fce-b75d" type="selectionEntry" targetId="c83b-14bd-391d-ef7f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6f84-688b-a60b-cb24-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6f84-688b-a60b-cb24-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="9709-40ec-c754-8662" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Artefacts of Power" id="d953-63d2-257f-850f" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Fated Artefacts" id="4ebd-7275-b985-2664" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Nine-eyed Tome" hidden="false" id="cd8a-3f1e-f25f-5a53">
<profiles>
<profile name="Nine-eyed Tome" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="db0a-160b-6531-3502">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to casting rolls and banishment rolls for this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ba96-75a2-4978-d67d" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ambition's End" hidden="false" id="a859-336a-edc8-3e5f">
<profiles>
<profile name="Ambition's End" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8dea-5426-44ad-d9ab">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Wizard^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Inflict D3 mortal damage on the target. In addition, subtract 1 from casting rolls for the target for the rest of the battle.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="e34-451b-9714-dd81" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Wyrdflame Blade" hidden="false" id="1cad-e215-a646-a9ea">
<profiles>
<profile name="Wyrdflame Blade" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e686-c59b-db73-2b36">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If any damage points are allocated to an enemy unit by this unit’s combat attacks, that enemy unit has the **^^Burning^^** keyword.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="6868-cf82-5057-9a39" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6ad4-de35-d36a-bd54"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="8bb9-4a47-5358-7996" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Disciples of Tzeentch" id="cbed-dc99-670a-3cd0" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Arcanite Cabal" hidden="false" id="2f88-907-9064-fdd6">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9190-2512-b032-2979"/>
</constraints>
<profiles>
<profile name="Sinister Counter-hexes" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c578-9f94-a67e-9f69">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to unbinding rolls for friendly **^^Arcanite^^** units. In addition, if a friendly **^^Arcanite^^** unit unbinds a spell, no command points are spent for that unit to use the ‘Magical Intervention’ command in that phase.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Change Host" hidden="false" id="57ac-5d1b-3573-864c">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7065-c69e-68a2-5670"/>
</constraints>
<profiles>
<profile name="Twist of Fate" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5d4e-46d1-468b-9a7e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle (Army), End of Your Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Disciples of Tzeentch Daemon^^** unit that is in combat to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, remove the target from the battlefield and set it up again on the battlefield. Each model in the target unit must be set up in combat with any of the enemy units that the target was in combat with before it was removed from the battlefield.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Tzaangor Coven" hidden="false" id="90bb-e246-3385-a581">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="64fe-106-7c2b-dd2d"/>
</constraints>
<profiles>
<profile name="Screeching Warflock" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="58c0-e1ca-5ae-5ff6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time a friendly **^^Warflock^^** unit uses the ‘Rally’ command, you can make 3 additional rally rolls of D6.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Wyrdflame Host" hidden="false" id="4554-394c-c1fb-c8e4">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8885-bbf4-46f3-7455"/>
</constraints>
<profiles>
<profile name="Mutagenic Inferno" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="51d9-272f-f541-22d1">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from wound rolls for attacks made by **^^Burning^^** enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="689e-f54-56a1-ba1e" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="8c6b-90ae-6131-afe" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Champions of Destiny" id="eaf7-745a-e4b5-3ace" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cult Demagogue" hidden="false" id="d409-de41-d21f-7630">
<profiles>
<profile name="Cult Demagogue" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="7ba6-cf74-8a9-c34d">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If each dice in a casting roll for this unit has the same value and the spell is not miscast, add 3 to the casting roll.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="c1c7-f55-c048-e27c" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Illusionist" hidden="false" id="cc3a-4581-ff63-e6ec">
<profiles>
<profile name="Illusionist" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="fe09-e45f-e8b6-2693">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from hit rolls for attacks that target friendly units while they are wholly within this unit’s combat range.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5d60-a12a-a07d-391d" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Nexus of Fate" hidden="false" id="cefb-b95c-3038-5c22">
<profiles>
<profile name="Nexus of Fate" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e626-a0db-fca3-d781">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Roll a dice. You must replace 1 of your destiny dice with that roll.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="9c76-e106-fea3-d5d1" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="997b-2727-a7dd-5b5c"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="dd57-f11e-f302-f5e2" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Manifestation Lores" id="4412-89ec-1dd7-99ec" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Manifestations of Tzeentch" hidden="false" id="7df8-8728-4f67-f5b">
<profiles>
<profile name="Summon Tome of Eyes" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="fcf4-d662-34f1-e76e">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">5</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Tome of Eyes** on the battlefield, pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Tome of Eyes** wholly within 12" of the caster and visible to them.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Daemonic Simulacrum" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="edec-a507-90ac-2aff">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **Daemonic Simulacrum** on the battlefield, pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Daemonic Simulacrum** wholly within 12" of the caster, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Burning Sigil of Tzeentch" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="a9ac-1823-79c8-6a43">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">If there is not a friendly **^^Burning Sigil of Tzeentch^^** on the battlefield, pick a friendly **^^Disciples of Tzeentch Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **^^Burning Sigil of Tzeentch^^** wholly within 12" of the caster and visible to them.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b6c8-95b1-760c-84"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Tome of Eyes" hidden="false" id="d20f-8577-9dd9-6af" type="selectionEntry" targetId="19fa-7d20-3f5f-28d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4f06-8f18-af2-e50d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2d2c-e7e9-9199-2d81"/>
</constraints>
</entryLink>
<entryLink import="true" name="Burning Sigil of Tzeentch" hidden="false" id="6e97-a303-ccfc-1ecc" type="selectionEntry" targetId="b7b4-bdb1-8453-27a0">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c2c2-8052-3589-f082"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="798b-c509-b661-a7d8"/>
</constraints>
</entryLink>
<entryLink import="true" name="Daemonic Simulacrum" hidden="false" id="71f7-f381-600-bf87" type="selectionEntry" targetId="18b7-6de-cb9-ddfb">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6c0e-2332-4c8-b14e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="86bf-4da0-56dd-3de9"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Wounds + Scars" id="9f62-724e-720d-87ff" hidden="true" collapsible="false">
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="01b1-5112-ab45-1afc" shared="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Ravaged Coast Battle Scars" hidden="false" id="da6f-d80e-d665-da7c" type="selectionEntryGroup" targetId="5559-80df-ba01-66a7" flatten="true"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Wounds" hidden="false" id="ea89-268a-4d40-b6aa"/>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Paths" id="3fea-aadd-11d7-023d" hidden="true">
<entryLinks>
<entryLink import="true" name="Ravaged Coast Paths" hidden="false" id="fc0f-26e2-89d5-70b2" type="selectionEntryGroup" targetId="7bae-23cb-3977-3ece" flatten="true"/>
</entryLinks>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="01b1-5112-ab45-1afc" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f224-a26c-50cb-c3e9"/>
</constraints>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<categoryEntries>
<categoryEntry name="Tzeentchian Deceiver" id="9b14-70cf-35fd-a0db" hidden="false"/>
<categoryEntry name="Arcanite Cabalist" id="a54f-fb42-b918-1468" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink import="true" name="Changecaster, Herald of Tzeentch" hidden="false" id="eb25-af00-51b4-6860" type="selectionEntry" targetId="f83d-1a6a-a9-bb54">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="76e8-52c1-d788-32d4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="572b-75e3-a607-a08e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="56f-db5c-971b-4bc0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1f47-6195-e2f1-45dc" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4c3a-1d7d-6d7e-24f0" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="2336-466c-dbc8-6954"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="8025-9b35-9626-7f9b" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="50fa-bb6-22e9-5c0c" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Paths" hidden="false" id="0348-129b-a0f2-6d1b" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="ed9e-77cd-bf8b-30da" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="9b14-70cf-35fd-a0db" field="category"/>
<modifier type="set" value="0" field="2336-466c-dbc8-6954">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="9b14-70cf-35fd-a0db" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Curseling, Eye of Tzeentch" hidden="false" id="1dfa-9e59-8183-df3f" type="selectionEntry" targetId="edf7-573d-15c9-cce4">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1a2d-6f5c-e17e-d2f6" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="db9-e515-58e6-8374" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="3636-53f1-af84-823d"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9be2-d15c-b547-74a" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="6080-3dd2-9882-87cd" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="60f1-dd4a-4ced-1f5d" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="36f4-fbad-5d0b-5c54" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="a54f-fb42-b918-1468" field="category"/>
<modifier type="set" value="0" field="3636-53f1-af84-823d">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="a54f-fb42-b918-1468" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" id="2dc5-a865-70e-a16c" type="selectionEntry" targetId="99f-d096-7c77-a7f">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="2021-6ff6-8eda-1569"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="32e5-ffca-6e98-37f9" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="c216-5f28-9c50-25e6" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="f9cf-9477-0213-460d" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="a514-9b55-7766-64d0" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink import="true" name="Gaunt Summoner" hidden="false" id="c4ee-9e99-2775-fa0" type="selectionEntry" targetId="eae6-5b5d-5057-d94b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="59c1-8440-c8e3-a692"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a01a-38f4-92ee-e596" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="caec-8feb-65ec-bb42" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="46f7-f0a3-e4fb-2bbb" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="b1e6-d7fe-c186-c000" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Gaunt Summoner on Disc of Tzeentch" hidden="false" id="a68f-3168-e15a-5f7f" type="selectionEntry" targetId="2be4-1886-121b-9f10">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="674a-e8b7-9c8b-348d"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="7e39-1545-5c39-38b4" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="6c6-57c4-55ce-da1b" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="1a9b-d6a5-8d3d-fd60" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="a568-76e8-74bd-b906" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="230"/>
</costs>
</entryLink>
<entryLink import="true" name="Kairos Fateweaver" hidden="false" id="2ff6-3401-a18c-4bce" type="selectionEntry" targetId="4c5d-ac6e-7aa5-6d98">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="807-eaa6-2ae1-77a7"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="460"/>
</costs>
<entryLinks>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="128d-d2d2-5d12-5975" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Lord of Change" hidden="false" id="655f-a87-4a45-d989" type="selectionEntry" targetId="6dc0-c258-8f57-d9ac">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="6db2-bc1e-17ee-8a32"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="c48a-db5b-da42-f9c2" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="4f81-d908-9d5-8160" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="ec8a-4274-e0e7-0cbe" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="3fbb-be76-37fc-2d87" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400"/>
</costs>
</entryLink>
<entryLink import="true" name="Magister" hidden="false" id="a654-2936-169-5423" type="selectionEntry" targetId="5f48-17e7-d89f-183b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1a2d-6f5c-e17e-d2f6" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="db9-e515-58e6-8374" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="1023-3138-bb19-a5b3"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="4d4d-820e-af19-5045" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="78b6-7c88-7945-75cf" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="f845-0b37-38e7-0ae6" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="2196-4cb6-97db-61c3" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="a54f-fb42-b918-1468" field="category"/>
<modifier type="set" value="0" field="1023-3138-bb19-a5b3">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="a54f-fb42-b918-1468" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Magister on Disc of Tzeentch" hidden="false" id="9c1a-8d4e-a303-15ed" type="selectionEntry" targetId="378a-e2c0-6476-f128">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9413-85ac-4dd7-d750"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="7ae1-e630-b631-aa14" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="bc16-f80f-35f3-405c" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="3db8-1ffc-67d6-bcef" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="a1c7-067d-29de-bbf1" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Ogroid Thaumaturge" hidden="false" id="5af9-91f8-4c0e-9ada" type="selectionEntry" targetId="a004-88b6-b2eb-5879">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1a2d-6f5c-e17e-d2f6" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="db9-e515-58e6-8374" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="52a5-d272-7f26-c0da"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="dfc0-8cc6-6d30-3154" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="1452-2ef9-88ba-a357" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="0518-f9c6-5c45-537d" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="2bab-c78d-3e1c-977e" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="a54f-fb42-b918-1468" field="category"/>
<modifier type="set" value="0" field="52a5-d272-7f26-c0da">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="a54f-fb42-b918-1468" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Tzaangor Shaman" hidden="false" id="4c0b-737b-eb3c-cb5e" type="selectionEntry" targetId="ccc4-afaa-f9b3-8b3e">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="8dda-ef03-625c-1a33"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="dd3e-d34c-e411-12cf" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="39fa-7312-15f5-6405" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="ea98-7f63-ccf6-527a" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="a001-d683-e608-9b16" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="The Changeling" hidden="false" id="de42-beae-5f60-936b" type="selectionEntry" targetId="be93-ef60-f866-2f4d">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="76e8-52c1-d788-32d4" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="572b-75e3-a607-a08e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="56f-db5c-971b-4bc0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1f47-6195-e2f1-45dc" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4c3a-1d7d-6d7e-24f0" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="3de7-bce6-42b6-755b"/>
</constraints>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="9b14-70cf-35fd-a0db" field="category"/>
<modifier type="set" value="0" field="3de7-bce6-42b6-755b">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="9b14-70cf-35fd-a0db" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="a062-fc2a-8508-b557" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Changecaster, Herald of Tzeentch" hidden="false" id="5d3a-467f-76b-bf94" type="selectionEntry" targetId="f83d-1a6a-a9-bb54">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="7e46-ea39-3450-d79f" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3cb4-e03e-ec39-ef8f" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="9af5-3c0d-acc2-33f5" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="7266-0516-ff48-ffb3" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="7fcf-11d3-3cca-511f" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Curseling, Eye of Tzeentch" hidden="false" id="5571-45cd-2843-9997" type="selectionEntry" targetId="edf7-573d-15c9-cce4">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="123b-6f45-aadb-8e4f" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="63c4-f6cf-87fd-f13e" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="a3b3-d5ac-7e1d-7a94" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="c223-f85f-b061-ca4b" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="994c-4259-cf66-56b9" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Fateskimmer, Herald of Tzeentch on Burning Chariot" hidden="false" id="4c3a-1d7d-6d7e-24f0" type="selectionEntry" targetId="99f-d096-7c77-a7f">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="631c-a00f-fe2a-69d3" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="2188-2e9d-3bc1-ce13" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="d793-df0-9e9c-185b" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="ad0a-5138-6903-2c90" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="74f8-23b9-bd3a-46b0" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</entryLink>
<entryLink import="true" name="Gaunt Summoner" hidden="false" id="76e8-52c1-d788-32d4" type="selectionEntry" targetId="eae6-5b5d-5057-d94b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="4bb1-9ced-6b7b-2245" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="e749-c02a-23da-5d3d" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="bc85-23bb-da0f-c541" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="46d6-1b64-1910-aaf6" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="f012-2ca1-2913-598f" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Gaunt Summoner on Disc of Tzeentch" hidden="false" id="572b-75e3-a607-a08e" type="selectionEntry" targetId="2be4-1886-121b-9f10">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="3e4f-faaf-1ca8-9b73" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9581-95e3-c8b9-8f66" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="f597-450e-465e-87e4" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="e627-796f-0b1a-61dc" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="6f1d-df61-94b7-4372" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="230"/>
</costs>
</entryLink>
<entryLink import="true" name="Kairos Fateweaver" hidden="false" id="56f-db5c-971b-4bc0" type="selectionEntry" targetId="4c5d-ac6e-7aa5-6d98">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="85a9-9d8e-7d06-4b3c" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="460"/>
</costs>
<entryLinks>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="e792-086b-f5d2-56bd" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Lord of Change" hidden="false" id="1f47-6195-e2f1-45dc" type="selectionEntry" targetId="6dc0-c258-8f57-d9ac">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="608-6c23-99f5-856" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="548b-bd9c-8f30-e9f9" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="aae9-c54-c1c7-d4b8" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="7ae2-1a12-9934-799a" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="d691-4a36-56b2-d54f" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400"/>
</costs>
</entryLink>
<entryLink import="true" name="Magister" hidden="false" id="e43d-4771-2354-3229" type="selectionEntry" targetId="5f48-17e7-d89f-183b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="d6db-4ff7-bcdb-8aa4" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a999-bb38-161c-4dfc" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b65e-3fd4-e470-8194" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="3919-244e-22c6-a7a5" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="8776-f648-ff28-7246" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Magister on Disc of Tzeentch" hidden="false" id="1a2d-6f5c-e17e-d2f6" type="selectionEntry" targetId="378a-e2c0-6476-f128">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="1390-a48a-9dcf-1668" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="4c3c-d69b-a2fa-acd" type="selectionEntryGroup" targetId="8c6b-90ae-6131-afe"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="9987-8af0-6204-41b6" type="selectionEntryGroup" targetId="d953-63d2-257f-850f"/>
<entryLink import="true" name="Paths" hidden="false" id="e341-345f-8c7c-7b6e" type="selectionEntryGroup" targetId="3fea-aadd-11d7-023d"/>
<entryLink import="true" name="Battle Wounds + Scars" hidden="false" id="4ed6-254d-c5f5-0e5b" type="selectionEntryGroup" targetId="9f62-724e-720d-87ff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Ogroid Thaumaturge" hidden="false" id="2301-a04e-88f0-9c7c" type="selectionEntry" targetId="a004-88b6-b2eb-5879">
<categoryLinks>