-
Notifications
You must be signed in to change notification settings - Fork 82
/
Destruction - Ogor Mawtribes.cat
8198 lines (8184 loc) · 612 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="86c6-f50d-4d44-9d02" name="Destruction - Ogor Mawtribes" revision="97" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<publications>
<publication id="50c5-e039-pubN80915" name="Destruction Battletome: 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"/>
<publication id="eec8-0670-5b7c-4733" name="Battletome: Ogor Mawtribes 2022"/>
<publication id="6ca4-1891-8cad-cd1e" name="Battletome: Ogor Mawtribes Errata, December 2022"/>
<publication id="9202-f362-832a-3e4d" name="Battletome: Ogor Mawtribes Errata, April 2023"/>
</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>
</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="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="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="dbb4-3a28-14d2-6795" name="GNOBLAR SCRAPLAUNCHER" hidden="false"/>
<categoryEntry id="2609-a2de-a7ef-a86f" name="IRONBLASTER" hidden="false"/>
<categoryEntry id="8b26-9a89-34c1-e875" name="GORGERS" hidden="false"/>
<categoryEntry id="1894-c922-b5ed-a775" name="HROTHGORN" hidden="false"/>
<categoryEntry id="b058-80dd-ee35-4e79" name="GNOBLARS" hidden="false"/>
<categoryEntry id="c56d-9323-f51b-1e54" name="IRONGUTS" hidden="false"/>
<categoryEntry id="f5dd-db93-0362-0047" name="LEADBELCHERS" hidden="false"/>
<categoryEntry id="f821-d117-4388-9a2a" name="MANEATERS" hidden="false"/>
<categoryEntry id="6798-ea7a-99dc-fe39" name="OGOR GLUTTONS" hidden="false"/>
<categoryEntry id="eb3d-f5a2-722f-d44e" name="HROTHGORN'S MANTRAPPERS" hidden="false"/>
<categoryEntry id="161c-afe3-8d1e-9075" name="BLACKPOWDER'S BUCCANEERS" hidden="false"/>
<categoryEntry id="36b9-3dda-0bd5-96cf" name="ICEBROW HUNTER General" hidden="false"/>
<categoryEntry id="273a-dc0c-6a33-7172" name="THUNDERTUSK General" hidden="false"/>
<categoryEntry id="d271-e455-d536-2d5f" name="GUTBUSTERS General" hidden="false"/>
<categoryEntry id="cdc4-4360-eef5-ad0f" name="BEASTCLAW RAIDERS General" hidden="false"/>
<categoryEntry id="420c-30b0-a3bb-5e7b" name="BLOODPELT HUNTER" hidden="false"/>
<categoryEntry id="cc65-589f-f438-60e2" name="Ogor Mawtribes Core Battalion" hidden="false"/>
<categoryEntry id="5929-af5f-a4a5-592a" name="Ogor Mawtribes Warscroll Battalion" hidden="false"/>
<categoryEntry id="98d2-7fe8-a94f-cecb" name="BEASTRIDERS" hidden="false"/>
<categoryEntry name="GORGER MAWPACK" hidden="false" id="2330-cadd-df5b-72b"/>
</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" 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"/>
<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"/>
<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"/>
<entryLink id="1168-80cc-9e3b-8092" name="Battalion: Jorlbad" hidden="false" collective="false" import="true" targetId="8cea-bdc1-c017-2f5f" type="selectionEntry"/>
<entryLink id="6799-640b-960b-5ebf" name="Frost Sabres" 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="b0f3-4c5c-4154-f17d" name="Gorgers" hidden="false" collective="false" import="true" targetId="c43a-68fa-ea0a-1836" type="selectionEntry"/>
<entryLink id="1bd6-7707-671f-14cd" name="Ogor Mawtribes Core Battalion: Eurlbad" hidden="false" collective="false" import="true" targetId="dbeb-bd23-4e21-b1ab" type="selectionEntry"/>
<entryLink id="56b1-2e45-269f-80c0" name="Battalion: Junkmob" hidden="false" collective="false" import="true" targetId="6a23-ce66-632d-6226" type="selectionEntry"/>
<entryLink id="8d0f-09a0-27f4-f0d4" name="Tyrant" hidden="false" collective="false" import="true" targetId="5061-05bb-783b-374a" type="selectionEntry"/>
<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="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"/>
<entryLink id="0fa1-22dc-46e2-da42" name="Bundo Whalebiter - Kraken-Eater Mercenary" hidden="false" collective="false" import="true" targetId="efae-6133-d899-a7e4" type="selectionEntry"/>
<entryLink id="6120-21b6-b79f-06c3" name="Big Drogg Fort-Kicka - Gatebreaker Mercenary" hidden="false" collective="false" import="true" targetId="8c3b-e825-efb0-25bd" type="selectionEntry"/>
<entryLink id="9650-dc05-c99f-06bf" name="One-Eyed Grunnock - Warstompa Mercenary" hidden="false" collective="false" import="true" targetId="40c7-4bb8-cfd9-7319" type="selectionEntry"/>
<entryLink id="a1c3-f8b3-bccc-1687" name="Brawlsmasha - Bonegrinder Mercenary" hidden="false" collective="false" import="true" targetId="2f06-27c0-9f3d-40ad" type="selectionEntry"/>
<entryLink id="33e4-daee-18fb-8662" name="Kragnos, The End of Empires" hidden="false" collective="false" import="false" targetId="4eea-4e53-1088-fb6c" type="selectionEntry">
<entryLinks>
<entryLink id="ab8f-b7e0-6fab-1fc7" name="General" hidden="false" collective="false" import="true" targetId="6c1f-5fc3-5498-24b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="19b8-abc0-718f-cdc1" name="BEASTCLAW RAIDERS General" hidden="false" targetId="cdc4-4360-eef5-ad0f" primary="false"/>
<categoryLink id="136-fb7e-23c4-2fd7" name="THUNDERTUSK General" hidden="false" targetId="273a-dc0c-6a33-7172" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="f4d5-0e85-d20a-ee81" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="498a-ac1b-47f2-125b" type="selectionEntry"/>
<entryLink id="4578-1148-0d85-ac00" name="Blackpowder's Buccaneers" hidden="false" collective="false" import="true" targetId="4b1b-e93c-0794-f6c0" type="selectionEntry"/>
<entryLink id="e996-754d-6e71-c7f8" name="Odo Godswallow - Beast-smasher Mercenary" hidden="false" collective="false" import="true" targetId="6373-4970-e2af-dd88" type="selectionEntry"/>
<entryLink id="9a29-cb42-7900-fb0b" name="Bloodpelt Hunter" hidden="false" collective="false" import="true" targetId="5aaa-b6a2-4779-3603" type="selectionEntry"/>
<entryLink id="2c5e-3ff4-a846-c4fb" name="Battle Tactics: Glory to the Gulping God" hidden="false" collective="false" import="true" targetId="032b-e77f-3bd8-139e" type="selectionEntry"/>
<entryLink id="2f81-54c6-6172-1369" name="Ogor Mawtribes Warscroll Battalion: Jorlbad" hidden="false" collective="false" import="true" targetId="b675-47c9-1bc8-fdd8" type="selectionEntry"/>
<entryLink id="0053-c8cd-071e-e987" name="Ogor Mawtribes Warscroll Battalion: Skal" hidden="false" collective="false" import="true" targetId="354d-9595-f647-5a9e" type="selectionEntry"/>
<entryLink id="4a5d-7c73-9b66-535a" name="Ogor Mawtribes Warscroll Battalion: Torrbad" hidden="false" collective="false" import="true" targetId="0b34-0dd7-06e8-67fd" type="selectionEntry"/>
<entryLink id="b641-d9be-9b81-4fcb" name="Ogor Mawtribes Warscroll Battalion: Eurlbad" hidden="false" collective="false" import="true" targetId="b76c-6e12-b304-7d43" type="selectionEntry"/>
<entryLink id="40d5-eca3-619c-15ed" name="Ogor Mawtribes Warscroll Battalion: Tyrant's Gutguard" hidden="false" collective="false" import="true" targetId="f969-36e4-7ec3-37f7" type="selectionEntry"/>
<entryLink id="0879-61d6-f98e-0307" name="Ogor Mawtribes Warscroll Battalion: Goremand" hidden="false" collective="false" import="true" targetId="e765-57bc-9980-db92" type="selectionEntry"/>
<entryLink id="da2f-4d24-e7b3-a6ed" name="Ogor Mawtribes Warscroll Battalion: Butcher's Band" hidden="false" collective="false" import="true" targetId="c113-342b-11a9-878c" type="selectionEntry"/>
<entryLink id="9114-0e80-0ece-e91f" name="Ogor Mawtribes Warscroll Battalion: Junkmob" hidden="false" collective="false" import="true" targetId="0516-9e05-1093-1106" type="selectionEntry"/>
<entryLink id="b2a9-4201-cd33-8924" name="Regiment of Renown - Big Grikk's Kruelshots" hidden="false" collective="false" import="true" targetId="c9de-fb1a-e665-362f" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Braggit's Bottle-Snatchaz" hidden="false" type="selectionEntry" id="9fb1-1811-e339-b2fd" targetId="a8ad-bed9-8486-fc56"/>
<entryLink import="true" name="Mawpit" hidden="false" type="selectionEntry" id="af99-3588-5808-8a47" targetId="744b-f36d-aef5-ddaf"/>
<entryLink import="true" name="Gorger Mawpack" hidden="false" type="selectionEntry" id="5ad-67a6-d105-a93f" targetId="b700-31ee-c9f1-d19f"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="9dbb-2d1a-12d8-7faf" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="87b5-c448-3c86-73f5" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e2e5-a02a-426e-7ca0" type="max"/>
<constraint field="selections" scope="roster" value="1" 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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="007b-7ecb-a450-1685" name="Allegiance: 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 a friendly OGOR or RHINOX unit makes a charge move, you can pick 1 enemy unit within 1" of that unit and roll a number of dice equal to the unmodified charge roll for that charge move. Add 1 to each roll if the charging unit is an OGOR unit that has 3 or more models. Add 2 to each roll if it is a MONSTER. For each 6+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</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>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</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">For the purposes of contesting objectives (core rules, 18.1.2), each friendly OGOR MAWTRIBES OGOR counts as 2 models, each friendly OGOR MAWTRIBES HERO that is not a MONSTER counts as 5 models, and each friendly OGOR MAWTRIBES MONSTER counts as 10 models.</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 MAWTRIBES OGOR unit is more than 3" from any enemy units, it is hungry. If an OGOR MAWTRIBES 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="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">You can pick 1 one subfaction for your army (core rules, 27.2.1). All OGOR MAWTRIBES units in your army gain the keyword of the subfaction you picked, and you can use the allegiance abilities for that subfaction. If a unit already has a different subfaction keyword on its warscroll, it cannot gain another one. This does not preclude you from including the unit in your army, but you cannot use the allegiance abilities for its subfaction.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile id="d79d-9962-0abc-11b6" name="Gulping Bites" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of the combat phase, roll a dice for each enemy unit within 3" of any friendly GUTBUSTERS OGOR units. On a 4+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile id="f21c-1f96-451d-d4fd" name="Unstoppable Charge" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Only a STONEHORN unit that has made a charge move in the same phase can carry out this monstrous rampage. This unit makes a 3D6" move and can pass across enemy units in the same manner as a unit that can fly. It must finish the move within 3" of any enemy units. At the end of the move, roll a dice for each unit it passed across. On a 2+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile id="e5ef-fc04-0a16-de68" name="Chill of the Everwinter" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Only a THUNDERTUSK unit that has made a charge move in the same phase can carry out this monstrous rampage. Roll a dice for each enemy unit within 1" of this unit. On a 3+, the strike-last effect applies to that unit until the end of the following combat phase.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3197-95da-f1b4-9ace" type="max"/>
<constraint field="selections" scope="roster" value="1" 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" 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">Friendly BLOODGULLET BUTCHERS know 1 extra spell from the Lore of Gutmagic. In addition, friendly BLOODGULLET BUTCHERS can attempt to cast 1 extra spell in your hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="49bd-eed7-05de-2c5b" name="Winterbite Mawtribe" 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. In addition, friendly WINTERBITE FROST SABRES, WINTERBITE ICEBROW HUNTER and WINTERBITE ICEFALL YHETEES unit are not visible to enemy models more than 12" away.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4306-7460-7912-efa1" name="Underguts Mawtribe" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="84bf-c006-ac0e-b6d0" name="Shrapnel Powder" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Improve the Rend characteristic of missile weapons used by friendly UNDERGUTS LEADBELCHERS and UNDERGUTS IRONBLASTER units by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dc5e-a55f-5d2d-dbd9" name="Thunderbellies Mawtribe" 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 can run and still charge later in the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ae4d-1e2d-e7ef-9cf8" name="Meatfist Mawtribe" 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">Add 1 to each roll made for the Trampling Charge battle trait by friendly MEATFIST GUTBUSTERS units.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1c73-136c-3a25-dacb" name="Boulderhead Mawtribe" 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 2 to the Wounds characteristic of friendly BOULDERHEAD STONEHORN and BOULDERHEAD THUNDERTUSK units. In addition, you can pick up to 3 BOULDHEAD STORNHORN HEROES or BOULDERHEAD THUNDERTUSK HEROES in your army to have different mount traits instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Allegiance: Roving Maw" hidden="false" id="492b-564c-7b19-2464">
<categoryLinks>
<categoryLink targetId="a763-f425-1441-2df2" id="651c-e563-3ec0-3ee4" primary="false" name="Army of Renown"/>
</categoryLinks>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1537-b7b5-ec8e-9d38" type="max"/>
</constraints>
<profiles>
<profile name="Driven by Starvation" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="5dc6-30da-265e-5630">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Friendly GORGERS units that are not wholly within 1" of a terrain feature at the start of your charge phase can attempt a charge even if they ran in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="9a3b-33f1-f4e7-46e1" name="Gobbling Bites" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of the combat phase, roll a dice for each enemy unit within 3" of any friendly GUTBUSTERS units. On a 2+, that unit suffers D3+1 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup name="Mawpits of Ghur" hidden="false" id="804-7ef6-60d0-b289">
<profiles>
<profile name="Mawpits of Ghur" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="25-8f8c-70ed-e1bf">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of each battle round, after determining which player will take the first turn, you must determine the hunger status of the Mawpits on the battlefield by rolling 2D6. If you included a Mawpit in your army, add the number of models slain by its Head Butcher ability during the battle to the roll. If the Mawpit is garrisoned by a Head Butcher, add 1 to the roll. Then, pick 1 result from the Mawpit Table that has a score equal to or less than your dice roll to apply for that battle round.
A unit is vulnerable to Mawpits if it is on the battlefield unless it is wholly within 1" of a terrain feature that is not a Mawpit or it can fly. This ability has no effect on ROVING MAW units.</characteristic>
</characteristics>
</profile>
<profile name="2-3 - Subdued" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="4689-3fb5-cf71-23a0">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">No effect.</characteristic>
</characteristics>
</profile>
<profile name="4-5 - Peckish" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="19ea-9819-c27f-7e4c">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Subtract 1 from the Bravery characteristic of units that are vulnerable to Mawpits.</characteristic>
</characteristics>
</profile>
<profile name="9-11 - Famished" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="c912-1884-1a53-8ebd">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Units that are vulnerable to Mawpits and that do not have the HERO keyword cannot issue commands.</characteristic>
</characteristics>
</profile>
<profile name="6-8 - Rumbling" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="f846-71d2-70fd-59b3">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Roll a dice for each unit that is vulnerable to Mawpits. On a 5+, that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile name="12+ - Ravenous" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="88b0-277f-90c3-6a27">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Roll a dice for each unit that is vulnerable to Mawpits. On a 4+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dbeb-bd23-4e21-b1ab" name="Ogor Mawtribes Core Battalion: Eurlbad" publicationId="eec8-0670-5b7c-4733" page="83" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="a3d9-3b46-5ef2-6f61" name="Ogor Mawtribes Core Battalion: Eurlbad" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">0-1 FROSTLORD
1 Huskard on Stonehorn unit
1-3 Stornhorn Beastriders units
2-4 Mournfang Pack units</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="45a3-5198-4154-bc3a" name="Slayers" hidden="false" targetId="51bb-3683-715d-a20f" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e0a8-c3ce-e9dd-e2b2" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink id="cb53-d904-34a8-06ea" name="Ogor Mawtribes Core Battalion" hidden="false" targetId="cc65-589f-f438-60e2" primary="false"/>
<categoryLink id="7450-6e28-fb50-b2a5" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8cea-bdc1-c017-2f5f" name="Ogor Mawtribes Core Battalion: Jorlbad" publicationId="eec8-0670-5b7c-4733" page="83" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="30ab-1037-0ec9-b43b" name="Ogor Mawtribes Core Battalion: Jorlbad" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">0-1 FROSTLORD
1 Huskard on Stonehorn
1-3 Stonehorn Beastriders units
2-4 Mournfang Pack units</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="987c-9206-dd28-9aa0" name="Swift" hidden="false" targetId="dec1-bec2-f318-91e6" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a979-8b5f-fe2d-11fd" name="Ogor Mawtribes Core Battalion" hidden="false" targetId="cc65-589f-f438-60e2" primary="false"/>
<categoryLink id="6808-4413-bbce-e6b1" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink id="fdbc-305f-e6fb-3b65" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b04c-dd95-eadb-fc13" name="Ogor Mawtribes Core Battalion: Torrbad" publicationId="eec8-0670-5b7c-4733" page="83" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="da0d-7d4a-46ef-62b2" name="Ogor Mawtribes Core Battalion: Torrbad" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">0-1 FROSTLORD
1 Huskard on Thundertusk
1-3 Thundertuck Beastriders units
0-3 Icefall Yhetees units</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="debc-2384-67c9-58c9" name="Expert" hidden="false" targetId="e670-c851-388f-3f54" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e56a-2784-ea6b-954f" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink id="7314-4c33-3e48-6513" name="Ogor Mawtribes Core Battalion" hidden="false" targetId="cc65-589f-f438-60e2" primary="false"/>
<categoryLink id="ce95-b7cb-ac95-8d52" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="68f4-e571-980e-30f3" name="Frost Sabres" publicationId="eec8-0670-5b7c-4733" page="101" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="36b9-3dda-0bd5-96cf" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</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">3</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">Do not take battleshock tests for this unit if it wholly within 12" of a friendly ICEBROW HUNTER.</characteristic>
</characteristics>
</profile>
<profile id="beff-7665-305b-4887" name="Hunters of the Frozen Wild" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit is not visible to enemy units while it is in cover.</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="71c1-a9b6-8698-4f18" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="d08f-473c-adcd-bc1d" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ca89-c87f-a1ba-9ea5" name="2 Frost Sabres" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="4 Frost Sabres">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="6 Frost Sabres">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="70"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e13-acdf-bed8-0da8" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ec5a-6399-9a5c-02a4" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="36b9-3dda-0bd5-96cf" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="70"/>
</costs>
</entryLink>
<entryLink id="1cbd-2151-e612-4ba2" name="Battalions" hidden="false" collective="false" import="true" targetId="c2fb-53c6-5c52-5750" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="550d-7e51-8ddd-11f7" name="Frostlord on Stonehorn" publicationId="eec8-0670-5b7c-4733" page="95" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="e8a5-e4c1-3d11-e7dd">
<conditions>
<condition field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1b43-de26-bccc-ce21" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</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">15</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="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to charge rolls for friendly BEASTCLAW RAIDERS units wholly within 12" of this unit.</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 unit’s Rock-hard Horns and Crushing Hooves if this unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="4eff-8266-1dfe-5c51" name="00-05" 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="06-08" 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="09-11" 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="12+" 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="aaef-5ce9-ece9-980b" name="Stone Skeleton" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+</characteristic>
</characteristics>
</profile>
<profile id="9f03-784b-2588-6f9c" name="Frost Spear" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified wound roll for any attacks made with a Frost Spear that target an enemy HERO or MONSTER is 6, subtract 1 from the Attacks characteristic of that unit's melee weapons (to a minimum of 1) until the end of that phase. The same unit can only be affected by this ability once per phase.</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b85-7535-2d66-1548" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b3c-45bf-87df-ef15" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b183-96b0-7439-98c8" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da24-f6de-dc2e-e82e" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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="4c43-ad02-037a-ce56" name="Battalions" hidden="false" collective="false" import="true" targetId="c2fb-53c6-5c52-5750" type="selectionEntryGroup"/>
<entryLink id="2d61-4889-6f67-abb7" name="Prayers" hidden="true" collective="false" import="true" targetId="c310-6f07-a5b8-cb1f" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1b43-de26-bccc-ce21" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="78a6-2802-de1c-5f38" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="8712-c689-f875-94be" name="General" hidden="false" collective="false" import="true" targetId="6c1f-5fc3-5498-24b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="2963-33b7-773e-ba00" name="BEASTCLAW RAIDERS General" hidden="false" targetId="cdc4-4360-eef5-ad0f" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3ede-fa65-5386-c5b5" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="35c2-3bd5-0172-cfec" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="460"/>
</costs>
</selectionEntry>
<selectionEntry id="fa5f-aba0-a5f9-fd23" name="Frostlord on Thundertusk" publicationId="eec8-0670-5b7c-4733" page="97" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="e8a5-e4c1-3d11-e7dd">
<conditions>
<condition field="selections" scope="fa5f-aba0-a5f9-fd23" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1b43-de26-bccc-ce21" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="492b-564c-7b19-2464" shared="true" includeChildForces="true" includeChildSelections="true"/>
</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">15</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="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to charge rolls for friendly BEASTCLAW RAIDERS unit wholly within 12" of this unit.</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 unit.</characteristic>
</characteristics>
</profile>
<profile id="dfa0-08f5-7840-e18d" name="00-05" 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="06-08" 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="09-11" 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">4+</characteristic>
</characteristics>
</profile>
<profile id="09e1-7d4d-f87e-74a9" name="12+" 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">5+</characteristic>
</characteristics>
</profile>
<profile id="a019-30f8-f597-7b99" name="Frost Spear" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified wound roll for any attacks made with a Frost Spear that target an enemy HERO or MONSTER is 6, subtract 1 from the Attacks characteristic of that unit's melee weapons (to a minimum of 1) until the end of that phase. The same unit can only be affected by this ability once per phase.</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="487a-65a3-e88d-f311" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a4c9-6f6b-ce66-257f" type="min"/>
<constraint field="selections" scope="parent" value="1" 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 unit that is visible to it and roll the number of dice equal to the Frost-wreathed Ice value shown on this unit's Damage Table. Add 1 to each roll if the target unit has 10-19 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>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b7c-b583-e253-bb4e" name="Punches and Kicks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bcee-115b-4265-289d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f33f-3197-0366-a6ce" type="max"/>
</constraints>
<profiles>
<profile id="3871-75be-4969-fc02" 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"/>
</costs>
</selectionEntry>
<selectionEntry id="379c-2994-11de-586f" name="Colossal Tusks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b4c6-cf48-b4e3-93b2" type="min"/>