-
Notifications
You must be signed in to change notification settings - Fork 82
/
Order - Fyreslayers - Data.cat
4924 lines (4909 loc) · 371 KB
/
Order - Fyreslayers - Data.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="81cf-7df5-86e6-b78f" name="Order - Fyreslayers - Data" revision="112" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="159" type="catalogue">
<publications>
<publication id="e67a-06d2-pubN65537" name="Order Battletome: Fyreslayers (2022)"/>
<publication id="9cbd-6717-1de9-c57a" name="White Dwarf - June 2019"/>
<publication id="271d-c3fa-142d-5ea5" name="Battletome: Fyreslayers Errata, July 2021"/>
<publication id="4be4-c9a9-88b5-33e6" name="Battletome Fyreslayers Errata, April 2022"/>
</publications>
<profileTypes>
<profileType id="84c1-a205-4de9-2105" name="Ur-Gold Rune">
<characteristicTypes>
<characteristicType id="3b0b-93bb-c656-56a0" name="Effect"/>
<characteristicType id="4429-3e90-af34-dc14" name="Enhanced Effect"/>
</characteristicTypes>
</profileType>
<profileType id="24ea-03a9-e586-5221" name="Magmadroth Wounds Suffered">
<characteristicTypes>
<characteristicType id="db44-4a77-6a10-4220" name="Move"/>
<characteristicType id="95e7-14f1-e007-2812" name="Roaring Fyrestream"/>
<characteristicType id="6e4b-d07d-d5a7-3f8b" name="Claws and Horns"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="0a47-97b4-1a41-f63d" name="AURIC HEARTHGUARD" hidden="false"/>
<categoryEntry id="f5f5-db97-4831-824a" name="AURIC RUNEFATHER" hidden="false"/>
<categoryEntry id="ac20-7d4d-2c40-1715" name="AURIC RUNEMASTER" hidden="false"/>
<categoryEntry id="59a7-074f-10b9-d92e" name="AURIC RUNESMITER" hidden="false"/>
<categoryEntry id="0d91-c9d2-c13f-5f42" name="AURIC RUNESON" hidden="false"/>
<categoryEntry id="91e1-ab50-8554-4a6e" name="BATTLESMITH" hidden="false"/>
<categoryEntry id="cd75-b7ef-b82f-47e0" name="GRIMWRATH BERZERKER" hidden="false"/>
<categoryEntry id="1089-32fd-fc13-0319" name="HEARTHGUARD BERZERKERS" hidden="false"/>
<categoryEntry id="9277-1530-7f0f-718f" name="MAGMADROTH" hidden="false"/>
<categoryEntry id="57af-4591-5841-0c21" name="VULKITE BERZERKERS" hidden="false"/>
<categoryEntry id="945b-2f5e-58f0-75e2" name="DUARDIN" hidden="false"/>
<categoryEntry id="58a0-8e1a-977d-dbf4" name="DOOMSEEKER" hidden="false"/>
<categoryEntry id="920f-7600-9c65-a179" name="COGSMITH" hidden="false"/>
<categoryEntry id="09da-5e0a-bba8-0a85" name="FJUL-GRIMNIR" hidden="false"/>
<categoryEntry id="4c1e-bfe5-baf1-cf60" name="THE CHOSEN AXES" hidden="false"/>
<categoryEntry id="7e0a-5085-683c-dcdc" name="MAGMIC BATTLEFORGE" hidden="false"/>
<categoryEntry id="4385-48e9-615c-c04e" name="RUNIC FIREWALL" hidden="false"/>
<categoryEntry id="bd1d-439c-5b12-bf4c" name="MOLTEN INFERNOTH" hidden="false"/>
<categoryEntry id="24f1-0987-a9c8-48a8" name="ZHARRGRON FLAME-SPITTER" hidden="false"/>
<categoryEntry id="4b94-6bb2-6f57-3f3f" name="MAGMIC INVOCATION" hidden="false"/>
<categoryEntry id="adc5-5edd-3434-7fbf" name="AURIC FLAMEKEEPER" hidden="false"/>
<categoryEntry id="a0b1-0d59-b254-b59f" name="Fyreslayers Core Battalion" hidden="false"/>
<categoryEntry id="f93b-36db-8238-f92f" name="Fyreslayers Warscroll Battalion" hidden="false"/>
<categoryEntry id="0b34-7ec9-23a0-9889" name="PRIEST General" hidden="false"/>
<categoryEntry id="69da-2de5-cabb-05af" name="RUNEFATHER General" hidden="false"/>
<categoryEntry name="GRIMHOLD EXILE" hidden="false" id="e367-5a6e-d1c1-65e5"/>
<categoryEntry name="VULKYN FLAMESEEKERS" hidden="false" id="90c8-902-3ad3-db39"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="8e35-cdef-4c7e-0a1c" name="Allegiance" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="minInForce" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="minInForce" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="41d4-2f31-ed73-2d14" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="94c9-6cd1-da31-5c7e">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="94c9-6cd1-da31-5c7e" name="Allegiance: Fyreslayers" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e898-c410-eb40-3c82" name="Fierce Counter-Attack" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the enemy combat phase. The unit that receives the command must be an AURIC HEARTHGUARD, HEARTHGUARD BERZERKERS, VULKITE BERZERKERS or VULKYN FLAMESEEKERS unit that is within 3" of an enemy unit that made a charge move in the same turn and is not within 3" any enemy units that have not made charge move in the same turn. The strike-first effect applies to that unit until the end of that phase. A unit cannot receive this command more than once per battle.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="84bb-5346-a2bc-906a" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile id="2aaa-47bb-4403-cb9c" name="Grimwrath Oaths" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of the first battle round, you can pick 1 of the following oaths for each friendly GRIMWRATH BERZERKER to swear. The rule for that oath applies until the end of the battle. If your army includes more than 1 GRIMWRATH BERZERKER, you cannot pick the same oath more than once.
'I will cut down the priests of Grimnir's enemies!': If the target is a PRIEST that does not have the FYRESLAYERS keyword, add 1 to hit rolls and wound rolls for attacks made by this unit, and add 1 to the damage inflicted by each of those attacks that is successful.
'I will guard them with my life!': Instead of picking 1 friendly AURIC HEARTHGUARD or HEARTHGUARD BERZERKERS unit on the battlefield to be the retinue of an Auric Runefather or Auric Runeson, you can pick this unit to be that unit's retinue.
'I will let nothing stand in my way!': This unit can run and still charge later in the turn. In addition, you can re-roll run rolls and charge roll for this unit.
'I will prove Grimnir's might to our allies!': Add 1 to hit rolls and wound rolls for attacks made by this unit if it is within 12" of any friendly allied units.
'I will not be stopped!': This unit has a ward of 6+. If this unit is within 3" of any enemy units, it has a ward of 5+ instead.
'I will strike hard and true in Grimnir's name!': If the unmodified hit roll for an attack made by this unit is 6, that attack causes 1 mortal wound to the target in addition to any damage it inflicts.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="84bb-5346-a2bc-906a" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Allegiance: Lofnir Drothkeepers" hidden="false" id="84bb-5346-a2bc-906a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="efd-265c-eeef-6e3b"/>
</constraints>
<profiles>
<profile name="Skilled Drothwranglers" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="d426-75f0-3061-b8b1">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Once per turn, in your movement phase, you can pick 1 friendly VULKYN FLAMESEEKERS unit wholly within 6" of a friendly MAGMADROTH that has not yet moved in that phase and say that it will hitch a lift on that MAGMADROTH. If you do so, after you have moved that MAGMADROTH, instead of making a move with that unit, remove it from the battlefield and set it up again on the battlefield wholly within 6" of that MAGMADROTH and more than 3" from all enemy units.</characteristic>
</characteristics>
</profile>
<profile name="Daring Tamers" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="f3a3-39b9-ba38-118b">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">The strike-last effect applies to enemy MONSTER units while they are within 3" of 2 or more friendly VULKYN FLAMESEEKERS units.</characteristic>
</characteristics>
</profile>
<profile name="Protective Family" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="2309-87bc-b7-6de9">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">While a friendly VULKYN FLAMESEEKERS Kyndledroth is within 1" of a friendly MAGAMADROTH, that VULKYN FLAMESEEKERS unit has a ward of 5+.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup name="Spawn of Vulcatrix" hidden="false" id="476d-dbeb-a30e-ced0">
<profiles>
<profile name="Spawn of Vulcatrix" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="c2fe-3aa1-e38c-d0db">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">When you carry out a monstrous rampage with a friendly MAGMADROTH, you can carry out 1 of the monstrous rampages instead of any other monstrous rampage you can carry out with that unit.</characteristic>
</characteristics>
</profile>
<profile name="Eruption of Ferocity" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage" hidden="false" id="c131-d134-89ba-42b6">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Pick 1 enemy unit within 3" of this unit and roll a dice. On a 2+, ward rolls cannot be made for models in that unit in the following combat phase.</characteristic>
</characteristics>
</profile>
<profile name="Magma-fuelled Grasp" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage" hidden="false" id="4a57-1fa4-5cde-a20e">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Pick 1 enemy MONSTER within 3" of this unit and roll a dice. On a 3+, improve the Rend characteristic of melee weapons used by other friendly LOFNIR DROTHKEEPERS units that target that MONSTER by 1 in the following combat phase.</characteristic>
</characteristics>
</profile>
<profile name="Rearing Punches" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage" hidden="false" id="bd08-ab99-65ae-e099">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Pick 1 enemy unit within 3" of this unit and roll 2 dice. Add 2 to each roll if that unit is a MONSTER. For each 5+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink targetId="a763-f425-1441-2df2" id="d3f3-e528-2f56-e0a4" primary="false" name="Army of Renown"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="6afb-0848-a9d2-6058" name="Lodges" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="08d7-e0aa-4086-1304" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6171-3137-0d61-9057" name="Vostarg" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="da0f-1e5c-feb0-38c6" name="Fearsome Surge" publicationId="e67a-06d2-pubN65537" page="61" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to hit rolls and wound rolls for attacks made with melee weapons by friendly VOSTARG VULKITE BERZERKERS units that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d9e3-865e-55d6-a6a1" name="VOSTARG" hidden="false" targetId="c34d-acb9-a4d9-74be" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="36c2-a62f-8269-3258" name="Greyfyrd" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="aee5-1f7b-92d7-003e" name="Spoils of Victory" publicationId="e67a-06d2-pubN65537" page="61" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to the Wounds characteristic of friendly GREYFYRD HEROES that do not have a mount. In addition, you can pick 2 additional artefacts of power and give them to 2 GREYFYRD HEROES in your army that do not have a mount.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1bbc-fbca-b259-bf41" name="GREYFYRD" hidden="false" targetId="f60b-d58c-bfee-5aa7" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd97-6ad4-a58c-1ad2" name="Hermdar" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8fdb-6f52-9b9a-1272" name="Seize by Force" publicationId="e67a-06d2-pubN65537" page="61" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If a friendly HERMDAR unit wholly within enemy territory or wholly within 12" of an objective fails a battleshock test, halve the number of models that flee (rounding up).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6d48-f9ab-acbf-827d" name="HERMDAR" hidden="false" targetId="3559-43bd-385b-59a0" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9f82-189a-71f2-b6ba" name="Lofnir" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7e0a-1d7e-2be7-1fdd" name="Venerators of Vulcatrix" publicationId="e67a-06d2-pubN65537" page="61" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 2 to the Wounds characteristic of friendly LOFNIR MAGMADROTH units. In addition, up to 3 LOFNIR MAGMADROTH units in your army can be given a different mount trait instead of only 1.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="03c1-32b2-b3d0-34a5" name="LOFNIR" hidden="false" targetId="a89a-9904-cf30-0d17" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="84bb-5346-a2bc-906a" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
<infoGroups>
<infoGroup name="Ur-gold" hidden="false" id="a46a-e086-cad7-00eb">
<profiles>
<profile id="5d0e-5ee2-aabe-a833" name="Rune of Awakened Steel" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">Improve the Rend characteristic of melee weapons used by friendly FYRESLAYERS units by 1.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Improve the Rend characteristic by a further 1.</characteristic>
</characteristics>
</profile>
<profile id="af68-4f88-a655-c23f" name="Rune of Farsight" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">Add 1 to hit rolls for attacks made with Fyresteel Throwing Axes by friendly FYRESLAYERS units.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Add 1 to wound rolls for attacks made with Fyresteel Throwing Axes by friendly FYRESLAYERS units.</characteristic>
</characteristics>
</profile>
<profile id="d2a2-814c-8f9a-1721" name="Rune of Fiery Determination" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">Friendly FYRESLAYERS units have a ward of 6+.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Friendly FYRESLAYERS units have a ward of 5+.</characteristic>
</characteristics>
</profile>
<profile id="8e7e-8645-66fb-d99" name="Rune of Fury" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">Add 1 to hit rolls for attacks made by friendly FYRESLAYERS units.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Add 1 to the Attacks characteristic of melee weapons used by friendly FYRESLAYERS units.</characteristic>
</characteristics>
</profile>
<profile id="19ad-2fd4-e40b-12a5" name="Rune of Relentless Zeal" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">Add 2" to the Move characteristic of friendly FYRESLAYERS units.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Add 2 to charge rolls for friendly FYRESLAYERS units.</characteristic>
</characteristics>
</profile>
<profile id="7212-fa-6ac9-9a67" name="Rune of Searing Heat" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">If the unmodified wound roll for an attack made by a friendly FYRESLAYERS unit is 6, that attack causes 1 mortal wound to the target in addition to any damage it inflicts.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">When this rune is activated, roll a dice for each enemy unit within 3" of any friendly FYRESLAYERS units. On a 2+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="33b-f95c-8b81-22e8" name="Ur-gold Runes" publicationId="e67a-06d2-pubN65537" page="56" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of your hero phase, you can activate one of the following six ur-gold runes. To do so, state which rune will be activated and make an activation roll by rolling a dice. On a 1-5, the standard effect applies. On a 6, the enhanced effect also applies. The effects last until the start of your next hero phase.
Each ur-gold rune can only be activated once per battle, and no more than 1 rune can be activated at the same time. Once you have used a rune, you can choose a new one to activate in your next hero phase, but you cannot activate the same one again.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="84bb-5346-a2bc-906a" shared="true"/>
</conditions>
</modifier>
</modifiers>
</infoGroup>
</infoGroups>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1823-43dd-1af2-b910" name="Auric Hearthguard" publicationId="e67a-06d2-pubN65537" page="84" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="94c9-6cd1-da31-5c7e" type="greaterThan"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0b34-7ec9-23a0-9889" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd97-6ad4-a58c-1ad2" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="94c9-6cd1-da31-5c7e" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd97-6ad4-a58c-1ad2" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0b34-7ec9-23a0-9889" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="afd0-613f-c3f8-31c9" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Karl. Add 1 to the Attacks characteristic of that model’s Magmapike.</characteristic>
</characteristics>
</profile>
<profile id="f481-1fa7-d70c-50b0" name="Auric Hearthguard" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2968-1f25-b5e2-ea74" name="New CategoryLink" hidden="false" targetId="0a47-97b4-1a41-f63d" primary="false"/>
<categoryLink id="19f9-54db-f2bf-6ffc" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="9ea0-0d64-c7e8-ae1d" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="925c-f873-1f88-9ab5" name="New CategoryLink" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="0989-e60b-2d3e-5253" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="dd9f-e8b3-146e-6234" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1b98-d13e-3461-998c" name="5 Auric Hearthguards" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="15 Auric Hearthguards">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="10 Auric Hearthguards">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</selectionEntry>
<selectionEntry id="7964-ff38-1619-e2a8" name="Magmapike" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7eb1-437f-f0f1-79a8" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="763a-0c00-57d1-1b34" type="min"/>
</constraints>
<profiles>
<profile id="cf10-86c0-e3ae-6b9c" name="Magmapike" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="127f-cf1c-db40-5388" name="Molten Rockbolts" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf2e-4c64-fd51-b179" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="045b-3880-fca5-de65" type="min"/>
</constraints>
<profiles>
<profile id="078e-f03e-b3b6-e1f0" name="Magmapike (Missile)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">18"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="acd8-fee9-bbd0-81ed" name="Molten Rockbolts" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for a shooting attack made with a Magmapike is 6, subtract 1" from the target's Move characteristic until the end of your opponent's next turn. This ability cannot reduce the target unit's Move characteristic below half.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd0b-f485-3551-3823" name="Fyresteel Throwing Axe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e38-766a-a78e-d510" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb05-252e-dcb7-4190" type="min"/>
</constraints>
<infoLinks>
<infoLink id="92e2-8dd2-79d3-9316" name="Fyresteel Throwing Axe (Unit)" hidden="false" targetId="7945-4fd8-4ae8-cd11" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="033a-9bdd-71c8-ecc0" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="94c9-6cd1-da31-5c7e" type="greaterThan"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0b34-7ec9-23a0-9889" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd97-6ad4-a58c-1ad2" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink id="0e08-2c74-b26c-dd4b" name="Battalions" hidden="false" collective="false" import="true" targetId="bfd7-5a8f-8c70-70d2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="88ae-2998-b72a-3f1c" name="Auric Runefather" publicationId="e67a-06d2-pubN65537" page="80" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="571a-43be-ec53-ea94" name="Auric Runefather" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="increment" field="cd0e-fea6-411f-904d" value="1">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="36c2-a62f-8269-3258" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="068d-dec8-3b75-23f4" name="Lord of the Lodge" hidden="false" targetId="ca4a-8666-f888-bfd8" type="profile"/>
<infoLink id="5826-a604-b044-9837" name="Roaring Fyrestream" hidden="false" targetId="0ab1-99f2-5c13-a878" type="profile"/>
<infoLink id="02d0-1c20-cbb4-8f81" name="Retinue" hidden="false" targetId="d65c-074e-1b5e-56cd" type="profile"/>
<infoLink id="4f15-8b1a-c6e9-2c15" name="Dauntless Assault" hidden="false" targetId="63a1-7353-0b23-7011" type="profile"/>
<infoLink id="995c-fd97-e28b-45df" name="Royal Retinue" hidden="false" targetId="22b3-e038-7eab-e554" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e8d7-77ca-42e4-e74b" name="New CategoryLink" hidden="false" targetId="f5f5-db97-4831-824a" primary="false"/>
<categoryLink id="9a02-971e-7ba9-bbdc" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="9fcd-87b0-5f74-11a7" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="1d66-8915-ae19-7beb" name="New CategoryLink" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="c7e5-be47-fd04-e4a7" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="6eec-04d9-97b0-7fb4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2e67-8a44-bf94-27df" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="eaca-54d6-126e-4224" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="40be-5550-0915-e626" name="Latchkey Grandaxe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a7a-aa35-f734-62a3" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c937-8510-528b-9a9a" type="min"/>
</constraints>
<profiles>
<profile id="a36d-52af-5988-ea0c" name="Latchkey Grandaxe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="15b1-e472-e7e2-f805" name="Fyresteel Throwing Axe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3219-8b2c-8fa9-62ae" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a35-edf7-5872-3744" type="min"/>
</constraints>
<infoLinks>
<infoLink id="7336-f05e-7430-1067" name="Fyresteel Throwing Axe (Hero)" hidden="false" targetId="cc01-4fcb-b49f-d334" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0d7d-beb3-da5d-3bde" name="Artefacts" hidden="false" collective="false" import="true" targetId="75d8-d2b2-772b-e9f0" type="selectionEntryGroup"/>
<entryLink id="5448-ff93-18cc-7106" name="Command Traits" hidden="false" collective="false" import="true" targetId="8db2-e52d-b376-b998" type="selectionEntryGroup"/>
<entryLink id="f1ca-8d35-815e-b4cf" name="Battalions" hidden="false" collective="false" import="true" targetId="bfd7-5a8f-8c70-70d2" type="selectionEntryGroup"/>
<entryLink id="a9b5-dc5c-98ac-c546" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="67a7-5e1c-3ec4-f273" name="General" hidden="false" collective="false" import="true" targetId="292c-59dc-7ac8-2383" type="selectionEntry">
<categoryLinks>
<categoryLink id="1f8b-d007-c5d0-825b" name="RUNEFATHER General" hidden="false" targetId="69da-2de5-cabb-05af" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e836-06b1-90ab-33c2" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="8fe6-fda9-9a8e-119e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</selectionEntry>
<selectionEntry id="d62c-b254-872a-3500" name="Auric Runefather on Magmadroth" publicationId="e67a-06d2-pubN65537" page="76" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="f0e8-e742-fac0-6b5c" name="Auric Runefather on Magmadroth" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="increment" field="cd0e-fea6-411f-904d" value="2">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9f82-189a-71f2-b6ba" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">16</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7775-d336-cd4b-8dac" name="Lashing Tail" hidden="false" targetId="039a-0c36-ddf3-a123" type="profile"/>
<infoLink id="639b-6a9a-0a53-c461" name="Roaring Fyrestream" hidden="false" targetId="0ab1-99f2-5c13-a878" type="profile"/>
<infoLink id="38ec-80ac-cccb-8186" name="Volcanic Blood" hidden="false" targetId="4627-0059-9b08-c6f6" type="profile"/>
<infoLink id="cb11-5adc-010e-0050" name="Lord of the Lodge" hidden="false" targetId="ca4a-8666-f888-bfd8" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="512d-6dcb-5c82-7113" name="New CategoryLink" hidden="false" targetId="f5f5-db97-4831-824a" primary="false"/>
<categoryLink id="7719-99a3-0958-3e7c" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="ae07-ed06-dec6-7327" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="1ac7-7713-f442-ca8e" name="New CategoryLink" hidden="false" targetId="9277-1530-7f0f-718f" primary="false"/>
<categoryLink id="3de1-5578-3e7a-2c91" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="5f63-b298-df82-a99b" name="New CategoryLink" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="4bbe-0733-f406-c7bf" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="a33a-ad78-b55b-b7d4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c836-b70c-9bfc-8a9d" name="Latchkey Grandaxe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="553f-44fb-1c69-8864" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cfdf-40db-ed8a-e794" type="min"/>
</constraints>
<profiles>
<profile id="2ecc-6167-d1a5-6dfe" name="Latchkey Grandaxe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="739a-61de-826f-85d8" name="Claws and Horns" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14a6-7881-9402-e6e9" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d043-c396-6c8d-0306" type="min"/>
</constraints>
<profiles>
<profile id="8ff1-89fa-e5d7-1486" name="Claws and Horns" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="977c-0b34-d8cd-ea4b" name="Fyresteel Throwing Axe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="554a-14df-1951-c77c" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="64b2-8a38-b179-c84f" type="min"/>
</constraints>
<infoLinks>
<infoLink id="f38d-32e4-23a1-1061" name="Fyresteel Throwing Axe (Hero)" hidden="false" targetId="cc01-4fcb-b49f-d334" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="db40-878b-94a2-0b25" name="Blazing Maw" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c530-f5c8-b030-9089" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f94-0934-e819-b4e5" type="max"/>
</constraints>
<profiles>
<profile id="f1e4-20bc-d3b1-cb79" name="Blazing Maw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b5d8-4dcf-b426-ba1b" name="Roaring Fyrestream" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cdea-fd51-d74f-7759" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6637-f60b-8f35-b8e5" type="max"/>
</constraints>
<profiles>
<profile id="af52-0587-82a9-e950" name="Roaring Fyrestream" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">9"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">See below</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">*</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="219f-2edd-c56e-30d8" name="Artefacts" hidden="false" collective="false" import="true" targetId="75d8-d2b2-772b-e9f0" type="selectionEntryGroup"/>
<entryLink id="277d-2084-6ef2-5d64" name="Command Traits" hidden="false" collective="false" import="true" targetId="8db2-e52d-b376-b998" type="selectionEntryGroup"/>
<entryLink id="9042-56e7-8966-4912" name="Magmadroth Traits" hidden="false" collective="false" import="true" targetId="3886-2846-4e7d-dd6a" type="selectionEntryGroup"/>
<entryLink id="5e7d-7fe6-63d2-25a6" name="Battalions" hidden="false" collective="false" import="true" targetId="bfd7-5a8f-8c70-70d2" type="selectionEntryGroup"/>
<entryLink id="d18e-a685-ea12-96d7" name="Magmadroth Wound Table" hidden="false" collective="false" import="true" targetId="a94a-70fb-c23f-dcbf" type="selectionEntry"/>
<entryLink id="9bee-9f93-d0fa-aa51" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="698d-1c41-a835-e3f0" name="General" hidden="false" collective="false" import="true" targetId="292c-59dc-7ac8-2383" type="selectionEntry">
<categoryLinks>
<categoryLink id="f11f-e284-7927-8f66" name="RUNEFATHER General" hidden="false" targetId="69da-2de5-cabb-05af" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4aff-3051-9464-f6d7" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="8fe6-fda9-9a8e-119e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="340"/>
</costs>
</selectionEntry>
<selectionEntry id="c0aa-7e29-3be9-8fa5" name="Auric Runemaster" publicationId="e67a-06d2-pubN65537" page="81" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="9718-40fe-6fff-3115" name="Auric Runemaster" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="increment" field="cd0e-fea6-411f-904d" value="1">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="36c2-a62f-8269-3258" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="8808-2ecd-5150-87d3" name="Volcano's Call" publicationId="271d-c3fa-142d-5ea5" page="2" hidden="false" typeId="eed7-4131-0a52-0668" typeName="Prayer">
<characteristics>
<characteristic name="Answer Value" typeId="276a-ab7e-145d-3ffc">3</characteristic>
<characteristic name="Range" typeId="fd81-4e98-28ac-092a">18"</characteristic>
<characteristic name="Description" typeId="0746-6cfb-5e15-53cb">As the chanter is carrying a Runic Iron, you can re-roll the chanting roll. If answered, pick 1 terrain feature wholly within range and visible to the chanter. Roll a dice for each model within 1" of that terrain feature. For each 6, that model’s unit suffers 1 mortal wound. In addition, until your next hero phase, that terrain feature blocks visibility in the same manner as a Wyldwood.</characteristic>
</characteristics>
</profile>
<profile id="2be1-aa83-62a2-5fe2" name="High Priest of the Zharrgrim" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is part of a Fyreslayers army, it knows all of the prayers from the Zharrgrim Blessings prayers scripture in addition to the other prayers it knows.</characteristic>
</characteristics>
</profile>
<profile id="c2cf-0a7a-9cb8-6e3a" name="Wise Council" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your hero phase, if your general is within 3" of any friendly AURIC RUNEMASTERS, you receive 1 command point.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1dee-642b-7cd6-424d" name="New CategoryLink" hidden="false" targetId="ac20-7d4d-2c40-1715" primary="false"/>
<categoryLink id="bfee-e812-8fd2-bce8" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="fed0-e691-dd1f-177a" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="b063-c16f-b2b3-1951" name="New CategoryLink" hidden="false" targetId="e8a5-e4c1-3d11-e7dd" primary="false"/>
<categoryLink id="300f-0c31-b3b0-67e7" name="New CategoryLink" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="25fc-d7ad-4cc5-d9c0" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="e8f7-c813-c32c-e6d7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="f9e3-202a-3cc1-af07" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="ff5e-24f8-cfe4-c832" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="aa4c-ecf2-2084-912c" name="Fyresteel Throwing Axe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e20-c8a8-2dd8-33e8" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7285-ed7a-ed7f-99b0" type="min"/>
</constraints>
<infoLinks>
<infoLink id="399f-def3-8275-ebd6" name="Fyresteel Throwing Axe (Hero)" hidden="false" targetId="cc01-4fcb-b49f-d334" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="39dd-13cd-d8b5-d5ac" name="Brazier Staff" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7981-862e-541f-5960" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b8a-b836-2ff4-8b47" type="max"/>
</constraints>
<profiles>
<profile id="61bc-5516-72ac-c34f" name="Brazier Staff" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="12dc-e624-27d4-13f5" name="Artefacts" hidden="false" collective="false" import="true" targetId="75d8-d2b2-772b-e9f0" type="selectionEntryGroup"/>
<entryLink id="e921-44d4-36c8-6129" name="Command Traits" hidden="false" collective="false" import="true" targetId="8db2-e52d-b376-b998" type="selectionEntryGroup"/>
<entryLink id="deaa-cc85-19db-958b" name="Prayers" hidden="false" collective="false" import="true" targetId="70ee-92db-57b3-d6e0" type="selectionEntryGroup"/>
<entryLink id="86c2-29a7-3c66-5347" name="Battalions" hidden="false" collective="false" import="true" targetId="bfd7-5a8f-8c70-70d2" type="selectionEntryGroup"/>
<entryLink id="b69e-6cdc-fd22-7692" name="General" hidden="false" collective="false" import="true" targetId="292c-59dc-7ac8-2383" type="selectionEntry">
<categoryLinks>
<categoryLink id="ff63-7e25-4ae8-56eb" name="PRIEST General" hidden="false" targetId="0b34-7ec9-23a0-9889" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="97f8-6eda-6b27-afe0" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="6e38-e033-dc55-7a9f" name="Bless" hidden="false" collective="false" import="true" targetId="c064-0ddb-52cf-5fb9" type="selectionEntry"/>
<entryLink id="b515-8dc0-7e0c-b529" name="Smite" hidden="false" collective="false" import="true" targetId="be59-6ab9-bf9f-9434" type="selectionEntry"/>
<entryLink id="b252-35e6-5336-6290" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="8fe6-fda9-9a8e-119e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</selectionEntry>
<selectionEntry id="79fb-4a68-797b-95ed" name="Auric Runesmiter" publicationId="e67a-06d2-pubN65537" page="81" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="aaf5-d06e-0fa8-b352" name="Auric Runesmiter" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="increment" field="cd0e-fea6-411f-904d" value="1">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="36c2-a62f-8269-3258" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="9f89-983a-288f-94fc" name="Magmic Tunnelling" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Instead of setting up this model on the battlefield, you can place this model to one side and say that it is set up underground as a reserve unit. Then, instead of setting up another friendly FYRESLAYERS unit, you can place that unit to one side and say that is will join this unit underground as a reserve unit.
At the end of your movement phase, you can set up this unit anywhere on the battlefield more than 9" from all enemy unit. Then, set up the unit that joined this unit wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b1f9-f803-1cfd-edc3" name="Runic Empowerment" hidden="false" targetId="71b4-47b1-5de7-2f89" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e6af-5631-b24b-3467" name="New CategoryLink" hidden="false" targetId="59a7-074f-10b9-d92e" primary="false"/>
<categoryLink id="40a8-dcb1-11a0-c750" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="17f7-8074-cee9-b899" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="9296-9259-1edb-0b84" name="New CategoryLink" hidden="false" targetId="e8a5-e4c1-3d11-e7dd" primary="false"/>
<categoryLink id="080e-9859-0d0e-9c00" name="New CategoryLink" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="67c4-33f2-9870-21b5" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="2119-b77c-db5e-af9f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="82f7-06b5-939f-a406" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="1fac-9396-bfab-3d98" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ba19-48b7-c394-3143" name="Latch-axe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e2d-b3c6-88b1-989c" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5f1-6185-dfb6-9ee7" type="min"/>
</constraints>
<profiles>
<profile id="f851-bb8f-6f26-b6ba" name="Latch-axe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fce1-9ca7-48a4-e361" name="Fyresteel Throwing Axe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b3f-b7a3-1fc4-544b" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="254e-334d-1aee-1961" type="min"/>
</constraints>
<infoLinks>
<infoLink id="f323-9692-b13c-78b1" name="Fyresteel Throwing Axe (Hero)" hidden="false" targetId="cc01-4fcb-b49f-d334" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="65c3-0c0f-61eb-39fa" name="Equipment Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f605-bc2a-91b0-a4f7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d399-8486-4db3-5fd9" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f3f4-c598-8d96-7f75" name="Runic Iron" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4800-3c4e-1ef6-0962" type="max"/>
</constraints>
<profiles>
<profile id="95f5-8b4b-a63b-0b28" name="Runic Iron" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll chanting roll for Runic Empowerment.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="89dc-91d7-04a0-b6af" name="Forge Key" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d8d2-0cc1-31c0-b376" type="max"/>
</constraints>
<profiles>
<profile id="b569-3de1-ac26-816b" name="Forge Key" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Increase range of Runic Empowerment to 18".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c071-aa96-97fd-3998" name="Artefacts" hidden="false" collective="false" import="true" targetId="75d8-d2b2-772b-e9f0" type="selectionEntryGroup"/>
<entryLink id="55c8-68a4-9e33-e49c" name="Command Traits" hidden="false" collective="false" import="true" targetId="8db2-e52d-b376-b998" type="selectionEntryGroup"/>
<entryLink id="f4c4-8f90-a314-f7f2" name="Prayers" hidden="false" collective="false" import="true" targetId="70ee-92db-57b3-d6e0" type="selectionEntryGroup"/>
<entryLink id="6e70-4aa3-5615-fb6c" name="Battalions" hidden="false" collective="false" import="true" targetId="bfd7-5a8f-8c70-70d2" type="selectionEntryGroup"/>
<entryLink id="064f-8b53-7cc1-accb" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="38ca-4a20-2275-45fe" name="General" hidden="false" collective="false" import="true" targetId="292c-59dc-7ac8-2383" type="selectionEntry">
<categoryLinks>
<categoryLink id="8ded-13cb-c758-6554" name="PRIEST General" hidden="false" targetId="0b34-7ec9-23a0-9889" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3351-d6cf-1745-5aa7" name="Bless" hidden="false" collective="false" import="true" targetId="c064-0ddb-52cf-5fb9" type="selectionEntry"/>
<entryLink id="0ecc-2a5c-4e58-6185" name="Smite" hidden="false" collective="false" import="true" targetId="be59-6ab9-bf9f-9434" type="selectionEntry"/>
<entryLink id="1561-dbf3-ec82-4dca" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="8fe6-fda9-9a8e-119e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</selectionEntry>