forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDestruction - Beastclaw Raiders.cat
3325 lines (3323 loc) · 246 KB
/
Destruction - Beastclaw Raiders.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="50c5-e039-3d93-b26b" name="Destruction - Beastclaw Raiders" revision="18" 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="6" 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: Beastclaw Raiders"/>
<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="Crushing Blows"/>
</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" 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"/>
</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="7aa4-6ac5-55b3-06b7" name="Stonehorn Beastriders" hidden="false" collective="false" import="true" targetId="559c-0689-72d3-c291" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7aa4-6ac5-55b3-06b7-fa0c-9044-2568-fa02" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f28f-8c0a-451f-1989" name="Stonehorn Beastriders" hidden="false" collective="false" import="true" targetId="559c-0689-72d3-c291" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f28f-8c0a-451f-1989-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cd22-8ea0-bdb1-eb38" name="Thundertusk Beastriders" hidden="false" collective="false" import="true" targetId="078e-320b-e175-9d00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cd22-8ea0-bdb1-eb38-fa0c-9044-2568-fa02" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="85a1-2313-bb9d-f466" name="Thundertusk Beastriders" hidden="false" collective="false" import="true" targetId="078e-320b-e175-9d00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="85a1-2313-bb9d-f466-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<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">
<categoryLinks>
<categoryLink id="6390-2d58-8acb-f241" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="b5f7-ff04-4e4b-de59" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<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">
<categoryLinks>
<categoryLink id="2616-745d-b74c-e0fe" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="ba4e-9ecd-73a3-2216" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="25d5-ff31-3f0a-2b3b" name="Huskard on Thundertusk" hidden="false" collective="false" import="true" targetId="6ba6-af42-5060-ef84" type="selectionEntry">
<categoryLinks>
<categoryLink id="33e4-ed3d-6636-3dad" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="41a9-c183-f031-2253" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="62ed-d49b-d69c-3645" name="Battalion: Braggoth's Beast Hammer" hidden="false" collective="false" import="true" targetId="db7a-9513-5000-b5e6" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="62ed-d49b-d69c-3645-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0638-1002-0b82-3e0c" name="Battalion: Olwyr Alfrostun" hidden="false" collective="false" import="true" targetId="45d2-b7ad-d33c-f773" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0638-1002-0b82-3e0c-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b2a2-ab23-bd25-d019" name="Battalion: Svard Alfrostun" hidden="false" collective="false" import="true" targetId="6e12-78d2-7832-7cdc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b2a2-ab23-bd25-d019-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="26fe-1d80-f331-9b13" name="Battalion: Eurlbad" hidden="false" collective="false" import="true" targetId="dbeb-bd23-4e21-b1ab" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="26fe-1d80-f331-9b13-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="462b-ec36-3860-b75f" name="Battalion: Torrbad" hidden="false" collective="false" import="true" targetId="b04c-dd95-eadb-fc13" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="462b-ec36-3860-b75f-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1a15-44b3-fcdd-159b" name="Battalion: Skal" hidden="false" collective="false" import="true" targetId="69f3-9903-964f-c102" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1a15-44b3-fcdd-159b-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">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<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">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1168-80cc-9e3b-8092-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6672-a16f-cc27-bb57" name="Frost Sabres" hidden="false" collective="false" import="true" targetId="68f4-e571-980e-30f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aeb0-4dc5-86d8-5adf" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6672-a16f-cc27-bb57-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6799-640b-960b-5ebf" hidden="false" collective="false" import="true" targetId="68f4-e571-980e-30f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aeb0-4dc5-86d8-5adf" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6799-640b-960b-5ebf-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0df2-330d-47d1-f71d" name="Icefall Yhetees" hidden="false" collective="false" import="true" targetId="e660-38b1-e212-9eb0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6c1f-5fc3-5498-24b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0df2-330d-47d1-f71d-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2862-d94b-27f9-a31d" name="Icefall Yhetees" hidden="false" collective="false" import="true" targetId="e660-38b1-e212-9eb0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6c1f-5fc3-5498-24b7" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2862-d94b-27f9-a31d-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2757-72c8-fbd0-4195" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2757-72c8-fbd0-4195-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="adad-e0c1-a8f4-44b0" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="007b-7ecb-a450-1685" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="adad-e0c1-a8f4-44b0-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="9dbb-2d1a-12d8-7faf" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e2e5-a02a-426e-7ca0" type="max"/>
<constraint field="selections" scope="force" 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="Beastclaw Raiders" 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>
<profiles>
<profile id="6b2f-ca2d-be45-d674" name="Beastclaw Stampede" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">On a turn in which they charge into combat, you can re-roll all wound rolls of 1 made for BEASTCLAW RAIDER models in the combat phase. </characteristic>
</characteristics>
</profile>
<profile id="dbb8-cf57-08de-6b41" name="The Everwinters Blessing" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Roll a dice at the start of each of your hero phases to determine the effects of Everwinter's Blessing on the battle (reference table for result)</characteristic>
</characteristics>
</profile>
<profile id="2f05-0ab0-987c-66e6" name="1-2" hidden="false" typeId="8351-262c-0b40-f9cf" typeName="Everwinter Result">
<characteristics>
<characteristic name="Result" typeId="8aae-9133-c864-191b">Fortifying Hoarfrost</characteristic>
<characteristic name="Description" typeId="5826-2fe3-4fc4-8248">You can re-roll save rolls of 1 for all friendly BEASTCLAW RAIDER models until the start of your next hero phase</characteristic>
</characteristics>
</profile>
<profile id="fac8-36fe-7afa-ba49" name="3-4" hidden="false" typeId="8351-262c-0b40-f9cf" typeName="Everwinter Result">
<characteristics>
<characteristic name="Result" typeId="8aae-9133-c864-191b">Freezing Tailwinds</characteristic>
<characteristic name="Description" typeId="5826-2fe3-4fc4-8248">All friendly BEASTCLAW RAIDERS models can immediately move 3" as if it were the movement phase (they cannot run or retreat as part of this move).</characteristic>
</characteristics>
</profile>
<profile id="8ddd-c58a-06b7-91be" name="5" hidden="false" typeId="8351-262c-0b40-f9cf" typeName="Everwinter Result">
<characteristics>
<characteristic name="Result" typeId="8aae-9133-c864-191b">Deadly Frostbite</characteristic>
<characteristic name="Description" typeId="5826-2fe3-4fc4-8248">Roll a dice for each enemy unit within 3" of at least one of your BEASTCLAW RAIDERS models. On a 6 that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="211f-e106-b7fd-5909" name="6" hidden="false" typeId="8351-262c-0b40-f9cf" typeName="Everwinter Result">
<characteristics>
<characteristic name="Result" typeId="8aae-9133-c864-191b">Raging Blizzard</characteristic>
<characteristic name="Description" typeId="5826-2fe3-4fc4-8248">Roll a dice for each enemy unit within 3" of at least one of your BEASTCLAW RAIDERS models. On a 6 that unit suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="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">On a turn in which they charged into combat, you can re-roll all failed wound rolls made for BEASTCLAW RAIDER models from this battalion in the combat phase.</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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e626-c779-26b0-0318" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a5f-444b-7664-a3ea" type="min"/>
</constraints>
</entryLink>
</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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="967a-01c4-68e0-2e1b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4d22-514b-8d1a-771d" type="max"/>
</constraints>
</entryLink>
</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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b985-183d-f91f-a3a0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49a1-94e1-75d1-6ed2" type="max"/>
</constraints>
</entryLink>
</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="69f3-9903-964f-c102" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="518a-8df4-0721-fa12" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f3ac-af8c-a53b-3cd7" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="db7a-9513-5000-b5e6" name="Battalion: Braggoth's Beast Hammer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c6d3-0fe5-29e7-b864" name="A Hardy Breed" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to Braggoth’s Wounds characteristic.</characteristic>
</characteristics>
</profile>
<profile id="0c64-b01c-77c0-69e0" name="Fierce Rivals" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can add 1 to hit rolls made for any BEASTCLAW RAIDERS unit from this battalion whilst it is within 6" of an IRONJAWZ unit from this battalion, and vice versa.</characteristic>
</characteristics>
</profile>
<profile id="4f2d-072e-8c12-ae5d" name="Overrunning Stampede" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per battle, at the end of any of your combat phases, this battalion can make an Overrunning Stampede. When it does so, each unit in this battalion that charged successfully this turn can immediately pile in and attack again, in an order of your choice.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="e0f2-512f-967c-d606" name="1. Braggoth Vardruk" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fcad-33da-74b9-9f7b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a7a0-43ec-4d79-ef16" type="min"/>
</constraints>
<entryLinks>
<entryLink id="09fa-a1e4-b2bd-6bb2" name="Frostlord on Stonehorn" hidden="false" collective="false" import="true" targetId="550d-7e51-8ddd-11f7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ffa-a692-1de0-2b00" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db46-af67-7652-83a4" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e0ba-c6f8-16aa-8fd1" name="2. Mournfang Packs" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="542b-511c-f785-b979" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="84f4-8f46-b28e-6d5c" type="min"/>
</constraints>
<entryLinks>
<entryLink id="24f8-8341-de45-1764" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eaf1-1536-35c7-3808" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f3bb-26ee-23ae-d58e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e1e0-dd49-2b00-48ba" name="3. Gore-gruntas" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63ee-2b5b-67b8-6957" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5956-bfa7-5f3e-1790" type="min"/>
</constraints>
<entryLinks>
<entryLink id="19fb-13ae-41f0-7837" name="Orruk Gore-gruntas" hidden="false" collective="false" import="true" targetId="2bca-dc9c-7582-0784" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d50-4cf2-efab-4562" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8092-a989-2fb3-6e42" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="230.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 you roll a wound roll of 6 or more for an Eurlbad model in the combat phase, that attack inflicts one mortal wound on the target in addition to the normal damage.</characteristic>
</characteristics>
</profile>
<profile id="770d-3d3a-b868-5b27" name="Eating Hand" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Damage characteristic of all melee weapons used by the Eurlbad’s Huskard.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="f210-f121-a9d3-5012" name="1. Huskard on Stonehorn" hidden="false" collective="false" import="true">
<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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a18-52a5-787c-ab55" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9754-76a6-9431-1ccc" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ba1f-c974-103f-69c3" name="2. Stonehorn Beastriders (1 to 3)" hidden="false" collective="false" import="true">
<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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f595-d8e8-a6c9-bb98" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ddcc-c216-73a3-20c9" name="3. Mournfang Packs (2 to 4)" hidden="false" collective="false" import="true">
<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">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1673-e524-beba-89d2" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="170.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">Jorlbad units can run and charge in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="4d9a-7ce5-903b-b53f" name="Fighting Hand" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll failed battleshock tests for friendly BEASTCLAW RAIDERS units that are within 12" of the Jorlbad’s Huskard.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="fbc3-ce81-c6b4-cc91" name="1. Huskard on Stonehorn" hidden="false" collective="false" import="true">
<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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="54ba-dd81-3cfc-cc3e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0bb1-8b00-bc99-768c" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7fab-ac7f-2dc2-bdc7" name="3. Mournfang Packs (2 to 4)" hidden="false" collective="false" import="true">
<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">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cfc-e873-2c67-237b" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6994-83a5-9f2b-aee9" name="2. Stonehorn Beastriders (1 to 3)" hidden="false" collective="false" import="true">
<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">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5827-ff93-69af-c7f9" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="45d2-b7ad-d33c-f773" name="Super Battalion: Olwyr Alfrostun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0276-4867-5889-89d9" name="Vicious Beasts" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can add 1 to all hit rolls made for an Olwyr Mournfang’s Tusks.</characteristic>
</characteristics>
</profile>
<profile id="e1ce-ed20-264a-778e" name="Swiftstride" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll run rolls for all Olwyr units.</characteristic>
</characteristics>
</profile>
<profile id="ed41-a097-5013-4e6f" name="Cunning and Wise" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If you choose to randomly generate your general’s command trait, re-roll any duplicate results.</characteristic>
</characteristics>
</profile>
<profile id="4179-a183-ad81-37e8" name="Alfrostun Avalanche" page="" hidden="true" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4dab-9768-a42c-232a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">On a turn in which they charged into combat, you can re-roll all failed wound rolls made for BEASTCLAW RAIDER models from this battalion in the combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="3de3-49bf-8c96-0ae5" name="1. Frostlord on Thundertusk" hidden="false" collective="false" import="true">
<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="Frostlord on Thundertusk" hidden="false" collective="false" import="true" targetId="fa5f-aba0-a5f9-fd23" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3dad-3da3-b031-d811" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f6c-bf2d-8bd9-f156" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b49c-7ee1-93f9-f7e3" name="2. 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="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>
<selectionEntries>
<selectionEntry id="aca4-e59e-d2c3-9c16" name="Battalion: Eurlbad" 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="bede-b89e-b72d-e873" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4407-7597-6cfa-8286" type="max"/>
</constraints>
<profiles>
<profile id="278a-d053-2cff-2e05" 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 you roll a wound roll of 6 or more for an Eurlbad model in the combat phase, that attack inflicts one mortal wound on the target in addition to the normal damage.</characteristic>
</characteristics>
</profile>
<profile id="38c4-fb4b-8645-d3c4" name="Eating Hand" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Damage characteristic of all melee weapons used by the Eurlbad’s Huskard.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="9eaa-21be-b9f0-a89b" name="1. Huskard on Stonehorn" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa8f-4b28-55ee-47d9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9fc-882b-7fae-1509" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b6bf-855a-5c39-4139" name="Huskard on Stonehorn" hidden="false" collective="false" import="true" targetId="fafb-eaad-f659-ba2d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="829f-7942-b668-7982" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3582-7344-42c2-1b70" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e2c7-6957-08e6-43fa" name="2. Stonehorn Beastriders (1 to 3)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbba-404f-3cbc-1a98" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62b7-3f85-3f45-d0fe" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e925-7966-5243-a9c7" name="Stonehorn Beastriders" hidden="false" collective="false" import="true" targetId="559c-0689-72d3-c291" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1564-a31c-c713-8a7f" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ebe2-598e-becb-0202" name="3. Mournfang Packs (3 to 6)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="613b-d540-4690-cb5c" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="992b-75d2-2806-f22e" type="min"/>
</constraints>
<entryLinks>
<entryLink id="7adf-8dab-0678-3c3b" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f3fb-8802-dce3-182c" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="0126-d40f-880b-5e8f" name="3. Additional Battalions" hidden="false" collective="false" import="true">
<selectionEntryGroups>
<selectionEntryGroup id="38c4-cf79-33ce-7c30" name="2. 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="d6c2-bab9-3964-0ab9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d634-7007-11ab-82db" name="Battalion: Torrbad" hidden="false" collective="false" import="true" targetId="b04c-dd95-eadb-fc13" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9a95-3750-4e9a-0a2a" name="3. 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="0570-3f02-4c14-e839" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4226-0d5f-1d8b-ef55" name="Battalion: Skal" hidden="false" collective="false" import="true" targetId="69f3-9903-964f-c102" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="55e6-d41f-ee30-74e8" name="1. 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="0ba8-4284-0ac8-1412" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7d54-5495-38ee-3b45" name="Battalion: Jorlbad" hidden="false" collective="false" import="true" targetId="8cea-bdc1-c017-2f5f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="69f3-9903-964f-c102" name="Battalion: Skal" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b126-6ecf-2d1a-1b77" name="Hunting Pack" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">During set-up, you can place units of Frost Sabres from the Skal to one side. In any of your hero phases, when an Icebrow Hunter from this battalion sets up from ambush, you can also set up any units of Frost Sabres that you set to one side earlier – these units are set up anywhere on the battlefield that is within 18" of an ambushing Icebrow Hunter, but not within 9" of any enemy models. This is their move for the following movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="0ae2-5f03-70d1-f346" name="1. Icebrow Hunters (1 to 6)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f1e-ad5a-1b1e-2cfd" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6ee-6acd-05d6-6120" type="max"/>
</constraints>
<entryLinks>
<entryLink id="adb8-7641-12a4-8e12" name="Icebrow Hunter" hidden="false" collective="false" import="true" targetId="fc5c-2a36-ec09-f1c3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7e25-a362-2ecf-5b98" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3143-ec81-2a1a-16f3" name="2. Frost Sabres (2 to 10)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2152-90ab-bda6-51b0" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d83b-9eb1-bcb6-41f3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9662-555f-8bb2-b69e" name="Frost Sabres" hidden="false" collective="false" import="true" targetId="68f4-e571-980e-30f3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c179-f518-565c-5cb3" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e12-78d2-7832-7cdc" name="Super Battalion: Svard Alfrostun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a9d0-eccd-3bb1-2dbc" name="A Hardy Breed" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Wounds characteristic of all Svard STONEHORN models.</characteristic>
</characteristics>
</profile>
<profile id="a7fb-e45b-db93-7195" name="Alfrostun Avalanche" publicationId="50c5-e039-pubN81384" page="" hidden="true" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4dab-9768-a42c-232a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">On a turn in which they charged into combat, you can re-roll all failed wound rolls made for BEASTCLAW RAIDER models from this battalion in the combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="cd5b-db27-4ab0-8c6b" name="1. Frostlord on Stonehorn" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2b16-4589-8b7f-8337" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b138-39cd-a908-b3ff" type="min"/>
</constraints>
<entryLinks>
<entryLink id="8e76-ebb7-d48f-e982" name="Frostlord on Stonehorn" hidden="false" collective="false" import="true" targetId="550d-7e51-8ddd-11f7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5478-3eae-7396-8aac" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f043-daff-ec8c-2546" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="44fb-2862-c7a4-1612" 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="4d56-0322-b38c-f82c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b86-a878-9348-56e0" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="9b45-1b0b-b84e-e760" name="Battalion: Jorlbad" 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="dc5f-1780-79e5-d991" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7750-97c8-84f8-b238" type="min"/>
</constraints>
<profiles>
<profile id="6ce2-9f42-7c8b-3a70" 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">Jorlbad units can run and charge in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="3f7a-37ad-f47d-a7ea" name="Fighting Hand" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll failed battleshock tests for friendly BEASTCLAW RAIDERS units that are within 12" of the Jorlbad’s Huskard.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="ca9c-1450-2b76-fb99" name="1. Huskard on Stonehorn" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="b0a4-1c45-748c-bb82" name="Huskard on Stonehorn" hidden="false" collective="false" import="true" targetId="fafb-eaad-f659-ba2d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5c7-9e73-7ea6-0bbe" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e9e-a537-3dc4-925e" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="57b1-61c8-7b35-268b" name="3. Mournfang Packs (2 to 4)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4171-b0c3-46ec-e4d9" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d64c-582d-d718-9b33" type="min"/>
</constraints>
<entryLinks>
<entryLink id="3035-f0c2-6542-335b" name="Mournfang Pack" hidden="false" collective="false" import="true" targetId="c5e4-e780-c534-d17c" type="selectionEntry">
<constraints>