forked from BSData/The-9th-Age
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theNinthAge-FantasyBattles.gst
2202 lines (2147 loc) · 178 KB
/
theNinthAge-FantasyBattles.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="aa64-1e8e-66fc-9abf" name="The 9th Age: Fantasy Battles 2nd Edition 2023 Beta 2" revision="55" battleScribeVersion="2.03" authorName="DarkSky" authorUrl="https://www.the-ninth-age.com/community/index.php?board-list/" xmlns="http://www.battlescribe.net/schema/gameSystemSchema">
<costTypes>
<costType id="24fd-8af8-0c78-001c" name="pts" defaultCostLimit="-1.0" hidden="false"/>
</costTypes>
<profileTypes>
<profileType id="8292-1fb8-8251-29a9" name="1 Global">
<characteristicTypes>
<characteristicType id="b0d9-2dab-f10b-9b13" name="Adv"/>
<characteristicType id="db10-a838-f72f-3ed6" name="Mar"/>
<characteristicType id="be28-67a6-2280-9eaf" name="Dis"/>
<characteristicType id="8f96-9d74-2aaa-da9d" name="Rules"/>
</characteristicTypes>
</profileType>
<profileType id="154c-6605-1486-e1da" name="3 Offensive">
<characteristicTypes>
<characteristicType id="8265-800f-bc87-d00a" name="Att"/>
<characteristicType id="7d3b-bb95-3d29-26f7" name="Off"/>
<characteristicType id="4d4a-2100-804f-99e5" name="Str"/>
<characteristicType id="7a8c-adb0-d1b8-a1b6" name="AP"/>
<characteristicType id="2a23-367f-8828-c297" name="Agi"/>
<characteristicType id="44e9-6a3e-7471-8b36" name="Rules"/>
</characteristicTypes>
</profileType>
<profileType id="e7d3-5099-e669-c365" name="2 Defensive">
<characteristicTypes>
<characteristicType id="f381-7850-7fa8-3440" name="HP"/>
<characteristicType id="160d-4624-273f-2114" name="Def"/>
<characteristicType id="ec15-bc66-645e-db5d" name="Res"/>
<characteristicType id="597b-8735-3dd1-0e70" name="Arm"/>
<characteristicType id="91c5-9d30-bda7-cf14" name="Rules"/>
</characteristicTypes>
</profileType>
<profileType id="a00c-d586-ee68-ed21" name="6 Ranged Weapon">
<characteristicTypes>
<characteristicType id="c2a8-bc01-360c-6aca" name="Range"/>
<characteristicType id="6867-dcc2-7874-e3b4" name="Shots"/>
<characteristicType id="f166-13ff-9227-4525" name="Str"/>
<characteristicType id="857a-4ce1-d134-8701" name="AP"/>
<characteristicType id="d988-3828-5f00-7582" name="Attributes"/>
</characteristicTypes>
</profileType>
<profileType id="658e-7f7b-4e4f-162a" name="4 Armour">
<characteristicTypes>
<characteristicType id="017b-143b-0520-bdc1" name="Type"/>
<characteristicType id="4ca3-2498-f356-f056" name="Save"/>
<characteristicType id="f269-16dd-a614-0f90" name="Rules"/>
</characteristicTypes>
</profileType>
<profileType id="5bba-441c-01cb-6187" name="7 Artefact">
<characteristicTypes>
<characteristicType id="d779-a728-a38c-8340" name="Type"/>
<characteristicType id="9f42-950f-d2ed-9247" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="a32f-208a-be3d-ad8d" name="5 Melee Weapon">
<characteristicTypes>
<characteristicType id="7d4e-b182-dd11-52a0" name="Str"/>
<characteristicType id="646b-1e72-1589-5083" name="AP"/>
<characteristicType id="048a-df92-bb5b-6de9" name="Attributes"/>
</characteristicTypes>
</profileType>
<profileType id="7733-ad26-4b46-6a5a" name="0 Size">
<characteristicTypes>
<characteristicType id="0d1d-aeaf-8f31-fd17" name="Height"/>
<characteristicType id="1176-4910-e04b-f1c5" name="Type"/>
<characteristicType id="7bbb-3d47-ed57-284d" name="Base"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="4bcd-01c8-ce5e-7108" name="Core" hidden="false"/>
<categoryEntry id="f8f1-3d4f-12bf-73cd" name="Special" hidden="false"/>
<categoryEntry id="953d-22cd-7ee1-36dc" name="Characters" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="16e8-e66f-0b41-756b" name="~ Dummy ~" hidden="true"/>
</forceEntries>
<sharedSelectionEntries>
<selectionEntry id="dd27-6738-aebc-192e" name="Light Armour" 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="c162-a646-5acd-5058" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2e20-006e-1fd8-cbbd" name="Light Armour" hidden="false" targetId="ceb4-e216-c1ec-56a4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c015-e52d-3852-27ea" name="Heavy Armour" 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="f485-3ff7-1641-4829" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f0df-0fb2-1055-6a25" name="Heavy Armour" hidden="false" targetId="37ab-dde5-6b99-7c67" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f49b-1010-24f1-f23b" name="Plate Armour" 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="faa0-e44c-e408-c61f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8e30-a95c-1572-f73e" name="Plate Armour" hidden="false" targetId="85fa-68ac-214d-2f4b" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff97-a295-86c8-76d5" name="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="d158-aeff-6968-2615" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0125-f6f2-650f-9c01" name="Shield" hidden="false" targetId="1da1-0128-4bf2-cf8d" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e79a-e00b-b0ee-6850" name="Spear" 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="8a37-3686-46d8-6eb0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8a3d-bebe-849b-e426" name="Spear" hidden="false" targetId="c18a-75bb-fa2f-f7cf" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6a41-63a5-c5f6-66f6" name="Paired Weapons" 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="236a-7e57-0706-fc14" type="max"/>
</constraints>
<infoLinks>
<infoLink id="421f-ae08-b81b-a874" name="Paired Weapons" hidden="false" targetId="06d7-e62c-0123-95ec" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b10f-350c-0581-f9c2" name="Lance" 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="2ff1-d7f1-dfdc-8762" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f3df-4e1e-c05f-04d5" name="Lance" hidden="false" targetId="f1a1-62ad-69ea-9d18" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8dad-9602-9dd1-7698" name="Crossbow" 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="dece-abfb-1646-28f2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="dd7d-4f2a-dab3-aa30" name="Crossbow" hidden="false" targetId="fdf6-3c15-644b-1ced" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e2c0-2230-5a1a-1f08" name="Bow" 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="4382-0938-eb2f-87d2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="765e-c4e1-998e-0a57" name="Bow" hidden="false" targetId="a564-30bf-f33f-f20d" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2837-ec0d-956f-690a" name="Great Weapon" 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="c73d-37e8-2340-287d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fdb9-447a-b77b-fb08" name="Great Weapon" hidden="false" targetId="ce6c-6fd5-c795-da76" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="544f-9331-9cce-694d" name="Halberd" 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="b311-493d-9678-8b90" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4750-144d-fdb2-7f3e" name="Halberd" hidden="false" targetId="680b-8e56-dff9-240c" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc20-7463-8302-21b4" name="Longbow" 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="cb60-f5ed-2fc9-4921" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a538-8323-787c-6cde" name="Longbow" hidden="false" targetId="245b-baaf-f5ec-e168" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bdc6-e116-53be-d2ae" name="Pistol" 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="f540-01da-46f0-6811" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1fd0-456b-1ad2-ff1c" name="Pistol" hidden="false" targetId="12c1-3184-6230-c142" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b672-9729-1d95-cb6d" name="Throwing Weapons" 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="e829-ad61-66b7-5b70" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6178-75fa-e100-5737" name="Throwing Weapons" hidden="false" targetId="8c83-06ff-024f-a235" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7efd-252a-dcad-fa35" name="Light Lance" 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="b7cd-87e0-ef2f-540a" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3797-3f0b-f854-c656" name="Light Lance" hidden="false" targetId="8460-7bb5-aa92-d6ee" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3f7d-5a54-b1ca-550f" name="Binding Scroll" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="0533-e602-37d0-79cd" value="4.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="0533-e602-37d0-79cd" value="1.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4f02-3f8e-7013-7cb4" type="max"/>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0533-e602-37d0-79cd" type="max"/>
</constraints>
<profiles>
<profile id="ddd8-7819-7e35-e366" name="Binding Scroll" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">One use only. May be activated after siphon the veil. When activated, pick an enemy model and select one of its spells (including Attribute and Bound Spells). The chosen model cannot cast the selected spell during this Magic Phase. Only a single Binding Scroll may be activated during the same Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="65.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f996-0dd2-7d1f-17fe" name="Crown of Autocracy (not with Not A Leader)" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="10ee-597b-7691-dc42" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4163-e9f4-70b3-775a" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="10ee-597b-7691-dc42" type="max"/>
</constraints>
<profiles>
<profile id="3296-1a1d-fa61-756d" name="Crown of Autocracy" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">Cannot be taken by models with Not a Leader.
The model's range of Commanding Presence (if available) is increased by 3", up to a maximum of 18". If the model does not have Commanding Presence, it gains Commanding Presence whose range is always set to 3".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="28c9-d1c6-a0c8-d695" name="Crown of the Wizard King" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="7520-60ab-8f28-6061" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1828-5940-a898-08ac" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7520-60ab-8f28-6061" type="max"/>
</constraints>
<profiles>
<profile id="2982-08f1-f536-f51b" name="Crown of the Wizard King" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">During Spell Selection, randomise a magic Path (from all Paths in The 9th Age: Fantasy Battles - Paths of Magic). The bearer is a Wizard Apprentice using the randomised Path. It cannot select the Hereditary Spell.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ef67-0a29-6d5c-687c" name="°Crystal Ball" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="2893-a2ca-9621-f623" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="89dc-15b7-96ab-ea9f" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1a15-8ac5-586b-1b94" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="02ee-20af-e439-e56f" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="89dc-15b7-96ab-ea9f" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2893-a2ca-9621-f623" type="max"/>
</constraints>
<profiles>
<profile id="3f5d-84aa-6629-c4e6" name="Crystal Ball" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The first Dispelling Attempt in each friendly Magic Phase gains a +2 Dispelling Modifier, provided the bearer is on the Battlefield.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="45.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b996-d7ae-e854-2601" name="Dragon Staff" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="bbd3-3550-c358-b9e9" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="cf4d-573e-5b14-f5df" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bbd3-3550-c358-b9e9" type="max"/>
</constraints>
<profiles>
<profile id="121b-db3e-587a-ec4c" name="Dragon Staff" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer gains Breath Attack (Strength 3, Armour Penetration 0, Flaming Attacks).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="57fe-c8e7-f786-132c" name="Dragonfire Gem" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="8d77-0788-23ea-166c" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0cc1-fa28-1661-956f" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8d77-0788-23ea-166c" type="max"/>
</constraints>
<profiles>
<profile id="d275-4b93-adb6-e803" name="Dragonfire Gem" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer gains Aegis (3+, against Flaming Attacks). The bearer automatically fails all Fortitude Saves.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3d77-9d65-58c3-9e7d" name="Lightning Vambraces" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="b190-6df3-1803-f935" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0111-aed8-93df-9973" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b190-6df3-1803-f935" type="max"/>
</constraints>
<profiles>
<profile id="2806-17d8-e125-0f85" name="Lightning Vambraces" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer can cast Hand of Heaven (Thaumaturgy) as a bound spell, with Power Level (4/8)</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ebd9-2cee-402a-4ff4" name="Lucky Charm" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="f5c6-2684-9a12-e8c2" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d5c0-6e49-2bc3-cab3" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f5c6-2684-9a12-e8c2" type="max"/>
</constraints>
<profiles>
<profile id="1023-7aaa-0f49-6c33" name="Lucky Charm" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">One use only. May be activated when the bearer's model fails an Armour Save. This failed Armour Save may be rerolled.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="717c-cdd1-f368-649a" name="Obsidian Rock" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="c67b-4d65-7959-fcad" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3df8-0966-ed17-ee75" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c67b-4d65-7959-fcad" type="max"/>
</constraints>
<profiles>
<profile id="d78a-cd47-7008-aded" name="Obsidian Rock" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer gains Magic Resistance (2).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="589f-da5c-20ba-5f1a" name="Potion of Strength" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="9bac-fc91-af4b-e93d" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fb32-3b95-1e6c-9a05" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9bac-fc91-af4b-e93d" type="max"/>
</constraints>
<profiles>
<profile id="542b-248a-3536-5381" name="Potion of Strength" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">Cannot be taken by models with Towering Presence. One use only. May be activated at the start of any Phase or Round of Combat. Until the end of the Player Turn the bearer gains Crush Attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fc3e-7023-b3ce-8579" name="Potion of Swiftness" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="1b81-fea2-1f62-ddf9" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="579c-0a47-7f43-2f98" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1b81-fea2-1f62-ddf9" type="max"/>
</constraints>
<profiles>
<profile id="8994-59fe-6b49-825f" name="Potion of Swiftness" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">One use only. May be activated at the start of any Phase or Round of Combat. Until the end of the Player Turn, the bearer gains +3 Agility.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="538d-5665-58a8-281d" name="Ranger's Boots" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="ab93-3140-445c-9de6" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1ffa-67cd-68eb-1267" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ab93-3140-445c-9de6" type="max"/>
</constraints>
<profiles>
<profile id="6a20-41d9-409c-9020" name="Ranger's Boots" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">Standard size infantry models on foot only. The bearer gains Strider and, unless using Flying Movement, gains +2 Advance Rate up to a maximum of 10, and +4 March Rate up to a maximum of 20.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2078-81dc-eac0-b856" name="Rod of Battle" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="0b86-31b2-574f-645e" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4632-77ba-878a-d216" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0b86-31b2-574f-645e" type="max"/>
</constraints>
<profiles>
<profile id="2578-ad31-a24c-3915" name="Rod of Battle" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer can cast a Bound Spell, Power Level (4/8): Type: Augment. Range 18′′. Duration: One Turn. The target gains +1 to hit with its Close Combat Attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="52aa-545b-5fc8-64fe" name="Scepter of Power" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="19eb-8b4c-d707-8268" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5967-7f82-f3fb-1325" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="19eb-8b4c-d707-8268" type="max"/>
</constraints>
<profiles>
<profile id="75d6-dab9-6135-972d" name="Scepter of Power" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">One use only. A Wizard with this Artefact may add a single Magic Dice from its Dice Pool to one of its casting rolls or dispel rolls, after seeing the casting or dispel froll. (Note that casting rolls cannot exceed the limit of max 5 Magic Dice.)</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8cca-6eee-ecd5-1620" name="Talisman of Shielding" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="8fda-8f2c-9c0f-c4d5" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c4d9-6201-993c-7c61" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8fda-8f2c-9c0f-c4d5" type="max"/>
</constraints>
<profiles>
<profile id="13bb-bdd6-edab-0da3" name="Talisman of Shielding" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer gains Aegis (5+).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bc10-9582-1642-6f0e" name="Talisman of the Void" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="f56f-401d-a2b5-14a1" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4093-7621-0d1b-0dfa" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f56f-401d-a2b5-14a1" type="max"/>
</constraints>
<profiles>
<profile id="dba4-fd02-72e4-9881" name="Talisman of the Void" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer gains Channel (+1)</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="02ee-20af-e439-e56f" name="°Book of Arcane Mastery (not on Wizard Master)" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="d9d0-13ea-3f62-0d61" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1a15-8ac5-586b-1b94" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef67-0a29-6d5c-687c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="fd14-0482-e23a-ef29" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d9d0-13ea-3f62-0d61" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fd14-0482-e23a-ef29" type="max"/>
</constraints>
<profiles>
<profile id="25e1-86d3-6929-6ea0" name="Book of Arcane Mastery" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">Unless the bearer has Protean Magic, it knows one additional Learned Spell that it selects from the Learned Spells 1, 2, 3, and 4 of its chosen Path. In addition, the bearer cannot cast the Hereditary Spell.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3db5-8d52-cfe9-fbfa" name="Essence of a Free Mind" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="f865-a3c5-c1c3-e973" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="73b8-f867-8841-bdf9" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f865-a3c5-c1c3-e973" type="max"/>
</constraints>
<profiles>
<profile id="0816-fdf4-0942-c0f5" name="Essence of a Free Mind" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">A Wizard with this Artefact may select up to two Paths on its Army List instead of one (from the ones normally available to it). Select which of the two Paths to use during Spell Selection. The bearer cannot select from the Learned Spells 5 and 6 of its chosen Path.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1a15-8ac5-586b-1b94" name="°Magical Heirloom" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="09fb-61bf-d2b2-eb15" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="02ee-20af-e439-e56f" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef67-0a29-6d5c-687c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="a514-8cb4-1139-9905" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="09fb-61bf-d2b2-eb15" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a514-8cb4-1139-9905" type="max"/>
</constraints>
<profiles>
<profile id="2816-552b-a5ad-0be7" name="Magical Heirloom" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Artefact</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">A Wizard with this Artefact knows the Hereditary Spell in addition to its other spells.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a96-40ff-7fb6-54a0" name="Aether Icon" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="3290-f93c-4203-1ed8" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
<modifier type="set" field="3290-f93c-4203-1ed8" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e301-4817-97c9-61ee" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3290-f93c-4203-1ed8" type="max"/>
</constraints>
<profiles>
<profile id="16ae-d3dc-ae73-6dd9" name="Aether Icon" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer’s unit gains Magic Resistance (1). If the unit already had Magic Resistance, it instead increases the Magic Resistance value by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd1e-b521-5357-bc0e" name="Banner of Discipline" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="0f3d-dc64-2d8e-fea1" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
<modifier type="set" field="0f3d-dc64-2d8e-fea1" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a2e6-5898-c18e-073d" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0f3d-dc64-2d8e-fea1" type="max"/>
</constraints>
<profiles>
<profile id="8b19-2cd0-d82f-8cd0" name="Banner of Discipline" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer's unit may reroll failed Panic Tests and Decimated Tests. If the Battle Standard Bearer or the General is part of the bearer’s unit, it automatically passes all its Panic Tests and Decimated Tests instead.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c253-ce04-6c42-8bf6" name="Banner of Speed" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="d519-ce01-461a-a9f0" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
<modifier type="set" field="d519-ce01-461a-a9f0" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b8ec-88fe-1802-034c" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d519-ce01-461a-a9f0" type="max"/>
</constraints>
<profiles>
<profile id="fa8a-e1b3-e78b-31f1" name="Banner of Speed" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">A unit with one or more Banners of Speed gains +1 Advance Rate and +2 March Rate.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6454-0e64-e88b-0afa" name="Banner of the Relentless Company" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="18d3-e6b2-9af0-18e2" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
<modifier type="set" field="18d3-e6b2-9af0-18e2" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="65fc-77a6-bc7d-708b" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="18d3-e6b2-9af0-18e2" type="max"/>
</constraints>
<profiles>
<profile id="d633-f98b-a73c-30dd" name="Banner of the Relentless Company" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">One use only. May be activated during the owner’s Movement Phase. All Infantry models in the bearer’s unit always have March Rate 15′′ with the following restrictions:
• Characters cannot voluntarily leave the bearer’s unit.
• The bearer’s unit cannot perform any Shooting Attacks.
• Only a single Banner of the Relentless Company may be activated during the same phase.
The effects last until the end of the Player Turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="58a9-c83f-8819-4bfa" name="Flaming Standard" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="7194-2105-0fb1-913d" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="7194-2105-0fb1-913d" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5ac7-02ae-0ab4-ee85" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7194-2105-0fb1-913d" type="max"/>
</constraints>
<profiles>
<profile id="df84-d89e-d616-b9c0" name="Fire Banner" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">One use only. May be activated at the start of a Round of Combat or before shooting with the bearer’s unit. The bearer's unit gains Flaming Attacks. If activated when Engaged in Combat, effects lasts until the bearer’s unit is no longer Engaged in Combat. If activated before Shooting with the bearer’s unit, this effect lasts until end of the Phase. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e2f6-29ee-8b26-9f6e" name="Legion Standard" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="a5f4-90b2-83e6-606e" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
<modifier type="set" field="a5f4-90b2-83e6-606e" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0554-097b-043f-0296" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a5f4-90b2-83e6-606e" type="max"/>
</constraints>
<profiles>
<profile id="221d-73a7-1abc-a35b" name="Legion Standard" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">A unit with one Legion Standard increases the maximum of its Rank Bonus by +1 (normally this means the unit can add up to 4 Full Ranks to its Combat Score). A unit with two Legion Standards increases the maximum of its Rank Bonus by +2 instead.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1339-adda-070d-906c" name="Stalker's Standard" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="1ae1-5497-4f16-c5b7" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="3000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atMost"/>
</conditions>
</modifier>
<modifier type="set" field="1ae1-5497-4f16-c5b7" value="6.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d603-9133-33a0-7df8" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1ae1-5497-4f16-c5b7" type="max"/>
</constraints>
<profiles>
<profile id="15df-81ad-6235-983b" name="Stalker's Standard" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Banner</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The bearer's unit gains Strider</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="98fe-a333-8a21-dcb0" name="Alchemist's Alloy" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="22bb-70bd-571d-6017" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fe44-8d00-aa93-3344" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="22bb-70bd-571d-6017" type="max"/>
</constraints>
<profiles>
<profile id="63b1-1708-e7a2-6a08" name="Alchemist's Alloy" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Suit of Armour Enchantment</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The wearer gains +1 Armour and suffers -2 Offensive Skill.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5348-8c71-c793-57f3" name="Basalt Infusion" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="5490-f0a4-8106-e9b5" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a676-50d6-34dd-4c20" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5490-f0a4-8106-e9b5" type="max"/>
</constraints>
<profiles>
<profile id="f1e5-a0ac-15a9-364c" name="Basalt Infusion" hidden="false" typeId="5bba-441c-01cb-6187" typeName="7 Artefact">
<characteristics>
<characteristic name="Type" typeId="d779-a728-a38c-8340">Suit of Armour Enchantment</characteristic>
<characteristic name="Effect" typeId="9f42-950f-d2ed-9247">The wearer gains +1 Armour and Aegis (3+, against Flaming Attacks). The wearer automatically fails all Fortitude saves.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cba2-e616-5486-217b" name="Death Cheater" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="472d-0bff-19ad-b513" value="2.0">
<conditions>
<condition field="limit::24fd-8af8-0c78-001c" scope="roster" value="8000.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>