-
Notifications
You must be signed in to change notification settings - Fork 47
/
Warhammer_Fantasy_4th_ed.gst
4295 lines (4289 loc) · 296 KB
/
Warhammer_Fantasy_4th_ed.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="417a-57eb-6f3e-81c9" name="Warhammer Fantasy 4th ed" revision="6" battleScribeVersion="2.03" authorName="Tilioch" authorContact="" xmlns="http://www.battlescribe.net/schema/gameSystemSchema">
<publications>
<publication id="d9e7-add3-773e-ffab" name="Rulebook"/>
</publications>
<costTypes>
<costType id="eaa7-6800-e651-8bea" name="pts" defaultCostLimit="-1.0"/>
</costTypes>
<profileTypes>
<profileType id="0a0f-00cd-0261-c0ea" name="Profile">
<characteristicTypes>
<characteristicType id="da3c-fb2b-4c5f-a22b" name="Movement"/>
<characteristicType id="d46f-1ae5-387f-4ac3" name="Weapon Skill"/>
<characteristicType id="22c7-799b-e07c-f32c" name="Ballistic Skill"/>
<characteristicType id="0c58-1252-962d-8fcc" name="Strength"/>
<characteristicType id="16d7-9f22-06d8-8427" name="Toughness"/>
<characteristicType id="f9d0-a5b0-7e0b-a404" name="Wounds"/>
<characteristicType id="b418-0e30-644f-1435" name="Initiative"/>
<characteristicType id="fa03-f9a3-8117-98dd" name="Attacks"/>
<characteristicType id="bbad-d421-400b-87c1" name="Leadership"/>
</characteristicTypes>
</profileType>
<profileType id="6ca9-f2ff-2648-2744" name="Ranged Weapon">
<characteristicTypes>
<characteristicType id="0fff-027d-bb98-44cf" name="Range"/>
<characteristicType id="ceb5-bb59-06b6-15b3" name="Strength"/>
<characteristicType id="152e-d45a-3e28-26a8" name="Rules"/>
</characteristicTypes>
</profileType>
<profileType id="f529-f939-d9ca-197e" name="Melee Weapon">
<characteristicTypes>
<characteristicType id="b75d-88ae-0d05-d3db" name="Rules"/>
</characteristicTypes>
</profileType>
<profileType id="a935-1f6e-0cce-bcf8" name="War Machine">
<characteristicTypes>
<characteristicType id="a2f5-c527-b945-c597" name="Guess Range"/>
<characteristicType id="a8a0-9324-db44-02bb" name="Strength"/>
<characteristicType id="ace2-50f7-7ddf-3b27" name="Wounds"/>
<characteristicType id="c073-2165-580c-8b7c" name="Save"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="62d3-efc6-6c2c-634e" name="Regiments" hidden="false"/>
<categoryEntry id="4a3f-84d1-0495-6ecb" name="Monsters" hidden="false"/>
<categoryEntry id="a3af-995e-0cf1-7091" name="War Machines" hidden="false"/>
<categoryEntry id="48f1-4778-a9db-cde7" name="Characters" hidden="false"/>
<categoryEntry id="bdfa-6d6e-a1bf-5d03" name="Uncounting" hidden="false"/>
<categoryEntry id="4623-4eae-d0bd-a37f" name="Allies" hidden="false"/>
<categoryEntry id="7833-75e4-7c02-f76d" name="Chaos Daemons" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="5f75-906f-4d23-7a30" name="Warhammer Fantasy 4th Edition" hidden="false">
<categoryLinks>
<categoryLink id="f2d7-f8a2-7e14-ef5e" name="Core" hidden="false" targetId="62d3-efc6-6c2c-634e" primary="false">
<constraints>
<constraint field="eaa7-6800-e651-8bea" scope="force" value="25.0" percentValue="true" shared="true" includeChildSelections="true" includeChildForces="true" id="98ab-f7f1-5fb5-18c3" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="1821-b8e0-2aa1-b805" name="Characters" hidden="false" targetId="48f1-4778-a9db-cde7" primary="false">
<constraints>
<constraint field="eaa7-6800-e651-8bea" scope="parent" value="50.0" percentValue="true" shared="true" includeChildSelections="true" includeChildForces="false" id="562f-9770-dc82-1b05" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b6e8-eda4-372a-43dd" name="Rare" hidden="false" targetId="a3af-995e-0cf1-7091" primary="false">
<constraints>
<constraint field="eaa7-6800-e651-8bea" scope="parent" value="25.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="abcb-d080-e34a-9d53" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="abaa-abc3-5162-6a22" name="Special" hidden="false" targetId="4a3f-84d1-0495-6ecb" primary="false">
<constraints>
<constraint field="eaa7-6800-e651-8bea" scope="parent" value="25.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="f140-733f-991c-4d18" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d2a8-1093-ce78-6c29" name="Uncounting" hidden="false" targetId="bdfa-6d6e-a1bf-5d03" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2653-9306-1d8d-449f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b092-581c-8c03-1f6c" name="Allies" publicationId="d9e7-add3-773e-ffab" hidden="false" targetId="4623-4eae-d0bd-a37f" primary="false">
<constraints>
<constraint field="eaa7-6800-e651-8bea" scope="parent" value="25.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="ce4f-dad9-fddb-3308" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="43bb-b035-1189-0547" name="Chaos Daemons" hidden="false" targetId="7833-75e4-7c02-f76d" primary="false">
<constraints>
<constraint field="eaa7-6800-e651-8bea" scope="parent" value="50.0" percentValue="true" shared="true" includeChildSelections="true" includeChildForces="false" id="07b2-3720-5539-7c76" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<sharedSelectionEntries>
<selectionEntry id="d188-e74c-59e6-bf35" name="Black Armour of Nagash" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8ff7-19d7-dbc8-3a08" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="88f5-789b-2b52-c787" type="max"/>
</constraints>
<rules>
<rule id="35ce-b515-e9fe-986f" name="Black Armour of Nagash" hidden="false">
<description>Unmodified 4+ armour save against hand-to-hand or missile attacks 4+ save against magic spells or attacks (unmodified).
Nagash Only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dbb5-2e40-0e15-1183" name="Spell Eater Shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bedc-bab2-5603-7977" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="97fb-730c-d735-9bb4" type="max"/>
</constraints>
<rules>
<rule id="2c1b-9eb2-86fc-09ae" name="Spell Eater Shield" hidden="false">
<description>Any spell cast against the bearer or unit he is with will be dispelled on
a roll of 3 or more on a D6. After use. roll off to keep or discard the enemyes spell card</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1a14-4be1-e227-2629" name="Sword of Justice" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="133b-6c8a-b5e5-f7c5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6cf7-0990-c0b4-8764" type="max"/>
</constraints>
<rules>
<rule id="f73e-d3fc-3cff-7807" name="Sword of Justice" hidden="false">
<description>When bearer rolls to hit, he may re-roll once any dice that miss. Only magic armour can save
Empire Only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e43-b473-b117-9714" name="Armour of Brilliance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="628a-44f8-216a-8199" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c648-3dc0-7111-44e3" type="max"/>
</constraints>
<rules>
<rule id="2040-f7b1-bf25-9c8c" name="Armour of Brilliance" hidden="false">
<description>Foes suffer -2 to hit. Armour confers 3+ saving throw.
</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ce12-d750-8777-7595" name="Golden Hem of Atrazar" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0d01-fdbc-816b-6f05" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d891-5b48-1b06-589c" type="max"/>
</constraints>
<rules>
<rule id="6c13-da7d-702d-192a" name="Golden Hem of Atrazar" hidden="false">
<description>If the wearer suffers 1 or more wounds the helm will negate each on a D6 roll of 3+. Roll once per wound.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3c04-73e4-5f91-12e8" name="Shadow Armour" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="823e-e811-0b33-1039" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1541-47ed-a187-44ed" type="max"/>
</constraints>
<rules>
<rule id="141b-9bc4-22cf-2966" name="Shadow Armour" hidden="false">
<description>Counts as heavy armour (5+ save). Bearer may move through difficult terrain and obstacles with no penalty. Subtract -1 from Strength of attacks made against bearer, unless magic.
High Elves only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7bda-6383-5ef6-34f1" name="Armour of Meteoric Iron" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2cef-342b-fa0d-2d87" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5d02-5070-34bc-a1f5" type="max"/>
</constraints>
<rules>
<rule id="ac98-9521-e811-a8f1" name="Armour of Meteoric Iron" hidden="false">
<description>Wearer has armour saving roll of 2+.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37c9-4739-ec47-29d6" name="Warpstone Armour" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6575-19ea-8398-3504" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4dfd-a7de-6cfa-2cbc" type="max"/>
</constraints>
<rules>
<rule id="90fe-6886-c4d2-af96" name="Warpstone Armour" hidden="false">
<description>Saving throw of 4+ (unmodified). For every hit saved armour inflicts S3 hit against the attacker. May be wom by Skaven Wizards without compromising their ability to cast spells.
Skaven Only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4c22-3b00-2011-4173" name="Baneshield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3b05-7c74-b5fb-7971" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4b42-14ce-a137-f353" type="max"/>
</constraints>
<rules>
<rule id="0f1b-bbc4-3cff-c576" name="Baneshield" hidden="false">
<description>When bearer saves against enemy in close combat, shicld unleashes 1 S4 energy bolt against that enemy.
High Elves only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6cd4-bc4e-d085-8a3b" name="Spellshield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7124-d80e-f4dc-c500" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3108-38f1-717a-ef07" type="max"/>
</constraints>
<rules>
<rule id="7ddf-8fc4-f7ff-032f" name="Spellshield" hidden="false">
<description>Shield may deflect enemy spells cast at bearer or unit he is with. Roll scatter dice. If ‘hit’, spell is unaffected. If arrow, spell deflected 4D6" in direction indicated.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd6d-a297-ac18-7682" name="Armour of Skaldor" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="531f-5c25-60dc-d11f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fadc-d470-4b71-ab82" type="max"/>
</constraints>
<rules>
<rule id="95e4-1556-c115-a349" name="Armour of Skaldor" hidden="false">
<description>Saving roll of 2+. Wearer may re-roll failed save an 4+ (unmodified). Confers immunity from all fire attacks.
Dwarf King only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dac9-ef21-cbf8-9242" name="Chaos Runeshield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f5fa-ab66-3452-71c8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9dec-be75-8ffd-aeb7" type="max"/>
</constraints>
<rules>
<rule id="f70f-943b-fbfe-a5e0" name="Chaos Runeshield" hidden="false">
<description>If attacked by a magic weapon, the shield negates its magical effects.
Chaos only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a9f6-d6b7-fabd-d5b3" name="Armour of Fortune" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="691d-cf2c-f61e-d0e8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="161d-7d17-616e-8224" type="max"/>
</constraints>
<rules>
<rule id="9528-c84d-ad2f-8cdf" name="Armour of Fortune" hidden="false">
<description>Counts as heavy armour. Wearer can re-roll failed armour save, and will save on 5+ (unmodified).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c1a3-007f-d003-1356" name="Armour of Endurance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b067-4df2-18a6-5959" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5a58-9008-fc2e-81bc" type="max"/>
</constraints>
<rules>
<rule id="1be7-e33a-a7f8-731b" name="Armour of Endurance" hidden="false">
<description>Counts as heavy armour. Wearer can re-roll failed armour save, and will save on 6 (unmodified).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="104d-2ac5-e389-6a9b" name="Shield of Ptolos" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4e09-ee18-eb9e-034c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d842-824f-04eb-32d7" type="max"/>
</constraints>
<rules>
<rule id="f1be-54a1-3589-c01c" name="Shield of Ptolos" hidden="false">
<description>Basic saving throw of 1+ vs missile attacks</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4890-aed5-820d-d520" name="Dragonhelm" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1850-98d7-ca2d-e9e1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1f9c-ff28-64e8-66b7" type="max"/>
</constraints>
<rules>
<rule id="d7ae-6060-8e7f-8f81" name="Dragonhelm" hidden="false">
<description>Extra unmodified saving throw of 2+ against fire attacks.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a2c3-428c-825a-a8cd" name="Crimson Armour of Dragan" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bfb5-6094-e6af-0031" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6946-0a89-8a59-9001" type="max"/>
</constraints>
<rules>
<rule id="3903-8539-c191-e895" name="Crimson Armour of Dragan" hidden="false">
<description>Confers a basic saving throw of 4+. Attacking model must pass Leadership test to strike.
Chaos only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6c0d-6650-b41f-cf18" name="Enchanted Shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="15f8-68c1-f24f-1820" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="df38-9e1e-acaa-9be1" type="max"/>
</constraints>
<rules>
<rule id="22d5-86e3-d532-6f66" name="Enchanted Shield" hidden="false">
<description>+1 bonus on armour saving rolls.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4619-d662-8cad-7133" name="Chaos 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="48a9-ed9f-b3b1-eccd" type="max"/>
</constraints>
<rules>
<rule id="6d82-555c-9553-0ae9" name="Chaos Armour" hidden="false">
<description>Confers a basic saving throw of 4+. A Wizard may wear Chaos Armour ans still cast spells.
Chaos only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="605c-ab94-8dde-e7f0" name="Armour of Protection" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="39a3-b61e-82fa-936a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6e2b-b00e-fe83-9bd2" type="max"/>
</constraints>
<rules>
<rule id="8903-1713-e1b8-970e" name="Armour of Protection" hidden="false">
<description>Counts as heavy armour (save 5+). Wears: can re-roll failed armour save, and will save on 4+ (unmodified).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4c4d-26f5-3ecd-8401" name="Black Amulet" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="05ff-38da-85ae-c508" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4c9a-b7c7-f81a-7767" type="max"/>
</constraints>
<rules>
<rule id="77c4-19df-da23-02da" name="Black Amulet" hidden="false">
<description>Negales any wound on a 4+. In hand-to-hand combat any wound saved by the amulet is rebounded against the foe, no saving throw allowed, not even for magic armour.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a1d5-b6bd-e23d-58cf" name="The Silver Seal" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ba96-5165-24e8-0e88" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="af7d-0708-1e8c-5bb1" type="max"/>
</constraints>
<rules>
<rule id="8340-e847-86f8-0061" name="The Silver Seal" hidden="false">
<description>Enemy missile shots and hand-to-hand combat blows against the bearer suffer -1 to hit modifier. Enemy spells cast against bearer or unit he is with dispelled on 4+.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4404-1fd9-4e76-4681" name="Jade Griffon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ebf7-8977-2d06-ccb4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="abe1-0888-8962-1ea4" type="max"/>
</constraints>
<rules>
<rule id="51ba-ed64-5465-4442" name="Jade Griffon" hidden="false">
<description>Takes effect at the end of each shooting phase and each hand-to-hand combat phase. If the Theogonist has suffered any wounds, but not been killed, all his wounds are instantly healed. If he is killed outright, the Jade Griffon cannot save him.
Empire Grand Theoganist only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dfb5-f62c-4735-5a3e" name="Talisman of Ulric" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fd3f-1d1a-d882-473e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8b43-7d23-b5c8-580f" type="max"/>
</constraints>
<rules>
<rule id="5d4d-614c-1892-c516" name="Talisman of Ulric" hidden="false">
<description>Berer recovers 1 wound at the start of his turn. The Talisman has no effect if the bearer is slain.
Empire Elector Count only </description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0aa1-2bd2-ac84-1de5" name="Crown of Sorcery" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f5fd-9586-c28a-0bb6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="41cc-649e-d276-9896" type="max"/>
</constraints>
<rules>
<rule id="484f-1fef-426a-5a07" name="Crown of Sorcery" hidden="false">
<description>User can use magic as magic level 3 wizard (select spells as Necromancer). Each time the bearer casts a spell, roll 2D6 against his Ld. If he fails, he can do noting until the next magic phase.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="125.0"/>
</costs>
</selectionEntry>
<selectionEntry id="45ce-a74d-5431-ab11" name="Dawn Stone" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8e8b-de55-79ee-8277" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3d14-44a3-ca47-c0e8" type="max"/>
</constraints>
<rules>
<rule id="554e-d712-34c1-f080" name="Dawn Stone" hidden="false">
<description>Re-roll failed armour save.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="296d-83ec-9462-3208" name="Magic Warpaint" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5512-5bd8-a19d-4ff9" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c6ec-637a-a3c0-0fb6" type="max"/>
</constraints>
<rules>
<rule id="e567-7f2f-8039-e1c7" name="Magic Warpaint" hidden="false">
<description>Saving throw of 3+ against missile weapons and 5+ against hand-to-hand combat attacks.
Savage Orcs, Skaven, Forest Goblins & Wand Elves only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7388-764f-554b-ad9e" name="Talisman of Obsidian" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ed85-754b-fcc0-643c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="374e-e53f-6dbc-c65f" type="max"/>
</constraints>
<rules>
<rule id="6bb0-574f-37c7-3f48" name="Talisman of Obsidian" hidden="false">
<description>Negates magic of any wizard in base contaci with bearer (and magic of bearer if he is a wizard). A wizard whose magic is nullified cannot cast spells, use magic cards, and any of his spells already in play are dispelled. Any spells cast against the caster or unit he is with are
dispelled automatically.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5ed9-e5a9-8986-ba0d" name="Talisman of Hoeth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8c22-7ed2-0d6a-8c91" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6010-5190-a578-5efe" type="max"/>
</constraints>
<rules>
<rule id="a59f-cef3-333a-611f" name="Talisman of Hoeth" hidden="false">
<description>Bearer can cast spells and use magic cards as a Wizard Champion (magic level 2). Spells must be from the College decks.
High Elves only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="85.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f431-3bb1-499d-bb86" name="Rod of Corruption " hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ebc3-2b08-6292-a7a2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="db88-43c9-93f5-d109" type="max"/>
</constraints>
<rules>
<rule id="8aaa-afd1-9fb8-2b69" name="Rod of Corruption " hidden="false">
<description>Use in hand-to-hand combat. If the rod hits, victim must roll D6 against T (6 always fails) or be horribly killed. Only magic armour may save. If victim passes test, roll for wounds and armour saves as normal.
Skaven Plague Monks only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1ae9-8fb7-1730-37d8" name="Dragon Crown of Karaz" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d231-1faa-3661-2444" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c417-f54c-7831-d59b" type="max"/>
</constraints>
<rules>
<rule id="cc6b-eb37-f968-23f8" name="Dragon Crown of Karaz" hidden="false">
<description>The Dwarf King and any unit he is with are immune to fear and terror. Any unit with the King takes unmodified Break tests at the King’s Ld.
Dwarf King only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6621-46fd-a6ac-4a98" name="Liber Bubonicus" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e4b3-914c-9c86-a86f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3215-c892-df56-4268" type="max"/>
</constraints>
<rules>
<rule id="711a-0120-b2af-896d" name="Liber Bubonicus" hidden="false">
<description>Bearer casts spells as Wizard Champion (ie, magic level 2, 2 spell
cards). See card for details of which spell cards he may choose.
Skaven Plague Monks only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="365c-f7bd-d10c-4af5" name="Staff of Command" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2048-8674-4445-6b85" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="39c2-bf52-9be4-b7db" type="max"/>
</constraints>
<rules>
<rule id="9829-22ed-d599-7df3" name="Staff of Command" hidden="false">
<description>Makes the Grand Theognnist the equivalent of a level 2 wizard (he may choose his spells from any of the Colour decks or the High Magic deck). As long as the War Altar is undamaged, the Theogonist may add +2 to his Strength. If damaged, he may add +1. If the Altar is destroyed, the Theogunist receives no bonuses, and may no longer cast spells or use dispels.
Empire Grand Theogonist anly</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f40a-0ea9-495b-dab5" name="Collar of Zorga" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f857-c502-6c7d-2b5c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0a6e-4cc4-b710-1445" type="max"/>
</constraints>
<rules>
<rule id="5eff-7f72-cea6-46a5" name="Collar of Zorga" hidden="false">
<description>Wearer immune to monster attacks in hand-to-hand combat. At the end of any hand-to-hand combat round that his side has won, he may attempt to take over any enemy monsters in base contact. If he rolls equal to or less than his Ld on 2D6 he may temporarily take over the monster, which may make an additional move and hand-to-hand
combat attack. Control of the monster then reverts to the owning player.
Orcs and Goblins only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e1c5-32ce-756b-4c00" name="Aldred's Casket of Sorcery" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c886-dd6a-d738-559b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3dd4-7bd8-a3ed-8788" type="max"/>
</constraints>
<rules>
<rule id="e1bd-5c29-5a61-c9a1" name="Aldred's Casket of Sorcery" hidden="false">
<description>May be used once at the start of each magic phase. The casket steals one spell from an enemy wizard in base contact (detemine spell randomly). The spell may be played during the magic phase in the normal fashion, though it costs no power cards to do so. Discard the spell after use. The casket may contain any number of spells. Spells may be captured and used in the same magic phase.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1feb-4f3f-56ea-8fd7" name="Cloak of Shadows" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fd28-b361-f246-5cda" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="15b9-2eaf-c62d-7feb" type="max"/>
</constraints>
<rules>
<rule id="c6ba-467f-aed1-888d" name="Cloak of Shadows" hidden="false">
<description>Wealer cannot be charged or shot at unless enemy first scores 6 on a D6. Spells can only be cast at the wearer if the attacking wizard first rolls 5 or 6.
Skaven Assassins only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ec3a-37d6-c8c1-f90c" name="Ruby Chalice" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="957f-e9cd-35a7-aee0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e025-e21a-f78e-4bc6" type="max"/>
</constraints>
<rules>
<rule id="07c3-b7fe-4fc8-85d8" name="Ruby Chalice" hidden="false">
<description>Only starts to work when bearer or unit he is with takes a wound. -2 dice roll on enemy missile attacks; -1 to hit close combat attacks. Effects work until bearer is killed.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5d74-b803-fa60-30e5" name="Chalice of Darkness" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0630-e6a1-6880-a6a4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1ae2-c713-3421-7ac2" type="max"/>
</constraints>
<rules>
<rule id="cc39-2267-aa47-2b5d" name="Chalice of Darkness" hidden="false">
<description>Use after magic cards have been dealt but before any spells are cast. Roll 1D6 and remove that many magic cards from each side. If a player doesn't have enough magic cards, he must also surrender a spell card. Roll a D6 for every spell surrendered. On a 4+ the Chalice
bearer sustains 1 wound. Discard all spell cards collected in this way.
Chaos Dwarfs only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ef52-38fa-a609-15e8" name="Bugman's Tankard" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c0eb-ded2-0b40-736d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e707-3abd-cf90-5d2a" type="max"/>
</constraints>
<rules>
<rule id="9984-f046-92ce-f656" name="Bugman's Tankard" hidden="false">
<description>May be used at any time except during hand-to-hand combat. The bearer or unit he is with may heal 1 wound. Maximum 1 use per turn.
Three uses only. Dwarfs only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="30ad-0051-3919-b26e" name="Healing Potion" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="53b2-8cbe-b5cf-e7f7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8d89-2ded-697c-98bc" type="max"/>
</constraints>
<rules>
<rule id="8645-0d3d-9372-8e3a" name="Healing Potion" hidden="false">
<description>Restores user ot full wounds. Use ater all combat has been resolved.
One use only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8ab9-c404-4867-3954" name="Golden Scepter of Norgrim" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6872-0bc2-c31b-8bbf" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c6c1-583e-9444-7983" type="max"/>
</constraints>
<rules>
<rule id="c8c7-d97c-0290-4c4a" name="Golden Scepter of Norgrim" hidden="false">
<description>Each turn, the unit lead by sceptre bearer may add +1 M, or add +1 S to each model, or have +1 save.
Dwarfs only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eb30-9bc7-27ba-3283" name="Great Book of Grudges" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4011-0a30-e9e3-e51e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e052-d114-3af4-9c0d" type="max"/>
</constraints>
<rules>
<rule id="2618-7f59-17d9-555e" name="Great Book of Grudges" hidden="false">
<description>Bearer and any unit he is with hates all enemy on the battlefield.
Dwarf King only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d741-9786-7150-8fee" name="Daemon Steed" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3f48-e108-9bb7-0ad0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b64b-373d-c51e-7474" type="max"/>
</constraints>
<profiles>
<profile id="1a5d-8dcf-9390-826e" name="Daemon Steed" hidden="false" typeId="0a0f-00cd-0261-c0ea" typeName="Profile">
<characteristics>
<characteristic name="Movement" typeId="da3c-fb2b-4c5f-a22b">8</characteristic>
<characteristic name="Weapon Skill" typeId="d46f-1ae5-387f-4ac3">4</characteristic>
<characteristic name="Ballistic Skill" typeId="22c7-799b-e07c-f32c">0</characteristic>
<characteristic name="Strength" typeId="0c58-1252-962d-8fcc">4</characteristic>
<characteristic name="Toughness" typeId="16d7-9f22-06d8-8427">4</characteristic>
<characteristic name="Wounds" typeId="f9d0-a5b0-7e0b-a404">3</characteristic>
<characteristic name="Initiative" typeId="b418-0e30-644f-1435">6</characteristic>
<characteristic name="Attacks" typeId="fa03-f9a3-8117-98dd">3</characteristic>
<characteristic name="Leadership" typeId="bbad-d421-400b-87c1">10</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="2a86-8a84-776d-a1c1" name="Daemon Steed" hidden="false">
<description>A Daemon Steed takes the form of a mighty horse (for stats see card). The Steed has a deamon saving throw of 4+ plus armoured barding 3+ in total. It is not affected by daemon animosity, and counts a monster. A model riding a Daemon Steed causes fear.
Chaos only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="72cd-7d56-b3a1-2bb0" name="Crown of Command" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="25f6-d763-379f-f5bd" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4cba-a19f-82a0-5c56" type="max"/>
</constraints>
<rules>
<rule id="69c1-8760-ecf2-b8cd" name="Crown of Command" hidden="false">
<description>Bearer Ld 10. In hand-to-hand sombat he always takes Break test at Ld10.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4ea6-52e5-f5f9-5c0d" name="Heart of Avelorn" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="70c2-83cd-8603-20e6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="cdc8-e2d3-319b-efe4" type="max"/>
</constraints>
<rules>
<rule id="dafa-569e-b765-8951" name="Heart of Avelorn" hidden="false">
<description>Gives Tyrion save of 4+ vs hostile magic. If Tyrion is reduced to 0 wounds, the Heart will restore him to 1 wound then shatter.
Tyrion only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8d03-68cd-8fb0-a297" name="Slaanesh's Sceptre of Domination" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4614-e7d6-45cb-c2c4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6866-2359-0376-43c6" type="max"/>
</constraints>
<rules>
<rule id="1f6f-7bf9-d5c4-eb66" name="Slaanesh's Sceptre of Domination" hidden="false">
<description>Enemy characters within 12" must take Ld lest on 2D6 or may do nothing. If immobilised in this way, enemy attacks hit the victim automatically. If test is passed, character is immune.
Chaos - Slaanesh only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c0b8-eb5e-71eb-2c61" name="The Carstein Ring" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3b09-b7e6-5f9c-c3b2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0314-b681-cdc5-b6c2" type="max"/>
</constraints>
<rules>
<rule id="3719-71c3-8e50-dbf7" name="The Carstein Ring" hidden="false">
<description>If slain, Vampire is restored to full wounds.
Vampires only. One use only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1a77-b2c5-c7b6-0002" name="Skavenbrew" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9bef-9b87-3548-2109" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e669-b4db-649e-a5a9" type="max"/>
</constraints>
<rules>
<rule id="1fd2-2381-57af-8657" name="Skavenbrew" hidden="false">
<description>Use before start of battle on regiment character is with. Effects last
the battle. Roll a D6:
6 - Unit fights at double its M and A. Roll a D6 at the end of each player's turn. On a 6 the regiment suffers D6 wounds;
4-5 - Unit subject to frenzy;
2-3 - Unit hate: all non-Skaven
1 - No effect.
One use only. Skaven only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1744-b5b7-5b91-e5ff" name="Talisman of Ravensdark" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ea52-324c-d0b4-f80e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e314-d1a3-8dcb-3311" type="max"/>
</constraints>
<rules>
<rule id="d77e-b6b7-f971-2455" name="Talisman of Ravensdark" hidden="false">
<description>May be activated when bearer or unit they are with is charged by a flying creature, and affects all flying creatures in base contact. Flying creatures must roll a 6 to hit. Riders may not attack at all.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ae8f-2084-ab0c-5b04" name="Skalm" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="db61-0cb3-aaef-e44b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3f5c-953d-c2ff-f242" type="max"/>
</constraints>
<rules>
<rule id="d28a-5e46-35e3-09ab" name="Skalm" hidden="false">
<description>Heals user back to full wounds.
One use only. Skaven only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8974-c746-b52e-9aac" name="Tomb King's Crown" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9bd1-d614-78be-6813" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4bdf-0753-542a-0aef" type="max"/>
</constraints>
<rules>
<rule id="7de6-37bf-f365-8950" name="Tomb King's Crown" hidden="false">
<description>Any Undead model within 12" of wearer may use his WS and BS instead of its own. This ability may not be used if the wearer is in hand-to-hand combat himself.
Mummy Tomb King only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f7e0-b91f-cb7d-9de1" name="Gauntlet of Bazhrakk the Cruel" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0760-11a4-a4d1-457f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0e5d-4df7-8d9f-3604" type="max"/>
</constraints>
<rules>
<rule id="48cd-d32f-68f9-625c" name="Gauntlet of Bazhrakk the Cruel" hidden="false">
<description>Wearer has +2 Strength. If he rolls a 1 to hit, blow is struck against a randomly determined friendly model in base contact.
Chaos Dwarfs only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b8aa-47ba-13b3-8f4d" name="Heart of Woe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0c76-701d-ac29-e796" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8583-0556-9f39-7e07" type="max"/>
</constraints>
<rules>
<rule id="39d1-d5fd-7072-0671" name="Heart of Woe" hidden="false">
<description>Explodes when bearer is slain, causing variable hits and damage.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aea0-92f4-b41b-efe0" name="Fiery Ring of Thori" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="dbd5-1d66-554e-7fb8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d333-db58-a2b4-b660" type="max"/>
</constraints>
<rules>
<rule id="360a-3eac-0e4e-f9bc" name="Fiery Ring of Thori" hidden="false">
<description>May be used at any time during the player’s turn so long as there are no enemy within 6“. Creates barrier of flame 6" in from of wearer and unit he is with. Only enemy immune to flame may cross the barrier. Last one turn
One use only. Dwarfs only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f9af-8d9a-dd3f-39c4" name="Black Gem of Gnar" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3d69-c41f-7ec3-c447" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c9e4-d620-8476-5241" type="max"/>
</constraints>
<rules>
<rule id="92f6-b07f-a7c9-f9f8" name="Black Gem of Gnar" hidden="false">
<description>Wearer and one model in base contact are locked in time. While lucked in lime, they may not be atacked or harmed in any way. Only a Dispel will break the enchantment, and you must roll 6 to do so.
One use only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9e7b-0e56-975f-f999" name="Cursed Book" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ac40-cdbb-f516-8536" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ba8c-66d3-4b45-0501" type="max"/>
</constraints>
<rules>
<rule id="52fb-0089-a413-17b5" name="Cursed Book" hidden="false">
<description>Affects any living creature within 6". Victims suffer -1 to all to hit rolls (both shooting and hand-to-hand).
Chaos or Undead only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="091f-9c4f-4bac-888f" name="Van Horstmann's Speculum" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="502e-ded9-22ef-3f52" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="31f7-32f6-64ce-2301" type="max"/>
</constraints>
<rules>
<rule id="a6aa-9364-661f-5a59" name="Van Horstmann's Speculum" hidden="false">
<description>When wearer fights a challenge, he fights with his opponenfs S, A & I (and vice versa).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8b4e-9799-8271-188f" name="Amulet of Fire" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f0af-9412-b5df-6753" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7056-6fa2-164a-6583" type="max"/>
</constraints>
<rules>
<rule id="fc82-8231-e845-7f78" name="Amulet of Fire" hidden="false">
<description>Will dispel spell cast at user or unit he is with on D6 roll of 4+. Only works once per magic phase.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cfd2-6104-863a-facb" name="Horn of Sigismund" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="98e1-9880-84c7-e660" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="95ed-6e78-e88d-aabb" type="max"/>
</constraints>
<rules>
<rule id="cf4d-ba15-db9a-4fe6" name="Horn of Sigismund" hidden="false">
<description>May be winded the war altar charges into combat. The Horn causes terror in the enemy unit.
Empire Grans Theogonist only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c241-aeb2-c895-0d5c" name="Potion of Chaos" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b805-be53-d35c-d22b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8f54-d6c1-c39e-af9d" type="max"/>
</constraints>
<rules>
<rule id="3e3f-205f-ed8d-030d" name="Potion of Chaos" hidden="false">
<description>Drink at the start of any turn and roll a D6: 1-3 - Recover 1 wound; 4 - +1 S this turn only; 5 - +2 S this turn only; 6 - Take random Chaos Gift.
Chaos only</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="eaa7-6800-e651-8bea" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="98e6-5996-9bd7-874e" name="Warpstone Charm" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bfce-8ecc-e852-2088" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="500f-ea80-59a0-4ae7" type="max"/>