-
Notifications
You must be signed in to change notification settings - Fork 82
/
Order - Lumineth.cat
6377 lines (6367 loc) · 488 KB
/
Order - Lumineth.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="3a4f-b93a-26ba-a2d1" name="Order - Lumineth" revision="118" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="159" type="catalogue">
<publications>
<publication id="917d-f08b-e601-8ff5" name="Battletome - Lumineth Realm-Lords 2022"/>
<publication id="e7c6-db82-5f81-a6a4" name="Battletome: Lumineth Realm-Lords Errata November 2022"/>
<publication id="0186-ffcd-d928-392c" name="Battletome: Lumineth Realm-Lords Errata April 2023"/>
</publications>
<profileTypes>
<profileType id="e003-a0dc-741a-0eca" name="Wound Tracker Teclis">
<characteristicTypes>
<characteristicType id="8d87-06cc-5731-d02c" name="Archmage"/>
<characteristicType id="ce12-6095-1b43-e39b" name="Moonbright Talons"/>
<characteristicType id="efab-8a79-169b-5042" name="Aura of Celennar"/>
</characteristicTypes>
</profileType>
<profileType id="e6c2-24e0-411d-a721" name="Wound Tracker Spirit of the Mountain">
<characteristicTypes>
<characteristicType id="3268-fe0c-0f7c-cf51" name="Geomantic Blast"/>
<characteristicType id="4148-3237-3f09-2ffd" name="Stoneheart Worldhammer"/>
<characteristicType id="f80e-859b-200b-c301" name="Stoneheart Shockwave"/>
</characteristicTypes>
</profileType>
<profileType id="12c1-4851-7652-11fe" name="Wound Tracker Avalenor">
<characteristicTypes>
<characteristicType id="a355-3260-2d25-255a" name="Geomantic Blast"/>
<characteristicType id="033a-3dc4-0553-1b61" name="Guardian of Hysh"/>
<characteristicType id="d041-758c-91c8-957e" name="Firestealer Hammers"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8856-e945-3c75-2c04" name="AURALAN WARDENS" hidden="false"/>
<categoryEntry id="e242-d4cd-5ab5-5586" name="VANARI" hidden="false"/>
<categoryEntry id="cdcd-ad32-37d3-ce1d" name="DAWNRIDERS" hidden="false"/>
<categoryEntry id="fb8f-1a73-179d-e1f2" name="LIGHT OF ELTHARION" hidden="false"/>
<categoryEntry id="a5b9-bc50-8b42-8152" name="AELF" hidden="false"/>
<categoryEntry id="defb-7b72-1b70-27ea" name="AELEMENTIRI" hidden="false"/>
<categoryEntry id="2a5f-ab45-129b-1ef9" name="STONEMAGE" hidden="false"/>
<categoryEntry id="8170-5783-52c4-c74b" name="ALARITH" hidden="false"/>
<categoryEntry id="4008-87c8-f00b-b827" name="STONEGUARD" hidden="false"/>
<categoryEntry id="f4e1-ae68-aa3c-8519" name="TECLIS" hidden="false"/>
<categoryEntry id="d2e2-9363-65a6-64ee" name="SCINARI" hidden="false"/>
<categoryEntry id="a80f-c41b-b69b-2e09" name="CATHALLAR" hidden="false"/>
<categoryEntry id="5e22-2480-6cab-ad0e" name="SPIRIT OF THE MOUNTAIN" hidden="false"/>
<categoryEntry id="8763-eded-33b0-405d" name="YMETRICA" hidden="false"/>
<categoryEntry id="f7d6-76e5-40c5-8731" name="AURALAN SENTINELS" hidden="false"/>
<categoryEntry id="c9f9-58df-18f9-4d43" name="AVALENOR" hidden="false"/>
<categoryEntry id="80ff-7864-3c07-b479" name="SYAR" hidden="false"/>
<categoryEntry id="c428-1919-c7df-fc14" name="ILIATHA" hidden="false"/>
<categoryEntry id="1a40-f5ac-27ca-2b2c" name="ZAITREC" hidden="false"/>
<categoryEntry id="bafc-071c-012f-0d3d" name="HYSHIAN TWINSTONES" hidden="false"/>
<categoryEntry id="83c1-8804-4d58-a1cb" name="SANCTUM OF AMYNTOK" hidden="false"/>
<categoryEntry id="ce3d-41e2-06ab-1a6d" name="RUNE OF PETRIFICATION" hidden="false"/>
<categoryEntry id="39fb-c777-d340-b5fb" name="MYARI LIGHTCALLER" hidden="false"/>
<categoryEntry id="fd85-72ff-ccef-78f4" name="MYARI'S PURIFIERS" hidden="false"/>
<categoryEntry id="6444-eda1-71bf-6a1a" name="ELLANIA AND ELLATHOR" hidden="false"/>
<categoryEntry id="6d4e-521d-16d9-2c8f" name="STARSHARD BALLISTAS" hidden="false"/>
<categoryEntry id="6312-ee92-6f67-9148" name="LORD REGENT" hidden="false"/>
<categoryEntry id="9eb0-8798-260e-526c" name="BANNERBLADE" hidden="false"/>
<categoryEntry id="dfe5-984a-6e20-1917" name="BLADELORDS" hidden="false"/>
<categoryEntry id="1a1d-b243-7bd3-d7ce" name="SPIRIT OF THE WIND" hidden="false"/>
<categoryEntry id="cbe1-b7d2-b033-2fdb" name="SEVIRETH" hidden="false"/>
<categoryEntry id="1f35-d96d-0a4f-a012" name="HURAKAN" hidden="false"/>
<categoryEntry id="5404-f09f-4d14-e7b8" name="LORESEEKER" hidden="false"/>
<categoryEntry id="beb1-d43f-4967-be0b" name="CALLIGRAVE" hidden="false"/>
<categoryEntry id="eda2-f5b4-a818-0ee8" name="LYRIOR UTHRALLE" hidden="false"/>
<categoryEntry id="2c9d-2076-589b-e082" name="WINDCHARGERS" hidden="false"/>
<categoryEntry id="c786-0251-93a3-23c9" name="WINDMAGE" hidden="false"/>
<categoryEntry id="4cf9-cb23-4043-080c" name="ALUMNIA" hidden="false"/>
<categoryEntry id="c645-210c-b909-827b" name="HELON" hidden="false"/>
<categoryEntry id="0d3a-a2b9-b592-d78d" name="SHRINE LUMINOR" hidden="false"/>
<categoryEntry id="c7a4-dfe4-ade3-9a92" name="Coalition: LRL" hidden="false">
<modifiers>
<modifier type="increment" field="0d98-05ff-af4d-c817" value="1">
<repeats>
<repeat field="selections" scope="roster" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0d98-05ff-af4d-c817" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="3ec4-a3a6-bcb5-f757" name="Conditional Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="d425-1c72-089e-7b5f" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="3b53-dbf5-8f73-b10d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d425-1c72-089e-7b5f" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="9113-a65f-bdf3-3f08" name="Bladelords Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="5d55-2876-2299-dbd1" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d3da-ab05-ccda-349a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5d55-2876-2299-dbd1" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="d3da-ab05-ccda-349a" name="SCINARI HERO" hidden="false"/>
<categoryEntry id="2fa8-92e2-8292-8030" name="ENLIGHTENER" hidden="false"/>
<categoryEntry id="ca2d-fd45-2f8f-758f" name="Lumineth Warscroll Battalion" hidden="false"/>
<categoryEntry name="YDRILAN" id="f076-b5d3-7cf8-bd76" hidden="false"/>
<categoryEntry name="YDRILAN RIVERBLADES" id="2754-f65c-e3a4-a731" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="2249-c919-580f-d2b3" name="Vanari Auralan Wardens" hidden="false" collective="false" import="true" targetId="3b53-dbf5-8f73-b10d" type="selectionEntry"/>
<entryLink id="15ba-1dcf-2955-7e5f" name="The Light of Eltharion" hidden="false" collective="false" import="true" targetId="723c-27b0-a0d6-c7df" type="selectionEntry"/>
<entryLink id="1620-2c95-6697-d21a" name="Allegiance" hidden="false" collective="false" import="true" targetId="6548-ab09-c1f0-3594" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f79c-e161-4ad3-876d" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="81f0-4826-0ecb-2e1b" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="290b-381e-5d09-d43b" name="Alarith Spirit of the Mountain" hidden="false" collective="false" import="true" targetId="b647-1ba5-997e-38f1" type="selectionEntry"/>
<entryLink id="3a93-9139-59a4-a6eb" name="Alarith Stoneguard" hidden="false" collective="false" import="true" targetId="b6da-3afb-1b0b-aa4d" type="selectionEntry"/>
<entryLink id="e131-c724-250a-e055" name="Alarith Stonemage" hidden="false" collective="false" import="true" targetId="9d49-6a12-a92e-d50b" type="selectionEntry"/>
<entryLink id="70ff-6069-3200-19cb" name="Archmage Teclis" hidden="false" collective="false" import="true" targetId="7bbb-5d1d-b91b-7dab" type="selectionEntry"/>
<entryLink id="93f7-c133-de67-e88f" name="Scinari Cathallar" hidden="false" collective="false" import="true" targetId="51f3-d54a-496d-478f" type="selectionEntry"/>
<entryLink id="0f57-8af8-a962-7792" name="Lumineth Warscroll Battalion: Alarith Battlehost" hidden="false" collective="false" import="true" targetId="c23e-5efb-33d9-f73c" type="selectionEntry"/>
<entryLink id="5225-04d3-9468-8793" name="Lumineth Warscroll Battalion: Auralan Battlehost" hidden="false" collective="false" import="true" targetId="62b5-2e4a-fc33-6e7f" type="selectionEntry"/>
<entryLink id="b03c-76ca-9fff-1e51" name="Lumineth Warscroll Battalion: Dawnrider Battlehost" hidden="false" collective="false" import="true" targetId="192b-70c7-e4a4-d8cc" type="selectionEntry"/>
<entryLink id="75d5-342f-4f5e-e68f" name="Super Battalion: Teclis's Vanguard" hidden="false" collective="false" import="true" targetId="e873-0bf7-517d-01bf" type="selectionEntry"/>
<entryLink id="8195-eb3f-b312-344f" name="Avalenor The Stoneheart King" hidden="false" collective="false" import="true" targetId="82cb-87ad-442e-b94c" type="selectionEntry"/>
<entryLink id="65c7-5428-e9c3-4262" name="Vanari Auralan Sentinels" hidden="true" collective="false" import="true" targetId="aff6-a2af-96b1-a76d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b53-dbf5-8f73-b10d" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b7d4-32a5-e941-3ac8" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="f8c2-ce64-8cba-c9fe" name="Conditional Battleline" hidden="false" targetId="3ec4-a3a6-bcb5-f757" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0fe5-bdd7-28dc-985c" name="Vanari Dawnriders" hidden="true" collective="false" import="true" targetId="3747-0abb-f1c7-a143" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b53-dbf5-8f73-b10d" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="94ec-1287-cbe4-0e9e" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="791c-21e0-2474-cb1e" name="Conditional Battleline" hidden="false" targetId="3ec4-a3a6-bcb5-f757" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b997-83ab-5ac1-470f" name="Myari Lightcaller" hidden="false" collective="false" import="true" targetId="33f2-9e1b-9fb9-c53b" type="selectionEntry"/>
<entryLink id="7da9-a4ca-7f5a-55c3" name="Myari's Purifiers" hidden="false" collective="false" import="true" targetId="6b7b-144c-ae86-bafe" type="selectionEntry"/>
<entryLink id="fc08-7de0-6d35-6379" name="Ellania and Ellathor" hidden="false" collective="false" import="true" targetId="a4f2-49b5-9120-9a27" type="selectionEntry"/>
<entryLink id="08ee-fdf1-1aec-5758" name="Vanari Starshard Ballistas" hidden="false" collective="false" import="true" targetId="5b00-2d0f-b9cd-b0f6" type="selectionEntry"/>
<entryLink id="d733-0cb6-4d29-1e68" name="Vanari Lord Regent" hidden="false" collective="false" import="true" targetId="539c-9ab7-b5b8-7034" type="selectionEntry"/>
<entryLink id="2d99-e57f-0388-72f5" name="Vanari Bannerblade" hidden="false" collective="false" import="true" targetId="762a-1c04-3e37-d02a" type="selectionEntry"/>
<entryLink id="4d72-129c-cf94-2a29" name="Vanari Bladelords" hidden="false" collective="false" import="true" targetId="1059-75b9-4acb-31fd" type="selectionEntry"/>
<entryLink id="ee05-5bac-db15-e775" name="Scinari Loreseeker" hidden="false" collective="false" import="true" targetId="a038-d370-995c-04c7" type="selectionEntry"/>
<entryLink id="3f9b-773c-ae4f-a953" name="Sevireth, Lord of the Seventh Wind" hidden="false" collective="false" import="true" targetId="3cf4-41c0-24a9-a6c8" type="selectionEntry"/>
<entryLink id="08d1-fa55-9c8a-e60a" name="Scinari Calligrave" hidden="false" collective="false" import="true" targetId="ffc6-2591-d3c9-42df" type="selectionEntry"/>
<entryLink id="fb54-be5b-351d-f91f" name="Lyrior Uthralle" hidden="false" collective="false" import="true" targetId="4b2b-5535-d1ba-6635" type="selectionEntry"/>
<entryLink id="974c-b6a2-7aa5-7cf9" name="Hurakan Windchargers" hidden="false" collective="false" import="true" targetId="c797-4898-48a6-29cd" type="selectionEntry"/>
<entryLink id="0dfa-4cd2-d138-e1b1" name="Hurakan Windmage" hidden="false" collective="false" import="true" targetId="39ee-7941-5364-9136" type="selectionEntry"/>
<entryLink id="2958-1bdb-9074-d344" name="Hurakan Spirit of the Wind" hidden="false" collective="false" import="true" targetId="9a38-ee2a-01b8-d03d" type="selectionEntry"/>
<entryLink id="641e-40e4-6c76-ad49" name="Lumineth Warscroll Battalion: Bladelord Host" hidden="false" collective="false" import="true" targetId="4e24-1123-2f95-d918" type="selectionEntry"/>
<entryLink id="d49e-dea1-d60b-4001" name="Lumineth Warscroll Battalion: Hurakan Battlehost" hidden="false" collective="false" import="true" targetId="5105-4973-3756-8030" type="selectionEntry"/>
<entryLink id="46e8-fee5-df98-4ddc" name="Lumineth Warscroll Battalion: Starshard Battery" hidden="false" collective="false" import="true" targetId="a750-db4e-a44e-a22f" type="selectionEntry"/>
<entryLink id="4cf1-7e36-6546-8cae" name="Super Battalion: Lumineth Battlehost" hidden="false" collective="false" import="true" targetId="cf0d-83bc-1228-22be" type="selectionEntry"/>
<entryLink id="cf75-fd93-0fae-5282" name="Shrine Luminor" hidden="false" collective="false" import="true" targetId="37ce-c0ea-f2f0-b135" type="selectionEntry"/>
<entryLink id="12e1-154d-0cf3-fff6" name="Vanari Dawnriders" hidden="false" collective="false" import="true" targetId="3747-0abb-f1c7-a143" type="selectionEntry"/>
<entryLink id="2b08-4aab-8959-bb1b" name="Vanari Auralan Sentinels" hidden="false" collective="false" import="true" targetId="aff6-a2af-96b1-a76d" type="selectionEntry"/>
<entryLink id="8af7-5941-5894-1dc3" name="Vanari Bladelords" hidden="true" collective="false" import="true" targetId="1059-75b9-4acb-31fd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3da-ab05-ccda-349a" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d1d1-50f0-3653-9805" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="0a54-4621-8bd3-5bb7" name="Bladelords Battleline" hidden="false" targetId="9113-a65f-bdf3-3f08" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3166-32f8-be37-9fb6" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="1c57-9978-d8c5-cb11" type="selectionEntry"/>
<entryLink id="ea31-2d12-71f6-16d6" name="Endless Spell: Hyshian Twinstones" hidden="false" collective="false" import="true" targetId="0969-9868-6c43-b024" type="selectionEntry"/>
<entryLink id="95a0-ac7e-3e13-cad1" name="Endless Spell: Rune of Petrification" hidden="false" collective="false" import="true" targetId="c3aa-f1d6-5300-761b" type="selectionEntry"/>
<entryLink id="3969-c060-2df5-76c0" name="Endless Spell: Sanctum of Amyntok" hidden="false" collective="false" import="true" targetId="8118-ffac-9dad-ff7f" type="selectionEntry"/>
<entryLink id="5818-fe34-8d73-d8ad" name="Scinari Enlightener" hidden="false" collective="false" import="true" targetId="a5b4-5e1d-5c27-cf3d" type="selectionEntry"/>
<entryLink id="0ff6-5ff4-f5e9-2392" name="Battle Tactics: Paths to Enlightenment" hidden="false" collective="false" import="true" targetId="f6d6-9bea-59f4-c666" type="selectionEntry">
<categoryLinks>
<categoryLink id="c8b4-5270-17a6-0c34" name="Game Options" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c7f8-6c8b-ff2f-efea" name="Regiment of Renown - Elthwin's Thorns" hidden="false" collective="false" import="true" targetId="66f8-b848-40fa-a08d" type="selectionEntry"/>
<entryLink id="2a68-51c0-fd86-d4bb" name="Regiment of Renown - Norgrimm's Rune Throng" hidden="false" collective="false" import="true" targetId="9553-8763-ddc2-a840" type="selectionEntry"/>
<entryLink id="9cb9-2664-34dc-926a" name="Bundo Whalebiter - Kraken-Eater Mercenary" hidden="false" collective="false" import="true" targetId="efae-6133-d899-a7e4" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Fjori's Flamebearers" hidden="false" type="selectionEntry" id="14c-2753-f3ce-4b97" targetId="679-2ac4-81f1-ac2"/>
<entryLink import="true" name="Regiment of Renown - The Blacktalons" hidden="false" type="selectionEntry" id="5e03-ef0a-cca-d2e5" targetId="41f8-64ce-7c63-f963"/>
<entryLink id="c737-e090-b4ca-9ad1" name="Gotrek Gurnisson" hidden="false" collective="false" import="true" targetId="24c2-fff5-f17c-3d07" type="selectionEntry">
<entryLinks>
<entryLink id="4877-46ce-faa5-1245" name="Battalions" hidden="false" collective="false" import="true" targetId="df33-b274-b965-f65e" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Regiment of Renown - Saviours of Cinderfall" hidden="false" id="c711-5156-e3-3307" type="selectionEntry" targetId="241e-893b-ab5-be55"/>
<entryLink import="true" name="Ydrilan Riverblades" hidden="false" id="e19f-f3f8-5cd8-6a5f" targetId="da28-c285-12cf-22ac" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="6548-ab09-c1f0-3594" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="f81d-d938-a9cb-1f37" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f81d-d938-a9cb-1f37" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4adf-7f11-9b84-c6d1" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0467-18b7-a67c-1edc" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="59bb-d9cb-4259-fbca" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="8eb2-2489-29ec-c757">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0414-e83b-2b2f-1d7d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="02a5-fc5d-5b0b-c88a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8eb2-2489-29ec-c757" name="Allegiance: Lumineth" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d257-f135-05df-9713" name="Lightning Reactions" publicationId="917d-f08b-e601-8ff5" page="76" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">During the combat phase, after any units with the strike-first effect have attacked, when it is your turn to pick a unit to fight, you can pick 2 eligible units instead of 1. Neither unit can have the strike-last effect. Each of those units can fight one after the other in the order of your choice.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="d7ca-8122-46da-33b9" name="Aetherquartz Reserve" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2673-9cd7-9a68-03f2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9ac-00b6-37bd-d50e" type="max"/>
</constraints>
<profiles>
<profile id="39c6-c9bf-3b39-0838" name="Aetherquartz Reserve" publicationId="917d-f08b-e601-8ff5" page="76" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Each LUMINETH REALM-LORDS unit in your army starts the battle with 1 aetherquartz reserve. Once per phase, you can say that 1 unit will use its aetherquartz reserve to use 1 of the following abilities. However, if you do so, subtract 1 from that unit's Bravery characteristic for the rest of the battle.</characteristic>
</characteristics>
</profile>
<profile id="fc23-bdb6-2124-2319" name="Heightened Reflexes" publicationId="917d-f08b-e601-8ff5" page="76" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can that a unit will use this ability when picked to be the target of an attack. If you do so, until the end of that phase, add 1 to save rolls for attacks that target that unit until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="d762-19ba-3f07-64dc" name="Heightened Senses" publicationId="917d-f08b-e601-8ff5" page="76" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can say that a unit will use this ability when it is picked to shoot or fight. If you do so, add 1 to hit rolls for attacks made by that unit until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="5ff1-9ead-2bf8-5d03" name="Magical Boost" publicationId="917d-f08b-e601-8ff5" page="76" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can say that a unit will use this ability after it has attempted to cast a spell but before any unbinding rolls are made for that spell. If you do so, you can either add 1 to that casting roll or re-roll that casting roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="52fc-1abf-6539-c1eb" name="Lumineth Great Nations" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cb1-e9db-1c79-43d9" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="d54e-07e5-620c-7a8b" name="Ymetrica" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2402-9016-5096-d45d" name="Mountain Realm" publicationId="917d-f08b-e601-8ff5" page="83" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">The Enduring as Rock ability of friendly YMETRIC ALARITH units worsens the Rend characteristic of attacks that target those units by 2 instead of 1, to a minimum of ‘-’.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8d65-699d-05d2-eaee" name="YMETRICA" hidden="false" targetId="8763-eded-33b0-405d" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="037c-9b99-8ead-df51" name="Syar" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b064-0b1c-b262-26d9" name="Gleaming Brightness" publicationId="917d-f08b-e601-8ff5" page="83" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Friendly SYAR units start the battle within 2 aetherquartz reserves instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2d54-2db8-e41f-4510" name="SYAR" hidden="false" targetId="80ff-7864-3c07-b479" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4f7e-9950-f2dc-faee" name="Iliatha" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0f33-f673-3519-20be" name="Unity of Purpose" publicationId="917d-f08b-e601-8ff5" page="84" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Once per turn, you can say that 2 friendly ILIATH VANARI units will use their aetherquartz reserves to use an aetherquartz reserve ability in the same phase instead of only 1.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cb6d-4b10-9a08-bf09" name="ILIATHA" hidden="false" targetId="c428-1919-c7df-fc14" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6b1c-dfa1-b5c3-4d92" name="Zaitrec" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="81a4-e57a-1116-c424" name="Lambent Mystics" publicationId="917d-f08b-e601-8ff5" page="84" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to casting, dispelling and unbinding rolls for friendly ZAITREC WIZARDS.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4aa8-70f6-2163-98ca" name="ZAITREC" hidden="false" targetId="1a40-f5ac-27ca-2b2c" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="36e9-4b70-719c-5446" name="Alumnia" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f839-da4a-b0c5-112a" name="Claim the Field" publicationId="917d-f08b-e601-8ff5" page="85" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the base of each model in a friendly ALUMNIA VANARI unit is touching the bases of 2 or more models in the same unit, each model in that unit that is within 6" of an objective counts as 2 models for the purposes of contesting that objective.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ad3b-c527-ccd9-27e8" name="Helon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9b42-f5c2-0f74-e2a1" name="Gale of Killing Shafts" publicationId="e7c6-db82-5f81-a6a4" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">In your shooting phase, when you pick a friendly HELON unit to shoot, you can say that it will unleash a gale of killing shafts. If you do so, in that phase, you can add 1 to hit rolls and wound rolls for that unit’s missile weapons, but that unit can only target enemy units within 6" of it.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3747-0abb-f1c7-a143" name="Vanari Dawnriders" publicationId="917d-f08b-e601-8ff5" page="105" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="c7a4-dfe4-ade3-9a92">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="43c3-c915-f204-94d6" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="7d69-76d9-0dd8-cc8c" name="Lances of the Dawn" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit made a charge move in the same turn, add 1 to wound rolls for attacks made with this unit’s Sunmetal Lances and improve the Rend characteristic of that weapon by 1.</characteristic>
</characteristics>
</profile>
<profile id="b5fa-c1d8-94e8-2f85" name="Sunmetal Weapons" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made by this unit is 6, that attack inflicts 1 mortal wound on the target and the attack sequence ends (do not make a wound or save roll). This ability has no effect on attacks made by this unit's mounts.</characteristic>
</characteristics>
</profile>
<profile id="ab78-33df-8c0d-6717" name="Deathly Furrows" 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 combat phase, you can say that this unit will use its Deathly Furrows ability. If you do so, in that phase, you can either add 1 to the Attacks characteristic of this unit’s melee weapons, but it can only target units that have a Wounds characteristic of 1 or 2 and do not have a mount, or you can add 2 to the Attacks characteristic of this unit’s melee weapons, but it can only target units that have a Wounds characteristic of 1 and do not have a mount.</characteristic>
</characteristics>
</profile>
<profile id="cf97-01e3-db71-6b54" name="Wizard (Steedmaster)" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Power of Hysh</characteristic>
</characteristics>
</profile>
<profile id="22eb-a773-315c-f7c5" name="Vanari Dawnriders" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="54c7-6849-43e0-a66e" name="Shining Company" 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 this unit if the base of each model in this unit is touching the bases of 2 or more other models in the same unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="49c6-fca0-d00f-455c" name="Power of Hysh" hidden="false" targetId="d1d7-5f61-4f19-5b5f" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="94f1-bd4f-5e87-7a78" name="AELF" hidden="false" targetId="a5b9-bc50-8b42-8152" primary="false"/>
<categoryLink id="0045-13bd-5d7a-3fb3" name="DAWNRIDERS" hidden="false" targetId="cdcd-ad32-37d3-ce1d" primary="false"/>
<categoryLink id="03dc-cd5b-95a3-b082" name="VANARI" hidden="false" targetId="e242-d4cd-5ab5-5586" primary="false"/>
<categoryLink id="fff2-db03-a8e4-c46a" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="3819-b27e-aa5f-06e4" name="LUMINETH REALM-LORDS" hidden="false" targetId="a64e-c067-e836-3c21" primary="false"/>
<categoryLink id="e2bb-eacd-ba8d-c0b7" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9187-7c51-b869-afee" name="5 Vanari Dawnriders" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="10 Vanari Dawnriders">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="15 Vanari Dawnriders">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="312b-3ab4-870e-bf1d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1221-de05-a4e9-309d" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</selectionEntry>
<selectionEntry id="3f62-7e04-356a-274a" name="Steedmaster" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="96fe-d7cb-e494-c06c" value="0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96fe-d7cb-e494-c06c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c799-22ba-d298-8e49" type="max"/>
</constraints>
<profiles>
<profile id="fc78-32bc-3168-7348" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Steedmaster. A Steedmaster is armed with a Sunmetal Lance and a Guardian’s Sword.
The Steedmaster of this unit is a WIZARD while this unit has 3 or more models.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="2754-c373-df58-7799" name="Guardian's Sword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="374c-6b86-d51a-992d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0fa5-1588-1a7d-0bcd" type="max"/>
</constraints>
<profiles>
<profile id="9de3-8239-ec0f-69e2" name="Guardian's Sword" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ae76-2c33-447f-252a" name="Dashing Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7714-cfe8-5bd4-d01b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c74-8bb4-f431-2dbc" type="max"/>
</constraints>
<profiles>
<profile id="4f11-7634-fd0a-b1ce" name="Dashing Hooves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b4f4-455b-5110-1807" name="Sunmetal Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6fe6-9006-1d37-b412" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b38-5a9c-c351-ff9d" type="max"/>
</constraints>
<profiles>
<profile id="606e-72ef-f75b-aef3" name="Sunmetal Lance" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4f6f-efa1-dff7-3494" name="Standard Bearer" hidden="false" collective="false" import="true" targetId="4375-bc92-f8f9-9836" type="selectionEntry">
<modifiers>
<modifier type="increment" field="0d1b-4d2b-27c9-b9f9" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d1b-4d2b-27c9-b9f9" type="max"/>
</constraints>
</entryLink>
<entryLink id="a7a5-0ddd-d5c3-60d9" name="Battalions" hidden="false" collective="false" import="true" targetId="df33-b274-b965-f65e" type="selectionEntryGroup"/>
<entryLink id="7cc8-bb50-4afa-6ebc" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ec4-a3a6-bcb5-f757" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink id="0b51-1cdc-08ee-fb4c" name="Spell Lores" hidden="false" collective="false" import="true" targetId="3a17-eca0-d1c0-8fca" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4375-bc92-f8f9-9836" name="Standard Bearer" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="1d81-2a3e-98e9-a840" value="0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d81-2a3e-98e9-a840" type="min"/>
</constraints>
<profiles>
<profile id="a4e1-9870-96bd-9a44" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 5 models in this unit can be a Standard Bearer. You can re-roll battleshock tests for units that include any Standard Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3b53-dbf5-8f73-b10d" name="Vanari Auralan Wardens" publicationId="917d-f08b-e601-8ff5" page="104" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="c7a4-dfe4-ade3-9a92">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="43c3-c915-f204-94d6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="6a0a-ce17-bcc9-2250" name="Vanari Auralan Wardens" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="16fb-4d21-9ff7-6655" name="Wall of Blades" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the target unit made a charge move in the same turn, add 1 to wound rolls for attacks made with this unit’s Warden’s Pikes and improve the Rend characteristic of that weapon by 1.</characteristic>
</characteristics>
</profile>
<profile id="4b22-6134-b50c-631a" name="Wizard (High Warden)" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Power of Hysh</characteristic>
</characteristics>
</profile>
<profile id="a1d2-bd03-7a70-de6c" name="Shining Company" 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 this unit if the base of each model in this unit is touching the bases of 2 or more other models in the same unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f4bb-2e51-79a1-ec96" name="Power of Hysh" hidden="false" targetId="d1d7-5f61-4f19-5b5f" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e367-3a48-cc51-19e3" name="AELF" hidden="false" targetId="a5b9-bc50-8b42-8152" primary="false"/>
<categoryLink id="8118-a582-3062-f060" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="2108-38df-a7cd-a685" name="AURALAN WARDENS" hidden="false" targetId="8856-e945-3c75-2c04" primary="false"/>
<categoryLink id="1350-0624-75c0-3f2f" name="VANARI" hidden="false" targetId="e242-d4cd-5ab5-5586" primary="false"/>
<categoryLink id="a04a-9ae6-bf8d-e3e3" name="LUMINETH REALM-LORDS" hidden="false" targetId="a64e-c067-e836-3c21" primary="false"/>
<categoryLink id="29a6-fd65-7c25-c8f8" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="86ee-3d70-7f3e-8a40" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3647-edfd-338b-b854" name="10 Vanari Auralan Wardens" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Vanari Auralan Wardens">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="20 Vanari Auralan Wardens">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7187-4c14-0a56-4b5f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d136-b5bf-2a84-118a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</selectionEntry>
<selectionEntry id="b4fb-b0b9-41d6-022f" name="High Warden" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5196-5b00-6214-f729" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2aad-965a-e2c2-1750" type="max"/>
</constraints>
<profiles>
<profile id="9b02-cfcd-5ee4-16ac" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a High Warden. A High Warden is armed with a Champion’s Blade instead of a Warden’s Pike.
The High Warden of this unit is a WIZARD while this unit has 5 or more models.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="d6cc-57e2-81d0-e7a5" name="Champion's Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cbf-f502-e0a9-9cbf" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8697-46c5-1316-faaf" type="max"/>
</constraints>
<profiles>
<profile id="3d12-e56d-aea3-40a4" name="Champion's Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1893-d618-6e53-cfed" name="Warden's Pike" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d960-97ad-200b-5c65" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="463c-e66c-b5b1-a220" type="max"/>
</constraints>
<profiles>
<profile id="9878-9084-15bc-3107" name="Warden's Pike" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="c5c6-649f-ea5b-3a86" name="Sunmetal Weapons" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with a melee weapon is 6, that attack inflicts 1 mortal wound on the target and the attack sequence ends (do not make a wound or save roll).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="246e-ad7f-dfd6-42de" name="Battalions" hidden="false" collective="false" import="true" targetId="df33-b274-b965-f65e" type="selectionEntryGroup"/>
<entryLink id="3537-95f3-8e1d-907f" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink id="cd0c-2337-4c0c-4f80" name="Spell Lores" hidden="false" collective="false" import="true" targetId="3a17-eca0-d1c0-8fca" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="723c-27b0-a0d6-c7df" name="The Light of Eltharion" publicationId="917d-f08b-e601-8ff5" page="100" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="c7a4-dfe4-ade3-9a92">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="43c3-c915-f204-94d6" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d116-2f07-ea43-eedd" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43ea-5f4a-6542-5d2b" type="max"/>
</constraints>
<profiles>
<profile id="6c44-9c99-f3cc-ed17" name="The Light of Eltharion" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="af93-ba36-2239-259f" name="Searing Darts of Light" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your shooting phase, you can pick 1 enemy unit within 18" of this unit that is visible to it and roll a dice. On a 1, nothing happens. On a 2-4, that unit suffers D3 mortal wounds. On a 5+, that unit suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="a9da-2428-52f7-807a" name="Supreme Swordmaster" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Ignore negative modifiers when making hit rolls for attacks made by this unit. In addition, if the unmodified hit roll for an attack made by this unit is 6, that attack scores 2 hits on the target instead of 1. Make a wound and save roll for each hit.</characteristic>
</characteristics>
</profile>
<profile id="c4e3-3695-69df-624a" name="Spirit Armour" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Ignore modifiers (positive or negative) when making save rolls for attacks that target this unit. In addition, halve the damage inflicted by attacks made with missile weapons or melee weapons that target this unit (rounding up).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cc8a-4c6d-fbd9-b681" name="AELF" hidden="false" targetId="a5b9-bc50-8b42-8152" primary="false"/>
<categoryLink id="1b6a-170b-ab6f-b573" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="6239-018b-7f9e-ca07" name="LIGHT OF ELTHARION" hidden="false" targetId="fb8f-1a73-179d-e1f2" primary="false"/>
<categoryLink id="78d1-8519-c7e1-336e" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="6b12-b7c5-31e9-ae0e" name="LUMINETH REALM-LORDS" hidden="false" targetId="a64e-c067-e836-3c21" primary="false"/>
<categoryLink id="50fb-8a70-73d0-b9db" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="2c57-c8ef-9a24-5269" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="902e-1ae2-8d77-5239" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2943-da0b-c4c5-689e" name="Fangsword of Eltharion" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac0a-d6d6-d850-bd94" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="95a5-1cd0-5221-d28c" type="max"/>
</constraints>
<profiles>
<profile id="489c-66ac-d066-e7f5" name="Fangsword of Eltharion" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">2+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-3</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="3003-7119-06d7-fca5" name="Fangsword of Eltharion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to wound rolls for attacks made with this unit’s Fangsword of Eltharion if this unit made a charge move in the same turn. In addition, if the unmodified wound roll for an attack made with this unit’s Fangsword of Eltharion is 6, that attack inflicts 1 mortal wound on the target in addition to any normal damage.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="548b-ae95-7800-80c8" name="Celennari Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="192d-8dc9-3851-9c2a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2bbe-a85a-04e8-4552" type="max"/>
</constraints>
<profiles>
<profile id="43c5-00a6-53de-723a" name="Celennari Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">2+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="a6ab-6080-a1e2-87db" name="Celennari Blade" 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 combat phase, you can pick 1 enemy HERO or MONSTER within 3" of this unit. If you do so, attacks made with this unit's Celennari Blade that target that HERO or MONSTER in that phase have a Damage characteristic of 2D3 instead of 3.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="db74-4a2c-be82-c812" name="General" hidden="false" collective="false" import="true" targetId="ad2a-0c5e-e657-4141" type="selectionEntry">
<categoryLinks>
<categoryLink id="9986-2e28-d133-ff10" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="12d1-bc25-ba2f-487f" name="Battalions" hidden="false" collective="false" import="true" targetId="df33-b274-b965-f65e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="240"/>
</costs>
</selectionEntry>
<selectionEntry id="ad2a-0c5e-e657-4141" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d1ad-6fd4-e06a-ac02" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b4c9-6de6-77b9-0d4a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="b09c-620c-d61e-3c39" name="General" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9d49-6a12-a92e-d50b" name="Alarith Stonemage" publicationId="917d-f08b-e601-8ff5" page="110" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="c7a4-dfe4-ade3-9a92">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="43c3-c915-f204-94d6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="63b0-5e91-68fc-172c" name="Stonemage Stance" 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 combat phase, you can say that this unit will adopt the Stonemage Stance. If you do so, this unit and any friendly ALARITH STONEGUARD units wholly within 12" of this model cannot make a pile-in move in that phase. However, until the end of that phase, improve the Rend characteristic of melee weapons used by 1.</characteristic>
</characteristics>
</profile>
<profile id="2192-92bc-1549-2067" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Gravitic Redirection, Arcane Bolt, Mystic Shield</characteristic>
</characteristics>
</profile>
<profile id="e784-89da-4721-6a41" name="Gravitic Redirection" 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, until your next hero phase, the caster can fly. In addition, you can pick 1 enemy unit within range and visible to the caster. If you do so, until your next hero phase, that unit's Move characteristic is halved and it cannot fly.</characteristic>
</characteristics>
</profile>
<profile id="3454-e5a7-ef9d-a3c6" name="Alarith Stonemage" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2e31-6dba-307c-f1f3" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="ebad-9bfe-fb2d-afa7" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
<infoLink id="20f7-6451-ebfe-9f16" name="Enduring as Rock" hidden="false" targetId="b356-d7e1-c82a-7d35" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c7f2-8726-2a60-e315" name="AELF" hidden="false" targetId="a5b9-bc50-8b42-8152" primary="false"/>
<categoryLink id="bad6-83bf-bbd3-1b70" name="AELEMENTIRI" hidden="false" targetId="defb-7b72-1b70-27ea" primary="false"/>
<categoryLink id="0ead-eb8b-843b-9469" name="ALARITH" hidden="false" targetId="8170-5783-52c4-c74b" primary="false"/>
<categoryLink id="3861-2580-e1fc-4ecc" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="8ef4-ae6d-eb53-debe" name="LUMINETH REALM-LORDS" hidden="false" targetId="a64e-c067-e836-3c21" primary="false"/>
<categoryLink id="7336-2877-8345-4d6b" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="397f-c423-feb9-dc2a" name="STONEMAGE" hidden="false" targetId="2a5f-ab45-129b-1ef9" primary="false"/>
<categoryLink id="54d5-3c2b-2f71-9262" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="9a31-21ec-1962-8741" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="2327-8838-8a18-4c1c" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="2dac-49ea-1dd8-ee12" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e0bd-b499-58dd-9d8a" name="Staff of the High Peaks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ef8c-1277-6db5-c27a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f59-bb5a-1580-6fb5" type="max"/>
</constraints>