forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZZ - Destruction - Gitmob Grots.cat
1578 lines (1578 loc) · 112 KB
/
ZZ - Destruction - Gitmob 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="d3d7-dd8e-19f0-ba20" name="ZZ - Destruction - Gitmob Grots" revision="13" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="79" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="d3d7-dd8e-pubN65537" name="Grand Alliance: Destruction"/>
<publication id="d3d7-dd8e-pubN73084" name="Age of Sigmar: The Rules"/>
<publication id="d3d7-dd8e-pubN73113" 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="7e4c-a9c5-a4a4-5da0" name="Move"/>
<characteristicType id="0fcb-7153-ec82-3db1" name="Chukking Spear"/>
</characteristicTypes>
</profileType>
<profileType id="0c83-83e0-df4b-3e68" name="Doom Diver Crew">
<characteristicTypes>
<characteristicType id="d74f-cdc3-26d4-9871" name="Move"/>
<characteristicType id="d2ae-bbf8-03d2-330f" name="Divin' Grot"/>
</characteristicTypes>
</profileType>
<profileType id="77cb-649f-8840-7b91" name="Grot Rock Lobber">
<characteristicTypes>
<characteristicType id="9d4a-0a89-41be-8401" name="Move"/>
<characteristicType id="eb1a-1ec8-f936-cf2c" name="Big Rock"/>
</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"/>
<categoryEntry id="a3ca-378c-a251-c2a6" name="GROT SCRAPLAUNCHER" hidden="false"/>
<categoryEntry id="b7aa-d42a-ccb9-6fc9" name="GITMOB" hidden="false"/>
<categoryEntry id="f9e0-7ee0-9a58-5054" name="Grot Wolf Chariots" hidden="false"/>
<categoryEntry id="1099-bb1c-ccc1-86f5" name="Grot Wolf Riders" hidden="false"/>
<categoryEntry id="1218-e110-161e-bfec" name="Nasty Skulkers" hidden="false"/>
<categoryEntry id="e76d-af5b-dc10-eb4c" name="Snotling" hidden="false"/>
<categoryEntry id="d3c7-c6cc-425c-de3a" name="Pump Wagons" hidden="false"/>
<categoryEntry id="6b1f-7494-9189-ec21" name="Grot Shaman" 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="4393-5c9e-db53-1cdc" name="Doom Diver Catapult" hidden="false" collective="false" import="true" targetId="e187-5707-c50e-c519" type="selectionEntry">
<categoryLinks>
<categoryLink id="4393-5c9e-db53-1cdc-1d26-07fc-6a66-d73e" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8335-6712-53dd-b813" name="Grot Rock Lobber" hidden="false" collective="false" import="true" targetId="d1ee-e950-f17e-90ff" type="selectionEntry">
<categoryLinks>
<categoryLink id="8335-6712-53dd-b813-1d26-07fc-6a66-d73e" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4c16-4f8e-b6f6-84b8" name="Grot Spear Chukka" hidden="false" collective="false" import="true" targetId="5a47-97d8-34ae-a103" type="selectionEntry">
<categoryLinks>
<categoryLink id="4c16-4f8e-b6f6-84b8-1d26-07fc-6a66-d73e" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a782-471b-0ff6-835f" name="Grot Shaman" hidden="false" collective="false" import="true" targetId="b43d-ccd8-294b-06e5" type="selectionEntry">
<categoryLinks>
<categoryLink id="a782-471b-0ff6-835f-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6a0b-2460-d84a-70ee" name="Grot Wolf Riders" hidden="false" collective="false" import="true" targetId="1904-b0e7-8bd0-4208" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8621-02b1-4011-ff79" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6a0b-2460-d84a-70ee-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0c0a-a817-ff34-4306" name="Grot Wolf Riders" hidden="false" collective="false" import="true" targetId="1904-b0e7-8bd0-4208" 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="8621-02b1-4011-ff79" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0c0a-a817-ff34-4306-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="abf2-05a4-dccb-d3c7" name="Grot Wolf Chariots" hidden="false" collective="false" import="true" targetId="f02c-a68a-8ce8-eee4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8621-02b1-4011-ff79" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="abf2-05a4-dccb-d3c7-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de02-76b0-ce19-3bb9" name="Nasty Skulkers" hidden="false" collective="false" import="true" targetId="07f5-f231-559e-6aab" type="selectionEntry">
<categoryLinks>
<categoryLink id="de02-76b0-ce19-3bb9-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d427-1cd9-61db-84d4" name="Snotling Pump Wagon" hidden="false" collective="false" import="true" targetId="7bc4-24a3-7d7c-cbb1" type="selectionEntry">
<categoryLinks>
<categoryLink id="d427-1cd9-61db-84d4-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63a3-a116-3d61-8d92" name="Snotlings" hidden="false" collective="false" import="true" targetId="3f4d-2982-4d0d-6301" type="selectionEntry">
<categoryLinks>
<categoryLink id="63a3-a116-3d61-8d92-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="312b-1e85-295a-d49e" name="Grots" hidden="false" collective="false" import="true" targetId="37fd-a50c-1ea1-820a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d7d8-f1fd-e48c-ca33" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3422-c56b-c1c1-cadf" name="Grot Wolf Chariots" hidden="false" collective="false" import="true" targetId="f02c-a68a-8ce8-eee4" 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="8621-02b1-4011-ff79" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="de4e-ca91-65ca-77ab" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="5940-49f3-284c-3f11" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="62dd-a5a9-50ba-7c8e" name="Grots" hidden="false" collective="false" import="true" targetId="37fd-a50c-1ea1-820a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db37-22b2-39f5-f49e" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8621-02b1-4011-ff79" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4322-8cf1-0ac3-31f2" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" 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="65fc-2c6e-325f-dbf6" 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>
<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="db37-22b2-39f5-f49e">
<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="8621-02b1-4011-ff79" name="Gitmob 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="e187-5707-c50e-c519" name="Doom Diver Catapult" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="fed6-7ed8-b004-6759" name="Divin' Grot" 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">*</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="e2c9-7525-6105-5113" name="Doom Diver Catapult" 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>
<profile id="1b3a-e012-fb31-46e5" 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 Doom Diver Catapult can only move if its crew are within 1" at the start of the movement phase. If its crew are within 1" of the Doom Diver Catapult 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="9f7c-8334-7f65-a9f1" name="Oi Tubby, You’re Next" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When Doom Diver Catapults are fielded in batteries, the crews will attempt to out-do each other by ensuring that only the biggest, heaviest grots are flung towards the enemy to guarantee maximum damage on impact. A Divin’ Grot attack inflicts D6 Damage instead of D3 if there is another Doom Diver Catapult crew from your army within 3" of the war machine.</characteristic>
</characteristics>
</profile>
<profile id="8cb6-554f-a7e9-6e1d" name="Grot-guided Missile" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This war machine can shoot at enemy units that are not visible to it. In addition, if you fail to hit with a Divin’ Grot attack, roll a dice. On a 4 or more the plucky grot has managed to steer his descent; you may pick a different enemy unit within 10" of the original target – the unfortunate Divin’ Grot has hit that target instead.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="9830-f9dd-3ba6-ab13" 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="ac7a-90b5-c528-68ab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ef9-96c4-f5f7-5e39" type="max"/>
</constraints>
<profiles>
<profile id="e094-6270-43c0-9284" name="0" hidden="false" typeId="0c83-83e0-df4b-3e68" typeName="Doom Diver Crew">
<characteristics>
<characteristic name="Move" typeId="d74f-cdc3-26d4-9871">0</characteristic>
<characteristic name="Divin' Grot" typeId="d2ae-bbf8-03d2-330f">0</characteristic>
</characteristics>
</profile>
<profile id="1245-e9ae-4621-ac4f" name="1" hidden="false" typeId="0c83-83e0-df4b-3e68" typeName="Doom Diver Crew">
<characteristics>
<characteristic name="Move" typeId="d74f-cdc3-26d4-9871">1"</characteristic>
<characteristic name="Divin' Grot" typeId="d2ae-bbf8-03d2-330f">6-20"</characteristic>
</characteristics>
</profile>
<profile id="e79b-21b8-9ae5-8bcd" name="4" hidden="false" typeId="0c83-83e0-df4b-3e68" typeName="Doom Diver Crew">
<characteristics>
<characteristic name="Move" typeId="d74f-cdc3-26d4-9871">4"</characteristic>
<characteristic name="Divin' Grot" typeId="d2ae-bbf8-03d2-330f">6-50"</characteristic>
</characteristics>
</profile>
<profile id="e1df-c270-d09f-0ad2" name="3" hidden="false" typeId="0c83-83e0-df4b-3e68" typeName="Doom Diver Crew">
<characteristics>
<characteristic name="Move" typeId="d74f-cdc3-26d4-9871">3"</characteristic>
<characteristic name="Divin' Grot" typeId="d2ae-bbf8-03d2-330f">6-40"</characteristic>
</characteristics>
</profile>
<profile id="d666-4e1c-a155-8f55" name="2" hidden="false" typeId="0c83-83e0-df4b-3e68" typeName="Doom Diver Crew">
<characteristics>
<characteristic name="Move" typeId="d74f-cdc3-26d4-9871">2"</characteristic>
<characteristic name="Divin' Grot" typeId="d2ae-bbf8-03d2-330f">6-30"</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0b49-2834-f577-c313" name="Crew" hidden="false" collective="false" import="true" targetId="a701-4ab5-0d4f-31da" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d1ee-e950-f17e-90ff" name="Grot Rock Lobber" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="11d6-6247-03b6-eac7" name="Big Rock" 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">6-40"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="f26e-5d43-1d55-bbd0" name="Load it Again!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When Rock Lobbers are fielded in batteries, frantic competition breaks out between the rival crews – typically because whichever performs best avoids the traditional post-battle beatings. If you roll a 6 or more to hit with a Big Rock and there is another Grot Rock Lobber crew from your army within 3" of the war machine, you can immediately make another Big Rock attack.</characteristic>
</characteristics>
</profile>
<profile id="4c9b-96e6-7aaa-4838" name="Flatten the Lot of ’Em" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This war machine can shoot at enemy units that are not visible to it. In addition, you can add 1 to the hit roll when targeting a unit that has 10 or more models.</characteristic>
</characteristics>
</profile>
<profile id="5d2a-9e33-8452-1bc5" 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 Rock Lobber catapult can only move if its crew are within 1" at the start of the movement phase. If its crew are within 1" of the Rock Lobber 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>
</profiles>
<selectionEntries>
<selectionEntry id="9140-961c-498b-be90" 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="5005-c044-66b5-b94b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="287b-d297-f83a-1afb" type="max"/>
</constraints>
<profiles>
<profile id="0294-c789-2079-b0a8" name="0" hidden="false" typeId="77cb-649f-8840-7b91" typeName="Grot Rock Lobber">
<characteristics>
<characteristic name="Move" typeId="9d4a-0a89-41be-8401">0</characteristic>
<characteristic name="Big Rock" typeId="eb1a-1ec8-f936-cf2c">0</characteristic>
</characteristics>
</profile>
<profile id="35ea-1fde-15e5-67d0" name="1" hidden="false" typeId="77cb-649f-8840-7b91" typeName="Grot Rock Lobber">
<characteristics>
<characteristic name="Move" typeId="9d4a-0a89-41be-8401">1"</characteristic>
<characteristic name="Big Rock" typeId="eb1a-1ec8-f936-cf2c">5+</characteristic>
</characteristics>
</profile>
<profile id="2be2-6546-29f0-5aa2" name="2" hidden="false" typeId="77cb-649f-8840-7b91" typeName="Grot Rock Lobber">
<characteristics>
<characteristic name="Move" typeId="9d4a-0a89-41be-8401">2"</characteristic>
<characteristic name="Big Rock" typeId="eb1a-1ec8-f936-cf2c">4+</characteristic>
</characteristics>
</profile>
<profile id="d40e-688d-3a63-a2f4" name="3" hidden="false" typeId="77cb-649f-8840-7b91" typeName="Grot Rock Lobber">
<characteristics>
<characteristic name="Move" typeId="9d4a-0a89-41be-8401">3"</characteristic>
<characteristic name="Big Rock" typeId="eb1a-1ec8-f936-cf2c">4+</characteristic>
</characteristics>
</profile>
<profile id="d46a-b986-de4c-d37f" name="4" hidden="false" typeId="77cb-649f-8840-7b91" typeName="Grot Rock Lobber">
<characteristics>
<characteristic name="Move" typeId="9d4a-0a89-41be-8401">4"</characteristic>
<characteristic name="Big Rock" typeId="eb1a-1ec8-f936-cf2c">3+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5648-cd3b-f2a3-4aaf" name="Crew" hidden="false" collective="false" import="true" targetId="a701-4ab5-0d4f-31da" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c73d-3966-f8d0-e0ce" name="Grot Scraplauncher" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="1ea8-9fa5-0ecd-3cb3" name="Grot Scraplauncher" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">7"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">9</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="a3c6-d66f-0620-57bc" name="Rhinox Charge" 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 damage inflicted by the Rhinox’s attack if it made a charge move in the same turn. </characteristic>
</characteristics>
</profile>
<profile id="57d1-fdab-46f1-ae57" name="Deadly Rain of Scrap" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Scraplauncher can shoot targets that are not visible to it. If the Scraplauncher hits a unit that has 10 or more models, increase its Damage to D6. If it hits a unit that has 20 or more models, increase its Damage to 2D6 instead.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7552-e66c-678c-aa77" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="3155-21b4-0be8-0e49" name="New CategoryLink" hidden="false" targetId="1157-1f71-6a1f-5b29" primary="false"/>
<categoryLink id="6429-2886-08a2-b20f" name="New CategoryLink" hidden="false" targetId="41cf-bc14-e54b-f1b2" primary="false"/>
<categoryLink id="2829-a34e-6a4b-3669" name="New CategoryLink" hidden="false" targetId="a3ca-378c-a251-c2a6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d942-efcf-b251-6b4f" name="Grot Scrappers’ Weapons" 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="bbef-f37b-07ca-a64a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c3db-9f67-c81d-6051" type="max"/>
</constraints>
<profiles>
<profile id="cb8d-de93-72bd-ea28" name="Grot Scrappers’ 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">7</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="e254-f848-517e-78c5" name="Rhinox’s Sharp Horns" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9273-470c-de66-dce3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4260-0997-ba51-b51f" type="max"/>
</constraints>
<profiles>
<profile id="859d-3384-66ed-86de" name="Rhinox’s Sharp Horns" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">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">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b093-b5fc-6a71-3993" name="Scraplauncher" 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="0c9a-cb09-273f-dedb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cda4-a16d-8213-a6ca" type="max"/>
</constraints>
<profiles>
<profile id="280d-9f48-7154-61ed" name="Scraplauncher" 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">10-33"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</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">D3</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="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</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Sneaky Stabbin'</characteristic>
</characteristics>
</profile>
<profile id="c1b0-18b9-25f9-7461" name="Sneaky Stabbin’" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">Sneaky Stabbin’ has a casting value of 7. If successfully cast, you can choose one Gitmob unit within 16". Until your next hero phase, whenever that unit attacks, their weapons seek their enemies’ weak points: add 1 to their wound rolls and increase the Rend characteristics of their weapons by 1 (i.e. ‘-’ becomes -1, -1 becomes -2 and so on).</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705"/>
</characteristics>
</profile>
<profile id="1d84-28ec-d0d0-87e0" name="Kunnin’ (or just Lucky)" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice whenever a Grot Shaman suffers a wound or a mortal wound and a friendly unit is within 3". On a 5+ you may negate the wound, but if you do the nearest friendly unit suffers a mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8964-6eab-29c0-cd63" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="8b5a-090d-0fbf-8736" name="New CategoryLink" hidden="false" targetId="1157-1f71-6a1f-5b29" primary="false"/>
<categoryLink id="0a82-8064-7946-20c3" name="New CategoryLink" hidden="false" targetId="b7aa-d42a-ccb9-6fc9" primary="false"/>
<categoryLink id="b308-174b-cc35-35d5" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="25da-9152-6283-1705" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="d61d-36f7-2ccb-bf8d" name="New CategoryLink" hidden="false" targetId="6b1f-7494-9189-ec21" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="5f00-855a-333f-a256" name="Shaman Stick" 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="6433-ba3a-447e-621a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a323-9009-97c2-581b" type="max"/>
</constraints>
<profiles>
<profile id="77c2-030e-5a3e-4cb2" name="Shaman Stick" 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>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="19ae-040f-0e28-1a89" name="Gitmob Grot Shaman" hidden="false" collective="false" import="true" defaultSelectionEntryId="d2d6-f7e1-9074-423e">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c346-668f-ddf7-1101" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d91d-41ac-bf5f-b1fd" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="abe2-1649-d5d6-9481" name="Grot Shaman on Wolf" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="71e3-39e6-f985-3abb" name="Giant Wolf" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Some Grot Shamans ride to battle on Giant Wolves; they have Move 12" instead of 5" and gain the Giant Wolf's Slavering Jaws attack.</characteristic>
</characteristics>
</profile>
<profile id="c30c-767b-92cf-9b7f" name="Grot Shaman" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</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">6+</characteristic>
</characteristics>
</profile>
<profile id="4fe0-46e8-0f95-6227" name="Giant Wolf’s Slavering Jaws" 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">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="d2d6-f7e1-9074-423e" name="Grot Shaman" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="877f-2957-b790-6f19" name="Grot Shaman" 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">6+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="83ca-193f-960e-ebd5" name="General" hidden="false" collective="false" import="true" targetId="d7dd-acbb-a8db-2fe5" type="selectionEntry"/>
<entryLink id="225a-cde3-f477-00a4" name="Command Traits" hidden="false" collective="false" import="true" targetId="2fb3-b280-7281-037c" type="selectionEntryGroup"/>
<entryLink id="7abb-17fd-8318-c19e" name="Artefacts" hidden="false" collective="false" import="true" targetId="fdcb-7832-46a4-e9b6" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.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>
<profiles>
<profile id="f302-4d9f-0aa2-a2c9" name="Grot Wolf Chariots" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</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="d2ea-4af1-e4ca-4817" name="Loping Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll the dice when determining how far this unit runs or charges. </characteristic>
</characteristics>
</profile>
<profile id="bf33-0a1e-5747-3f60" name="Fightin’ Platform" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit can attack in the shooting phase and charge even if it ran in the movement phase.</characteristic>
</characteristics>
</profile>
<profile id="dbd0-7ed4-21e1-a816" name="Wolf Icon" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Grot Wolf Riders and Grot Heroes riding Giant Wolves from your army gain the Loping Charge ability whilst they are within 8" of a Grot Wolf Chariot.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8d80-e12d-e548-25df" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="7b88-539e-c0a2-3f54" name="New CategoryLink" hidden="false" targetId="1157-1f71-6a1f-5b29" primary="false"/>
<categoryLink id="4cf8-2c62-a941-5215" name="New CategoryLink" hidden="false" targetId="b7aa-d42a-ccb9-6fc9" primary="false"/>
<categoryLink id="6e4c-9e5b-2cf1-8063" name="New CategoryLink" hidden="false" targetId="f9e0-7ee0-9a58-5054" primary="false"/>
</categoryLinks>
<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>
<selectionEntry id="6f33-3212-a0e1-d54f" name="Crew’s Slittas" 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="bbee-39c9-70a5-45c2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e340-e84f-0bc8-6178" type="max"/>
</constraints>
<profiles>
<profile id="3808-79dd-577e-490b" name="Crew’s Slittas" 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">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="67e1-0a40-a103-e3d7" name="Giant Wolves’ Slavering Jaws" 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="4762-bf1c-66dc-7409" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="77d8-c989-1149-8ed3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5deb-a89c-2ca7-c01b" name="Giant Wolves’ Slavering Jaws" hidden="false" targetId="7cf1-ca71-176c-d6a4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="de9a-ef9c-b0aa-b919" name="Wolf 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="04a8-10f4-7212-1009" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d13-ab18-8533-eab9" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0d80-d1bf-91c3-7ce9" name="Wolf Bow" hidden="false" targetId="d305-58c1-3d97-64e4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="40.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="90">
<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="90">
<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="60">
<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>
<profiles>
<profile id="c51d-ea5d-7ba2-c115" name="Grot Wolf Rider Boss" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is a Grot Wolf Rider Boss. A Grot Wolf Rider Boss makes 2 attacks with their Pokin’ Spear or Slitta, rather than 1</characteristic>
</characteristics>
</profile>
<profile id="327a-a2f9-21fd-d625" name="Pounce" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Grot Wolf Riders can make pile in moves of up to 6", instead of up to 3".</characteristic>
</characteristics>
</profile>
<profile id="6dd9-688a-01f0-6cc3" name="Raidin’ 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 Raidin’ Shields has 5 or more models, it has a Save of 4+.</characteristic>
</characteristics>
</profile>
<profile id="fe9d-48d7-2102-0a28" name="Pokin’ Spear" 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 wound rolls for Grot Wolf Riders attacking with Pokin’ Spears if they charged in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4e06-db15-fd0a-b9ac" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="c3b6-d592-04ec-0862" name="New CategoryLink" hidden="false" targetId="1157-1f71-6a1f-5b29" primary="false"/>
<categoryLink id="bb34-1ff2-84f8-2e10" name="New CategoryLink" hidden="false" targetId="b7aa-d42a-ccb9-6fc9" primary="false"/>
<categoryLink id="3be3-8d3e-742c-04a7" name="New CategoryLink" hidden="false" targetId="1099-bb1c-ccc1-86f5" primary="false"/>
</categoryLinks>
<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>
<selectionEntry id="263b-2458-e9a7-264f" name="Standard Bearer" 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="aebd-c14f-9589-4248" type="max"/>
</constraints>
<profiles>
<profile id="c1e3-5c07-6a9a-9ece" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may be Standard Bearers. You can add 2 to the Bravery of all models in a unit that includes any Standard Bearers as long as there are no enemy models within 3" of the unit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2ce2-b59a-22b4-4d92" name="Hornblower" 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="4a18-9f8e-fb3f-3623" type="max"/>
</constraints>
<profiles>
<profile id="6e89-bc3d-38f2-bb67" name="Hornblower" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may be Hornblowers. Add 2 to the run rolls of a unit that includes any Hornblowers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="736c-b549-4a18-a2e7" 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="0dc1-eee6-01a5-c60c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="feca-93ce-794f-dadd" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ed96-d6e6-0247-ecd7" name="Slitta" hidden="false" targetId="df47-d001-27cb-d51c" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0354-7ad7-3001-22aa" name="Giant Wolves’ Slavering Jaws" 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="912f-e1a0-049d-8bb0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd0b-f218-9f8d-efef" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4e43-22ea-039f-7be2" name="Giant Wolves’ Slavering Jaws" hidden="false" targetId="7cf1-ca71-176c-d6a4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aae7-94ce-c169-15d4" name="Wolf 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="8664-c08c-ee49-05e5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2548-4f95-ca1c-9355" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f656-d015-d192-5281" name="Wolf Bow" hidden="false" targetId="d305-58c1-3d97-64e4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="90.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>
</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="4712-d1be-29fc-db0d" name="Unruly Rabble" 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 all hit rolls for Grots if their unit has 20 or more models. If the unit has 30 or more models, you can add 2 to all these hit rolls instead.</characteristic>
</characteristics>
</profile>
<profile id="a2d0-6ea6-5061-88cd" name="Grot 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 Grot Shields has 10 or more models, it has a Save of 5+.</characteristic>
</characteristics>
</profile>
<profile id="d7e0-9630-504a-d109" name="Grot Boss" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is a Grot Boss. A Grot Boss makes 2 attacks rather than 1.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="fb01-3e2f-a347-d27f" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="700c-ae21-0043-4765" name="New CategoryLink" hidden="false" targetId="1157-1f71-6a1f-5b29" primary="false"/>
<categoryLink id="9ef8-3fe9-583d-ec9b" name="New CategoryLink" hidden="false" targetId="b7aa-d42a-ccb9-6fc9" primary="false"/>
</categoryLinks>
<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="50d2-3359-d1ee-a72a" name="Grot 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="5dcc-894d-1cc4-83bc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ded1-c7aa-66a7-00f2" type="max"/>
</constraints>
<profiles>
<profile id="c753-0e6b-6133-b698" name="Grot 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="dfc1-3468-192b-150c" name="Slasha" 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="14ab-d3b8-bdfa-941e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2db-a7de-8594-9640" type="max"/>
</constraints>
<profiles>
<profile id="679d-5451-62d9-1e88" name="Slasha" 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="7795-9e51-2aab-2788" name="Jabbin’ 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="ee44-68e5-a6a0-ce79" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="686b-cb56-2e19-ba58" type="max"/>
</constraints>
<profiles>
<profile id="de6f-697d-d73f-6736" name="Jabbin’ 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="bddf-dff8-d0c5-492d" name="Flag Waver" 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="5eb9-1740-d3c8-7dca" type="max"/>
</constraints>
<profiles>
<profile id="dd97-d7f3-fcbc-f2ff" name="Flag Waver" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may be Flag Wavers. You can add 2 to the Bravery of all models in a unit that includes any Flag Wavers as long as there are no enemy models within 3" of the unit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0189-2e18-b832-48ad" name="Hornblower" 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="e47a-6593-860a-7a92" type="max"/>
</constraints>
<profiles>
<profile id="c7f8-a755-6fd8-7aee" name="Hornblower" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may be Hornblowers. Add 2 to the run rolls of a unit that includes any Hornblowers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>