forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Age of Sigmar.gst
3489 lines (3484 loc) · 261 KB
/
Age of Sigmar.gst
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"?>
<gameSystem id="e51d-b1a3-75fc-dc33" name="Age of Sigmar" revision="61" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" xmlns="http://www.battlescribe.net/schema/gameSystemSchema">
<publications>
<publication id="e51d-b1a3-pubEC" name="The General's Handbook"/>
<publication id="e51d-b1a3-pubEQ" name="Core Rules"/>
<publication id="e51d-b1a3-pubE5LCI" name="General's Handbook 2018"/>
<publication id="e51d-b1a3-pubEQOCI" name="General's Handbook 2017"/>
<publication id="e51d-b1a3-pubETJDK" name="Malign Sorcery; Official Errata, December 2018"/>
<publication id="e51d-b1a3-pubEFCFK" name="Malign Sorcery; Errata, July 2018"/>
<publication id="e51d-b1a3-pubEKHGM" name="Malign Sorcery"/>
<publication id="e51d-b1a3-pubEHOGM" name="Malign Sorcery"/>
</publications>
<costTypes>
<costType id="points" name="pts" defaultCostLimit="0.0" hidden="false"/>
</costTypes>
<profileTypes>
<profileType id="1960-ca8e-67ce-2014" name="Unit">
<characteristicTypes>
<characteristicType id="8655-6213-2824-1752" name="Move"/>
<characteristicType id="cd0e-fea6-411f-904d" name="Wounds"/>
<characteristicType id="0c85-bf79-836b-759e" name="Bravery"/>
<characteristicType id="f8dd-4f2a-8543-4f36" name="Save"/>
</characteristicTypes>
</profileType>
<profileType id="f55d-ee3a-1597-110f" name="Magic">
<characteristicTypes>
<characteristicType id="8294-f605-2c0f-8f92" name="Cast/Unbind"/>
<characteristicType id="dc9c-47d3-6931-859c" name="Spells Known"/>
</characteristicTypes>
</profileType>
<profileType id="96df-ab28-5d72-bbb3" name="Weapon">
<characteristicTypes>
<characteristicType id="655c-362e-a663-3e50" name="Type"/>
<characteristicType id="ee32-7f8e-ccd7-b7b0" name="Range"/>
<characteristicType id="0bd7-bded-a0e0-19a0" name="Attacks"/>
<characteristicType id="87f2-fb99-33f9-7269" name="To Hit"/>
<characteristicType id="8842-17f1-9794-4efc" name="To Wound"/>
<characteristicType id="f578-d2a5-f0d3-b707" name="Rend"/>
<characteristicType id="b5b6-4cbd-661d-1b70" name="Damage"/>
</characteristicTypes>
</profileType>
<profileType id="90d1-a434-348d-a861" name="Damage Table">
<characteristicTypes>
<characteristicType id="420a-645a-ab28-93a0" name="Variable 1"/>
<characteristicType id="4cdd-1e03-530f-0ff7" name="Variable 2"/>
<characteristicType id="b1ea-56be-ba52-16e9" name="Variable 3"/>
<characteristicType id="ad26-bf56-95c4-80f1" name="Variable 4"/>
</characteristicTypes>
</profileType>
<profileType id="2e81-5e22-c6e1-73cb" name="Spell">
<characteristicTypes>
<characteristicType id="2508-b604-1258-a920" name="Casting Value"/>
<characteristicType id="76ff-781d-b8e6-5f27" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="c137-4d1f-9d1a-524d" name="Battle Trait">
<characteristicTypes>
<characteristicType id="9fdd-b4b1-5f7a-0970" name="Battle Trait Details"/>
</characteristicTypes>
</profileType>
<profileType id="f71f-b0a4-730e-ced3" name="Command Abilities">
<characteristicTypes>
<characteristicType id="1b71-4c83-4e8c-093f" name="Command Ability Details"/>
</characteristicTypes>
</profileType>
<profileType id="0ac4-aacb-2481-8e72" name="Artefact">
<characteristicTypes>
<characteristicType id="0918-c47a-d84e-c0cf" name="Artefact Details"/>
</characteristicTypes>
</profileType>
<profileType id="c924-5a68-471a-2fd5" name="Unit Abilities">
<characteristicTypes>
<characteristicType id="d4dc-8e81-bc0e-b8f0" name="Ability Details"/>
</characteristicTypes>
</profileType>
<profileType id="c749-bae4-71a8-0c36" name="Command Trait">
<characteristicTypes>
<characteristicType id="ee96-6f3a-e5ca-2350" name="Command Trait Details"/>
</characteristicTypes>
</profileType>
<profileType id="bdc6-78da-3796-60a3" name="Battalion Abilities">
<characteristicTypes>
<characteristicType id="08e0-9ead-1dbe-c801" name="Battalion Ability Details"/>
</characteristicTypes>
</profileType>
<profileType id="eed7-4131-0a52-0668" name="Prayer">
<characteristicTypes>
<characteristicType id="0746-6cfb-5e15-53cb" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="75e0-a332-e4f5-bf36" name="Battalion Organisation">
<characteristicTypes>
<characteristicType id="eb5f-e9d2-e457-bff5" name="Required"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="6c6b-e787-f9b8-a510" name="Leader" hidden="false"/>
<categoryEntry id="fa0c-9044-2568-fa02" name="Behemoth" hidden="false"/>
<categoryEntry id="1d26-07fc-6a66-d73e" name="Artillery" hidden="false"/>
<categoryEntry id="e9f2-765a-b7b8-ce8e" name="Battleline" hidden="false"/>
<categoryEntry id="065e-fda7-fd27-1f40" name="Other" hidden="false"/>
<categoryEntry id="be17-6bbd-b857-3f43" name="Battalion" hidden="false"/>
<categoryEntry id="f79c-e161-4ad3-876d" name="Allies" hidden="false"/>
<categoryEntry id="4e0e-664d-51ea-0929" name="HERO" hidden="false"/>
<categoryEntry id="1959-9f6a-3056-913a" name="MONSTER" hidden="false"/>
<categoryEntry id="880e-1e33-b965-71ec" name="WAR MACHINE" hidden="false"/>
<categoryEntry id="4f53-8230-2f02-9639" name="WIZARD" hidden="false"/>
<categoryEntry id="1418-9a68-9f9e-e9a7" name="DAEMON" hidden="false"/>
<categoryEntry id="3504-ea8e-28ec-5150" name="TOTEM" hidden="false"/>
<categoryEntry id="e8a5-e4c1-3d11-e7dd" name="PRIEST" hidden="false"/>
<categoryEntry id="b745-17c4-8fbf-8b04" name="General" hidden="true"/>
<categoryEntry id="3564-4c26-10b4-d953" name="Artefact" hidden="false">
<modifiers>
<modifier type="increment" field="459e-bc05-f498-6753" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="be17-6bbd-b857-3f43" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="459e-bc05-f498-6753" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f60b-d58c-bfee-5aa7" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="459e-bc05-f498-6753" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="c4f8-4679-229d-7c37" name="CREW" hidden="false"/>
<categoryEntry id="7cdd-80ea-cbeb-8e16" name="CHAOS" hidden="false"/>
<categoryEntry id="87e8-c095-f059-5f7b" name="Allegiance" hidden="false"/>
<categoryEntry id="b970-b3bf-e1a4-a6fc" name="ORDER" hidden="false"/>
<categoryEntry id="6cdf-dd4f-0e91-e9c4" name="DEATH" hidden="false"/>
<categoryEntry id="d963-a5fb-c348-2371" name="DESTRUCTION" hidden="false"/>
<categoryEntry id="2654-58fb-a46f-b28d" name="KHARADRON OVERLORDS" hidden="false"/>
<categoryEntry id="9efd-7c5d-dc14-2302" name="DAUGHTERS OF KHAINE" hidden="false"/>
<categoryEntry id="b396-0600-80d6-cee9" name="STORMCAST ETERNALS" hidden="false"/>
<categoryEntry id="de6f-3fcb-09b2-a59e" name="SYLVANETH" hidden="false"/>
<categoryEntry id="1f30-24b4-f90b-c2c2" name="DARKLING COVENS" hidden="false"/>
<categoryEntry id="4e6a-bfb6-606f-fc89" name="DISPOSSESSED" hidden="false"/>
<categoryEntry id="4ec3-efa9-35ba-d55f" name="FYRESLAYERS" hidden="false"/>
<categoryEntry id="3aa6-d62f-0782-ea99" name="FREE PEOPLES" hidden="false"/>
<categoryEntry id="461d-c7cb-74f1-84e8" name="SERAPHON" hidden="false"/>
<categoryEntry id="9085-6734-ca06-e1e3" name="WANDERERS" hidden="false"/>
<categoryEntry id="812f-790a-4f66-0476" name="BRAYHERD" hidden="false"/>
<categoryEntry id="3963-2e99-aa63-c65e" name="SLAANESH" hidden="false"/>
<categoryEntry id="dd77-19a5-28eb-cbec" name="NURGLE" hidden="false"/>
<categoryEntry id="f22b-976f-fc38-366a" name="KHORNE" hidden="false"/>
<categoryEntry id="4ba7-618a-4e30-2e0c" name="SLAVES TO DARKNESS" hidden="false"/>
<categoryEntry id="5432-a6f0-46f0-db4a" name="PESTILENS" hidden="false"/>
<categoryEntry id="0aa0-da78-a43c-3e8c" name="SKRYRE" hidden="false"/>
<categoryEntry id="8f8a-7c29-799e-ace9" name="SKAVEN" hidden="false"/>
<categoryEntry id="7d12-f4c5-3832-0f19" name="TZEENTCH" hidden="false"/>
<categoryEntry id="6b35-0508-c6cc-6592" name="FLESH-EATER COURTS" hidden="false"/>
<categoryEntry id="c352-dff7-7050-6f8d" name="NIGHTHAUNT" hidden="false"/>
<categoryEntry id="7bf1-507e-d551-9b60" name="SOULBLIGHT" hidden="false"/>
<categoryEntry id="233f-0198-1947-eacd" name="GRAND HOST OF NAGASH" hidden="false"/>
<categoryEntry id="2691-54ce-d160-1694" name="LEGION OF BLOOD" hidden="false"/>
<categoryEntry id="f035-07f3-0d47-af06" name="LEGION OF NIGHT" hidden="false"/>
<categoryEntry id="ef14-184f-4f60-051d" name="LEGION OF SACRAMENT" hidden="false"/>
<categoryEntry id="157e-e19c-bc6e-6d49" name="IRONJAWZ" hidden="false"/>
<categoryEntry id="c9df-ea2a-e040-9cf4" name="BEASTCLAW RAIDERS" hidden="false"/>
<categoryEntry id="9db3-55f3-706c-01bd" name="BONESPLITTERZ" hidden="false"/>
<categoryEntry id="a934-6d15-9932-b7ea" name="MORTAL" hidden="false"/>
<categoryEntry id="8910-7c1d-6c74-37ff" name="SCENERY" hidden="false"/>
<categoryEntry id="be2b-5e91-b381-5671" name="TROGGOTH" hidden="false"/>
<categoryEntry id="1422-e165-b7d0-b2d9" name="OGOR" hidden="false"/>
<categoryEntry id="c91f-5c40-bec0-1a93" name="DRAGON" hidden="false"/>
<categoryEntry id="6ec4-4931-4d7f-006b" name="IDONETH DEEPKIN" hidden="false"/>
<categoryEntry id="be2f-aa63-6d82-e2fc" name="Allegiance: Khorne" hidden="false"/>
<categoryEntry id="1974-3f49-7f0b-8422" name="Game Options" hidden="false"/>
<categoryEntry id="fd9f-428a-177d-c765" name="Vanguard" hidden="false"/>
<categoryEntry id="6330-7561-7a32-0851" name="Battlehost" hidden="false"/>
<categoryEntry id="1e63-0b49-ac04-321f" name="Warhost" hidden="false"/>
<categoryEntry id="5c6d-5384-bcb1-b474" name="Realm of Origin" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8466-6600-12e7-0833" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="31f4-2067-3ade-e6f8" name="ENDLESS SPELL" hidden="false"/>
<categoryEntry id="eecb-ed66-d474-9ddd" name="Malign Sorcery" hidden="false"/>
<categoryEntry id="8be8-3ccd-be93-b55e" name="Command Points" hidden="false"/>
<categoryEntry id="5647-b7a8-9716-1d17" name="AETHERVOID PENDULUM" hidden="false"/>
<categoryEntry id="0ac5-cc94-b7fe-7160" name="BALEWIND VORTEX" hidden="false"/>
<categoryEntry id="bed0-e4a0-f704-1eab" name="AZYR" hidden="false"/>
<categoryEntry id="1619-fea5-de7e-8a67" name="CHRONOMANTIC COGS" hidden="false"/>
<categoryEntry id="0b26-9340-45cf-07ee" name="GHYRAN" hidden="false"/>
<categoryEntry id="14d2-605b-536f-dd47" name="EMERALD LIFESWORM" hidden="false"/>
<categoryEntry id="722d-a8ac-da30-e6be" name="GEMINIDS OF UHL-GYSH" hidden="false"/>
<categoryEntry id="2b18-8032-739f-7929" name="HYSH" hidden="false"/>
<categoryEntry id="3f66-cb68-8afb-ce99" name="ULGU" hidden="false"/>
<categoryEntry id="2cc9-0867-b2e3-da55" name="SHYISH" hidden="false"/>
<categoryEntry id="aeb3-e51f-7f02-619e" name="MALEVOLENT MAELSTROM" hidden="false"/>
<categoryEntry id="316f-32e5-0c7c-72af" name="PRISMATIC PALISADE" hidden="false"/>
<categoryEntry id="7eb6-e91d-bf00-1c84" name="PURPLE SUN OF SHYISH" hidden="false"/>
<categoryEntry id="65dc-260f-90f3-8a5a" name="QUICKSILVER SWORDS" hidden="false"/>
<categoryEntry id="97c8-2ca9-2b12-327f" name="CHAMON" hidden="false"/>
<categoryEntry id="c33b-1c2d-83d9-53df" name="GHUR" hidden="false"/>
<categoryEntry id="8b8e-c0b7-d668-19f2" name="RAVENAK'S GNASHING JAWS" hidden="false"/>
<categoryEntry id="4949-2041-939a-baa6" name="SOULSNARE SHACKLES" hidden="false"/>
<categoryEntry id="8e84-834f-0c7d-0d45" name="SUFFOCATING GRAVETIDE" hidden="false"/>
<categoryEntry id="f760-2ebe-1af7-ff48" name="AQSHY" hidden="false"/>
<categoryEntry id="3115-9f9c-85db-1d63" name="THE BURNING HEAD" hidden="false"/>
<categoryEntry id="82b0-19da-b868-9f6c" name="UMBRAL SPELLPORTAL" hidden="false"/>
<categoryEntry id="5e28-c4f1-4a92-b75c" name="Realm of Battle" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="aeab-ce73-e115-d5bd" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="2c4b-6186-2939-7f2b" name="BEASTS OF CHAOS" hidden="false"/>
<categoryEntry id="088b-3a27-03f7-8249" name="Named" hidden="false"/>
<categoryEntry id="2ff5-b7a1-655a-1655" name="GREATER DAEMON" hidden="false"/>
<categoryEntry id="1d34-b962-7c7b-f287" name="SOULSCREAM BRIDGE" hidden="false"/>
<categoryEntry id="cff6-06c5-3294-b74b" name="SHARDS OF VALAGHARR" hidden="false"/>
<categoryEntry id="3b54-23ed-a577-ea1f" name="LAUCHON THE SOULSEEKER" hidden="false"/>
<categoryEntry id="9945-bd78-56ea-5cde" name="HORRORGHAST" hidden="false"/>
<categoryEntry id="c34d-acb9-a4d9-74be" name="VOSTARG" hidden="false"/>
<categoryEntry id="f60b-d58c-bfee-5aa7" name="GREYFYRD" hidden="false"/>
<categoryEntry id="3559-43bd-385b-59a0" name="HERMDAR" hidden="false"/>
<categoryEntry id="a89a-9904-cf30-0d17" name="LOFNIR" hidden="false"/>
<categoryEntry id="d480-6910-5223-af4f" name="PENUMBRAL" hidden="false"/>
<categoryEntry id="798c-6e4e-1793-2fd9" name="STORMVAULT" hidden="false"/>
<categoryEntry id="e7f6-c6e9-1728-1807" name="PENUMBRAL ENGINE" hidden="false"/>
<categoryEntry id="bc8a-9257-1601-6d62" name="Scenery" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="36b7-ee1e-0855-f23f" name="**Pitched Battle**" hidden="false">
<modifiers>
<modifier type="set" field="e8e3-9adc-3526-c6d6" value="1000">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="e8e3-9adc-3526-c6d6" value="2000">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="e8e3-9adc-3526-c6d6" value="2500">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="1,000">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="2,000">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="2,500">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="e8e3-9adc-3526-c6d6" value="250">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa3a-742d-9e34-e701" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="e8e3-9adc-3526-c6d6" value="500">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="45c9-0873-d072-007a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="e8e3-9adc-3526-c6d6" value="500">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6a86-ed1f-1db7-6f7c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="e8e3-9adc-3526-c6d6" value="250">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4c1d-7a55-fa32-d2be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="points" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="e8e3-9adc-3526-c6d6" type="max"/>
</constraints>
<forceEntries>
<forceEntry id="78f3-8a59-699a-61e8" name="Allies" hidden="false">
<modifiers>
<modifier type="set" field="94dd-25fb-4a00-e373" value="500.0">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="94dd-25fb-4a00-e373" value="400.0">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="94dd-25fb-4a00-e373" value="200.0">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="94dd-25fb-4a00-e373" value="520.0">
<conditions>
<condition field="selections" scope="78f3-8a59-699a-61e8" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="24c2-fff5-f17c-3d07" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="points" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="94dd-25fb-4a00-e373" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ffdd-9af0-d56e-86a5" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="false"/>
<categoryLink id="7054-f9e4-5cb2-39b6" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="6e3f-492a-d37a-bdaf" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
<categoryLink id="31f4-75e9-931e-3484" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="f8f6-1315-7c9b-9598" name="Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<categoryLinks>
<categoryLink id="da17-2e5a-0e3e-7cda" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false">
<modifiers>
<modifier type="set" field="ba85-6aef-72d4-ebc4" value="4">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="ba85-6aef-72d4-ebc4" value="6">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="ba85-6aef-72d4-ebc4" value="8">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="5c22-cda7-10c7-da36" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="5c22-cda7-10c7-da36" type="min"/>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="ba85-6aef-72d4-ebc4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9483-c7a6-8a0b-4ab3" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false">
<modifiers>
<modifier type="set" field="e7b6-33e8-13db-8935" value="2">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="e7b6-33e8-13db-8935" value="4">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="e7b6-33e8-13db-8935" value="5">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="e7b6-33e8-13db-8935" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3c3f-f6ef-cc1f-8186" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="false">
<modifiers>
<modifier type="set" field="0247-cd5a-628b-8b0d" value="5">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="0247-cd5a-628b-8b0d" value="2">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="0247-cd5a-628b-8b0d" value="4">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="0247-cd5a-628b-8b0d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="63aa-6681-a0ff-0d99" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false">
<modifiers>
<modifier type="set" field="73c7-ba20-18e8-8b37" value="2">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="73c7-ba20-18e8-8b37" value="4">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="73c7-ba20-18e8-8b37" value="3">
<conditions>
<condition field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="73c7-ba20-18e8-8b37" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="5156-dc6f-149b-1a5e" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="bc41-5536-8011-4348" name="Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="false"/>
<categoryLink id="fadd-b7fa-31f8-4fb3" name="General" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
<categoryLink id="f81e-6d6a-67b4-db13" name="Artefact" hidden="false" targetId="3564-4c26-10b4-d953" primary="false"/>
<categoryLink id="f631-f98a-5c53-05bb" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="false">
<constraints>
<constraint field="selections" scope="36b7-ee1e-0855-f23f" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5841-14a7-e06c-3f06" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="e091-0150-8eee-0258" name="Game Options" hidden="false" targetId="1974-3f49-7f0b-8422" primary="false"/>
<categoryLink id="7d52-926e-b20f-95c8" name="Realm of Origin" hidden="false" targetId="5c6d-5384-bcb1-b474" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="7025-70e4-7ad4-407a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f0b1-06e5-134a-1cd1" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="false"/>
<categoryLink id="4f35-ed38-e2f8-b024" name="Command Points" hidden="false" targetId="8be8-3ccd-be93-b55e" primary="false"/>
<categoryLink id="3e68-25b0-23a7-10a3" name="Realm of Battle" hidden="false" targetId="5e28-c4f1-4a92-b75c" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="13f0-17b9-371a-c147" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9716-7416-c989-9575" name="Scenery" hidden="false" targetId="bc8a-9257-1601-6d62" primary="false"/>
</categoryLinks>
</forceEntry>
<forceEntry id="af42-5af7-420c-7ab6" name="Meeting Engagement - Spearhead" hidden="true">
<categoryLinks>
<categoryLink id="a779-9bae-d844-746e" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="13bd-761b-1412-7ab3" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="1fd6-77bc-ae2f-558d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c208-0d8b-7a00-f45e" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="ee5c-21f2-923a-5a45" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="558f-65a6-efed-67b9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0c40-fc0f-dc12-41ff" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cb64-cdda-2453-5a5b" type="min"/>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="e3fb-fe86-e79a-4ba4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6206-aa1c-9374-288e" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="d9e0-2947-bd90-d408" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8df5-8a13-6dfe-876f" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="cce4-bc9d-0c7e-74c3" name="Meeting Engagement - Main Body" hidden="true">
<categoryLinks>
<categoryLink id="d8b0-937f-e675-3538" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="49e7-39fc-712c-6b08" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="9ce6-1bcf-5e31-2890" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="86b6-86d5-fb18-9288" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="61ef-0b33-6c18-17ee" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="0fcb-e9ae-2065-8258" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2d76-2596-83fb-bfa6" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="5434-44d8-3a16-7b2a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d4f2-f448-86e4-38d6" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="5894-736b-3be1-5a94" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="f893-5b2f-eb0f-0a31" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="false">
<constraints>
<constraint field="selections" scope="cce4-bc9d-0c7e-74c3" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a84b-92b6-09fc-c9bb" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="3482-1176-7c83-8374" name="Command Points" hidden="false" targetId="8be8-3ccd-be93-b55e" primary="false"/>
<categoryLink id="c800-4d89-230a-a2e4" name="Game Options" hidden="false" targetId="1974-3f49-7f0b-8422" primary="false"/>
<categoryLink id="fcf3-8315-3d50-aede" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="false"/>
<categoryLink id="e7ee-4c42-6e86-db5a" name="Realm of Battle" hidden="false" targetId="5e28-c4f1-4a92-b75c" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="8c2f-68f0-5136-3cf2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="830b-65a1-c8d6-ca9e" name="Realm of Origin" hidden="false" targetId="5c6d-5384-bcb1-b474" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="ad26-168d-8f48-46ed" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="57e3-99c7-6fc4-1cff" name="Meeting Engagement - Rearguard" hidden="true">
<categoryLinks>
<categoryLink id="c29b-073e-cd0d-34f5" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="bab3-3903-f18f-ab9b" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2f01-a90a-6f9a-8ef1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1efe-8035-c9f8-80ae" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="bbaa-b8ed-159a-3348" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="1877-0e10-fd27-1a6e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e820-200e-1821-463f" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="8570-cefa-30ba-7786" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="26b7-33a1-788c-039d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0b98-2a3e-36b0-688e" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="62ad-70aa-e62a-919b" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="af1b-bef9-5bcd-da03" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7024-6dc3-83b0-33c6" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="7dfb-87e6-d14f-5aa4" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="f26e-080f-27d8-4cb2" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="745a-d2c9-a076-2d70" name="Purchased Command Points" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="584d-611d-064d-0a33" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="d882-d72a-6391-a6be" name="New CategoryLink" hidden="false" targetId="8be8-3ccd-be93-b55e" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="967b-d3ad-e0b5-e6c9" name="1 Command Point" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7126-cd45-a30a-dbb3" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="19fe-0099-8319-6fdf" name="Points Variation" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="79ec-1682-d07c-0d5a" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="21a4-6280-03cc-4ccf" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5789-0b49-02bb-6396" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b649-48a4-c708-d5a1" name="Variation Amount" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6f0-ee12-c769-680f" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6a86-ed1f-1db7-6f7c" name="- 500" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f347-8cd2-abc3-3b03" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aa3a-742d-9e34-e701" name="- 250" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="efe9-c259-d561-60e2" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4c1d-7a55-fa32-d2be" name="+ 250" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6952-757b-ea6d-06a6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="45c9-0873-d072-007a" name="+ 500" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8128-1591-7263-7d89" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1a07-20e9-829c-2f2a" name="Realm of Origin" hidden="false" collective="false" import="true" targetId="268a-c131-4914-7087" type="selectionEntry">
<categoryLinks>
<categoryLink id="c10b-5319-ef5d-0259" name="New CategoryLink" hidden="false" targetId="5c6d-5384-bcb1-b474" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e12e-ffc5-6892-4795" name="Game Type" hidden="false" collective="false" import="true" targetId="a741-5681-7572-fa32" type="selectionEntry">
<categoryLinks>
<categoryLink id="baa5-3a0c-fa64-212c" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e116-d465-3e8e-864c" name="Realm of Battle" hidden="false" collective="false" import="true" targetId="35ce-f528-13ad-8cea" type="selectionEntry">
<categoryLinks>
<categoryLink id="5552-cffb-c874-4e24" name="Realm of Battle" hidden="false" targetId="5e28-c4f1-4a92-b75c" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="28b7-9a3f-0f7b-c498" name="Endless Spell: Aethervoid Pendulum" hidden="false" collective="false" import="true" targetId="98c8-838b-2c8a-a9f7" type="selectionEntry">
<categoryLinks>
<categoryLink id="8ff7-043d-6044-8c48" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1d24-610d-46d2-30bf" name="Balewind Vortex" hidden="false" collective="false" import="true" targetId="98b9-64b2-7123-b7a2" type="selectionEntry">
<categoryLinks>
<categoryLink id="c58f-6e74-d605-fe50" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4095-992e-ecb5-f3e7" name="Chronomatic Cogs" hidden="false" collective="false" import="true" targetId="4a8c-091f-84b5-47aa" type="selectionEntry">
<categoryLinks>
<categoryLink id="344d-c0f8-1f3d-3bee" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="88a7-aafe-c6f9-f78e" name="Emerald Lifeswarm" hidden="false" collective="false" import="true" targetId="ec28-3ec9-f2fa-82e5" type="selectionEntry">
<categoryLinks>
<categoryLink id="102e-6e47-67c3-a9c8" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="21eb-635c-39bd-dd60" name="Endless Spell: Geminids of Uhl-Gyish" hidden="false" collective="false" import="true" targetId="1ce8-9373-9c22-75a0" type="selectionEntry">
<categoryLinks>
<categoryLink id="819f-b709-0da8-07b1" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ef51-fb2f-8837-98ba" name="Horrorghast" hidden="false" collective="false" import="true" targetId="befc-365b-06f8-5575" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b8c-457e-a256-6932" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="14ff-3872-185d-2b22" name="Lauchon the Soulseeker" hidden="false" collective="false" import="true" targetId="1f68-29ac-db98-ff85" type="selectionEntry">
<categoryLinks>
<categoryLink id="1552-59f8-e65e-3ee7" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="be68-a6e5-ded1-4a7f" name="Malevolent Maelstrom" hidden="false" collective="false" import="true" targetId="37a1-b025-6723-3fe1" type="selectionEntry">
<categoryLinks>
<categoryLink id="52cd-a0ad-f236-4f62" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3583-afe9-8695-2acb" name="Prismatic Palisade" hidden="false" collective="false" import="true" targetId="7ae1-8e71-327d-0893" type="selectionEntry">
<categoryLinks>
<categoryLink id="a552-c469-ecd4-90f5" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b859-8f0e-848c-c403" name="Purple Sun of Shyish" hidden="false" collective="false" import="true" targetId="6e7b-ce3f-9348-58e1" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc0e-94d3-e4cc-cf13" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5678-094b-9e38-abeb" name="Quicksilver Swords" hidden="false" collective="false" import="true" targetId="bc18-4df9-1a28-2df9" type="selectionEntry">
<categoryLinks>
<categoryLink id="456b-cbcf-187e-e182" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f231-d21f-2768-4263" name="Ravenak's Gnashing Jaws" hidden="false" collective="false" import="true" targetId="a99d-b987-6fa6-96f6" type="selectionEntry">
<categoryLinks>
<categoryLink id="7990-96d6-3a1f-16bb" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5bc9-f716-3ec8-3e62" name="Shards of Valagharr" hidden="false" collective="false" import="true" targetId="58a3-4afb-62c5-dd39" type="selectionEntry">
<categoryLinks>
<categoryLink id="843c-0a6f-44be-762a" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5f00-7f5a-9d87-a0d4" name="Soulscream Bridge" hidden="false" collective="false" import="true" targetId="98da-d52f-7608-3034" type="selectionEntry">
<categoryLinks>
<categoryLink id="2a79-8f0d-4785-aa39" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="857f-aa6c-227e-b1f8" name="Soulsnare Shackles" hidden="false" collective="false" import="true" targetId="ec18-8377-8f6b-2591" type="selectionEntry">
<categoryLinks>
<categoryLink id="56ee-27fa-24d6-b548" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="432a-de1d-1d97-f4f2" name="Suffocating Gravetide" hidden="false" collective="false" import="true" targetId="d6de-646a-4dcc-e37d" type="selectionEntry">
<categoryLinks>
<categoryLink id="8dca-2e27-a312-1002" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b5f-6153-8453-ecae" name="The Burning Head" hidden="false" collective="false" import="true" targetId="3ad9-857b-32ff-e44e" type="selectionEntry">
<categoryLinks>
<categoryLink id="a795-b9f6-5518-72bc" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5094-7652-a4bc-244c" name="Endless Spell: Umbral Spellportal" hidden="false" collective="false" import="true" targetId="d2dc-7e1a-c2e7-4cff" type="selectionEntry">
<categoryLinks>
<categoryLink id="f865-805f-d0d2-56bb" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="29c2-52f9-f675-e67c" name="Scenery: Penumbral Engine" hidden="false" collective="false" import="true" targetId="8a3f-74ea-a98a-e1ee" type="selectionEntry">
<categoryLinks>
<categoryLink id="f07b-c3d4-19b5-7fea" name="New CategoryLink" hidden="false" targetId="bc8a-9257-1601-6d62" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<rules>
<rule id="a954-6cfc-59ca-674e" name="Inspiring Presence" publicationId="e51d-b1a3-pubEQ" page="3" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b745-17c4-8fbf-8b04" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<description>You can use this command ability at the start of the battleshock phase. If you do so, pick a friendly unit that is within 6" of friendly HERO, or 12" of a friendly HERO that is a general. That unit does not have to take battleshock tests in that phase.</description>
</rule>
<rule id="3f48-3925-7123-3392" name="At the Double" publicationId="e51d-b1a3-pubEQ" page="3" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b745-17c4-8fbf-8b04" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<description>You can use this command ability after you make a run roll for a friendly unit that is within 6" of a friendly HERO, or 12" of a friendly HERO that is a general. If you do so, the run roll is treated as being a 6.</description>
</rule>
<rule id="c157-62a0-2514-c4f4" name="Forward to Victory" publicationId="e51d-b1a3-pubEQ" page="3" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b745-17c4-8fbf-8b04" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<description>You can use this command ability after you make a charge roll for a friendly unit that is within 6" of a friendly HERO, or 12" of a friendly HERO that is a general. If you do so, re-roll the charge roll.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="869c-168d-eba5-eacf" name="Arcane Bolt" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="48b1-0361-dcc7-3913" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae24-5441-4537-9ce9" type="min"/>
</constraints>
<infoLinks>
<infoLink id="aee6-0a2c-d3ad-6a62" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5fdd-6634-f9f8-068a" name="Mystic Shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05da-ae0d-40c4-7f80" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="46ce-4695-4f0d-2516" type="max"/>
</constraints>
<infoLinks>
<infoLink id="79f3-1c53-2d38-b6d1" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="268a-c131-4914-7087" name="Realm of Origin" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8609-fea1-53ce-d735" type="max"/>
</constraints>
<entryLinks>
<entryLink id="abe0-0cb9-7db6-f034" name="Realm of Origin" hidden="false" collective="false" import="true" targetId="0d51-8ed8-dcf5-76a0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a741-5681-7572-fa32" name="Game Type" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="deb1-5691-1d7c-4165" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4fb0-e1a3-236a-4e95" type="min"/>
</constraints>
<entryLinks>
<entryLink id="39f6-88b3-177e-2535" name="Game Type (GAME TYPE MUST BE IDENTICAL FOR ALL FORCES)" hidden="false" collective="false" import="true" targetId="5927-9c5a-8b20-8f37" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="35ce-f528-13ad-8cea" name="Realm of Battle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63d3-b671-c649-faf6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a937-013e-50ba-3bac" name="Realm of Battle" hidden="false" collective="false" import="true" targetId="825c-e98c-986d-7985" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="98c8-838b-2c8a-a9f7" name="Endless Spell: Aethervoid Pendulum" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a657-de49-e2b9-d312" type="max"/>
</constraints>
<profiles>
<profile id="b2ad-28b6-8c19-2bd7" name="Summon Aethervoid Pendulum" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up an Aethervoid Pendulum model wholly within 6" of the caster so that it points lengthways in the direction you wish it to move.</characteristic>
</characteristics>
</profile>
<profile id="21f3-0955-0b5b-632a" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">An Aethervoid Pendulum is a predatory endless spell. It can move up to 8" and can fly. </characteristic>
</characteristics>
</profile>
<profile id="a0f5-049e-5f6b-92f7" name="Slicing Into Reality" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this model is set up, the player who set it up can immediately make a move with it.</characteristic>
</characteristics>
</profile>
<profile id="75ab-d1f9-8312-4930" 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 model has moved, 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, suffers D6 mortal wounds. </characteristic>
</characteristics>
</profile>
<profile id="2577-0a57-fc04-cbb1" name="Unstoppable Mechanism" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Whenever you set up an Aethervoid Pendulum, you must place it lengthways in the direction you wish it to move. Whenever it moves, move it in a straight line in that direction.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bcfe-fca6-6bb7-9d98" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c336-90ff-ebdd-cdd6" name="New CategoryLink" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="bd9a-3f79-0b5f-7f8f" name="AETHERVOID PENDULUM" hidden="false" targetId="5647-b7a8-9716-1d17" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="98b9-64b2-7123-b7a2" name="Endless Spell: Balewind Vortex" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8106-c203-2ed0-e575" type="max"/>
</constraints>
<profiles>
<profile id="6979-410e-f790-d43c" name="Summon Balewind Vortex" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">WIZARDS with a Wounds characteristic of 9 or more, that are part of a unit of two or more models, or that are already on a Balewind Vortex, cannot attempt to cast this spell. If successfully cast, set up a Balewind Vortex model within 1" of the caster and more than 3" from any enemy models, and then place the caster on the upper platform.</characteristic>
</characteristics>
</profile>
<profile id="1ef7-6e77-e5be-458b" name="Against the Aetheric Wind" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to save rolls for a WIZARD on a Balewind Vortex. </characteristic>
</characteristics>
</profile>
<profile id="4fa2-0a57-2616-95cb" name="Arcane Invigoration" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A WIZARD on a Balewind Vortex can attempt to cast an additional spell in each of their hero phases (including the turn in which the Summon Balewind Vortex spell was cast), and you can add 6" to the range of any spells that the WIZARD casts.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="c269-8e7f-d52f-96ab" 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="e1e7-a6e3-fb42-c5fa" name="New CategoryLink" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="6fd4-dff6-47c4-10f8" name="BALEWIND VORTEX" hidden="false" targetId="0ac5-cc94-b7fe-7160" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a8c-091f-84b5-47aa" name="Endless Spell: Chronomatic Cogs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="437a-85d6-7962-09c8" type="max"/>
</constraints>
<profiles>
<profile id="9590-acdc-1b4e-0963" name="Summon Chronomatic Cogs" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up a Chronomantic Cogs model wholly within 12" of the caster. </characteristic>
</characteristics>
</profile>
<profile id="4fe0-7a89-9044-9495" name="Mechanisms of Time" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In their controlling player’s hero phase, a single Wizard within 9" of this model may manipulate the cogs to increase or decrease the flow of time. They may do this in the same phase as the Chronomantic Cogs are set up. If they do so, choose one of the effects opposite. The effect lasts until their next hero phase, or until an enemy Wizard chooses to manipulate the cogs. Speed Up Time: Add 2" to the Move characteristic of all units on the battlefield. In addition, add 2 to charge rolls for all units on the battlefield. Slow Down Time: The wizard manipulating the cogs can cast 1 additional spell in this hero phase. In addition, re-roll failed save rolls for that wizard.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0d18-2233-939e-757f" name="New CategoryLink" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="6f75-84c2-00df-710e" name="AZYR" hidden="false" targetId="bed0-e4a0-f704-1eab" primary="false"/>
<categoryLink id="c22f-fc01-e217-f01d" name="CHRONOMANTIC COGS" hidden="false" targetId="1619-fea5-de7e-8a67" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ec28-3ec9-f2fa-82e5" name="Endless Spell: Emerald Lifeswarm" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="41d8-6605-1f4e-1c94" type="max"/>
</constraints>
<profiles>
<profile id="e8c0-ded6-d453-a796" name="Summon Emerald Lifeswarm" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up an Emerald Lifeswarm model wholly within 15" of the caster. </characteristic>
</characteristics>
</profile>
<profile id="6183-1ed2-30a1-468a" name="Predatory" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">An Emerald Lifeswarm is a predatory endless spell. Emerald Lifeswarms can move up to 10" and can fly.</characteristic>
</characteristics>
</profile>
<profile id="1ee9-f13f-669c-33d7" 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 model is set up or after it has moved, pick 1 unit within 1" of it. You can either heal D3 wounds that have been allocated to that unit or, if no wounds are currently allocated to the unit, you may return a number of slain models to it that have a combined Wounds characteristic equal to or less than the roll of a D3. </characteristic>
</characteristics>
</profile>
<profile id="ffac-9035-e86e-fceb" name="Empowered by Ghyran" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If your battle is taking place in the Realm of Life, roll a D6 to determine the number of wounds healed or wounds worth of slain models returned by the Emerald Lifeswarm’s Bounteous Healing ability. </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b7b7-b4c4-2ba6-3533" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="78da-51b4-4e2c-a0db" name="New CategoryLink" hidden="false" targetId="31f4-2067-3ade-e6f8" primary="false"/>
<categoryLink id="2101-d7be-8a1f-4b6c" name="EMERALD LIFESWORM" hidden="false" targetId="14d2-605b-536f-dd47" primary="false"/>
<categoryLink id="50fa-7469-e5cc-8169" name="GHYRAN" hidden="false" targetId="0b26-9340-45cf-07ee" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1ce8-9373-9c22-75a0" name="Endless Spell: Geminids of Uhl-Gyish" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f50a-76ec-115a-6e1d" type="max"/>
</constraints>
<profiles>
<profile id="048c-412c-c308-90f9" name="Summon Geminids of Uhl-Gyish" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, set up both models within 6" of each other and both wholly within 18" of the caster. You must then nominate one model to be the Light Geminid and the other to be the Shadow Geminid.</characteristic>
</characteristics>
</profile>
<profile id="8b3d-a71a-02e8-e999" name="Unleashed" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this model is set up, the player who set it up can immediately make a move with it. </characteristic>