-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathEndless Spells.cat
1973 lines (1941 loc) · 163 KB
/
Endless Spells.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="f0db-356d-9f9f-662d" name="Endless Spells" revision="40" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<publications>
<publication id="d1d1-5917-4fcf-8b1e" name="General's Handbook Pitched Battles 2022-23 - Season 1 September 2022 FAQ"/>
<publication id="afcd-7621-7abc-1ba5" name="General's Handbook Pitched Battles 2022-23 - Season 2, Errata January 2023"/>
</publications>
<entryLinks>
<entryLink id="712e-b7d1-3913-9558" name="Endless Spell: Aethervoid Pendulum" hidden="false" collective="false" import="true" targetId="be48-2423-60a4-f7c9" type="selectionEntry"/>
<entryLink id="22e8-440f-22b3-7c0a" name="Endless Spell: Balewind Vortex [LEGENDS]" hidden="false" collective="false" import="true" targetId="e002-a4cd-a159-8588" type="selectionEntry"/>
<entryLink id="2103-6598-be5f-badc" name="Endless Spell: Chronomantic Cogs" hidden="false" collective="false" import="true" targetId="860c-8e86-5f26-62d3" type="selectionEntry"/>
<entryLink id="edac-b046-20b7-ce54" name="Endless Spell: Emerald Lifeswarm" hidden="false" collective="false" import="true" targetId="3b45-e2b7-19a3-d848" type="selectionEntry"/>
<entryLink id="ba5a-438f-a867-3206" name="Endless Spell: Geminids of Uhl-Gyish" hidden="false" collective="false" import="true" targetId="4ada-ce86-bbb7-daae" type="selectionEntry"/>
<entryLink id="cc15-6f21-c682-892d" name="Endless Spell: Horrorghast" hidden="false" collective="false" import="true" targetId="2853-3283-ceb4-794c" type="selectionEntry"/>
<entryLink id="f6d0-ec28-3e86-745c" name="Endless Spell: Lauchon the Soulseeker" hidden="false" collective="false" import="true" targetId="de3a-41b5-28a7-3bf3" type="selectionEntry"/>
<entryLink id="dc33-3c49-89e5-23de" name="Endless Spell: Malevolent Maelstrom" hidden="false" collective="false" import="true" targetId="b25f-7584-939a-21ed" type="selectionEntry"/>
<entryLink id="13aa-be48-b91f-78f7" name="Endless Spell: Prismatic Palisade" hidden="false" collective="false" import="true" targetId="3079-5ad6-273b-e668" type="selectionEntry"/>
<entryLink id="ad4a-44ab-f7eb-ee70" name="Endless Spell: Purple Sun of Shyish" hidden="false" collective="false" import="true" targetId="d8ad-3d0e-d175-e9cc" type="selectionEntry"/>
<entryLink id="59f3-4861-36dd-2bd6" name="Endless Spell: Quicksilver Swords" hidden="false" collective="false" import="true" targetId="19b2-3db8-e85f-3777" type="selectionEntry"/>
<entryLink id="1be0-78e4-6c14-614f" name="Endless Spell: Ravenak's Gnashing Jaws" hidden="false" collective="false" import="true" targetId="ca4b-3888-0a4d-9c6b" type="selectionEntry"/>
<entryLink id="020d-e153-380a-6ece" name="Endless Spell: Shards of Valagharr" hidden="false" collective="false" import="true" targetId="6e29-d20e-a38e-d957" type="selectionEntry"/>
<entryLink id="dc47-e860-afe8-611f" name="Endless Spell: Soulscream Bridge" hidden="false" collective="false" import="true" targetId="7aea-7f75-e549-8533" type="selectionEntry"/>
<entryLink id="3d7b-43c3-be4a-352d" name="Endless Spell: Soulsnare Shackles" hidden="false" collective="false" import="true" targetId="99e7-c4de-5d27-7692" type="selectionEntry"/>
<entryLink id="ced9-496d-588a-2ac5" name="Endless Spell: Suffocating Gravetide" hidden="false" collective="false" import="true" targetId="fa3f-b78a-e099-9965" type="selectionEntry"/>
<entryLink id="2cac-256f-0edf-22b2" name="Endless Spell: The Burning Head" hidden="false" collective="false" import="true" targetId="99d0-8763-cacc-2379" type="selectionEntry"/>
<entryLink id="9768-55c0-4a51-ede8" name="Endless Spell: Umbral Spellportal" hidden="false" collective="false" import="true" targetId="b119-0080-4af4-f3c8" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="be48-2423-60a4-f7c9" name="Endless Spell: Aethervoid Pendulum" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d3a8-1114-1c27-4ce2" type="max"/>
</constraints>
<profiles>
<profile id="b5ee-068d-dda1-5654" name="Summoning" 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">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster. When this endless spell is set up, pivot the model so that the tip of the pendulum blade is pointing in the direction you wish the endless spell to move.</characteristic>
</characteristics>
</profile>
<profile id="820d-b7a2-28a4-84c1" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When you move this endless spell, it must move in a straight line either in the direction in which the tip of the pendulum blade is pointing or in the opposite direction to the direction in which the tip of the pendulum blade is pointing.</characteristic>
</characteristics>
</profile>
<profile id="f014-2392-9772-ad02" name="Scything Blade" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll a dice for each unit that has any models it passed across, and for each other unit that is within 1" of it at the end of its move. On a 2+, that unit suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="65b5-8380-8eab-5dd3" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7ce4-0c77-d1f1-90d9" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="15d9-72e1-670f-d7cb" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="860c-8e86-5f26-62d3" name="Endless Spell: Chronomantic Cogs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4d34-adb3-c2ba-6e21" type="max"/>
</constraints>
<profiles>
<profile id="265b-e013-4ab9-f9c2" name="Summoning" 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">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="dd30-c2cb-5b0b-2410" name="Mechanisms of Time" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When you set up this endless spell, you must decide if it is increasing or decreasing the flow of time.
If it is increasing the flow of time, players can re-roll charge rolls for friendly units while they are wholly within 12" of any endless spells with this ability.
If it is decreasing the flow of time, players can attempt to cast either Arcane Bolt or Mystic Shield in their hero phase with a friendly WIZARD wholly within 6" of this endless spell without counting that spell towards the number of spells that WIZARD can attempt to cast in that phase. In addition, subtract 1 from hit rolls for shooting attacks that target WIZARD
HEROES while they are wholly within 6" of any endless spells with this ability.
If a player has any friendly WIZARDS within 6" of this endless spell at the start of their hero phase, they can change whether this endless spell is increasing or decreasing the flow of time.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3f89-a2df-477b-d4eb" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="20b7-5c0b-6ee7-de77" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="e002-a4cd-a159-8588" name="Endless Spell: Balewind Vortex [LEGENDS]" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f34e-88eb-4cde-9471" type="max"/>
</constraints>
<profiles>
<profile id="fc39-b548-1102-cd75" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">3"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">WIZARDS that are part of a garrison, or that have a Wounds characteristic of 8 or more, or that are Unique, or that are part of a unit that has 2 or more models, or that are already on top of an endless spell, cannot attempt to cast this spell. If successfully cast, set up the endless spell within range and visible to the caster, more than 3" from all terrain features and more than 3" from all enemy units. Then place the caster on top of the endless spell.
A WIZARD on a Balewind Vortex cannot move. When measuring range to and from the WIZARD on the Balewind Vortex, the WIZARD and the Balewind Vortex are treated as a single model.
If the caster attempts to dispel this endless spell, it is automatically dispelled (do not make a dispelling roll). If the caster is slain, this endless spell is dispelled. If this endless spell is dispelled and the caster has not been slain, before removing the endless spell from play, set up the caster wholly within 6" of the endless spell and more than 3" from all enemy units.</characteristic>
</characteristics>
</profile>
<profile id="8997-42fb-5fc6-a9bb" name="Held Aloft" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from hit rolls for attacks that target a WIZARD on a Balewind Vortex.</characteristic>
</characteristics>
</profile>
<profile id="b383-9cc4-c0d6-ffa4" name="Arcane Enhancement" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to casting, unbinding and dispelling rolls for WIZARD on a Balewind Vortex.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="24e6-0225-f4dd-0bc1" name="Balewind Vortex" hidden="false">
<description>As long as the Balewind Vortex remains on the battlefield, the caster and the Balewind Vortex are treated as being a single model
from the caster’s army that uses the caster’s warscroll as well as the endless spells rules. It is treated as an enemy model by the opposing player’s army. A WIZARD on a Balewind Vortex cannot move.
If a WIZARD on a Balewind Vortex attempts to dispel it, the attempt is automatically successful (do not roll any dice). This uses up the additional spell that the WIZARD would have received in that hero phase, and still counts as the single attempt they can make to dispel an endless spell this hero phase, but allows them to use any remaining spell casting attempts normally.
If the WIZARD on the Balewind Vortex is slain, then the Balewind Vortex is immediately dispelled and removed from play along with the slain WIZARD.
If a Balewind Vortex is dispelled and the WIZARD on it has not been slain, set up the WIZARD wholly within 6" of the Balewind
Vortex and more than 3" from any enemy models, and then remove the Balewind Vortex model from play. If it is impossible
to set up the WIZARD, then the WIZARD is slain.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="a2e2-80d2-bd43-2355" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="cb64-9ec2-5452-f2b2" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3b45-e2b7-19a3-d848" name="Endless Spell: Emerald Lifeswarm" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f742-7f11-acf0-37f5" type="max"/>
</constraints>
<profiles>
<profile id="282b-5eaf-6056-bb01" name="Summoning" 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">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="85c0-dfe4-c101-7468" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="90f3-d663-5491-8665" name="Bounteous Healing" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, the commanding player can pick 1 unit within 3" of it. They can heal up to D3 wounds allocated to that unit or, if no wounds are allocated to it, they can return a number of slain models to that unit that have a combined Wounds characteristic of D3 or less.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="317d-ad43-a894-1131" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="123d-88aa-fa7d-a695" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="bb4c-0fb7-3121-eb63" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="4ada-ce86-bbb7-daae" name="Endless Spell: Geminids of Uhl-Gyish" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ac78-034f-d814-abc9" type="max"/>
</constraints>
<profiles>
<profile id="e199-e415-6d07-b1be" name="Summoning" 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">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the parts of the endless spell within 6" of each other and wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="8277-b2ec-d460-1432" name="Tendrils of Shadow and Light" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll a dice for each unit that has any models it passed across and for each other unit that is within 1" of it at the end of its move. On a 2+, that unit cannot issue or receive commands until the start of the next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="b2fd-6a2a-ee7f-d391" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 8" and can fly. The parts of this endless spell must remain within 6" of each other.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3e7f-5dee-6cb0-e557" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="eac3-9446-abcd-a3b7" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="e1c9-067f-11db-0e90" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="60"/>
</costs>
</selectionEntry>
<selectionEntry id="2853-3283-ceb4-794c" name="Endless Spell: Horrorghast" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ec78-af31-d77b-b2d6" type="max"/>
</constraints>
<profiles>
<profile id="4684-f01f-8879-0def" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="1805-d8d1-723a-7912" name="Prey on Fear" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Units cannot receive commands in the battleshock phase while they are within 12" of any endless spells with this ability. In addition, if a unit fails a battleshock test while it is within 12" of any endless spells with this ability, add D3 to the number of models that flee.</characteristic>
</characteristics>
</profile>
<profile id="43c0-6c42-0841-bc9f" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 8" and can fly.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="23d8-ff86-b2eb-0722" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e397-8244-dd75-6f61" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="cb1b-4328-643c-e004" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="60"/>
</costs>
</selectionEntry>
<selectionEntry id="de3a-41b5-28a7-3bf3" name="Endless Spell: Lauchon the Soulseeker" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b8a0-4801-b676-5725" type="max"/>
</constraints>
<profiles>
<profile id="ad6a-6b24-c96d-c9bd" name="Summoning" 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">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="c843-57a8-a316-1cf1" name="Soul Price" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Before the commanding player moves this endless spell, they can pick 1 friendly WIZARD with a Wounds characteristic of 9 or less wholly within 3" of this endless spell. Remove that WIZARD from the battlefield. After this endless spell has moved, set that WIZARD up again wholly within 3" of this endless spell and more than 9" from all enemy units. After that WIZARD has been set up, it suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="4b8c-3511-245e-ce15" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 18" and can fly.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="831e-0096-4d97-1d13" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8e95-1646-7d55-6ea8" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="dd09-9470-babe-527e" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="40"/>
</costs>
</selectionEntry>
<selectionEntry id="b25f-7584-939a-21ed" name="Endless Spell: Malevolent Maelstrom" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5f34-dbbd-654b-bd00" type="max"/>
</constraints>
<profiles>
<profile id="7177-5914-8aaf-254d" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="bee0-e9db-18ef-112c" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="211f-7ed1-80fb-6191" name="Morbid Detonation" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell is summoned, place a D6 beside it with the ‘1’ facing up. Each time a spell is successfully cast by a unit within 12" of this endless spell and not unbound, after the effects of the spell have been resolved, increase the value of the dice beside this endless spell by 1 (to a maximum of 6). In addition, each time a model is slain within 12" of this endless spell, increase the value of the dice beside this endless spell by 1 (to a maximum of 6). At the end of a phase in which the dice beside this endless spell reaches ‘6’, this endless spell is removed from play.
When this endless spell is removed from play, if the dice beside it is a 6, this endless spell explodes. When it explodes, each unit within 9" of this endless spell suffers D3 mortal wounds. WIZARD HEROES suffer 3 mortal wounds instead of D3.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ad7f-a8a6-6184-21a5" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cbd9-870f-fccd-b960" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="d93a-9048-1a4d-2feb" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="3079-5ad6-273b-e668" name="Endless Spell: Prismatic Palisade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="949c-2b36-c988-f82e" type="max"/>
</constraints>
<profiles>
<profile id="d87e-8645-13eb-4dc0" name="Summoning" 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, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="4d46-10fb-a70e-cbb0" name="Blinding Light" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell is set up and at the start of each subsequent hero phase, roll a dice for each unit within 6" of this endless spell. On a 3+, that unit cannot make shooting attacks in that turn. Add 3" to the range of this ability at the start of each battle round after the turn in which this endless spell was summoned</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="470a-295f-7409-1998" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="4f4a-d110-c234-c826" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="d8ad-3d0e-d175-e9cc" name="Endless Spell: Purple Sun of Shyish" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b48f-6f71-fdca-b897" type="max"/>
</constraints>
<profiles>
<profile id="c14d-6252-7691-4c3f" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">8</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="1245-85b6-c039-9bb7" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="4d38-1479-b710-2cb0" name="End Given Form" publicationId="d1d1-5917-4fcf-8b1e" page="2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from save rolls for attacks that target units while they are within 6" of any endless spells with this ability. In addition, roll a dice for each unit within 1" of this endless spell after this endless spell has moved. On a 1, that unit has been touched by the Purple Sun’s rays. If that unit has a Wounds characteristic of 9 or less, 1 model in that unit is slain. Otherwise, that unit suffers D6+6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dfdb-3aa9-6c18-e671" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="92eb-79d2-5465-857b" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="e48a-27dc-5e23-ac8f" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</selectionEntry>
<selectionEntry id="19b2-3db8-e85f-3777" name="Endless Spell: Quicksilver Swords" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8ccc-76c6-fa86-cfaa" type="max"/>
</constraints>
<profiles>
<profile id="fb2b-6742-f154-b3f2" name="Summoning" 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">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="471b-48d1-46af-53cf" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="afb1-0879-117c-5ae0" name="Dancing Blades" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, you can pick 1 unit that has any models it passed across and roll 12 dice. For each 5+, that unit suffers 1 mortal wound. In addition, mortal wounds caused by this ability cannot be negated.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a7d7-4c72-5f09-1cf2" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f273-b8db-456a-852d" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="cd5d-daf1-181a-d339" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="ca4b-3888-0a4d-9c6b" name="Endless Spell: Ravenak's Gnashing Jaws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6a2a-9746-a941-17c2" type="max"/>
</constraints>
<profiles>
<profile id="791c-7167-b59d-fad7" name="Summoning" 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">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="8790-045f-47d3-7008" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 3D6" and can fly. You can re-roll the dice that determines how far this endless spell can move if it was summoned in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="9a7b-d383-b7b9-f3ac" name="Ravening Hunger" publicationId="afcd-7621-7abc-1ba5" page="2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, pick 1 unit that has any models it passed across or that is within 1" of it at the end of its move and roll a dice. On a 2+, if the roll for this endless spell’s move was greater than that unit’s Move characteristic, that unit suffers a number of mortal wounds equal to the difference between that unit’s Move characteristic (rounding down) and the roll for this endless spell’s move.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cdec-d4f0-c84c-10b0" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="41d5-2731-daaf-37db" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="9ab1-35cc-517d-828f" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="70"/>
</costs>
</selectionEntry>
<selectionEntry id="6e29-d20e-a38e-d957" name="Endless Spell: Shards of Valagharr" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fe03-0048-2e2c-63b5" type="max"/>
</constraints>
<profiles>
<profile id="14f1-3a69-3ec9-ea32" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the parts of this spell wholly within 8" of each other and wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="39ed-dba4-85ef-a7a8" name="Ensnaring Soul-drain" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">While they are within 6" of any endless spells with this ability, units cannot fly or be removed from the battlefield with an effect that would allow them to be set up again in the same turn. In addition, units cannot be set up within 6" of this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="34fa-e150-1234-eb8d" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. To move this endless spell, remove 1 of its parts from the battlefield and set it up again wholly within 8" of its other part.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="79f7-ae55-7e35-d26b" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="2abd-71ed-b24d-f019" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="40"/>
</costs>
</selectionEntry>
<selectionEntry id="7aea-7f75-e549-8533" name="Endless Spell: Soulscream Bridge" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9eb2-49e2-faea-2707" type="max"/>
</constraints>
<profiles>
<profile id="01e2-bf07-4753-3e7c" name="Summoning" 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">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up 1 part of this endless spell within 1" of the caster, then set up the other part wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="44cd-9d33-0f0b-f7e8" name="Deathly Passage" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of the movement phase, the player whose turn is taking place can remove 1 friendly unit that is wholly within 6" of a part of this endless spell from the battlefield and set it up again wholly within 6" of the other part of this endless spell and more than 9" from all enemy units.
A unit cannot be removed and set up again in this way more than once per phase. A unit removed and set up again in this way cannot make a normal move or run in the same phase and cannot issue or receive commands until the start of that player’s next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e0b2-decb-9b7e-ac4c" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="191b-d1c3-c581-5399" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</selectionEntry>
<selectionEntry id="99e7-c4de-5d27-7692" name="Endless Spell: Soulsnare Shackles" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="52ec-8789-d1fd-ac9d" type="max"/>
</constraints>
<profiles>
<profile id="30b6-c1d0-b136-b3b0" name="Summoning" 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">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the parts of the endless spell wholly within 3" of each other and wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="7238-b5e7-cde6-398e" name="Bound for the Great Oubliette" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of the movement phase, roll a dice for each unit within 6" of this endless spell. Subtract the result from that unit’s Move characteristic (to a minimum of 0) until the end of that phase. In addition, if a unit’s Move characteristic is reduced to 0 by this ability, that unit suffers D3 mortal wounds</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4f0c-0f4f-da31-e43c" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="9668-6d27-cf69-f98c" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="fa3f-b78a-e099-9965" name="Endless Spell: Suffocating Gravetide" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4044-f632-7286-7822" type="max"/>
</constraints>
<profiles>
<profile id="2e5e-2029-45a5-9111" name="Summoning" 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">8"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="01cf-c091-b0e0-ff6a" name="Pulled to the Grave" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, for each unit that has any models it passed across, roll a number of dice equal to the number of models in that unit. For each 5+, that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="5db5-71e1-f9b1-e74a" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 12" and can fly.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="54bb-e3d9-c922-1e18" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fcc2-69e3-e85b-6d47" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="077f-7089-d388-af0f" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="99d0-8763-cacc-2379" name="Endless Spell: The Burning Head" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9f01-13ac-33b1-70b5" type="max"/>
</constraints>
<profiles>
<profile id="d07a-5256-78c0-e857" name="Summoning" 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">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the endless spell wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="4734-2dcd-70da-3b7f" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="79d2-ac77-a614-4a64" name="Flaming Skull" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, the commanding player can pick 1 enemy unit within 1" of this endless spell and roll a dice. On a 2+, this endless spell is treated as part of that enemy unit until either that unit is destroyed or the endless spell is dispelled, at which point the endless spell is removed from play. While this endless spell is part of a unit, at the end of each movement phase, roll a dice. On a 2+, the unit that this endless spell is part of suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0edb-da14-a1c6-f32c" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d449-c982-0391-d738" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="e53d-d695-c5d6-c893" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="20"/>
</costs>
</selectionEntry>
<selectionEntry id="b119-0080-4af4-f3c8" name="Endless Spell: Umbral Spellportal" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d179-8eb9-504d-c792" type="max"/>
</constraints>
<profiles>
<profile id="d0d3-de6f-c1b5-fb9b" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up 1 part of this endless spell within 1" of the caster, then set up the other part wholly within range of the caster.</characteristic>
</characteristics>
</profile>
<profile id="76f9-a893-a691-9452" name="Arcane Passage" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per turn, when a WIZARD within 1" of this endless spell attempts to cast a spell, the commanding player can say that the spell will be sent through the portal. If they do so, the range, visibility and effect of that spell can be measured from 1 part of this endless spell instead of the caster, and that part of the endless spell is considered to be the caster of the spell for the purposes of unbinding. Spells that summon endless spells do not benefit from this effect.
In addition, once per turn, if a predatory endless spell starts a move wholly within 6" of this endless spell, instead of making a move with it, the commanding player can remove that predatory endless spell from the battlefield and set it up again anywhere wholly within 6" of the other part of this endless spell. An endless spell set up in this manner does not count as having moved but cannot move until the next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8af0-9fce-6e37-6523" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="69bd-1973-9bcb-e486" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</selectionEntry>
<selectionEntry id="4460-dcde-6625-9921" name="Endless Spell: Doomblast Dirgehorn" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2d69-d3be-00b8-16db" name="Summoning" 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">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only BEASTS OF CHAOS WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="df7d-7d06-5779-f520" name="Booming Cacophony" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this endless spell is set up, its range is 6". At the start of each subsequent battle round, its range is increased by 6". Subtract 1 from wound rolls for attacks made by units within range of any endless spells with this ability. This ability has no effect on hit rolls for attacks made by BEASTS OF CHAOS units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="10f2-8e6e-8888-3a08" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="a87b-a219-ef89-57a4" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="68b7-8a18-5dcc-dbe4" name="Endless Spell: Ravening Direflock" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="33d8-7037-0ee6-cdea" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up the parts of the endless spell within 3" of each other, wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only BEASTS OF CHAOS WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="91f8-b91b-4c9a-ce01" name="Harbingers of Dark Omens" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models cannot issue the Inspiring Presence or Rally command while they are within 6" of this endless spell. This ability has no effect on BEASTS OF CHAOS units.</characteristic>
</characteristics>
</profile>
<profile id="1605-d781-8bec-bb4a" name="The Stalking Shadow" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time an enemy model issues a command within 6" of this endless spell. On a 5+, that command is not received (the command ability still counts as having been used) and the command point that was spent to issue that command is lost.</characteristic>
</characteristics>
</profile>
<profile id="937c-15e2-d03f-2bee" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 8" and can fly. The parts of this endless spell must remain within 3" of each other.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2ddc-d6f0-ea2d-51b4" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="bd96-92d5-67ca-c474" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="40"/>
</costs>
</selectionEntry>
<selectionEntry id="98b1-b56f-ef52-f5bd" name="Endless Spell: Wildfire Taurus" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9023-3141-21e0-a51c" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 12" and can fly</characteristic>
</characteristics>
</profile>
<profile id="0635-64d9-5d05-c915" name="Summoning" 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">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only BEASTS OF CHAOS WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="ea25-9342-47a0-3697" name="Whirlwind of Destruction" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll a dice for each unit that has any models it passed across and each other unit that is within 1" of it at the end of its move. On a 2+, that unit suffers D3 mortal wounds. In addition, the strike-last effect applies to units that are within 3" of this endless spell. This ability has no effect on BEASTS OF CHAOS units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ea8c-7795-1e76-0aa5" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="d21b-a143-af2f-4a8a" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="70"/>
</costs>
</selectionEntry>
<selectionEntry id="a6a6-213e-8b53-285c" name="Endless Spell: Vermintide" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f83b-3cc7-41dc-3dfe" type="max"/>
</constraints>
<profiles>
<profile id="ed51-48e8-832b-4794" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, more than 1" from all models, other endless spells and invocations. Only SKAVEN WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="9b3a-da30-d4c7-512f" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 7".</characteristic>
</characteristics>
</profile>
<profile id="fd2b-4918-64a4-2125" name="Ravening Horde" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, the commanding player can pick 1 unit within 3" of it and roll 13 dice. For each 6, that unit suffers 1 mortal wound.
In addition, roll 13 dice for each unit that finishes a normal move, run, retreat or charge move within 3" of this endless spell. For each 6, that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="565a-4ee6-9704-7c5f" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="0964-2837-58ee-5e99" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="11e9-1158-4b62-eb7d" name="Endless Spell: Warp Lightning Vortex" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f74b-78c3-1422-f399" type="max"/>
</constraints>
<profiles>
<profile id="55e3-119c-2b9f-7852" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">8</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">13"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up 1 part of the endless spell wholly within range of the caster, then set up the second and third parts exactly 7" from the first part and exactly 7" from each other (the parts will form a triangle with each part exactly 7" from the other two parts). All of the parts must be set up more than 1" from all models, other endless spells and invocations. Only SKAVEN WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="678c-110b-db47-9887" name="Warp Lightning Bolts" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell is set up and at the end of each movement phase, roll a dice for each unit within 6" of this endless spell. Add 1 to the roll if that unit is within 6" of 2 parts of this endless spell. Add 2 to the roll instead if that unit is within 6" of all 3 parts of this endless spell. On a 4+, that unit suffers D3 mortal wounds. On an unmodified 6, that unit suffers D6 mortal wounds instead of D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="b101-14fe-79fa-9dcb" name="Warp Vortex" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Units within 3" of this endless spell cannot run.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3356-adb1-2da8-920f" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="0440-ce60-b288-93bb" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</selectionEntry>
<selectionEntry id="9eae-5805-1fdf-eb6c" name="Endless Spell: Dreadful Visage" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="3992-86ac-413c-3091" name="Summoning" 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">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only HEDONITES OF SLAANESH WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="407f-c05b-e476-4d52" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Dreadful Visage is a predatory endless spell. It can move up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="88b0-3bef-97b3-1ed7" name="Terrifying Entity" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from the Bravery characteristic of units while they are within 12" of this endless spell. Add 1 to the Bravery characteristic of HEDONITES OF SLAANESH units while they are within 12" of this endless spell instead.</characteristic>
</characteristics>
</profile>
<profile id="aab6-14ed-3846-a4e5" name="Flensing Tongues" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll 6 dice for the closest unit within 6" of it. If more than 1 unit is equally close, the commanding player can choose which unit to roll for. For each 4+, that unit suffers 1 mortal wound. In addition, if any mortal wounds caused by this ability are allocated to that unit, the strike-last effect applies to that unit until the end of the following combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a21e-ff94-887a-edac" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7643-9a52-1bc2-2fc9" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="6928-fabe-adfd-1aba" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="c89c-bd1e-3057-c793" name="Endless Spell: Mesmerising Mirror" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c0bb-1b69-d60a-2fd9" name="Summoning" 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">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only HEDONITES OF SLAANESH WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="d641-88b5-0a37-afd3" name="Irresistible Lure" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a unit starts a normal move, run or retreat within 12" of this endless spell, that unit suffers D3 mortal wounds unless it finishes that move closer to this endless spell than it was at the start of the move. This ability has no effect on HEDONITES OF SLAANESH units.</characteristic>
</characteristics>
</profile>
<profile id="cf78-8c35-4661-c5f5" name="Gaze Not Into Its Depths" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the movement phase, roll 6 dice for each unit within 6" of this endless spell. For each 6, that unit's commanding player must choose whether that unit gazes into the mirror or resists temptation. If it resists temptation, that unit suffers D3 mortal wounds. If it gazes into the mirror, the player who summoned this endless spell gains D3 depravity point. This ability has no effect on friendly units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="71d8-e11b-f43d-f9e5" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="4761-0207-e5df-afc1" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="4dca-b6f1-e1c4-598e" name="Endless Spell: Wheels of Excruciation" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="0899-3ce0-f86e-b02a" name="Summoning" 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">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only HEDONITES OF SLAANESH WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="898c-f916-028c-e7e3" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Wheels of Excruciation is a predatory endless spell. It can move up to 8" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="8ff8-34fd-1c2c-bda1" name="Exquisite Agony" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll 6 dice for each unit that has any models it passed across. For each roll that is less than that unit's unmodified Save characteristic, that unit suffers 1 mortal wound. This ability has no effect on HEDONITES OF SLAANESH units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1394-8ce8-3569-0fb2" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5dbf-a34f-3806-c399" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="faeb-5ad6-0553-69dc" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="70"/>
</costs>
</selectionEntry>
<selectionEntry id="74a6-a8b9-234c-7c0a" name="Endless Spell: Burning Sigil of Tzeentch" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e5a9-8b59-6076-9dfd" type="max"/>
</constraints>
<profiles>
<profile id="dc86-586f-a5db-6bdd" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only DISCIPLES OF TZEENTCH WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="3f86-b5cd-6b35-0e23" name="Radiant Transmogrification" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the movement phase, roll a dice for each unit within 9" of this endless spell. On a 4+, that unit suffers D3 mortal wounds. If any models were slain by this spell, before removing the first slain model, the commanding player of the model that summoned this endless spell can add 1 TZEENTCH CHAOS SPAWN to their army and set it up within 3" of the slain model's unit. Then, remove the slain model.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3ebd-049c-b161-6a68" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="ab73-4355-3030-afc2" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="70"/>
</costs>
</selectionEntry>
<selectionEntry id="0d20-c548-bfb4-0fec" name="Endless Spell: Daemonic Simulacrum" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7f86-10f0-7f8b-5793" type="max"/>
</constraints>
<profiles>
<profile id="3a26-9f4b-f991-7075" name="Summoning" 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">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only DISCIPLES OF TZEENTCH WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="bad8-980c-6e29-936c" name="Snapping Jaws" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll 9 dice for the closest unit within 6" of it. If more than 1 such unit is equally close, the commanding player can choose which unit to roll for. For each 5+, that unit suffers 1 mortal wound. If that unit is a WIZARD, it suffers 1 mortal wound for each 4+ instead of each 5+.</characteristic>
</characteristics>
</profile>
<profile id="0296-66d4-a82e-7f77" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can be moved up to 9" and can fly.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7045-af55-82ca-a1ab" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4840-a745-a51d-f0bb" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="5432-c77f-a45a-d1bb" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="70"/>
</costs>
</selectionEntry>
<selectionEntry id="a48e-906a-957a-ab73" name="Endless Spell: Darkfire Daemonrift" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f6cb-624c-49d9-9dd1" type="max"/>
</constraints>
<profiles>
<profile id="a8fb-273d-be63-ec77" name="Summoning" 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">9"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only SLAVES TO DARKNESS WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="375f-6424-41a1-19e9" name="Billowing Energies" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this endless spell has moved, roll a dice for each unit that has any models it passed across and for each other unit within 1" of it at the end of its move. On a 2+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="baa9-bed0-2a28-050f" name="Fuelled by Sorcery" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the number of mortal wounds caused by this endless spell for each other endless spell within 12" of this endless spell after it has moved.</characteristic>
</characteristics>
</profile>
<profile id="a8c1-cad5-a2ff-e89a" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This endless spell is a predatory endless spell. It can move up to 9" and can fly.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="95b9-0c10-a6ba-3bcf" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f1d8-4676-225a-c255" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="cc16-fd62-df4b-b561" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="80"/>
</costs>
</selectionEntry>
<selectionEntry id="d1f5-2cff-bde8-e9a4" name="Endless Spell: Eightfold Doom-Sigil" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="56b2-6869-cdf9-bff0" type="max"/>
</constraints>
<profiles>
<profile id="d54c-6fba-1993-f82c" name="Summoning" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">6"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up this endless spell wholly within range and visible to the caster, and more than 1" from all models, other endless spells and invocations. Only SLAVES TO DARKNESS WIZARDS can attempt to summon this endless spell.</characteristic>
</characteristics>
</profile>
<profile id="a62b-d310-7bf3-bb3e" name="Empowered by Atrocity" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Keep track of the number of models that are slain within 12" of this endless spell each turn. At the end of each turn, roll a dice for each model that was slain within 12" of this endless spell during that turn. For each 3+, the player whose turn is taking place must pick 1 SLAVES TO DARKNESS unit wholly within 18" of this endless spell. Add 1 to the Attacks characteristic of that unit’s melee weapons (excluding those of its mounts) until that player’s next hero phase. A unit cannot benefit from this ability more than once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c585-14f8-3247-8a1a" name="ENDLESS SPELL" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="1cd8-0ddf-0a49-eac5" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="87ba-0190-31c7-fc41" name="Endless Spell: Realmscourge Rupture" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f18e-15cc-0e17-0767" type="max"/>