forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Destruction - Moonclan Grots.cat
1377 lines (1377 loc) · 98.9 KB
/
Destruction - Moonclan Grots.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="3815-2bb0-7dfb-a9ed" name="Destruction - Moonclan Grots" revision="13" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="64" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="3815-2bb0-pubN65537" name="Grand Alliance: Destruction"/>
<publication id="3815-2bb0-pubN72125" name="Age of Sigmar: The Rules"/>
<publication id="3815-2bb0-pubN72154" name="Destruction Battletome: Ironjawz"/>
</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="4003-bfdc-cce0-bbc8" name="Crew within 1"">
<characteristicTypes>
<characteristicType id="06fe-481f-bc07-6185" name="Move"/>
<characteristicType id="b12f-0108-0288-5e79" name="Chukking Spear"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="d850-d9b0-684b-9f3a" name="Destruction" hidden="false"/>
<categoryEntry id="f643-013c-7718-007d" name="Orruk" hidden="false"/>
<categoryEntry id="748c-7ab7-fb11-16a9" name="Ironjawz" hidden="false"/>
<categoryEntry id="03eb-456f-dd6c-7024" name="Ardboys" hidden="false"/>
<categoryEntry id="fb31-0c98-2d1d-8492" name="Mega Boss" hidden="false"/>
<categoryEntry id="2246-c381-2650-4ca2" name="Ogor" hidden="false"/>
<categoryEntry id="0c7a-b84c-e897-06b8" name="Beastclaw Raiders" hidden="false"/>
<categoryEntry id="1157-1f71-6a1f-5b29" name="Grot" hidden="false"/>
<categoryEntry id="d810-9e09-8a4d-d0a4" name="Moonclan" hidden="false"/>
<categoryEntry id="8ee3-0d55-b453-a8d4" name="Fungoid Cave-Shaman" hidden="false"/>
<categoryEntry id="41cf-bc14-e54b-f1b2" name="GUTBUSTERS" hidden="false"/>
<categoryEntry id="6bf4-9938-639f-ce13" name="Maneaters" hidden="false"/>
<categoryEntry id="7028-500a-7514-9de1" name="Rockgut" hidden="false"/>
<categoryEntry id="d9e4-0e75-af07-f1ed" name="Sourbreath" hidden="false"/>
<categoryEntry id="fe2d-b68b-d67e-b356" name="Fellwater" hidden="false"/>
<categoryEntry id="0967-e07d-94a5-a722" name="Firebelly" 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>
<categoryLinks>
<categoryLink id="e8fa-4c73-1f1e-b4ab" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8169-0de4-7b41-9ddf" name="Mangler Squigs" hidden="false" collective="false" import="true" targetId="054e-9dac-d38b-d1a5" 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="ebc7-eda1-4e76-6609" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8169-0de4-7b41-9ddf-fa0c-9044-2568-fa02" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5ea3-b8b5-a903-552b" name="Grot Warboss" hidden="false" collective="false" import="true" targetId="f38f-9454-11e8-90f6" type="selectionEntry">
<categoryLinks>
<categoryLink id="5ea3-b8b5-a903-552b-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c0c8-7aee-4917-c309" name="Grot Shaman" hidden="false" collective="false" import="true" targetId="b43d-ccd8-294b-06e5" type="selectionEntry">
<categoryLinks>
<categoryLink id="c0c8-7aee-4917-c309-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5206-ca93-db7f-c950" name="Grot Warboss on Great Cave Squig" hidden="false" collective="false" import="true" targetId="c78f-2f88-c52a-675c" type="selectionEntry">
<categoryLinks>
<categoryLink id="5206-ca93-db7f-c950-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af16-b96e-2409-3a2d" name="Grot Fanatics" hidden="false" collective="false" import="true" targetId="e82f-5e75-3047-d0d3" 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="ebc7-eda1-4e76-6609" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="af16-b96e-2409-3a2d-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b6ef-35b3-924e-b66b" name="Grot Squig Herders" hidden="false" collective="false" import="true" targetId="aa63-9f10-cf7c-9806" type="selectionEntry">
<categoryLinks>
<categoryLink id="b6ef-35b3-924e-b66b-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9721-4530-a39a-b23c" name="Grot Squig Hoppers" hidden="false" collective="false" import="true" targetId="8796-b178-3aa6-80aa" 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="ebc7-eda1-4e76-6609" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9721-4530-a39a-b23c-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b77c-0b89-c332-b107" name="Grots" hidden="false" collective="false" import="true" targetId="37fd-a50c-1ea1-820a" type="selectionEntry">
<categoryLinks>
<categoryLink id="3e39-f066-4c4a-702e" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="37d7-5781-76f9-45f6" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9e21-e918-6308-7ce6" name="Fungoid Cave-Shaman" hidden="false" collective="false" import="true" targetId="c693-bf2a-e38f-9669" type="selectionEntry"/>
<entryLink id="33ed-19ec-326e-7a30" name="Cave Squigs" hidden="false" collective="false" import="true" targetId="fed1-0ea6-03bb-7a17" 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="ebc7-eda1-4e76-6609" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0594-27d9-ac9c-396d" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6c43-7786-580d-ad47" name="Cave Squigs" hidden="false" collective="false" import="true" targetId="fed1-0ea6-03bb-7a17" 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="ebc7-eda1-4e76-6609" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3cdf-20be-d0d5-6624" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a148-c0fd-5ac4-4f9b" name="Grot Squig Hoppers" hidden="false" collective="false" import="true" targetId="8796-b178-3aa6-80aa" 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="ebc7-eda1-4e76-6609" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2e3b-01bf-564c-19cb" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="4f65-548d-1046-c4a7" name="New CategoryLink" 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">
<modifiers>
<modifier type="set" field="089d-0124-ca4f-8bb9" value="0.0">
<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>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e9b2-a6e9-df2d-ee74" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="089d-0124-ca4f-8bb9" type="min"/>
</constraints>
<infoLinks>
<infoLink id="c6eb-3306-d456-bd6b" name="Rampaging Destroyers" hidden="false" targetId="4571-8f36-98ca-2d16" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="58cb-035e-421d-d749" 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="ebc7-eda1-4e76-6609">
<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>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ebc7-eda1-4e76-6609" name="Moonclan Grots" 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>
<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="e82f-5e75-3047-d0d3" name="Grot Fanatics" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="points" value="100">
<repeats>
<repeat field="selections" scope="e82f-5e75-3047-d0d3" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="681a-02ca-afc8-aa1e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="points" value="100">
<conditions>
<condition field="selections" scope="e82f-5e75-3047-d0d3" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="681a-02ca-afc8-aa1e" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="2740-ff41-6aeb-246b" name="Release the Fanatics!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Instead of setting up this unit normally, you can place it to one side and say that it is set up in hiding. If you do so, secretly note down one of your units of MOONCLAN GROTS with at least five models for this unit to hide in. At the start of any charge phase you can release the fanatics: set up the Grot Fanatics within 1" of the unit that is hiding them. The Fanatics can then charge, even if it isn’t your charge phase. If the unit hiding the Grot Fanatics is destroyed before releasing the Fanatics, those Grot Fanatics are destroyed as well.</characteristic>
</characteristics>
</profile>
<profile id="0012-5d6a-35b9-f30a" name="Out of Control, Splat!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If you roll a double when determining the Grot Fanatics’ move distance, the unit suffers a mortal wound as one of the Fanatics collides with a tree, rock, or another Fanatic and comes to a very sudden and terminal stop.</characteristic>
</characteristics>
</profile>
<profile id="fa9a-3155-d3b1-5a34" name="Grot Fanatics" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">2D6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">-</characteristic>
</characteristics>
</profile>
<profile id="f7fc-d676-3377-9697" name="Ball and Chain" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="681a-02ca-afc8-aa1e" name="Grot Fanatics" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b43d-ccd8-294b-06e5" name="Grot Shaman" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="eab6-aab8-e835-5656" name="Grot Shaman" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Curse of da Bad Moon</characteristic>
</characteristics>
</profile>
<profile id="6170-acf1-df7b-0ceb" name="Curse of da Bad Moon" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">8</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">With a chilling howl the Shaman summons a great pale moon with a leering grot-like face and curled tusks to attack the enemy. Curse of da Bad Moon has a casting value of 8. If successfully cast, select a visible model within 18". That model’s unit suffers D3 mortal wounds. Then roll a dice for each other unit within 6" of the target model (roll before removing any slain models); on a 4 or more that unit also suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="0a50-d79b-9ee0-508e" name="Madcap Mushrooms" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0"> Before a Grot Shaman attempts to cast a spell he can eat a Madcap Mushroom. If he does so roll a dice; on a 2 or more add 2 to the subsequent casting roll. On a 1 the mushroom was bad and he can do nothing else until your next hero phase as he starts hallucinating. </characteristic>
</characteristics>
</profile>
<profile id="3516-442b-91a0-906e" name="Moon Staff" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="331c-4601-c503-0ff6" name="General" hidden="false" collective="false" import="true" targetId="d7dd-acbb-a8db-2fe5" type="selectionEntry"/>
<entryLink id="50eb-879f-7e7a-806f" name="Artefacts" hidden="false" collective="false" import="true" targetId="fdcb-7832-46a4-e9b6" type="selectionEntryGroup"/>
<entryLink id="21f1-87e7-928c-8d19" name="Command Traits" hidden="false" collective="false" import="true" targetId="2fb3-b280-7281-037c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="06c6-e6eb-f69d-b57e" name="Grot Spear Chukka" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7a4e-54b5-1f48-fcc4" name="You Better Hit ’Em!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When several Spear Chukkas are fielded together, the most obnoxious grot in each crew will bully his mates to prove he’s the best by being the first to hit the foe. You can re-roll failed hit rolls when firing a Chukkin’ Spear if there is another Spear Chukka crew from your army within 3" of the war machine.</characteristic>
</characteristics>
</profile>
<profile id="87fa-f806-8dcb-b0cc" name="Get the One with the Big Hat" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can add 1 to the hit roll when firing a Spear Chukka if the target is a Hero.</characteristic>
</characteristics>
</profile>
<profile id="6c0e-f223-d478-c8b8" name="Grot War Artillery" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Spear Chukka can only move if its crew are within 1" at the start of the movement phase. If its crew are within 1" of the Spear Chukka in the shooting phase, they can fire the war machine. The war machine cannot make charge moves, does not need to take battleshock tests and is unaffected by any attack or ability that uses Bravery. The crew are in cover while they are within 1" of their war machine.</characteristic>
</characteristics>
</profile>
<profile id="c4d5-93e2-2a3f-ca9a" name="Grot Spear Chukka" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">4</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">-</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="65aa-8f5f-4f7b-5c20" name="Grot Spear Chukka Crew" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0650-8eda-d167-7420" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99e5-24ff-5d99-7e0a" type="max"/>
</constraints>
<profiles>
<profile id="2908-8217-2330-8103" name="Grot Spear Chukka Crew" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="9942-ff93-8ce8-f57b" name="Crew’s Improvised Weapons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9ec0-4ce2-6de1-92cb" name="Crew within 1"" 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="60b6-2ef1-2f58-4bbe" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="291e-c6a5-29ea-3399" type="max"/>
</constraints>
<profiles>
<profile id="6c76-02e5-cefb-bf25" name="0" hidden="false" typeId="4003-bfdc-cce0-bbc8" typeName="Crew within 1"">
<characteristics>
<characteristic name="Move" typeId="06fe-481f-bc07-6185">0</characteristic>
<characteristic name="Chukking Spear" typeId="b12f-0108-0288-5e79">0</characteristic>
</characteristics>
</profile>
<profile id="6ad5-a2b4-5451-0eef" name="3" hidden="false" typeId="4003-bfdc-cce0-bbc8" typeName="Crew within 1"">
<characteristics>
<characteristic name="Move" typeId="06fe-481f-bc07-6185">4"</characteristic>
<characteristic name="Chukking Spear" typeId="b12f-0108-0288-5e79">2</characteristic>
</characteristics>
</profile>
<profile id="eed4-b924-3a3f-9824" name="2" hidden="false" typeId="4003-bfdc-cce0-bbc8" typeName="Crew within 1"">
<characteristics>
<characteristic name="Move" typeId="06fe-481f-bc07-6185">3"</characteristic>
<characteristic name="Chukking Spear" typeId="b12f-0108-0288-5e79">2</characteristic>
</characteristics>
</profile>
<profile id="4dc5-6e9e-9eef-64cc" name="1" hidden="false" typeId="4003-bfdc-cce0-bbc8" typeName="Crew within 1"">
<characteristics>
<characteristic name="Move" typeId="06fe-481f-bc07-6185">2"</characteristic>
<characteristic name="Chukking Spear" typeId="b12f-0108-0288-5e79">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aa63-9f10-cf7c-9806" name="Grot Squig Herders" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="points" value="20">
<repeats>
<repeat field="selections" scope="aa63-9f10-cf7c-9806" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c597-ba10-c65d-da7a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="points" value="20">
<conditions>
<condition field="selections" scope="aa63-9f10-cf7c-9806" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c597-ba10-c65d-da7a" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="6807-0a2f-3070-e6d2" name="Keep Close, use ’em for Cover" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Your opponent must subtract 1 from any hit roll that targets a Grot Squig Herder whilst it is within 5" of any Cave Squigs from your army.</characteristic>
</characteristics>
</profile>
<profile id="09cc-4c94-fe45-6bee" name="Grot Squig Herders" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="84ed-809b-c64e-f159" name="Noisemaker" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">6+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="74a1-c93e-f0b0-81fd" name="Squig Prodder" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="c597-ba10-c65d-da7a" name="2 Grot Squig Herders" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8796-b178-3aa6-80aa" name="Grot Squig Hoppers" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="points" value="80">
<repeats>
<repeat field="selections" scope="8796-b178-3aa6-80aa" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d9f3-fa66-a28e-a0eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="points" value="80">
<conditions>
<condition field="selections" scope="8796-b178-3aa6-80aa" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d9f3-fa66-a28e-a0eb" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="03e0-04d9-921a-3155" name="Grot Squig Hoppers" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">2D6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="fb74-fdc0-2c68-7f07" name="Slitta" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="5a32-28bb-2914-1df3" name="Massive Gob Full of Teeth" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="ecb3-b662-917e-953e" name="Boing! Boing! Boing!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once in a while, squigs get so much bounce in their springy stride that they become hurtling toothy meteors. If a unit of Grot Squig Hoppers rolls a double for its charge move, each model in the unit can make 4 attacks with its Massive Gobs Full of Teeth instead of 2 in the ensuing combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="d9f3-fa66-a28e-a0eb" name="5 Grot Squig Hoppers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f38f-9454-11e8-90f6" name="Grot Warboss" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="b25c-edbb-a445-2acd" name="Grot Warboss" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">4</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="1995-4e13-0c62-34cf" name="Moon-prodder (missile)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">14"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="f236-7d69-e244-cc85" name="Mood-prodder (melee)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="a7aa-93af-a1c9-6243" name="Moon-cutta" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="1ebd-1f4f-061f-9189" name="Moon-slicer" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="801e-1e8f-ae70-e7ab" name="Giant Squig's Gaping Maw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="860d-a47e-7022-bf64" name="Git Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll failed save rolls for a Grot Warboss with a Git Shield.</characteristic>
</characteristics>
</profile>
<profile id="36a8-729f-e3d6-d0c4" name="Moon-cuttas" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Wielding two weapons gives a Grot Warboss a better chance of landing a blow. You can re-roll hit rolls of 1 for a model attacking with two Moon-cuttas. </characteristic>
</characteristics>
</profile>
<profile id="472b-7bc3-5df5-6c9b" name="Dead Tricky (or just Luck)" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Enemy models that target a Grot Warboss with an attack treat all hit rolls of 6 as 1 instead.</characteristic>
</characteristics>
</profile>
<profile id="7b26-c4cd-3f7e-8608" name="Down in One!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If you roll a 6 or more when rolling to wound with a Giant Cave Squig’s Gaping Maw, that attack inflicts D6 damage instead of D3.</characteristic>
</characteristics>
</profile>
<profile id="ab2e-1bf6-1143-a474" name="I’m da Boss, Now Stab ’em Good!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of a combat phase. If you do so, pick a friendly Moonclan unit wholly within 12" of a model with this command ability, or wholly within 24" of a model with this command ability that is your general. If the unmodified wound roll for an attack made by that unit in that phase is 6, that attack inflicts 1 mortal wound on the target in addition to any normal damage. You cannot pick the same unit to benefit from this command ability more than once per combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="773d-6c4c-7be7-053b" name="General" hidden="false" collective="false" import="true" targetId="d7dd-acbb-a8db-2fe5" type="selectionEntry"/>
<entryLink id="dc2d-283a-7136-986b" name="Artefacts" hidden="false" collective="false" import="true" targetId="fdcb-7832-46a4-e9b6" type="selectionEntryGroup"/>
<entryLink id="b14f-a5ea-8e8c-97aa" name="Command Traits" hidden="false" collective="false" import="true" targetId="2fb3-b280-7281-037c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c78f-2f88-c52a-675c" name="Grot Warboss on Great Cave Squig" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="ed4c-f867-b031-d7e5" name="Grot Warboss on Great Cave Squig" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">2D6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="a239-c76a-97cc-5b54" name="Moon-cutta" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="29a6-8a4a-493d-45be" name="Moonclan Stabba" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="2697-1bff-ed58-89e7" name="Fang-filled Gob" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="5285-658f-d76d-3871" name="Supreme Bounder" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a Grot Warboss on Great Cave Squig rolls a double for its charge move, its Fang-filled Gob inflicts double damage in the ensuing combat phase. </characteristic>
</characteristics>
</profile>
<profile id="b337-4be6-c065-6bd8" name="Git Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll failed save rolls for a Grot Warboss with a Git Shield.</characteristic>
</characteristics>
</profile>
<profile id="89fd-9379-20c5-07ea" name="Even More Boingy" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">If a Grot Warboss uses this ability, then until your next hero phase, all MOONCLAN units from your army that are within 10" at the beginning of the movement phase can move and run an extra 1". Grot Squig Hopper units that are within 10" at the beginning of the movement phase become even more boingy instead; you can re-roll the dice for these units when determining how far they can move or run in that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="95d1-3e64-2480-0843" name="General" hidden="false" collective="false" import="true" targetId="d7dd-acbb-a8db-2fe5" type="selectionEntry"/>
<entryLink id="158a-c1ff-d17a-981d" name="Artefacts" hidden="false" collective="false" import="true" targetId="fdcb-7832-46a4-e9b6" type="selectionEntryGroup"/>
<entryLink id="9180-ed0e-8b6d-9b8b" name="Command Traits" hidden="false" collective="false" import="true" targetId="2fb3-b280-7281-037c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f02c-a68a-8ce8-eee4" name="Grot Wolf Chariots" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="points" value="40">
<repeats>
<repeat field="selections" scope="f02c-a68a-8ce8-eee4" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cf68-fca9-421a-81d9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="points" value="40">
<conditions>
<condition field="selections" scope="f02c-a68a-8ce8-eee4" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cf68-fca9-421a-81d9" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry id="cf68-fca9-421a-81d9" name="Grot Wolf Chariots" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1904-b0e7-8bd0-4208" name="Grot Wolf Riders" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="points" value="100">
<repeats>
<repeat field="selections" scope="1904-b0e7-8bd0-4208" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d86f-90c2-85c6-7ca8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="points" value="100">
<conditions>
<condition field="selections" scope="1904-b0e7-8bd0-4208" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d86f-90c2-85c6-7ca8" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="decrement" field="points" value="100">
<conditions>
<condition field="selections" scope="1904-b0e7-8bd0-4208" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d86f-90c2-85c6-7ca8" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry id="d86f-90c2-85c6-7ca8" name="5 Grot Wolf Riders" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="abb0-87e3-321d-278a" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ccdc-3f8c-8f94-b84e" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37fd-a50c-1ea1-820a" name="Grots" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="decrement" field="points" value="30">
<conditions>
<condition field="selections" scope="37fd-a50c-1ea1-820a" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4829-451e-26d3-a6a6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="points" value="130">
<repeats>
<repeat field="selections" scope="37fd-a50c-1ea1-820a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4829-451e-26d3-a6a6" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="points" value="130">
<conditions>
<condition field="selections" scope="37fd-a50c-1ea1-820a" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4829-451e-26d3-a6a6" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c817-a6f4-4d16-1568" name="Grots" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6</characteristic>
</characteristics>
</profile>
<profile id="c137-8cfa-0fc0-2c8f" name="Moon Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a unit with Moon Shields has 10 or more models, it has a Save of 5+.</characteristic>
</characteristics>
</profile>
<profile id="fd0a-8d4e-7f06-e165" name="Bad Moon Icon" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can add 1 to any save rolls for a unit of Grots in the shooting phase if it includes any Bad Moon Icons as the leering, yellow face sucks away light and shrouds the grots in a veil of darkness.</characteristic>
</characteristics>
</profile>
<profile id="0cc2-45ad-1d02-160a" name="Grot Flag" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can add 2 to the Bravery of all models in a unit that includes any Grot Flags as long as there are no enemy models within 3" of the unit.</characteristic>
</characteristics>
</profile>
<profile id="9dd9-1bcd-a03c-d822" name="Netters" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Your opponent must subtract 1 from any hit rolls made in the combat phase for any of their models that are within 2" of a Grot with a Barbed Net.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="0914-5e44-5432-88ec" name="Grot Boss" hidden="false">
<description>The leader of this unit is a Grot Boss. You can add 1 to any hit roll for a Grot Boss.</description>
</rule>
<rule id="7510-302e-ff9c-b0e9" name="Standard Bearer" hidden="false">
<description>Models in this unit may be Standard Bearers. Standard Bearers can carry either a Grot Flag or a Bad Moon Icon.</description>
</rule>
<rule id="a1f7-b035-cead-92f7" name="Gong Basher" hidden="false">
<description>Models in this unit may be Gong Bashers. Add 2 to the run rolls of a unit that includes any Gong Bashers.</description>
</rule>
</rules>
<selectionEntries>
<selectionEntry id="4829-451e-26d3-a6a6" name="20 Grots" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b856-aa71-a136-5475" name="Barbed Net" 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="5f97-b821-fcec-c0c6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e19-3b63-84a0-9fe2" type="max"/>
</constraints>
<profiles>
<profile id="36ac-eabf-d0dd-2e99" name="Barbed Net" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd69-522c-3796-c579" name="Moonclan Bow" 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="ae65-71fc-52a7-8ece" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="581f-a3b8-9274-5872" type="min"/>
</constraints>
<profiles>
<profile id="898e-a99d-720c-91f1" name="Moonclan Bow" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">16"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="84f2-d433-9ce2-4049" name="Pokin' Spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4cae-a35b-c881-e68e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="83c4-7104-be02-02cc" type="max"/>
</constraints>
<profiles>
<profile id="76e6-667e-2772-9ff1" name="Pokin' Spear" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d29e-102d-1050-80c4" name="Slitta" 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="9c65-179a-59bd-b00e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac82-464c-88dc-de25" type="max"/>
</constraints>
<profiles>
<profile id="f70e-456a-0d98-b3f7" name="Slitta" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="50ed-4243-0283-7699" name="Stabba" 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="de42-4734-d2e4-b65d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="151f-eca8-4c79-0051" type="max"/>
</constraints>
<profiles>
<profile id="0fb7-3374-f175-1861" name="Stabba" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="054e-9dac-d38b-d1a5" name="Mangler Squigs" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8cac-9d47-6564-772d" name="Mangler Squigs" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">10</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="a698-3896-049d-0ace" name="Massive Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">*</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="893b-fdf1-3fd0-de51" name="Balls and Chains" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="9344-ec7d-8282-a6d8" name="Grots' Bashin' Sticks" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">