generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathIronjawz - Library.cat
1881 lines (1881 loc) · 136 KB
/
Ironjawz - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="8c7-eee2-e358-ba1e" name="Ironjawz - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Weirdnob Shaman" hidden="false" id="e824-4e07-12f6-309c" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="6661-b7c5-6363-44cc" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Weirdnob Shaman" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="74-e154-5b4-4632">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Brutal Power" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="73a6-66b9-f6f-4cf7">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to this unit’s power level while there are any friendly **^^Ironjawz^^** units that have 10 or more models wholly within 12" of it.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="462c-896b-29ae-9278" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="92a2-208b-6c4e-5dcc" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="ba08-ff07-52ea-2f46" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="797c-5013-c09e-aae4" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="1ed5-2f1b-914e-03cf" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Weirdnob Shaman" hidden="false" id="d5ca-4205-5103-d53b">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Green Puke" hidden="false" id="4f3f-8f01-ac9c-d6a2">
<profiles>
<profile name="Green Puke" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="607e-d739-f806-fdb3">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">-</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8574-b1c5-dacd-8385"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8e7f-5fa1-ea97-e4a2"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Waaagh! Staff" hidden="false" id="217-a68-7955-6a2">
<profiles>
<profile name="Waaagh! Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ddcc-d3df-1179-36d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7cbd-f581-44d2-e63a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7a80-25a0-7c53-388a"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bd9b-b6fb-ae54-2995"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e7d-88c7-73d5-5f99"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Kragnos, the End of Empires" hidden="false" id="2a45-46b2-62f9-63cc" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5427-bdbf-a3d1-34ba" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Kragnos, the End of Empires" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d49a-ca03-104-c44b">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">18</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">15</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="d590-353e-2fe2-e54d">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of **The Dread Mace** is 4 and this unit has a Control characteristic of 10.</characteristic>
</characteristics>
</profile>
<profile name="Avatar of Destruction" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1682-108e-330e-4da0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit would be automatically destroyed, it is not automatically destroyed. Instead, allocate 6 damage points to it (ward rolls cannot be made for those damage points).</characteristic>
</characteristics>
</profile>
<profile name="Rampaging Destruction" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1295-7f6e-c910-5c9d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit charged this phase, pick 1 of the following effects:
• Roll a dice for each enemy unit within 1" of this unit. On a 2+, inflict an amount of mortal damage on that unit equal to the roll.
• Pick an enemy **^^Monster^^** in combat with this unit and roll 2D6. On a 7, this ability has no effect. Otherwise, inflict an amount of mortal damage on that unit equal to the results on the dice used for the 2D6 roll multiplied together. For example, a 2D6 roll of 2 and 6 would inflict 12 mortal damage (2 × 6).</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="The End of Empires" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e5b8-2d37-259d-87a6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the number of dice rolled when making charge rolls for friendly **^^Destruction^^** units while they are wholly within 12" of this unit, to a maximum of 3.</characteristic>
</characteristics>
</profile>
<profile name="The Shield Inviolate" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ec2f-e8e-94ff-9aa0">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a **^^Spell^^** ability</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit was picked to be the target of that spell, roll a dice. On a 3+, ignore the effect of that spell on this unit. This unit can use this ability more than once per phase but only once per **^^Spell^^** ability.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="7a34-725e-42e8-922" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="8955-a516-3ebb-6075" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="d385-837e-6d4b-80f5" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="66e8-3f8a-2859-5c64" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="b25c-748c-5146-8911" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="3d33-a90f-6afc-ef4" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="57e2-ea9a-84e4-4b1e" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="KRULEBOYZ" hidden="false" id="67d0-b052-93ad-cc2d" targetId="6e42-3c75-4cb5-337a" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="24f3-4ea5-fadb-e364" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Kragnos, the End of Empires" hidden="false" id="11bd-e956-ea84-5e76">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="The Dread Mace" hidden="false" id="59d8-824-dd81-4d9e">
<profiles>
<profile name="The Dread Mace" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="62cc-c03b-f390-ea56">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">3</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a1b4-6deb-deda-f3b0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="65fd-4d08-33df-96ec"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Tuskbreaker" hidden="false" id="ac7f-a30d-3a72-a496">
<profiles>
<profile name="Tuskbreaker" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="799e-d1d1-3f33-aa37">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="522e-6cec-d46-aa48"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b85a-e755-3d62-a31c"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hooves of Wrack and Ruin" hidden="false" id="e41b-4676-aafd-cf28">
<profiles>
<profile name="Hooves of Wrack and Ruin" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="aab8-2038-53ff-1cd">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="21a7-daf-c057-5d04"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3aeb-12b8-a3a8-25e"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="315-d37a-4b10-4949"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1daf-16d-540c-79d7"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Maw-grunta Gougers" hidden="false" id="ce75-dedf-3b6f-9a7c" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="d63b-6b2d-f980-7253" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Maw-grunta Gougers" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8bae-a659-278c-a31d">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">12</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Flattened into the Mud" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5568-1889-ed04-f4e2">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice and add the number of **momentum points** this unit has to the roll. On a 5+, the target has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Unstoppable Momentum" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="d1fe-24f3-eecf-2a38">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time this unit has charged as a result of using a **^^Charge^^** ability, it gains 1 **momentum point**. Each time it uses a **^^Run^^** ability, it gains 2 **momentum points**. It can have a maximum of 3 **momentum points** at once.
Add the number of **momentum points** this unit has to the Damage characteristic of its **^^Maw-grunta’s Tusks^^**. At the end of each battle round, subtract 1 from its **momentum points**, to a minimum of 0.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="MONSTER" hidden="false" id="d0b3-85da-e6f2-5e9c" targetId="6d54-625c-d063-13e2" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="5354-159e-d63a-bffa" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="a88a-6b8f-de34-ba7" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="MAW-GRUNTA" hidden="false" id="9619-948e-28d6-f50c" targetId="ef0c-475e-6f5d-5c68" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Maw-grunta Gouger" hidden="false" id="edd7-b91b-4bb-a555">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Choppas" hidden="false" id="4387-4f43-cb83-3dde">
<profiles>
<profile name="Choppas" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4f47-3aa5-a5b-8d67">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9a30-36f8-5b82-f05"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="147e-a6c-3099-37c5"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Maw-grunta’s Tusks" hidden="false" id="3aa0-5407-111a-ca0c">
<profiles>
<profile name="Maw-grunta’s Tusks" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ee8f-a37d-96d0-e28b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="34a7-a27d-fe70-69fe"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e47-1357-a74f-519d"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Maw-grunta’s Trotters" hidden="false" id="fb86-d67-a1b2-33c3">
<profiles>
<profile name="Maw-grunta’s Trotters" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="34aa-9ade-6ab2-2f20">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="12bb-1044-640a-b041"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eef5-15b0-66e4-911c"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d2f5-532f-2813-311b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="93c9-9584-4025-df03"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Megaboss on Maw-krusha" hidden="false" id="8400-417c-251b-860a" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5424-110a-36c9-9120" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Megaboss on Maw-krusha" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9ee8-2e91-e692-9775">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">18</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f3b4-1a52-be04-b724">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of ** Maw-krusha’s Fists and Tail** is 5.</characteristic>
</characteristics>
</profile>
<profile name="Destructive Bulk" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3f1a-a95a-2922-1a97">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick a visible enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll. If the target is Infantry, double the mortal damage inflicted.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Smash Through" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="21ad-a794-ed34-742d">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">When this unit makes a pile-in move, if it charged in the same turn, it can move 2D6" instead of 3"</characteristic>
</characteristics>
</profile>
<profile name="Strength From Victory" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="232-55a0-317f-f9cf">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If any damage points were allocated to an enemy unit by this unit’s combat attacks this turn and that enemy unit has been destroyed, give this unit a **Waaagh! token**, to a maximum of 3.
Until the end of the next turn, add 1 to the Attacks characteristic of this unit’s weapons for each **Waaagh! token** it has.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="ecae-9747-bc69-e160" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="b9ce-5b8b-93e1-78d6" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="c3e-aa62-3ecf-455f" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="ee69-6277-f662-24ff" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="MAW-KRUSHA" hidden="false" id="f0fa-c757-6c69-7683" targetId="48d5-c85-c069-733a" primary="false"/>
<categoryLink name="FLY" hidden="false" id="d53c-e9d2-ca9c-8635" targetId="b979-4c3e-7d0e-6921" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Megaboss on Maw-krusha" hidden="false" id="1282-b117-581a-3a07">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Boss-choppa or Boss-hacka" hidden="false" id="766d-84fa-2882-b32c">
<profiles>
<profile name="Boss-choppa or Boss-hacka" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3d02-4bb-8efb-6690">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7d1-e10d-71-3677"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eb5c-9190-c35a-4bcd"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Maw-krusha’s Fists and Tail" hidden="false" id="9116-3d-7cb3-afcf">
<profiles>
<profile name="Maw-krusha’s Fists and Tail" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="943b-26a8-50cf-e1e1">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3917-7134-b9c0-3862"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c2f1-7183-7761-324a"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Maw-krusha’s Roar" hidden="false" id="9347-2ae3-5d6-22a7">
<profiles>
<profile name="Maw-krusha’s Roar" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="7c87-431b-2516-2a43">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">8"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">-</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat, Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2051-c781-35f0-ab09"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="49f8-ffe1-cf56-43c5"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2f3c-7485-e866-8d2a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="51c2-9c50-1692-f64f"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Megaboss" hidden="false" id="4e07-f63a-6315-b48b" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="87e5-8fcf-9d12-f05b" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Megaboss" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e8e5-8560-5331-37a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Get Stuck In, Ladz!" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="84f7-1f0d-c899-1e2d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Brute^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, add 1 to the Attacks characteristic of the target’s melee weapons until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Lead da Brutes" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8557-bf37-78c7-ea5d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, for the rest of the turn, add 1 to the Attacks characteristic of melee weapons used by friendly **^^Brute^^** units while they are within this unit’s combat range.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Strength From Victory" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="fe7-6e6c-e3d5-cec8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If any damage points were allocated to an enemy unit by this unit’s combat attacks this turn and that enemy unit has been destroyed, give this unit a **Waaagh! token**, to a maximum of 3.
Until the end of the next turn, add 1 to the Attacks characteristic of this unit’s weapons for each **Waaagh! token** it has.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="59a3-d178-7461-29dd" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="5e1e-1326-8437-74a1" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="2748-d3e1-9139-9de" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="c045-6af4-9df7-3de2" targetId="c1ca-4b17-3512-89f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Megaboss" hidden="false" id="1ba9-5017-6a18-2aee">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Boss-choppa" hidden="false" id="8200-bc1f-235c-d69e">
<profiles>
<profile name="Boss-choppa" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f6b3-b16f-c6c9-3fb9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2367-4d38-4e2e-a70"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="61f4-d635-c754-6fa7"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f65f-7b8-b292-d363"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ff62-7fcb-d079-bac9"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Warchanter" hidden="false" id="7d89-20b4-7ed4-6ca0" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="9f10-c5d0-386c-7fff" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Warchanter" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="da4f-b50-64a3-8545">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Rhythm of Destruction" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1bd0-bd40-a9b8-eb02">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If any enemy models were slain this turn by this unit’s combat attacks, give this unit D3 ritual points.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="580-c91c-68dd-b27" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="baaf-3438-550c-95ba" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="a939-1622-bc64-5a2d" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="68e7-8b80-dfbe-61be" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="PRIEST (1)" hidden="false" id="e2e9-620e-f9c4-1e82" targetId="3fe-84f4-cec6-a1c1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Warchanter" hidden="false" id="b569-1b3-852c-eb58">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gorkstikk and Morkstikk" hidden="false" id="48b5-d012-bc1a-a5e9">
<profiles>
<profile name="Gorkstikk and Morkstikk" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6044-1fcb-61c9-e15c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="56b5-9968-f8c8-7397"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3adb-82b0-78a4-477"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b70f-2bfd-901b-c872"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="93e0-2beb-27ce-4b42"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Gore-gruntas" hidden="false" id="f4bd-9f1c-cc46-5b5e" publicationId="2d6e-3ea2-52fe-a38">
<profiles>
<profile name="Gore-gruntas" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="6955-db9a-fafb-84f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">9"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Gore-grunta Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3b53-623a-5b3d-8746">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll. Add 1 to the mortal damage inflicted (if any) if the target is **^^Cavalry^^**.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAMPION" hidden="false" id="6b85-d8eb-9ae7-ac72" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="173-76ca-f2fa-1464" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="bee3-46b-6471-f1cf" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="2202-505f-2c79-f31b" targetId="926c-df8c-6841-d49e" primary="true"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Gore-grunta" hidden="false" id="8b95-e8de-ecfa-252" defaultAmount="1,2">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="false" id="8ee3-2b96-5e50-b95a"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="false" id="a8de-dc57-f40d-6c08"/>
</constraints>
<modifiers>
<modifier type="increment" value="3" field="8ee3-2b96-5e50-b95a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="a8de-dc57-f40d-6c08">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Choppa or Hacka" hidden="false" id="8299-a280-b849-39c6">
<profiles>
<profile name="Choppa or Hacka" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="233f-9307-a1c2-557c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Cavalry^^**(+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="f17e-3201-a8d7-6d24"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="1558-fae6-968d-b962"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Grunta’s Tusks" hidden="false" id="c402-9834-5a1d-25c3">
<profiles>
<profile name="Grunta’s Tusks" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b699-137e-7487-a664">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="2caa-8ef-215b-a929"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4bd5-9a71-5e13-c00e"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="fba5-56c8-e020-9c47" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e4be-a9c0-77e5-36f3" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="b0e7-1fb7-b65-1f42" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5e87-37fe-7d3f-5b3"/>
<constraint type="max" value="1" field="selections" scope="f4bd-9f1c-cc46-5b5e" shared="true" id="6868-cede-ecd7-5612" includeChildSelections="true"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Brute Ragerz" hidden="false" id="d77b-a0ba-7d99-28d5" publicationId="2d6e-3ea2-52fe-a38">
<profiles>
<profile name="Brute Ragerz" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c40f-6b8c-18fc-1eda">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">3</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Berserkers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="36a5-7fc-75d-9580">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use a **^^Run^^** ability and still use **^^Charge^^** abilities later in the turn.</characteristic>
</characteristics>
</profile>
<profile name="Unleashed Rage" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="aacf-23e5-8cdb-69ee">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit has **^^Strike-first^^** if it charged in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="INFANTRY" hidden="false" id="9542-edc1-655a-9ea5" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="15f4-cd93-45c6-b068" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="5bd9-41e4-1b5b-8bb" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="BRUTE" hidden="false" id="fa7-b3af-b63e-7804" targetId="2461-b51f-dc6-3114" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Brute Rager" hidden="false" id="caf3-23c3-3b34-9b3c" defaultAmount="1,2">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="false" id="8b5e-bd9f-566e-8567"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="false" id="f8fc-6793-b3ef-d6a3"/>
</constraints>
<modifiers>
<modifier type="increment" value="3" field="8b5e-bd9f-566e-8567">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="f8fc-6793-b3ef-d6a3">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Rager Weapons" hidden="false" id="5553-a984-8f38-979f">
<profiles>
<profile name="Rager Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4d4b-8946-b735-8c33">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Monster^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="d35a-6d60-a202-a930"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="d687-ee14-edb-6aaa"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ardboyz" hidden="false" id="f757-3f6b-a13a-546a" publicationId="2d6e-3ea2-52fe-a38">
<profiles>
<profile name="Ardboyz" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="50b6-e26b-7d7d-378">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">2</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Shield Bash" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bbd6-2236-da77-3f8b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit and that charged this turn to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Make a shield bash roll of D6 for each model in this unit. For each 6+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="INFANTRY" hidden="false" id="72e1-a9fc-54fc-31c5" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="6d83-863f-bbdf-f937" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="5f8c-4235-b9b5-af03" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="6a3a-2ab6-1027-5725" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="STANDARD BEARER (1/10)" hidden="false" id="941b-da34-8ef5-ba7f" targetId="1f17-ad98-ada0-ccf" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ardboy" hidden="false" id="a2ef-910f-edbf-dbb6" defaultAmount="1,1,8">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="false" id="5cf3-ec89-707a-f8ce"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="false" id="b32d-649d-55a0-65e2"/>
</constraints>
<modifiers>
<modifier type="increment" value="10" field="5cf3-ec89-707a-f8ce">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="b32d-649d-55a0-65e2">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Choppa or Stikka" hidden="false" id="58ed-25ad-af05-8603">
<profiles>
<profile name="Choppa or Stikka" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3b35-41ac-88ac-5780">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-charge (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="b3d3-fcc2-b659-e599"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="8e5a-5b55-6fc-8001"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="3b9f-2def-e0d5-9828" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="256f-7e62-295d-8d59" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="5314-89ab-1db9-dc18" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="88f4-dbfc-94b5-dc72"/>
<constraint type="max" value="1" field="selections" scope="f757-3f6b-a13a-546a" shared="true" id="6e4e-afd9-aae2-3415" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="add3-8fe5-ed29-430a" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,1,0">
<modifiers>
<modifier type="increment" value="1" field="8d66-17b2-6714-9ae4">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="f757-3f6b-a13a-546a" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="1" field="selections" scope="f757-3f6b-a13a-546a" shared="true" id="8d66-17b2-6714-9ae4" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="376f-e66f-4d44-47fd"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ardboy Big Boss" hidden="false" id="e020-20c4-a638-6d2b" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5817-3aaf-f6b4-29be" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Ardboy Big Boss" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="cc6-c796-e3d2-f36f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Iron-fisted Commander" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="4571-de81-edd8-8e28">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If a friendly **Ardboyz** unit wholly within 12" of this unit uses the ‘Rally’ command, you can make 3 additional rally rolls of D6.</characteristic>
</characteristics>
</profile>
<profile name="Get Bashin'!" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1cd9-9771-5fc7-bf76">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to shield bash rolls for friendly **Ardboyz** units while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="3d14-4140-1510-23cb" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="a4e6-4abe-4f3a-1bc1" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="7255-8fd4-14a0-c3b" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="9608-7531-cb05-ed1c" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ardboy Big Boss" hidden="false" id="57ae-a31-338e-741e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Boss-hacka and Choppa" hidden="false" id="77b9-1264-7344-c3">
<profiles>
<profile name="Boss-hacka and Choppa" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d5b-ba98-8893-3b58">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="58cd-3be5-ed2e-f6a5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9634-9df7-b064-27cf"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f6bd-6411-422c-8ba5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="40cc-87f9-2afa-1455"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Zoggrok Anvilsmasha" hidden="false" id="d4c-6af5-1346-a8ab" publicationId="2d6e-3ea2-52fe-a38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="97d9-12a7-3d43-7fcf" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Zoggrok Anvilsmasha" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1742-12cd-419a-69d9">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Klonk" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2f1e-9a5-dca3-bac8">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">**Klonk** is a token. You can re-roll forgin’ rolls for this unit while this unit’s **Klonk** is on the battlefield. If you make an unmodified save roll of 1 for this unit, remove this unit’s **Klonk** from the battlefield after the **^^Attack^^** ability has been resolved (the damage point is still inflicted).</characteristic>
</characteristics>
</profile>
<profile name="Power of da Great Green God" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="be8b-b8e0-cf66-346f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible friendly **^^Ironjawz Infantry^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Make a forgin’ roll of D6. Add 1 to the roll if this unit is armed with **Grunta-tongs**. On a 4+, the target’s melee weapons have **Crit (Mortal)** until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="ece8-cb90-dc2e-b39c" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="5513-8ba4-152d-3417" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="68cf-5-250c-3a2c" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="IRONJAWZ" hidden="false" id="f0e9-bced-b41f-2656" targetId="c1ca-4b17-3512-89f" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="dfb6-2d53-2827-b44e" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="35a2-4cae-a97a-578a" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Zoggrok Anvilsmasha" hidden="false" id="7c7d-23f9-7593-d940">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Skull-crushing Basha" hidden="false" id="7a83-64e6-f12a-1fa5">
<profiles>
<profile name="Skull-crushing Basha" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1ebb-28f2-83bc-6ac3">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7b3e-1df8-6e7a-cbe2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9f19-8607-f1bf-556d"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="298-7974-d794-ce94"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4154-19d1-3d74-6a5c"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Wargear Options" id="4d33-dc6e-caeb-57e" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ward-smashing Choppa" hidden="false" id="9a6d-cb22-261f-c3e0">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ward-smashing Choppa" hidden="false" id="bf78-62ba-7214-adf7">
<profiles>
<profile name="Ward-smashing Choppa" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7a6a-eeda-a7a5-5063">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="943f-f03a-4c71-b696"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="51d2-583f-2be0-cef0"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="12b6-3d5-b702-ae91"/>
</constraints>
<profiles>
<profile name="Ward-smashing Choppa" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="b182-de76-e880-783">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If an attack made with this unit’s **^^Ward-smashing Choppa^^** scores a hit, the target has the **^^Ward‑smashed^^** keyword for the rest of the battle. Ward rolls cannot be made for a **^^Ward‑smashed^^** unit.</characteristic>
</characteristics>
</profile>
</profiles>