forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Destruction - Ogor Mawtribes.cat
6752 lines (6742 loc) · 503 KB
/
Destruction - Ogor Mawtribes.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="86c6-f50d-4d44-9d02" name="Destruction - Ogor Mawtribes" revision="13" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="50c5-e039-pubN80915" name="Destruction Battletomb: Ironjawz"/>
<publication id="50c5-e039-pubN81384" name="Destruction Battletome: Ogor Mawtribes"/>
<publication id="a12c-746f-81e0-57e2" name="Battletome: Beastclaw Raiders Official Errata, July 2018"/>
</publications>
<profileTypes>
<profileType id="f7ce-f73f-e66e-8a92" name="Damage Table: Stornhorn">
<characteristicTypes>
<characteristicType id="2e53-f878-8529-f717" name="Move"/>
<characteristicType id="107a-2e9d-0266-0426" name="Horn Attacks"/>
<characteristicType id="9948-0848-e4ba-d0f5" name="Crushing Hooves"/>
</characteristicTypes>
</profileType>
<profileType id="b30f-f7bd-58e7-2395" name="Damage Table: Thundertusk">
<characteristicTypes>
<characteristicType id="ad70-7958-2119-ab08" name="Move"/>
<characteristicType id="52ad-8267-7682-1505" name="Frost-Wreathed Ice"/>
<characteristicType id="ca56-5de6-8223-726d" name="Colossal Tusks"/>
</characteristicTypes>
</profileType>
<profileType id="8351-262c-0b40-f9cf" name="Everwinter Result">
<characteristicTypes>
<characteristicType id="8aae-9133-c864-191b" name="Result"/>
<characteristicType id="5826-2fe3-4fc4-8248" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="8571-3bca-3d1a-af0f" name="Elixir of Froswyrm">
<characteristicTypes>
<characteristicType id="1a22-a82c-3e37-d7f5" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="7b06-2d2f-6286-ec51" name="Blizzard-speaker">
<characteristicTypes>
<characteristicType id="a0d5-c765-53e8-9ba8" name="Ability"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="2246-c381-2650-4ca2" name="OGOR MAWTRIBES" hidden="false"/>
<categoryEntry id="c317-1790-04c4-7d88" name="STONEHORN" hidden="false"/>
<categoryEntry id="eada-5e13-e284-a61a" name="FROSTLORD" hidden="false"/>
<categoryEntry id="7cfc-da0c-f04c-a82a" name="THUNDERTUSK" hidden="false"/>
<categoryEntry id="420d-29a6-4e10-b4af" name="HUSKARD" hidden="false"/>
<categoryEntry id="768e-d9b7-0a97-5a05" name="Stonehorn Beastriders" hidden="false"/>
<categoryEntry id="d98b-821e-e96e-a840" name="Thundertusk Beastriders" hidden="false"/>
<categoryEntry id="2fe3-f56d-11c0-c6eb" name="Frost Sabers" hidden="false"/>
<categoryEntry id="fe70-1803-6e87-6f23" name="Icefall Yhetees" hidden="false"/>
<categoryEntry id="124c-c37d-8a51-1cde" name="Mournfang Pack" hidden="false"/>
<categoryEntry id="4d3b-7454-3924-4b1c" name="ICEBROW HUNTER" hidden="false"/>
<categoryEntry id="6d15-a1af-eeef-e83d" name="TYRANT" hidden="false"/>
<categoryEntry id="6005-aabb-fca3-f8ca" name="BUTCHER" hidden="false"/>
<categoryEntry id="927c-2902-0852-853b" name="FIREBELLY" hidden="false"/>
<categoryEntry id="9eb7-64ab-dc1d-56e0" name="BEASTCLAW RAIDERS" hidden="false"/>
<categoryEntry id="ca36-c74b-8ae6-2273" name="PRIEST" hidden="false"/>
<categoryEntry id="c27c-df63-07a7-9fe7" name="GUTBUSTERS" hidden="false"/>
<categoryEntry id="350a-d03f-63c8-51a0" name="SLAUGHTERMASTER" hidden="false"/>
<categoryEntry id="fea2-305d-3823-5e71" name="GROT" hidden="false"/>
<categoryEntry id="5194-26a4-3ec6-cfc4" name="RHINOX" hidden="false"/>
<categoryEntry id="f0af-a0e7-66d2-61ea" name="BEASTCLAW PRIEST" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="fc4d-9292-0908-041e" name="Allegiance" hidden="false" collective="false" import="true" targetId="9dbb-2d1a-12d8-7faf" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f28f-8c0a-451f-1989" name="Stonehorn Beastriders" hidden="false" collective="false" import="true" targetId="559c-0689-72d3-c291" type="selectionEntry"/>
<entryLink id="85a1-2313-bb9d-f466" name="Thundertusk Beastriders" hidden="false" collective="false" import="true" targetId="078e-320b-e175-9d00" type="selectionEntry"/>
<entryLink id="fab8-544f-09fc-be28" name="Icebrow Hunter" hidden="false" collective="false" import="true" targetId="fc5c-2a36-ec09-f1c3" type="selectionEntry">
<categoryLinks>
<categoryLink id="fab8-544f-09fc-be28-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7d03-5e64-9f18-bc39" name="Frostlord on Stonehorn" hidden="false" collective="false" import="true" targetId="550d-7e51-8ddd-11f7" type="selectionEntry"/>
<entryLink id="98b6-b4e1-2f95-cefe" name="Frostlord on Thundertusk" hidden="false" collective="false" import="true" targetId="fa5f-aba0-a5f9-fd23" type="selectionEntry">
<categoryLinks>
<categoryLink id="8490-dd35-75a3-8ed7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="8dca-ffc1-b61d-8a7f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2fba-d5fe-1b70-c11f" name="Huskard on Stonehorn" hidden="false" collective="false" import="true" targetId="fafb-eaad-f659-ba2d" type="selectionEntry"/>
<entryLink id="25d5-ff31-3f0a-2b3b" name="Huskard on Thundertusk" hidden="false" collective="false" import="true" targetId="6ba6-af42-5060-ef84" type="selectionEntry"/>
<entryLink id="26fe-1d80-f331-9b13" name="Ironblaster" hidden="false" collective="false" import="true" targetId="45a4-4ebd-c321-751b" type="selectionEntry"/>
<entryLink id="462b-ec36-3860-b75f" name="Battalion: Torrbad" hidden="false" collective="false" import="true" targetId="b04c-dd95-eadb-fc13" type="selectionEntry">
<categoryLinks>
<categoryLink id="462b-ec36-3860-b75f-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ab0f-cde8-6911-9afc" name="Battalion: Alfrostun" hidden="false" collective="false" import="true" targetId="75c2-ca4e-5213-b756" type="selectionEntry">
<categoryLinks>
<categoryLink id="ab0f-cde8-6911-9afc-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1168-80cc-9e3b-8092" name="Battalion: Jorlbad" hidden="false" collective="false" import="true" targetId="8cea-bdc1-c017-2f5f" type="selectionEntry">
<categoryLinks>
<categoryLink id="1168-80cc-9e3b-8092-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6799-640b-960b-5ebf" hidden="false" collective="false" import="true" targetId="68f4-e571-980e-30f3" type="selectionEntry"/>
<entryLink id="2862-d94b-27f9-a31d" name="Icefall Yhetees" hidden="false" collective="false" import="true" targetId="e660-38b1-e212-9eb0" type="selectionEntry"/>
<entryLink id="2757-72c8-fbd0-4195" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry"/>
<entryLink id="701b-4089-9d85-cd0a" name="Great Mawpot" hidden="false" collective="false" import="true" targetId="c79f-a0ac-0103-4cc4" type="selectionEntry"/>
<entryLink id="194c-8d2d-0333-23cd" name="Firebelly" hidden="false" collective="false" import="true" targetId="180b-19ff-0be1-43b5" type="selectionEntry"/>
<entryLink id="c93a-3805-f236-7efa" name="Gnoblars" hidden="false" collective="false" import="true" targetId="37ae-18d7-8db5-1ecf" type="selectionEntry"/>
<entryLink id="90e5-a36c-58e5-de78" name="Butcher" hidden="false" collective="false" import="true" targetId="402f-ac98-3e3f-8dbb" type="selectionEntry"/>
<entryLink id="4505-c7c4-fa6d-4e4f" name="Gnoblar Scraplauncher" hidden="false" collective="false" import="true" targetId="1ec3-0a85-2dcb-cf7f" type="selectionEntry"/>
<entryLink id="e6eb-6801-c78d-f925" name="Battalion: Tyrant's Gutguard" hidden="false" collective="false" import="true" targetId="15a6-bfd3-9ab8-3e7e" type="selectionEntry">
<categoryLinks>
<categoryLink id="d311-c2c4-fefd-7b68" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b0f3-4c5c-4154-f17d" name="Gorgers" hidden="false" collective="false" import="true" targetId="c43a-68fa-ea0a-1836" type="selectionEntry"/>
<entryLink id="fb86-7a22-1112-68cb" name="Battalion: Skal" hidden="false" collective="false" import="true" targetId="34ea-f6e1-76c8-5ccd" type="selectionEntry">
<categoryLinks>
<categoryLink id="6903-4406-bedb-f30e" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1bd6-7707-671f-14cd" name="Battalion: Eurlbad" hidden="false" collective="false" import="true" targetId="dbeb-bd23-4e21-b1ab" type="selectionEntry">
<categoryLinks>
<categoryLink id="8c30-e474-2edf-faf9" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="91c5-6564-a016-74a9" name="Battalion: Butcher's Band" hidden="false" collective="false" import="true" targetId="9bfd-4091-38ea-5589" type="selectionEntry">
<categoryLinks>
<categoryLink id="379a-92a7-d2e3-0e61" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="56b1-2e45-269f-80c0" name="Battalion: Junkmob" hidden="false" collective="false" import="true" targetId="6a23-ce66-632d-6226" type="selectionEntry">
<categoryLinks>
<categoryLink id="eb39-2dba-edd8-d029" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8d0f-09a0-27f4-f0d4" name="Tyrant" hidden="false" collective="false" import="true" targetId="5061-05bb-783b-374a" type="selectionEntry"/>
<entryLink id="36a4-0698-469e-2219" name="Super Battalion: Gutbuster Warglutt" hidden="false" collective="false" import="true" targetId="45d2-b7ad-d33c-f773" type="selectionEntry">
<categoryLinks>
<categoryLink id="9e22-5db5-2c6c-b8b2" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8607-0341-2283-ff64" name="Slaughtermaster" hidden="false" collective="false" import="true" targetId="ec5f-d95f-bcae-4f6f" type="selectionEntry"/>
<entryLink id="1da8-0d73-879b-8cfb" name="Ogor Gluttons" hidden="false" collective="false" import="true" targetId="7aa5-e4c6-a836-9ef6" type="selectionEntry"/>
<entryLink id="2bca-956c-8d44-a437" name="Maneaters" hidden="false" collective="false" import="true" targetId="8a3e-0c68-362b-b056" type="selectionEntry"/>
<entryLink id="37dc-336b-da4c-ebc8" name="Leadbelchers" hidden="false" collective="false" import="true" targetId="1093-bd84-79cf-c379" type="selectionEntry"/>
<entryLink id="827f-068a-f4dd-65b2" name="Ironguts" hidden="false" collective="false" import="true" targetId="435b-c722-a42b-7443" type="selectionEntry"/>
<entryLink id="fb6f-92a0-04a8-5e9a" name="Battalion: Goremand" hidden="false" collective="false" import="true" targetId="f089-f9c8-960c-8faa" type="selectionEntry">
<categoryLinks>
<categoryLink id="5dcd-f2f3-eb48-0fa6" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dc1f-b1c5-68f7-daa2" name="Battalion: Kin-Eater's Bully Boys" hidden="false" collective="false" import="true" targetId="216f-28d8-d012-9705" type="selectionEntry"/>
<entryLink id="5bdf-4ecd-85c6-8a2b" name="Hrothgorn" hidden="false" collective="false" import="true" targetId="1e4c-be9c-61ea-223d" type="selectionEntry"/>
<entryLink id="2f45-d6aa-271e-9cb0" name="Hrothgorn's Mantrappers" hidden="false" collective="false" import="true" targetId="71ae-1d3d-07ef-327f" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="9dbb-2d1a-12d8-7faf" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e2e5-a02a-426e-7ca0" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="87b5-c448-3c86-73f5" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="16be-3131-4aa2-ed74" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d503-3edf-9833-b910" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="007b-7ecb-a450-1685">
<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="db37-22b2-39f5-f49e" name="*Destruction*" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="98b0-b34c-41c8-322b" name="Rampaging Destroyers" hidden="false" targetId="4571-8f36-98ca-2d16" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="007b-7ecb-a450-1685" name="Ogor Mawtribes" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6b2f-ca2d-be45-d674" name="Trampling Charge" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After an OGOR or RHINOX unit makes a charge move, you can pick 1 enemy unit within 1" of this unit and roll a number of dice equal to the unmodified charge roll for that charge move. Add 2 to each roll if the OGOR unit that made the charge move has 8 or more models or is a MONSTER. For each 6+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="dbb8-cf57-08de-6b41" name="Grasp of the Everwinter" 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, roll 1 dice for each enemy unit within 3" of any friendly BEASTCLAW RAIDERS units. If the roll is equal to or less than the number of the current battle round, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="2f05-0ab0-987c-66e6" name="Might Makes Right" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">When determining control of an objective, each OGOR counts as 2 models instead of 1, and each OGOR MONSTER counts as 10 models instead of 1.</characteristic>
</characteristics>
</profile>
<profile id="fac8-36fe-7afa-ba49" name="Ravenous Brutes" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If an OGOR unit is more than 3" from any enemy units, it is hungry. If an OGOR unit is within 3" of any enemy units, it is eating. Add 2" to the Move characteristic of a unit that is hungry. Add 2 to the Bravery characteristic of a unit that is eating.</characteristic>
</characteristics>
</profile>
<profile id="8ddd-c58a-06b7-91be" name="Everwinter Prayers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Each BEASTCLAW RAIDERS PRIEST in an Ogor Mawtribes army knows 1 Everwinter prayer from the Manifestations of the Eternal Snowstorm table (pg 77) in addition to any other prayers they know.
In your hero phase, each friendly BEASTCLAW RAIDERS PRIEST that knows any Everwinter prayers can chant 1 Everwinter prayer. If they do so, make a prayer roll by rolling a dice.
Each Everwinter prayer has a chanting value. If the prayer roll is equal to or greater than the chanting value of the Everwinter prayer, the prayer is answered.
Each Everwinter prayer can only be attempted once per turn, regardless of how many BEASTCLAW RAIDERS PRIESTS know that Everwinter prayer.</characteristic>
</characteristics>
</profile>
<profile id="925c-75eb-1082-9739" name="Mawtribes" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If your army is a Ogor Mawtribes army, you can give it a Mawtribe keyword from the list below. All OGOR MAWTRIBES units in your army gain that keyword, and you can use the extra abilities listed for that Mawtribe on the page indicated.
• MEATFIST (pg 82)
• BLOODGULLET (pg 83)
• UNDERGUTS (pg 84)
• BOULDERHEAD (pg 85)
• THUNDERBELLIES (pg 86)
• WINTERBITE (pg 87)
If a model already has a Mawtribe keyword on its warscroll, it cannot gain another one. This does not preclude you from including the unit in your army.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="5eb9-cc55-91f3-4a86" name="Mawtribe" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3197-95da-f1b4-9ace" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="639b-3cb2-8c6d-27a3" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="b768-844c-fb44-e281" name="Bloodgullet Mawtribe" publicationId="50c5-e039-pubN81384" page="83" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6eaf-868a-0802-b195" name="Heralds of the Gulping God" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">BLOODGULLET BUTCHERS know 1 extra spell from the Lore of Gutmagic (pg 76). In addition, friendly BLOODGULLET BUTCHERS can attempt to cast 1 extra spell in your hero phase.</characteristic>
</characteristics>
</profile>
<profile id="708a-5313-4782-d824" name="Bloodbath" 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 1 friendly BLOODGULLET BUTCHER. Until the end of that phase, you can re-roll wound rolls for attacks made with melee weapons by friendly BLOODGULLET OGOR GLUTTONS units that are wholly within 12" of that BLOODGULLET BUTCHER.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="49bd-eed7-05de-2c5b" name="Winterbite Mawtribe" publicationId="50c5-e039-pubN81384" page="87" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="52b7-2674-c381-307f" name="Ghosts in the Blizzard" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Subtract 1 from hit rolls for attacks made with missile weapons that target friendly WINTERBITE units that are wholly within your territory.</characteristic>
</characteristics>
</profile>
<profile id="90ac-92ff-e8a3-e060" name="Howl of the Wild" 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 1 friendly WINTERBITE HERO. Friendly WINTERBITE FROST SABRES units and WINTERBITE ICEFALL YHETEES units wholly within 12" of that WINTERBITE HERO can fight at the start of that combat phase. These units cannot fight again in that combat phase unless an ability or spell allows them to fight more than once.</characteristic>
</characteristics>
</profile>
<profile id="9998-47d3-0eca-f21d" name="Call of the Endless White" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to prayer rolls for Call of the Blizzard when a WINTERBITE PRIEST is chanting that prayer.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4306-7460-7912-efa1" name="Underguts Mawtribe" publicationId="50c5-e039-pubN81384" page="84" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="84bf-c006-ac0e-b6d0" name="Gunmasters" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Leadbelcher Guns used by UNDERGUTS LEADBELCHERS units have a Range characteristic of 18" instead of 12".</characteristic>
</characteristics>
</profile>
<profile id="88e4-bfdb-38a3-69dd" name="Thunderous Salvo" 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 shooting phase. If you do so, pick 1 friendly UNDERGUTS HERO. Until the end of that phase, add 1 to the Attacks characteristic of missile weapons used by friendly UNDERGUTS IRONBLASTER units wholly within 12" of that UNDERGUTS HERO. You can only use this command ability once per shooting phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dc5e-a55f-5d2d-dbd9" name="Thunderbellies Mawtribe" publicationId="50c5-e039-pubN81384" page="86" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3936-4de3-ca6a-3ca3" name="Swift Outflank" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Friendly THUNDERBELLIES MOURNFANG PACK units wholly within 12" of the edge of the battlefield at the start of your charge phase can charge in that charge phase even if they ran in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="2b44-b134-6beb-0dfe" name="Rip and Tear" 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 1 enemy unit with 1 or more wounds allocated to it that is within 6" of a THUNDERBELLIES HERO. Until the end of the phase, you can re-roll wound rolls for attacks made by friendly THUNDERBELLIES MOURNFANG PACK units that target that enemy unit.</characteristic>
</characteristics>
</profile>
<profile id="c259-9f33-43ad-d6ae" name="Riders of the Hurricane" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to prayer rolls for Keening Gale when a THUNDERBELLIES PRIEST is chanting that prayer.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ae4d-1e2d-e7ef-9cf8" name="Meatfist Mawtribe" publicationId="50c5-e039-pubN81384" page="82" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a19c-0e33-cb4a-1ab3" name="Fleshy Stampede" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can roll 1 additional dice when a MEATFIST unit uses the Trampling Charge battle trait (pg 71).</characteristic>
</characteristics>
</profile>
<profile id="0db4-eff0-b0af-52c0" name="The Unstoppable Feast" 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 1 friendly MEATFIST HERO. Until the end of that phase, add 1 to the Attacks characteristic of friendly MEATFIST OGOR GLUTTONS units’ Gulping Bite while they are wholly within 18" of that HERO. You cannot pick the same unit to benefit from this command ability more than once per combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1c73-136c-3a25-dacb" name="Boulderhead Mawtribe" publicationId="50c5-e039-pubN81384" page="85" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5104-8be2-7866-c4a5" name="Fearsome Breed" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to the Wounds characteristic of friendly BOULDERHEAD MONSTERS. In addition, each BOULDERHEAD HERO on STONEHORN or THUNDERTUSK, instead of only 1, can be given a mount trait (pg 78-79).</characteristic>
</characteristics>
</profile>
<profile id="177c-ccf7-fc9b-e6ed" name="Dig Deep your Heels!" 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 any phase. If you do so, pick 1 friendly BOULDERHEAD HERO that has a mount. Until the end of that phase, use the top row on that unit’s damage table, regardless of how many wounds it has suffered.</characteristic>
</characteristics>
</profile>
<profile id="228d-fa16-cb47-3541" name="Deadly Hail" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to prayer rolls for Pulverising Hailstorm when a BOULDERHEAD PRIEST is chanting that prayer.</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>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="75c2-ca4e-5213-b756" name="Super Battalion: Alfrostun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1b99-ba21-3a02-e5f6" name="Alfrostun Avalanche" publicationId="50c5-e039-pubN81384" page="" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">When using the Grasp of the Everwinter battle trait and rolling a dice for each enemy unit within 3" of a unit from this battalion, subtract 1 from the roll.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="3bbd-0bb4-a452-bf2b" name="1. Frostlord" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="467f-996d-e0f3-e69f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e61-90d2-caf1-32db" type="min"/>
</constraints>
<entryLinks>
<entryLink id="f5f1-9eea-64fc-0713" name="Frostlord on Stonehorn" hidden="false" collective="false" import="true" targetId="550d-7e51-8ddd-11f7" type="selectionEntry"/>
<entryLink id="f588-ee21-ce2e-d871" name="Frostlord on Thundertusk" hidden="false" collective="false" import="true" targetId="fa5f-aba0-a5f9-fd23" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="644b-e1ea-afc3-9b46" name="2. Jorlbad" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="09cf-d517-0cf6-7c28" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a405-bdf0-e53e-86fe" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ab5b-651a-19b0-504f" name="Battalion: Jorlbad" hidden="false" collective="false" import="true" targetId="8cea-bdc1-c017-2f5f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3a22-38c3-0ce0-6f7c" name="3. Eurlbad" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3f1-9cd3-118a-ec94" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4d65-fbc1-a529-50ab" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0ca3-18cf-a369-325f" name="Battalion: Eurlbad" hidden="false" collective="false" import="true" targetId="dbeb-bd23-4e21-b1ab" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8707-e083-74dc-4d63" name="4. Torrbad" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87ae-2c02-e7a4-9355" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc21-c355-f645-0984" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1075-d071-2042-400d" name="Battalion: Torrbad" hidden="false" collective="false" import="true" targetId="b04c-dd95-eadb-fc13" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ef1b-61c5-7356-a8e6" name="5. Skal" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="24af-e8d8-9fec-fcc1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96ce-e275-1fe7-4887" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9d26-9e87-eddb-0d18" name="Battalion: Skal" hidden="false" collective="false" import="true" targetId="34ea-f6e1-76c8-5ccd" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dbeb-bd23-4e21-b1ab" name="Battalion: Eurlbad" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="60ae-1159-6bdd-7869" name="Crush, Mangle, Tenderise" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If the unmodified hit roll for an attack made with a melee weapon used by a model from this battalion is 6, that attack inflicts 1 mortal wound on the target in addition to any normal damage.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="f210-f121-a9d3-5012" name="1. Huskard on Stonehorn" hidden="false" collective="false" import="true" defaultSelectionEntryId="b21a-3f0a-b473-76d2">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd61-e7fc-2466-3e83" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f64-59af-a8b0-6625" type="min"/>
</constraints>
<entryLinks>
<entryLink id="b21a-3f0a-b473-76d2" name="Huskard on Stonehorn" hidden="false" collective="false" import="true" targetId="fafb-eaad-f659-ba2d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ba1f-c974-103f-69c3" name="2. 1-3 Stonehorn Beastriders" hidden="false" collective="false" import="true" defaultSelectionEntryId="f13e-618c-814c-e7c3">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6928-3abd-4986-11f0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="413b-d095-1ed6-4a48" type="min"/>
</constraints>
<entryLinks>
<entryLink id="f13e-618c-814c-e7c3" name="Stonehorn Beastriders" hidden="false" collective="false" import="true" targetId="559c-0689-72d3-c291" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ddcc-c216-73a3-20c9" name="3. 2-4 Mournfang Packs" hidden="false" collective="false" import="true" defaultSelectionEntryId="a4c4-ecf3-33c8-148b">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1c6-a167-39fc-7417" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c84d-79d6-8743-b772" type="min"/>
</constraints>
<entryLinks>
<entryLink id="a4c4-ecf3-33c8-148b" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8cea-bdc1-c017-2f5f" name="Battalion: Jorlbad" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d02b-3fc0-eeba-b5f9" name="Tip of the Hunting Spear" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase in the first battle round, each friendly unit from this battalion can make a move of D6". Roll separately for each unit.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="fbc3-ce81-c6b4-cc91" name="1. Huskard on Stonehorn" hidden="false" collective="false" import="true" defaultSelectionEntryId="4bf2-a3a0-dd73-aea2">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc7d-29f5-53a7-b3e5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="91c5-6809-3524-bdaf" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4bf2-a3a0-dd73-aea2" name="Huskard on Stonehorn" hidden="false" collective="false" import="true" targetId="fafb-eaad-f659-ba2d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7fab-ac7f-2dc2-bdc7" name="3. 2-4 Mournfang Packs" hidden="false" collective="false" import="true" defaultSelectionEntryId="8d68-b200-8de9-f6a0">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="277e-dd78-abc2-4893" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d58-54d9-b5ce-be3d" type="min"/>
</constraints>
<entryLinks>
<entryLink id="8d68-b200-8de9-f6a0" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6994-83a5-9f2b-aee9" name="2. 1-3 Stonehorn Beastriders" hidden="false" collective="false" import="true" defaultSelectionEntryId="4361-4593-6309-18b5">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="21d8-41e7-c95b-99a6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4261-eaa3-5019-deed" type="min"/>
</constraints>
<entryLinks>
<entryLink id="4361-4593-6309-18b5" name="Stonehorn Beastriders" hidden="false" collective="false" import="true" targetId="559c-0689-72d3-c291" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="45d2-b7ad-d33c-f773" name="Super Battalion: Gutbuster Warglutt" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0276-4867-5889-89d9" name="The Mawpath" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase in the first battle round, each friendly unit from this battalion can make a move of D6". Roll separately for each unit.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="3de3-49bf-8c96-0ae5" name="1. Tyrant's Gutguard" hidden="false" collective="false" import="true" defaultSelectionEntryId="7284-5eab-d100-a57a">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4094-5db9-801e-2100" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63ef-4532-62db-0dc7" type="min"/>
</constraints>
<entryLinks>
<entryLink id="7284-5eab-d100-a57a" name="Battalion: Tyrant's Gutguard" hidden="false" collective="false" import="true" targetId="15a6-bfd3-9ab8-3e7e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b49c-7ee1-93f9-f7e3" name="2. Goremand" hidden="false" collective="false" import="true" defaultSelectionEntryId="3b2c-a383-8236-315e">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe5f-9aac-e7bc-3a8b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="022e-2468-a378-da59" type="min"/>
</constraints>
<entryLinks>
<entryLink id="3b2c-a383-8236-315e" name="Battalion: Goremand" hidden="false" collective="false" import="true" targetId="f089-f9c8-960c-8faa" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="0126-d40f-880b-5e8f" name="3. Butcher's Band" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac2f-5ab0-c088-c786" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc6c-38b6-b7ef-5892" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e30c-2e20-dca8-e940" name="Battalion: Butcher's Band" hidden="false" collective="false" import="true" targetId="9bfd-4091-38ea-5589" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6f82-6cd8-edb1-2cfb" name="4. Junkmob" hidden="false" collective="false" import="true" defaultSelectionEntryId="8b8c-d5c7-4ada-0687">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5210-88cd-ad5c-e309" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6dea-e32e-2753-00e4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8b8c-d5c7-4ada-0687" name="Battalion: Junkmob" hidden="false" collective="false" import="true" targetId="6a23-ce66-632d-6226" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b04c-dd95-eadb-fc13" name="Battalion: Torrbad" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9308-01ee-2fce-70d3" name="Heart-numbing Chill" 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, roll 1 dice for each enemy unit within 3" of any units from this battalion. On a 2+, that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="5c95-2288-3ca4-fc39" name="1. Huskard on Thundertusk" hidden="false" collective="false" import="true" defaultSelectionEntryId="8585-7423-fb01-4b8f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26ee-5bd5-37fb-42ac" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db74-cf7d-baac-2263" type="min"/>
</constraints>
<entryLinks>
<entryLink id="8585-7423-fb01-4b8f" name="Huskard on Thundertusk" hidden="false" collective="false" import="true" targetId="6ba6-af42-5060-ef84" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9f54-4ffc-d15f-b3c2" name="2. 3-9 Thundertusk Beastriders" hidden="false" collective="false" import="true" defaultSelectionEntryId="5a69-5459-7a03-dca3">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="376e-1d62-3094-431b" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3c0f-212e-6541-b645" type="min"/>
</constraints>
<entryLinks>
<entryLink id="5a69-5459-7a03-dca3" name="Thundertusk Beastriders" hidden="false" collective="false" import="true" targetId="078e-320b-e175-9d00" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b3b0-d519-d3ba-c1b0" name="3. 0-3 Icefall Yhetees" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db1d-64aa-6172-5439" type="max"/>
</constraints>
<entryLinks>
<entryLink id="063b-3166-8e90-0882" name="Icefall Yhetees" hidden="false" collective="false" import="true" targetId="e660-38b1-e212-9eb0" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="68f4-e571-980e-30f3" name="Frost Sabres" publicationId="50c5-e039-pubN81384" page="117" 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="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aeb0-4dc5-86d8-5adf" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="687a-2428-1782-7e35" name="Frost Sabres " hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">9"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="30b1-f915-ddcf-3415" name="Their Master's Voice" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 3 to charge rolls for this unit if it is wholly within 16" of a friendly ICEBROW HUNTER when the charge roll is made.
In addition, add 2 to the Bravery characteristic of this unit while it is wholly within 16" of a friendly ICEBROW HUNTER.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="00c1-bebd-8ffe-6de8" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="cf71-f314-6bf0-c0fa" name="New CategoryLink" hidden="false" targetId="c9df-ea2a-e040-9cf4" primary="false"/>
<categoryLink id="83a0-ae88-75d2-d994" name="New CategoryLink" hidden="false" targetId="2fe3-f56d-11c0-c6eb" primary="false"/>
<categoryLink id="baf6-fe08-cfdd-0cea" name="OGOR MAWTRIBES" hidden="false" targetId="2246-c381-2650-4ca2" primary="false"/>
<categoryLink id="7585-12bd-f308-32b4" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ca89-c87f-a1ba-9ea5" name="2 Frost Sabres" hidden="false" collective="false" import="true" type="upgrade">
<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="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="18c0-f56e-b188-5158" name="Elongated Fangs" 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="5e13-acdf-bed8-0da8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="03be-c83c-dd9e-55ba" type="max"/>
</constraints>
<profiles>
<profile id="5bf0-0868-639b-2186" name="Elongated Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="550d-7e51-8ddd-11f7" name="Frostlord on Stonehorn" publicationId="50c5-e039-pubN81384" page="109" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="f0af-a0e7-66d2-61ea">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1b43-de26-bccc-ce21" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="deaa-b8bb-3b97-29c2" name="Frostlord on Stonehorn" 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">13</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="1e70-86e5-321a-64da" name="Bellowing Voice" 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 charge phase. If you do so, pick 1 friendly model with this command ability. Until the end of that phase, you can re-roll charge rolls for friendly BEASTCLAW RAIDERS units that are wholly within 12" of that model when the charge roll is made.</characteristic>
</characteristics>
</profile>
<profile id="17c9-5382-082b-c157" name="Earth-shattering Charge" 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 inflicted by attacks made with this model’s Rock-hard Horns and Crushing Hooves if this model made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="4eff-8266-1dfe-5c51" name="00-03 Wounds" hidden="false" typeId="f7ce-f73f-e66e-8a92" typeName="Damage Table: Stornhorn">
<characteristics>
<characteristic name="Move" typeId="2e53-f878-8529-f717">12"</characteristic>
<characteristic name="Horn Attacks" typeId="107a-2e9d-0266-0426">6</characteristic>
<characteristic name="Crushing Hooves" typeId="9948-0848-e4ba-d0f5">2+</characteristic>
</characteristics>
</profile>
<profile id="973c-55f8-2176-a341" name="04-05 Wounds" hidden="false" typeId="f7ce-f73f-e66e-8a92" typeName="Damage Table: Stornhorn">
<characteristics>
<characteristic name="Move" typeId="2e53-f878-8529-f717">10"</characteristic>
<characteristic name="Horn Attacks" typeId="107a-2e9d-0266-0426">5</characteristic>
<characteristic name="Crushing Hooves" typeId="9948-0848-e4ba-d0f5">3+</characteristic>
</characteristics>
</profile>
<profile id="ae05-7431-35f9-fccd" name="06-08 Wounds" hidden="false" typeId="f7ce-f73f-e66e-8a92" typeName="Damage Table: Stornhorn">
<characteristics>
<characteristic name="Move" typeId="2e53-f878-8529-f717">8"</characteristic>
<characteristic name="Horn Attacks" typeId="107a-2e9d-0266-0426">4</characteristic>
<characteristic name="Crushing Hooves" typeId="9948-0848-e4ba-d0f5">3+</characteristic>
</characteristics>
</profile>
<profile id="5358-4741-44e0-8adb" name="09-10 Wounds" hidden="false" typeId="f7ce-f73f-e66e-8a92" typeName="Damage Table: Stornhorn">
<characteristics>
<characteristic name="Move" typeId="2e53-f878-8529-f717">6"</characteristic>
<characteristic name="Horn Attacks" typeId="107a-2e9d-0266-0426">3</characteristic>
<characteristic name="Crushing Hooves" typeId="9948-0848-e4ba-d0f5">4+</characteristic>
</characteristics>
</profile>
<profile id="cbfa-ea4c-17f8-3719" name="11+ Wounds" hidden="false" typeId="f7ce-f73f-e66e-8a92" typeName="Damage Table: Stornhorn">
<characteristics>
<characteristic name="Move" typeId="2e53-f878-8529-f717">4"</characteristic>
<characteristic name="Horn Attacks" typeId="107a-2e9d-0266-0426">2</characteristic>
<characteristic name="Crushing Hooves" typeId="9948-0848-e4ba-d0f5">4+</characteristic>
</characteristics>
</profile>
<profile id="aaef-5ce9-ece9-980b" name="Stone Skeleton" page="" 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 this model. On a 5+, that wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5ce3-ffc1-48be-b20f" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="c4ef-dd3f-c9da-7bef" name="New CategoryLink" hidden="false" targetId="2246-c381-2650-4ca2" primary="false"/>
<categoryLink id="c808-d928-b015-5ffd" name="New CategoryLink" hidden="false" targetId="c317-1790-04c4-7d88" primary="false"/>
<categoryLink id="5f37-a3d1-8b7a-d89f" name="New CategoryLink" hidden="false" targetId="c9df-ea2a-e040-9cf4" primary="false"/>
<categoryLink id="2de6-7f9c-e481-ff02" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="7cba-b563-0945-e9aa" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="595d-a5df-a92b-c8e9" name="New CategoryLink" hidden="false" targetId="eada-5e13-e284-a61a" primary="false"/>
<categoryLink id="22e9-8746-a228-06f9" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="432c-7dbc-a6d0-3a46" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f19d-da82-bf57-feba" name="Frost Spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b85-7535-2d66-1548" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b70-7b05-dc6a-36bb" type="max"/>
</constraints>
<profiles>
<profile id="9e97-1bc9-89dd-fd79" name="Frost Spear" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0dc1-e1be-68ff-7f54" name="Punches and Kicks" 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="9b3c-45bf-87df-ef15" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b27-fcec-3d04-ff04" type="max"/>
</constraints>
<profiles>
<profile id="cfbe-336c-5e43-c6da" name="Punches and Kicks" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</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="2e7d-0f2c-f5ed-c767" name="Crushing Hooves" 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="b183-96b0-7439-98c8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b60-ee22-a9c0-1275" type="max"/>
</constraints>
<profiles>
<profile id="5c33-0280-1596-5c4f" name="Crushing Hooves" 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">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">*</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>
<selectionEntry id="ae46-f71e-a927-0787" name="Rock-hard 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="da24-f6de-dc2e-e82e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2097-0d68-ae0b-bdb7" type="max"/>
</constraints>
<profiles>
<profile id="8572-730c-9020-7399" name="Rock-hard 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">2"</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">-2</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="b850-08c3-22b0-b291" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f79c-e161-4ad3-876d" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ff7-9ca9-7707-7c93" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="90b1-e5c4-0673-7b63" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c6ea-4a53-eb6d-69da" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="cc1e-d41d-7706-c656" name="Artefacts" hidden="false" collective="false" import="true" targetId="3546-2075-75ed-0aa8" type="selectionEntryGroup"/>
<entryLink id="fc2d-feb9-e05b-93d9" name="Command Traits" hidden="false" collective="false" import="true" targetId="eb00-a87f-8c9d-70da" type="selectionEntryGroup"/>
<entryLink id="65c1-3108-fc5b-ad2c" name="Mount Traits" hidden="false" collective="false" import="true" targetId="f57b-9f22-ca9b-e1be" type="selectionEntryGroup"/>
<entryLink id="a57f-57ee-4ee2-ee91" name="Manifestations of the Eternal Snowstorm" hidden="false" collective="false" import="true" targetId="e367-1f41-60a8-7d0e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fa5f-aba0-a5f9-fd23" name="Frostlord on Thundertusk" publicationId="50c5-e039-pubN81384" page="110" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="f0af-a0e7-66d2-61ea">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1b43-de26-bccc-ce21" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="dbb2-b286-891b-473f" name="Frostlord on Thundertusk" 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">13</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="0c3a-68dd-e1f3-ea70" name="Bellowing Voice" 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 charge phase. If you do so, pick 1 friendly model with this command ability. Until the end of that phase, you can re-roll charge rolls for friendly BEASTCLAW RAIDERS units that are wholly within 12" of that model when the charge roll is made.</characteristic>
</characteristics>
</profile>
<profile id="c3a5-9342-ddb9-a2f7" name="Numbing Chill" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from hit rolls for attacks made with melee weapons that target this model.</characteristic>
</characteristics>
</profile>
<profile id="dfa0-08f5-7840-e18d" name="00-03" hidden="false" typeId="b30f-f7bd-58e7-2395" typeName="Damage Table: Thundertusk">
<characteristics>
<characteristic name="Move" typeId="ad70-7958-2119-ab08">8"</characteristic>
<characteristic name="Frost-Wreathed Ice" typeId="52ad-8267-7682-1505">12</characteristic>
<characteristic name="Colossal Tusks" typeId="ca56-5de6-8223-726d">2+</characteristic>
</characteristics>
</profile>
<profile id="174b-4a5e-c4e9-9846" name="04-05" hidden="false" typeId="b30f-f7bd-58e7-2395" typeName="Damage Table: Thundertusk">
<characteristics>
<characteristic name="Move" typeId="ad70-7958-2119-ab08">7"</characteristic>
<characteristic name="Frost-Wreathed Ice" typeId="52ad-8267-7682-1505">10</characteristic>
<characteristic name="Colossal Tusks" typeId="ca56-5de6-8223-726d">3+</characteristic>
</characteristics>
</profile>
<profile id="d28c-0598-0d90-2fe2" name="06-08" hidden="false" typeId="b30f-f7bd-58e7-2395" typeName="Damage Table: Thundertusk">
<characteristics>
<characteristic name="Move" typeId="ad70-7958-2119-ab08">6"</characteristic>
<characteristic name="Frost-Wreathed Ice" typeId="52ad-8267-7682-1505">8</characteristic>
<characteristic name="Colossal Tusks" typeId="ca56-5de6-8223-726d">3+</characteristic>
</characteristics>
</profile>
<profile id="09e1-7d4d-f87e-74a9" name="09-10" hidden="false" typeId="b30f-f7bd-58e7-2395" typeName="Damage Table: Thundertusk">
<characteristics>
<characteristic name="Move" typeId="ad70-7958-2119-ab08">5"</characteristic>
<characteristic name="Frost-Wreathed Ice" typeId="52ad-8267-7682-1505">6</characteristic>
<characteristic name="Colossal Tusks" typeId="ca56-5de6-8223-726d">4+</characteristic>
</characteristics>
</profile>
<profile id="bb95-3585-5340-d34e" name="11+" hidden="false" typeId="b30f-f7bd-58e7-2395" typeName="Damage Table: Thundertusk">
<characteristics>
<characteristic name="Move" typeId="ad70-7958-2119-ab08">4"</characteristic>
<characteristic name="Frost-Wreathed Ice" typeId="52ad-8267-7682-1505">4</characteristic>
<characteristic name="Colossal Tusks" typeId="ca56-5de6-8223-726d">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a7f9-6ccd-f6d3-d63c" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="5342-0e72-41f5-0e21" name="New CategoryLink" hidden="false" targetId="1422-e165-b7d0-b2d9" primary="false"/>
<categoryLink id="3531-767c-ae73-5aaf" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="97c3-e904-3cbd-0dc4" name="BEASTCLAW RAIDERS" hidden="false" targetId="c9df-ea2a-e040-9cf4" primary="false"/>
<categoryLink id="0232-b0e8-1972-23e7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="74c4-ab95-b720-2fb4" name="OGOR MAWTRIBES" hidden="false" targetId="2246-c381-2650-4ca2" primary="false"/>
<categoryLink id="9978-f1a9-73ff-1558" name="THUNDERTUSK" hidden="false" targetId="7cfc-da0c-f04c-a82a" primary="false"/>
<categoryLink id="0d9b-bfe1-58b0-0949" name="MONSTER" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="9905-b632-823a-4018" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="0d0c-0492-f21d-6700" name="FROSTLORD" hidden="false" targetId="eada-5e13-e284-a61a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1b75-22ee-81c0-101a" name="Frost Spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="487a-65a3-e88d-f311" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="16d2-29b9-6475-bd94" type="max"/>
</constraints>
<profiles>
<profile id="a70c-ccc0-ceba-d4b6" name="Frost Spear" 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">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cbe6-f5af-1842-07fd" name="Frost-wreathed Ice" 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="a4c9-6f6b-ce66-257f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb26-c2e2-40c1-42ca" type="max"/>
</constraints>
<profiles>
<profile id="2557-33ea-e98e-5f92" name="Frost-wreathed Ice" 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">*</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>
<profile id="c513-ba9b-6fec-867a" name="Blasts of Frost-wreathed Ice" 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 Frost-wreathed Ice. Instead, pick 1 enemy unit within 18" of this model that is visible to it and roll the number of dice shown on the damage table above. Add 1 to each roll if the target unit has 10 or more models. Add 2 to each roll instead if the target unit has 20 or more models. For each 6+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>