-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fyreslayers - Library.cat
1982 lines (1982 loc) · 146 KB
/
Fyreslayers - Library.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 library="true" id="c401-2e10-cae8-d7f1" name="Fyreslayers - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Auric Runesmiter on Magmadroth" hidden="false" id="268e-676d-c731-7d26" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="c1df-438e-284d-94c2" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="b694-5293-61f1-f50a" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="fb85-6c1e-2ca9-272e" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="4edb-a036-c7cf-e382" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="a0a9-55c-e97e-c13b" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="5128-14cf-7fbc-35ab" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="MAGMADROTH" hidden="false" id="1874-32d8-787f-99cb" targetId="2152-3158-ce97-4b6d" primary="false"/>
<categoryLink name="PRIEST (1)" hidden="false" id="987e-988b-6480-c7a8" targetId="3fe-84f4-cec6-a1c1" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="ad97-ba9-5669-14c5" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runesmiter on Magmadroth" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="6529-f516-5d3d-626">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Volcanic Blood" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3156-3534-cfe6-8c1f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If you make an unmodified save roll of 1 for a combat attack that targets this unit, inflict 1 mortal damage on the attacking unit after the **^^Fight^^** ability has been resolved.</characteristic>
</characteristics>
</profile>
<profile name="Runic Empowerment" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="376f-7c6d-e7c6-cd25">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Fyreslayers^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, add 1 to wound rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Lashing Tail" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e5ec-9eae-f2a8-de4e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll 2D6. If the roll is equal to or less than the number of models in the target unit, inflict D3+3 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5162-9f4c-6746-f1f5">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its ** Magmadroth’s Claws and Horns** is 4.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runesmiter on Magmadroth" hidden="false" id="80d0-4144-5e69-7e19">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Latch-axe" hidden="false" id="472d-39d9-2a4c-32dc">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="23a9-55d8-5438-6179"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9110-111b-c033-4be2"/>
</constraints>
<profiles>
<profile name="Latch-axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="83d7-e4be-aeb9-1a30">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Roaring Fyrestream" hidden="false" id="1db8-ccb8-5414-c801">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8548-3014-518-3944"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="73e5-927f-d19c-aef1"/>
</constraints>
<profiles>
<profile name="Roaring Fyrestream" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="cc76-63a4-1966-c8d3">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Anti‑**^^Infantry^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Magmadroth’s Blazing Maw" hidden="false" id="157c-9563-cfb0-22dc">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2207-c4a2-2254-514b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8ba6-b7d7-5012-b557"/>
</constraints>
<profiles>
<profile name="Magmadroth’s Blazing Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="cf81-1b99-932e-96ee">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Magmadroth’s Claws and Horns" hidden="false" id="e9b0-dc04-7e98-a751">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6bc-8efb-106b-ae3c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f592-f35-534a-d20c"/>
</constraints>
<profiles>
<profile name="Magmadroth’s Claws and Horns" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4457-f1d4-a498-5ef9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c2eb-9088-7880-9a4b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c911-a8aa-37ec-e8ec"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Grimhold Exile" hidden="false" id="145f-e68f-3a4e-c25a" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="2416-bc6-8d78-cf4d" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="bf8c-8d10-e463-2c9b" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="8d55-29d7-e47d-3d24" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="1b1d-f8a2-9d0f-4e10" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="f0c6-f796-6174-547" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="ad51-1dbf-6ed4-89e3" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a9ac-5ee3-64f4-91e8" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Grimhold Exile" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e874-66da-a26b-2612">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Honour to Grimnir!" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c0aa-e32f-bf45-9a98">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 friendly **^^Fyreslayers Infantry^^** units wholly within 12" of this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">You can re-roll charge rolls for the targets for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Oathbound" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="41c5-88ba-a063-30eb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a number of dice equal to the target’s Health characteristic. For each 4+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**, **^^Attack^^**, **^^Fight^^**</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Grimhold Exile" hidden="false" id="5e78-b19f-f426-d676">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Fyre-rune Hammers" hidden="false" id="8e84-3eb6-a35b-6aea">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="440f-73a5-b2fd-cd66"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8c3c-bfa0-d339-14e1"/>
</constraints>
<profiles>
<profile name="Fyre-rune Hammers" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="20a1-7558-52be-497c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e5fa-805a-1d18-15be"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d093-aa0-3757-d690"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Flamekeeper" hidden="false" id="4a5c-a6be-cecb-a47a" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="73e4-9f75-760a-27ca" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="87be-b9b5-ecc5-ff1d" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="5cbf-2bb1-f203-b01d" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="30bc-16ab-7e49-6f1f" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="6d0-d137-3702-eb00" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="5fc-2285-12c4-8e5a" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="e84d-b753-ec08-24cd" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Flamekeeper" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="2f1e-21e2-1563-2753">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Masterflame Rune" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="72bf-6539-c07a-6695">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If any friendly units have been destroyed during the battle, pick a friendly **^^Fyreslayers Infantry^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. If the roll is equal to or less than the number of **^^Fyreslayers^^** units that have been destroyed during the battle, pick 1 of the following effects to apply until the start of your next turn:
**Grimnir’s Grit:*** The target has **^^Ward (5+)^^**.
***Grimnir’s Resolve:*** Add 2 to charge rolls for the target.
***Grimnir’s Vengeance:*** Add 1 to the Damage characteristic of the target’s melee weapons.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Flamekeeper" hidden="false" id="e569-ac21-e3e7-5c7d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Brazier Axe" hidden="false" id="f8e2-219-6975-8d9d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e111-8141-57e6-f177"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e0ee-f80-b46b-fc7e"/>
</constraints>
<profiles>
<profile name="Brazier Axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="175b-e173-cf00-c48d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d39b-812d-f01f-5818"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e167-64f1-627-136b"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Runefather on Magmadroth" hidden="false" id="37e2-9685-abe9-bc10" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="aef4-dee-62b7-f0d7" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="2a47-d45e-7a5d-1413" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="58e0-ac1a-134c-2c86" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="6b70-b78b-f860-ee03" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="a984-9521-e361-7046" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="4aaa-7fba-8f7d-9ca0" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="3d1-6ea-3699-a00d" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="MAGMADROTH" hidden="false" id="599e-d51d-d155-7b9" targetId="2152-3158-ce97-4b6d" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a1e5-e2b9-80fb-8004" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runefather on Magmadroth" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ba1a-f114-a619-d8a4">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Volcanic Blood" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="7d91-4555-1f2e-bc64">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If you make an unmodified save roll of 1 for a combat attack that targets this unit, inflict 1 mortal damage on the attacking unit after the **^^Fight^^** ability has been resolved.</characteristic>
</characteristics>
</profile>
<profile name="Tactical Acumen" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c67d-fd63-a6a0-32b9">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle (Army), Your Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, add 1 to the Attacks characteristic of melee weapons used by friendly **^^Fyreslayers^^** units while they are wholly within 12" of this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Raging Inferno" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="51b7-87f1-b470-cdac">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, subtract 1 from save rolls for the target for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="6a3f-a7e8-b510-153a">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its ** Magmadroth’s Claws and Horns** is 4.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runefather on Magmadroth" hidden="false" id="9946-f8ae-2717-9535">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Latchkey Grandaxe" hidden="false" id="daa4-2c9b-8b53-8da2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e754-1561-4b59-7dbd"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7a3e-613c-c7df-62b4"/>
</constraints>
<profiles>
<profile name="Latchkey Grandaxe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="43b3-f23b-f4ef-dbfb">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Roaring Fyrestream" hidden="false" id="35b3-c5e-b8c1-7636">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ea61-950c-d479-7539"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="233e-8bf6-7fce-fadf"/>
</constraints>
<profiles>
<profile name="Roaring Fyrestream" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="3635-d5d9-b374-1786">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Anti‑**^^Infantry^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Magmadroth’s Blazing Maw" hidden="false" id="a517-96fa-6414-a70f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ef36-4699-b732-ee28"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="17ab-4f78-e528-bc00"/>
</constraints>
<profiles>
<profile name="Magmadroth’s Blazing Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="40be-88bc-e21c-66c9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Magmadroth’s Claws and Horns" hidden="false" id="fa86-6b2f-e277-6ca3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f2f7-7617-fffa-2d47"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1b79-8f69-9f1d-c860"/>
</constraints>
<profiles>
<profile name="Magmadroth’s Claws and Horns" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c0b5-3ea8-dbe3-f870">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bca2-8d17-f4e6-cbfa"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="57bd-ac59-cd87-44e4"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Runeson on Magmadroth" hidden="false" id="de0d-34a7-ac61-53de" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="7272-8e57-cdda-ab50" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="9209-841f-3662-e5aa" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="cbe0-2eca-e7f8-8c1b" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="53fc-6d2f-c301-3697" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="92b7-4754-998f-c6bd" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="87b7-1e8c-684f-38af" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="MAGMADROTH" hidden="false" id="8dae-f5cb-fbdf-985d" targetId="2152-3158-ce97-4b6d" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="b5af-cf70-bf99-efe6" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runeson on Magmadroth" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="65b5-fca3-bf4a-4497">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Volcanic Blood" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8856-c927-3f44-83b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If you make an unmodified save roll of 1 for a combat attack that targets this unit, inflict 1 mortal damage on the attacking unit after the **^^Fight^^** ability has been resolved.</characteristic>
</characteristics>
</profile>
<profile name="Vying for Glory" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="6399-bf4a-70fc-9465">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time this unit destroys a **^^Monster^^**, add 1 to the Attacks characteristic of this unit’s **Ancestral Weapons** for the rest of the battle. This unit can be affected by this ability multiple times and the effects are cumulative.</characteristic>
</characteristics>
</profile>
<profile name="Dominating Roar" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cf3a-c6ff-6402-2da8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit has fewer damage points than the target, subtract 10 from the target’s control score for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="42ec-909f-19c6-c41f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its ** Magmadroth’s Claws and Horns** is 4.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runeson on Magmadroth" hidden="false" id="5f94-db21-96ed-b75d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ancestral Weapons" hidden="false" id="9341-9ae5-616c-6e78">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="35a6-82b6-9c1-79b6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eae7-27e9-6ab6-8d7c"/>
</constraints>
<profiles>
<profile name="Ancestral Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="8681-f0f1-1dd6-c521">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti‑**^^Monster^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Roaring Fyrestream" hidden="false" id="93a1-c14e-a481-448a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2743-46b3-8e08-cc80"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bd61-675-c016-f01a"/>
</constraints>
<profiles>
<profile name="Roaring Fyrestream" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="96b0-5ce0-6856-3721">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Anti‑**^^Infantry^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Magmadroth’s Blazing Maw" hidden="false" id="3d3c-11f9-17c-c5f4">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a704-12c7-fac4-175"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fbf2-6159-48a8-f69d"/>
</constraints>
<profiles>
<profile name="Magmadroth’s Blazing Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7e63-b1df-cd6b-8813">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Magmadroth’s Claws and Horns" hidden="false" id="e1b3-47e7-a903-aeef">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e50a-1062-2e8-4fa2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f473-6d32-d8fa-3d3a"/>
</constraints>
<profiles>
<profile name="Magmadroth’s Claws and Horns" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="303d-9e40-fc98-3b44">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="992a-2d56-5e62-6c19"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9421-db60-cd4c-e1d4"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Runeson" hidden="false" id="94e6-d5d5-c8e6-7282" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="6be2-187a-332-6e44" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="f2b8-f4f-e95e-ef2c" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="f6c9-29ab-68b7-3f03" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="2c28-41e0-594c-e475" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="db14-59b4-40c9-1ee7" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6575-b383-81d7-4046" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="40a5-9a32-1c73-a2b0" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runeson" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="63e4-4d1-bfc9-dc95">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Feerless Charge" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f66a-bf06-54dd-eaab">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit charged this turn, for the rest of the turn, add 1 to charge rolls for friendly **^^Fyreslayers Infantry^^** units while they are wholly within 18" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Dauntless Assault" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8f6-b319-e55b-e72c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non-**^^Hero Fyreslayers Infantry^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runeson" hidden="false" id="4706-cfbc-b81f-33b9">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ancestral Weapons" hidden="false" id="901f-816b-d5f8-cacb">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8df2-4145-87f-4069"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="485d-987e-4731-f0da"/>
</constraints>
<profiles>
<profile name="Ancestral Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2f93-2f24-3b71-4ad8">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti‑**^^Monster^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3c2e-23fb-731e-6fa1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="678e-36e3-7e40-b7f"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Runesmiter" hidden="false" id="7b03-4613-6b5b-a9ce" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="59ef-ab61-945e-ffb8" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="8a1-20e0-7c42-7599" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="3ff1-ae1e-e65d-47c3" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="a64a-ba96-bc2c-3283" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="6cb8-8076-48ea-5108" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="5a18-dfa8-1cb-bc76" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="PRIEST (1)" hidden="false" id="5065-1c1f-a66b-230c" targetId="3fe-84f4-cec6-a1c1" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="bcd9-ad52-25f0-986" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runesmiter" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="3df4-ea4-3618-24c8">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Emergence" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c8ea-6a90-69a0-5c09">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit if it is **underground**.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up this unit anywhere on the battlefield more than 9" from all enemy units. Then, set up the other unit that was set up **underground** with it (if any) wholly within 6" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Magmic Tunneling" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c370-d3c5-7aa-1f31">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit and up to 1 unit in its regiment if neither unit has been deployed.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up those units in reserve **underground**. They have now been deployed.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Deploy^^**</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runesmiter" hidden="false" id="d96d-e7ba-362d-73ee">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Latch-axe" hidden="false" id="3909-d6f1-93a-9ab7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="db4a-c424-8853-64f2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="59c0-f1c5-1d76-3da8"/>
</constraints>
<profiles>
<profile name="Latch-axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="dba4-7280-f235-4c3b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d874-3bc-3a9a-fd85"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9b08-3b11-77ff-2c2e"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Runemaster" hidden="false" id="21bf-d0a3-f872-2def" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="b24e-d556-e8ab-ef05" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="f668-2e3-5cdf-64df" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="1238-914d-9604-e06f" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="dddf-5da6-b01e-b2f5" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="fd2c-6ec-994a-5e8a" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="bd89-8e5a-303c-f57b" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="PRIEST (2)" hidden="false" id="bb9d-9089-963c-f4b4" targetId="e692-853d-6db8-fdbe" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5e7-1dc0-fdd3-d91a" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runemaster" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1db0-7b21-3764-1ef2">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="High Priest of the Zharrgrim" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="d2c0-668c-241a-8ff3">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time a **^^Prayer^^** chanted by this unit is answered, this unit gains a **magmic power token**.</characteristic>
</characteristics>
</profile>
<profile name="Master of the Runes" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1b2e-e8ec-e385-1318">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Reaction: You declared an **^^Ur-gold Rune^^** ability</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove 3 of this unit’s **magmic power tokens**. If you do so, apply the effect below that corresponds to the **^^Ur-gold Rune^^** ability that was used:
***Rune of Fury:*** For the rest of the battle round, add 1 to wound rolls for combat attacks made by friendly **^^Fyreslayers^^** units while they have **^^Strike-first^^**.
***Rune of Fiery Determination:*** Add 1 to save rolls for friendly **^^Fyreslayers^^** units for the rest of the battle round.
***Rune of Relentless Zeal:*** Add 1 to run rolls and charge rolls for friendly **^^Fyreslayers^^** units for the rest of the battle round.
***Rune of Searing Heat:*** Add 1 to the Rend characteristic of melee weapons used by friendly **^^Fyreslayers^^** units for the rest of the battle round.
***Rune of Farsight:*** Increase the range of the ‘Rune of Farsight’ ability to 16".</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runemaster" hidden="false" id="cda1-b920-2c10-9461">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Brazier Staff" hidden="false" id="6e0c-539-ec01-a276">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e498-da1d-f952-a409"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c750-fd93-664b-4c7e"/>
</constraints>
<profiles>
<profile name="Brazier Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="983f-d6c3-7777-108a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="de06-5340-d2a7-5617"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8e71-52de-1802-343e"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Battlesmith" hidden="false" id="eb16-2bd1-6982-c82d" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="110a-eab-8eaa-8b70" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="9ea0-c535-f588-15ad" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="f542-f67b-967a-c66c" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="dcd0-4098-d9e2-95b2" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="3a4b-7ded-443-2543" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="be53-2adc-5b69-e94b" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5666-b468-dff4-c59c" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battlesmith" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="2db9-61a0-3da8-4d8f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Icon of Grimnir" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="68b9-380a-b47a-9d9c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Ignore negative modifiers to the control scores of friendly **^^Fyreslayers^^** units while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Lord of the Lodge" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="7c8f-5efb-a5ba-b3ed">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If a friendly unit wholly within 12" of this unit uses the ‘Rally’ command, you can make 3 additional rally rolls of D6.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Battlesmith" hidden="false" id="ac10-40d-59c2-305a">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ancestral Battle-axe" hidden="false" id="c064-d8b4-4be8-43d3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="520c-9891-a13d-ebec"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eec0-2aae-eba5-afec"/>
</constraints>
<profiles>
<profile name="Ancestral Battle-axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="871c-6585-9032-3f2a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a52a-52d0-2579-5065"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7f9c-18c4-b1c8-ecb2"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Grimwrath Berzerker" hidden="false" id="1b3c-edf1-cb89-c9" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="5004-5b2d-b4d-cdd0" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="5149-9d2-1d55-b052" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="2263-5757-84ac-9ec1" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="fa57-231a-169b-507e" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="fa55-5f7c-d35b-f92c" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="f028-ec28-7c84-6cbf" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="39eb-7668-5314-f558" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Grimwrath Berzerker" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c6e6-d289-4915-119b">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Grimwrath Oaths" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4915-7c6c-f457-d0bc">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following oaths for this unit to swear:
***‘I will guard them with my life!’:*** While this unit is wholly within 6" of another friendly **^^Fyreslayers Hero^^**:
• Add 1 to hit rolls for this unit’s attacks.
• Add 1 to ward rolls for this unit.
If a friendly **^^Fyreslayers Hero^^** wholly within 6" of this unit is destroyed, this effect no longer applies.
***‘I will not be stopped!’:*** Add 1 to charge rolls for this unit, and add 1 to save rolls for this unit while it is in combat. If this unit uses the ‘Retreat’ or ‘Rally’ abilities, this effect no longer applies.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Battle-fury" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7dca-675a-fae2-16f8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is in combat, it can use 2 **^^Fight^^** abilities this phase. After the first is used, however, this unit has **^^Strike-last^^** for the rest of the phase.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Grimwrath Berzerker" hidden="false" id="b551-cf82-cd6a-9793">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Fyrestorm Greataxe" hidden="false" id="74d8-5a7-86f3-2413">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ff06-46f0-e74-4fa"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a8fe-5e21-46a1-705a"/>
</constraints>
<profiles>
<profile name="Fyrestorm Greataxe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="a66-83c7-a677-fa4b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3488-aa50-d755-881"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1b5f-6a43-e396-98f0"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Auric Runefather" hidden="false" id="aa8-9db3-b817-6324" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="c521-75b4-b06f-dbf0" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="590e-f99e-bb77-c2d7" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="ee2a-9635-bd22-5e68" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="1ba6-a895-1c-df8f" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="a172-808f-dee7-9887" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="136-6a62-6bc3-7a3b" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="dcfb-2513-cffc-6fd2" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="158b-8032-5821-6877" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Auric Runefather" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="eafd-cc37-9572-3afe">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Royal Retinue" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ba46-feee-fe38-c2e1">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add the current battle round number to the control scores of friendly **^^Fyreslayers Infantry^^** units wholly within 12" of this unit for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Commanding Presence" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e38f-a659-a7d0-945f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle (Army), Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly non-**^^Hero Fyreslayers Infantry^^** unit within this unit’s combat range to be the royal retinue.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the battle, while the royal retinue is wholly within 6" of this unit, add 1 to hit rolls for attacks made by the royal retinue and this unit has **^^Ward (4+)^^**.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Auric Runefather" hidden="false" id="a434-cf38-24dc-15b7">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Latchkey Grandaxe" hidden="false" id="f7bf-a1fb-4594-66e2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ebb8-9a79-93ea-fb6b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="617f-72ae-5f76-6b53"/>
</constraints>
<profiles>
<profile name="Latchkey Grandaxe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3d22-1daf-8d9d-2019">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c7ea-1feb-ba44-f4ec"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2a7f-5e02-9485-f1c0"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Doomseeker" hidden="false" id="2a37-8d73-b1ba-576d" publicationId="693f-85d0-db98-543c">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="3847-84b-d32f-c669" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="6df4-e69c-c09d-ad4d" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="e081-b7d3-6108-53e" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="FYRESLAYERS" hidden="false" id="585c-2eee-7ca6-bae4" targetId="6a02-a995-fd92-d806" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="242f-d110-7029-4344" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6f-8ebe-e826-6420" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="cb2a-9956-bb43-8577" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Doomseeker" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9895-8541-54fc-4792">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Runic Power" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="b3c-5830-c106-a575">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Damage characteristic of this unit’s melee weapons while this unit has 1 damage point. Add 2 to the Damage characteristic of this unit’s melee weapons instead while this unit has 2 or more damage points.</characteristic>
</characteristics>
</profile>
<profile name="Oathbound" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1ba4-6803-e5a4-232c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit to be this unit’s quarry. You can pick a unit that has been deployed in reserve.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to hit rolls and wound rolls for attacks made by this unit that target its quarry.
If this unit is destroyed while it is in combat with its quarry, inflict 3 mortal damage on this unit’s quarry immediately after the ability that destroyed this unit has been resolved.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Doomseeker" hidden="false" id="c873-39f5-73f7-f3fa">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doomseeker Weapons" hidden="false" id="adcc-b06c-94ab-5d59">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8d75-fdc0-729b-91aa"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b88f-7a10-976d-f949"/>
</constraints>
<profiles>
<profile name="Doomseeker Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d867-e11f-5e48-1de6">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>