forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrder - Fyreslayers - Data.cat
4208 lines (4208 loc) · 316 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 id="81cf-7df5-86e6-b78f" name="Order - Fyreslayers - Data" revision="40" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="e67a-06d2-pubN65537" name="Order Battletome: Fyreslayers"/>
<publication id="e67a-06d2-pubN69594" name="Battletome: Fyreslayers Errata, July 2018"/>
<publication id="68d3-0b6a-3775-07d9" name="Battletome: Fyreslayers Official Errata, May 2019"/>
<publication id="9cbd-6717-1de9-c57a" name="White Dwarf - June 2019"/>
</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>
</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"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="8e35-cdef-4c7e-0a1c" name="Allegiance" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="minInForce" type="min"/>
<constraint field="selections" scope="force" value="1.0" 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.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">
<selectionEntries>
<selectionEntry id="a46a-e086-cad7-00eb" name="Ur-Gold" 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="9cfb-a42f-5683-1e22" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b0bd-04d7-2a7c-72b7" type="max"/>
</constraints>
<profiles>
<profile id="5a06-5d07-7912-d72c" name="Ur-gold Runes" 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 roll a dice. On a 1-5, the rune has the standard effect. On a 6 it also has the enhanced effect. The effect(s) of the rune lasts until the start of your next hero phase. Each ur-gold rune can only be activated once in each battle, and no more than one can be actived at the same time. Once you have used a rune, you can choose a new one to use in your next hero phase, but you cannot use the same one again.</characteristic>
</characteristics>
</profile>
<profile id="a8b9-dee6-e142-5dd4" name="Rune of Fury" hidden="false" typeId="84c1-a205-4de9-2105" typeName="Ur-Gold Rune">
<characteristics>
<characteristic name="Effect" typeId="3b0b-93bb-c656-56a0">You can re-roll hit rolls of 1 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="1ece-0db0-057e-10e3" 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, add 1 to the Damage characteristic of the weapon for that attack.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Roll a dice for each enemy unit within 3" of any friendly FYRESLAYERS units when this rune is activated; on a 2+ that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="9f8d-0e03-1cb5-752d" 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="c961-fc0a-b899-607b" 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">Add 1 to the Bravery characteristic of friendly FYRESLAYERS units.</characteristic>
<characteristic name="Enhanced Effect" typeId="4429-3e90-af34-dc14">Friendly FYRESLAYERS units do not have to take battleshock tests.</characteristic>
</characteristics>
</profile>
<profile id="31b4-fb40-a7e4-66ec" 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="17c8-2d62-77d9-98f5" 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>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</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.0" 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" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to charge rolls for VOSTARG units. In addition, in your movement phase in the first battle round, if you declare a friendly VOSTARG unit will run, do not make a run roll. Instead, add 6" to the Move characteristic of all models in that unit for that phase.</characteristic>
</characteristics>
</profile>
<profile id="1a90-5f96-cbe6-3d6b" name="Honour Our Ancestors" 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 combat phase. If you do so, pick a friendly VOSTARG HERO. Until the end of that phase, add 1 to hit rolls for attacks made by that HERO and friendly units of VULKITE BERZERKERS and HEARTHGUARD BERZERKERS wholly within 12" of that HERO. You cannot use this command ability more than once per phase.</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.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" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can choose 2 additional GREYFYRD HEROES from your army to have artefacts of power.</characteristic>
</characteristics>
</profile>
<profile id="4080-421c-5671-2ade" name="Expert Cohesion" 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 in the combat phase when a friendly GREYFYRD HERO is picked to fight. Other friendly GREYFYRD HEROES that are not mounted on a MAGMADROTH and are within 3 of that HERO can fight immediately afterwards, before your oppenent gets the option to pick a unit to fight. Any model that does so cannot fight again in that combat phase unless an ability or spell allows them to fight more than once.</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.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" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">HERMDAR units wholly within enemy territory or wholly within 12" of an objective do not take battleshock tests.</characteristic>
</characteristics>
</profile>
<profile id="01c9-dbe0-fa1b-d862" name="Skull-breakers and Oath-takers" 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 combat phase. Pick 1 friendly HERMDAR VULKITE BERZERKERS unit or 1 friendly HERMDAR HEARTHGUARD BERZERKERS unit wholly within 12" of a HERMDAR HERO. That unit fights at the start of that combat phase, before the players pick any other units to fight with in that combat phase.</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.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" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Each MAGMADROTH in a LOFNIR army, instead of only 1, can be given a Magmadroth trait.</characteristic>
</characteristics>
</profile>
<profile id="1d06-ea7f-5fd9-11fd" name="Torrent of Magma" 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 in your shooting phase. If you do so, pick an enemy unit within 12" of a friendly LOFNIR PRIEST. Until the end of that phase, add 1 to hit and wound rolls for attacks made with Magmapikes by friendly units that target that enemy unit. The same unit cannot be picked to be affected by this command ability more than once per phase.</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.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="22a9-7d52-14e2-eeab" name="Allegiance: Order" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1494-6390-d6a0-7358" name="Defiant Avengers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll battleshock tests for friendly ORDER units in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1823-43dd-1af2-b910" name="Auric Hearthguard" publicationId="e67a-06d2-pubN65537" page="111" 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.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.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a089-15db-b9ac-fc2f" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="afd0-613f-c3f8-31c9" name="Karl" 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 missile weapon. </characteristic>
</characteristics>
</profile>
<profile id="716c-e897-3f32-7fba" name="Sworn Protectors" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time you allocate a wound or mortal wound to a friendly FYRESLAYERS HERO that is not mounted on a MAGMADROTH and is within 3" of any friendly units with this ability. On a 4+ that wound or mortal wound is negated, and you must choose a friendly unit with this ability that is within 3" to suffer 1 mortal wound after all wounds or mortal wounds have been allocated to that friendly HERO.</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">7</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"/>
</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="points" value="100">
<conditions>
<condition field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7eb1-437f-f0f1-79a8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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">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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf2e-4c64-fd51-b179" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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">Add 1 to the Damage characteristic for attacks made by Magmapike missile weapons that target MONSTER. In addition, if any wounds are inflicted on a MONSTER by Magmapike missile weapons, roll a dice. On a 4+, until the end of that unit’s next turn, halve that unit’s Move characteristic and subtract 1 from hit rolls for attacks made by that unit. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e38-766a-a78e-d510" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="88ae-2998-b72a-3f1c" name="Auric Runefather" publicationId="e67a-06d2-pubN65537" page="103" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="571a-43be-ec53-ea94" name="Auric Runefather" 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">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="12f3-c808-53e0-4a3a" name="Lodge Leader" hidden="false" targetId="bce0-112a-991d-00f4" type="profile"/>
<infoLink id="1df6-ff84-eefd-a5d2" name="Stare Down" hidden="false" targetId="8a11-0e04-65b6-cc78" type="profile"/>
<infoLink id="8507-954d-d5cd-b9bd" name="Weapon-breaker" hidden="false" targetId="93a8-deea-2073-d9a2" 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"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="bc39-a830-aaee-f739" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fabe-7a67-f415-5613" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5df6-e5d1-4629-89f2" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a7a-aa35-f734-62a3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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">3</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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3219-8b2c-8fa9-62ae" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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.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"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d62c-b254-872a-3500" name="Auric Runefather on Magmadroth" publicationId="e67a-06d2-pubN65537" page="98" 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">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">14</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="8c5d-055c-234f-0ef3" name="Wounds0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Roaring Fyrestream</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Claws and Horns</characteristic>
</characteristics>
</profile>
<profile id="1e3b-6033-592d-8b11" name="Wounds1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-3</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">12"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">6</characteristic>
</characteristics>
</profile>
<profile id="73c1-7e01-3eea-54bc" name="Wounds2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">4-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="2c9f-9488-7ffc-5607" name="Wounds3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">7-9</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="eb4e-e44a-221f-e0be" name="Wounds4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10-12</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="0ab5-4e18-d845-ea15" name="Wounds5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">13+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="c869-5769-9ad8-deb3" name="Roaring Fyrestream" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Do not use the attack sequence for an attack made with a Roaring Fyrestream. Instead, make the dice roll shown on the damage table above. If the roll is equal to or less than the number of models in the target unit, that unit suffers D3 mortal wounds. If the roll is equal to or less than the number of models in the target unit, and the target unit is within 6" of this model, the target unit suffers D6 mortal wounds instead.</characteristic>
</characteristics>
</profile>
<profile id="d086-3859-e67c-f923" name="Lashing Tail" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the combat phase, roll a dice for each enemy unit within 3" of this model. If the roll is less than the number of models in that unit, it suffers D3 mortal wounds. </characteristic>
</characteristics>
</profile>
<profile id="db24-b55a-72be-08bd" name="Volcanic Blood" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time a wound is allocated to this model that was inflicted by a melee weapon. On a 4+ the attacking unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="9afd-5078-b947-454b" name="Steadfast Advance" publicationId="e67a-06d2-pubN69594" 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 your hero phase. If you do so, pick a friendly model with this command ability. Until the start of your next hero phase, do not take battleshock tests for friendly FYRESLAYERS units while they are wholly within 18" of that model.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3b39-3573-28c9-ae31" name="Stare Down" hidden="false" targetId="8a11-0e04-65b6-cc78" type="profile"/>
<infoLink id="9dfe-d41f-76be-40ac" name="Weapon-breaker" hidden="false" targetId="93a8-deea-2073-d9a2" 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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="553f-44fb-1c69-8864" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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">3</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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14a6-7881-9402-e6e9" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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">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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="554a-14df-1951-c77c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c530-f5c8-b030-9089" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">1</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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0ab0-6e07-ea9d-aed9" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="acbd-ff4f-7224-7fe5" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="921b-b623-d5af-2e0f" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cdea-fd51-d74f-7759" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">-</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">-</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">-</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="270.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c0aa-7e29-3be9-8fa5" name="Auric Runemaster" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="9718-40fe-6fff-3115" name="Auric Runemaster" 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">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="27bb-8663-5388-a92b" name="Holy Seeker" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can pick 1 enemy unit within 12" of this model and roll 2 dice. If you roll at least one 6, for the rest of the battle, you can re-roll hit rolls of 1 for attacks made by friendly FYRESLAYERS units that target that unit. If you roll two or more 6s, for the rest of the battle, you can re-roll hit and wound rolls of 1 for attacks made by friendly FYRESLAYERS units that target that unit instead.</characteristic>
</characteristics>
</profile>
<profile id="8808-2ecd-5150-87d3" name="Volcano's Call" 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, this model can chant this prayer. If they do so, make a prayer roll by rolling a dice. On a 1-2, the prayer is not answered. On a 3+ the prayer is answered. If this prayer is answered, pick a terrain feature within 18" of this model. Roll a dice for each model within 1" of that terrain feature. For each roll of a 6, that model’s unit suffers 1 mortal wound. In addition, until your next hero phase, that terrain feature has the ‘Deadly’ scenery rule in addition to any other scenery rules it may have.</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"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a089-15db-b9ac-fc2f" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f869-381a-d911-b239" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f581-70fc-3c0f-7a34" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e776-49c5-527e-9d65" name="Runic Iron" 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="1f7e-808e-59da-71e8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2d0-324a-1a31-1a3f" type="min"/>
</constraints>
<profiles>
<profile id="6632-d36e-b92f-7952" name="Runic Iron" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e20-c8a8-2dd8-33e8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7981-862e-541f-5960" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">2</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</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.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="Zharrgrim Blessing" hidden="false" collective="false" import="true" targetId="3182-7f5b-0313-de75" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="79fb-4a68-797b-95ed" name="Auric Runesmiter" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="aaf5-d06e-0fa8-b352" name="Auric Runesmiter" 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">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="b94e-526f-3963-6285" name="Runic Empowerment" 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, this model can chant this prayer. If they do so, make a prayer roll by rolling a dice. On a 1-2, the prayer is not answered. On a 3+ the prayer is answered. If this prayer is answered, pick a friendly FYRESLAYERS unit wholly within 12" of this model, or wholly within 18" of this model if this model is armed with a Forge Key. You can re-roll wound rolls for attacks made by that unit until the start of your next hero phase.</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. If you do so, when you would set up another friendly FYRESLAYERS unit, instead of setting up that unit on the battlefield, you can say that it is joining this model underground as a reserve unit. 1 unit can join this model in this way. At the end of your movement phase, you can set up this model anywhere on the battlefield, more than 9" from any enemy units; then set up any unit that joined this model wholly within 12" of this model and more than 9" from any enemy units. Any reserve units underground that are not set up on the battlefield before the start of the fourth battle round are destroyed.</characteristic>
</characteristics>
</profile>
</profiles>
<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"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e2d-b3c6-88b1-989c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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">1</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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b3f-b7a3-1fc4-544b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="46bb-ca56-21c2-e2ad" name="Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7253-7f3b-bf86-0adb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea4a-3b9f-990e-c343" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="2fa5-ea66-5127-b942" name="Runic Iron" 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="d5b1-c5a9-20d4-2aa2" type="max"/>
</constraints>
<profiles>
<profile id="ecb6-c4e5-b928-828a" name="Runic Iron" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d571-a736-1a40-b1b2" name="Forge Key" 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="6871-822a-9de9-f3bc" type="max"/>
</constraints>
<profiles>
<profile id="920f-8c71-870b-b837" 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" if this model is armed with a Forge Key.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f64c-c9ab-c927-bd82" name="General" hidden="false" collective="false" import="true" targetId="292c-59dc-7ac8-2383" type="selectionEntry"/>
<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="Zharrgrim Blessing" hidden="false" collective="false" import="true" targetId="3182-7f5b-0313-de75" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="92c5-8b9d-f3e2-20e5" name="Auric Runesmiter on Magmadroth" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8dc2-c5d6-f738-6e26" name="Auric Runesmiter on Magmadroth" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">14</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="960e-50c7-a16c-3b9b" name="Wounds0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Roaring Fyrestream</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Claws and Horns</characteristic>
</characteristics>
</profile>
<profile id="9107-eb17-5325-3a95" name="Wounds1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-3</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">12"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">6</characteristic>
</characteristics>
</profile>
<profile id="6d83-77f1-190f-b3a8" name="Wounds2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">4-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="e19a-e71b-b4f5-8011" name="Wounds3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">7-9</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="0fd6-8f6c-8578-3f75" name="Wounds4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10-12</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2D3</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="23ed-d100-9ed7-4160" name="Wounds5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">13+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="6fe4-d414-bde7-0ebd" name="Roaring Fyrestream" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Do not use the attack sequence for an attack made with a Roaring Fyrestream. Instead, make the dice roll shown on the damage table above. If the roll is equal to or less than the number of models in the target unit, that unit suffers D3 mortal wounds. If the roll is equal to or less than the number of models in the target unit, and the target unit is within 6" of this model, the target unit suffers D6 mortal wounds instead.</characteristic>
</characteristics>
</profile>
<profile id="54a6-14eb-14fb-cea9" name="Lashing Tail" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the combat phase, roll a dice for each enemy unit within 3" of this model. If the roll is less than the number of models in that unit, it suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="a459-f83d-933c-9a94" name="Volcanic Blood" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time a wound is allocated to this model that was inflicted by a melee weapon. On a 4+ the attacking unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="c987-ed04-ae48-a63c" name="Runic Empowerment" 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, this model can chant this prayer. If they do so, make a prayer roll by rolling a dice. On a 1-2, the prayer is not answered. On a 3+ the prayer is answered. If this prayer is answered, pick a friendly FYRESLAYERS unit wholly within 12" of this model, or wholly within 18" of this model if this model is armed with a Forge Key. You can re-roll wound rolls for attacks made by that unit until the start of your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="2d3e-df0c-e3eb-2c45" name="Grand Ritual of Awakening" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, during your hero phase, you can say this model has consumed a nugget of ur-gold. If you do so, add 1 to save rolls for attacks that target friendly FYRESLAYER units wholly within 12" of this model until the start of your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="fa20-0a5d-e0ef-0b70" name="New CategoryLink" hidden="false" targetId="59a7-074f-10b9-d92e" primary="false"/>
<categoryLink id="64c1-8d9d-3e8e-5d12" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="125b-cc6d-759e-f019" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="bdd1-ea03-d63b-5832" name="New CategoryLink" hidden="false" targetId="9277-1530-7f0f-718f" primary="false"/>
<categoryLink id="74a4-77eb-c781-53ce" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="d086-b668-b295-b04b" name="New CategoryLink" hidden="false" targetId="e8a5-e4c1-3d11-e7dd" primary="false"/>
<categoryLink id="661c-8be5-aff5-a5f4" name="New CategoryLink" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="d385-14ec-db53-f37a" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="fba5-7195-1bed-2b3f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>