-
Notifications
You must be signed in to change notification settings - Fork 82
/
Order - Gnomad Feastmasters.cat
5282 lines (5238 loc) · 398 KB
/
Order - Gnomad Feastmasters.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="1bfd-6403-b65a-f52d" name="Order - Gnomad Feastmasters (Unofficial)" revision="22" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="159" type="catalogue">
<readme>The Gnomad Feastmasters is an unofficial battletome.</readme>
<publications>
<publication id="5d18-ec94-c8dd-a621" name="Unofficial Order Battletome: Gnomad Beastmasters (Beta)" shortName="Order Battletome: Gnomad Beastmasters" publisherUrl="https://drive.google.com/drive/folders/1-q4z4uhGnDBYAlvcuyygbXgHlqR7YZUB?usp=sharing"/>
</publications>
<profileTypes>
<profileType id="924f-9868-074a-de36" name="Cockerel Wound Table">
<characteristicTypes>
<characteristicType id="4bdf-7da5-c485-4a1c" name="Move"/>
<characteristicType id="7336-bce7-efa1-9d2c" name="Razor-Sharp Beak"/>
<characteristicType id="f686-518d-ba2b-e2d9" name="Wicked Talons"/>
</characteristicTypes>
</profileType>
<profileType id="a3c9-d1bf-7e05-ad45" name="Caravan Wound Table">
<characteristicTypes>
<characteristicType id="6557-64c3-ee90-c4cd" name="Alembic Shroud/Overload"/>
<characteristicType id="e9e2-eb9c-572d-d897" name="Move"/>
<characteristicType id="571e-8cea-9fb0-3579" name="Short Spears"/>
</characteristicTypes>
</profileType>
<profileType id="6ffb-a2e7-8aa3-364d" name="Swan Wound Table">
<characteristicTypes>
<characteristicType id="d490-bea9-6ce8-dad3" name="Move"/>
<characteristicType id="cf81-0f30-1b70-9ca2" name="Homogenenous Appetite"/>
<characteristicType id="de33-2d12-a8db-1b38" name="Beating Wings"/>
</characteristicTypes>
</profileType>
<profileType id="ceb1-72b6-0cde-566b" name="Shimmering Feathers">
<characteristicTypes>
<characteristicType id="c2ef-f03a-0cd6-94da" name="Rend of attacking unit's weapon"/>
<characteristicType id="3561-d536-9a89-4451" name="Save"/>
</characteristicTypes>
</profileType>
<profileType id="e3e1-3db9-e1c0-2cdf" name="Arwen'Jax Wound Table">
<characteristicTypes>
<characteristicType id="b653-1645-4609-0d82" name="Blood Nourishment"/>
<characteristicType id="6c58-d7f7-7f3b-5a93" name="Nature's Vengeance"/>
<characteristicType id="0350-01d3-5724-0f0e" name="Massive Impaling Talons"/>
</characteristicTypes>
</profileType>
<profileType id="cd3d-b39b-3f06-4b41" name="Last Meal Eaten">
<characteristicTypes>
<characteristicType id="2ca4-0d1f-5b01-bb17" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="317e-ed0e-e077-0a74" name="It's Been a Long Day">
<characteristicTypes>
<characteristicType id="f953-962d-6528-56f4" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="78d7-bfa7-c521-f7ff" name="GNOMAD FEASTMASTERS" hidden="false"/>
<categoryEntry id="9707-2c07-49d5-473d" name="STOUT" hidden="false"/>
<categoryEntry id="6b69-ac37-e759-0b76" name="WAR-COCKEREL" hidden="false"/>
<categoryEntry id="bfeb-5790-b319-e85e" name="TRAIL MASTER" hidden="false"/>
<categoryEntry id="3164-cc58-0391-618c" name="GASTROGNOME WAR CARAVAN" hidden="false"/>
<categoryEntry id="dc66-d3bf-1b53-b6ff" name="GASTROGNOME GUARD" hidden="false"/>
<categoryEntry id="5355-e082-e84b-ba56" name="BAREFOOT" hidden="false"/>
<categoryEntry id="d7a4-bdcc-b845-d90a" name="HEAD CHEF" hidden="false"/>
<categoryEntry id="74c4-7f57-a4dc-edbd" name="HEDGE HERMIT" hidden="false"/>
<categoryEntry id="99ac-4c6f-593f-7d7d" name="TRAIL THIEF" hidden="false"/>
<categoryEntry id="2055-bcba-5582-b7fd" name="MEPHISTO HARTSTOCK" hidden="false"/>
<categoryEntry id="7176-8526-3f93-3dbf" name="GNOMAD HOTPOT" hidden="false"/>
<categoryEntry id="3290-e9e1-59b5-b03d" name="FORAGER" hidden="false"/>
<categoryEntry id="df0a-e8da-2dc4-e72c" name="GNOMAD SCOUTS" hidden="false"/>
<categoryEntry id="2b9e-6560-6b2d-6006" name="GRYPH-HOUND HOBELARS" hidden="false"/>
<categoryEntry id="e94c-9e75-d725-5167" name="GNOMAD SCOUTS RIDING JADE EAGLES" hidden="false"/>
<categoryEntry id="68c9-e539-a746-08cb" name="GNOMAD DROVERS" hidden="false"/>
<categoryEntry id="9644-7572-85d6-e47d" name="YONELLA LIGHTFOOT" hidden="false"/>
<categoryEntry id="a0f2-c4f7-b995-1d39" name="ARWEN'JAX SON OF THE JADE FOREST" hidden="false"/>
<categoryEntry id="76c3-7e02-dc01-ce50" name="STOUT General" hidden="false"/>
<categoryEntry id="99db-fc21-5394-1c2b" name="Gnomad Core Battalion" hidden="false"/>
<categoryEntry id="fc1b-fa96-391e-99fd" name="Coalition: Towering Allies" hidden="false">
<modifiers>
<modifier type="increment" field="6f2c-267d-f8bb-e69b" value="1">
<repeats>
<repeat field="selections" scope="roster" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6f2c-267d-f8bb-e69b" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="ed82-7794-2f36-f55e" name="Coalition: Hungry Guides" hidden="false">
<modifiers>
<modifier type="increment" field="b677-2061-b1f0-b4da" value="1">
<repeats>
<repeat field="selections" scope="roster" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b677-2061-b1f0-b4da" type="max"/>
</constraints>
</categoryEntry>
</categoryEntries>
<entryLinks>
<entryLink id="f06c-202d-4c22-9c72" name="Allegiance" hidden="false" collective="false" import="true" targetId="0374-ed65-bd71-b4a7" type="selectionEntry"/>
<entryLink id="67f7-ff18-bf4c-0994" name="Arwen'Jax, Son of the Jade Forest" hidden="false" collective="false" import="true" targetId="00ec-672b-d599-7078" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="equalTo"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="fc1b-fa96-391e-99fd">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="4d52-bb8c-2d43-0421" name="Endless Spell: Detritus Denizen Swarm" hidden="false" collective="false" import="true" targetId="6bcc-9888-89d2-56a4" type="selectionEntry"/>
<entryLink id="88ae-e793-ec89-1341" name="Endless Spell: Habbinkerr Sentry" hidden="false" collective="false" import="true" targetId="7a27-7057-5ac8-2b24" type="selectionEntry"/>
<entryLink id="13ec-d22d-2c6f-d479" name="Endless Spell: Spectral Briar Hedge" hidden="false" collective="false" import="true" targetId="fb01-4b41-5f02-05a5" type="selectionEntry"/>
<entryLink id="8bfd-ead7-a1ac-b5ea" name="Gastrognome Encampment" hidden="false" collective="false" import="true" targetId="57fd-faf2-8065-288e" type="selectionEntry"/>
<entryLink id="f11d-8895-a3cc-3f79" name="Gastrognome Guard" hidden="false" collective="false" import="true" targetId="06de-9981-6954-506b" type="selectionEntry"/>
<entryLink id="f07a-2f98-3165-d7c9" name="Gastrognome War Caravan" hidden="false" collective="false" import="true" targetId="4a90-595e-f6e2-f2f7" type="selectionEntry"/>
<entryLink id="d9fb-85dc-4b25-b76c" name="Gnomad Drovers" hidden="false" collective="false" import="true" targetId="1a59-8a49-82b3-7fff" type="selectionEntry"/>
<entryLink id="4f13-84c6-1f35-80e5" name="Gnomad Hotpot" hidden="false" collective="false" import="true" targetId="3164-6da1-19a9-d436" type="selectionEntry"/>
<entryLink id="335d-f9a4-b836-5f46" name="Gnomad Scouts" hidden="false" collective="false" import="true" targetId="645e-31e0-4c29-3ae3" type="selectionEntry"/>
<entryLink id="982e-9388-4312-8bc2" name="Gnomad Scouts Riding Jade Eagles" hidden="false" collective="false" import="true" targetId="ac9c-9aa0-5202-453e" type="selectionEntry"/>
<entryLink id="58a2-f86a-8d89-1c71" name="Gryph-Hound Hobelars" hidden="false" collective="false" import="true" targetId="2d03-925b-2732-7867" type="selectionEntry"/>
<entryLink id="2f62-302b-7ab8-385d" name="Head Chef" hidden="false" collective="false" import="true" targetId="9b65-8ed5-cd8c-cd91" type="selectionEntry"/>
<entryLink id="f94c-0fe6-c36d-76b6" name="Hedge Hermit" hidden="false" collective="false" import="true" targetId="1062-1c2d-cc88-f90e" type="selectionEntry"/>
<entryLink id="0c04-c5db-33e2-c50d" name="Mephisto Hartstock" hidden="false" collective="false" import="true" targetId="f18d-3f59-7fab-481a" type="selectionEntry"/>
<entryLink id="6c2d-ab84-8fee-b304" name="Trail Master on War-Cockerel" hidden="false" collective="false" import="true" targetId="dbc1-994c-a217-ef13" type="selectionEntry"/>
<entryLink id="dfda-b34b-87e5-3551" name="Trail Thief" hidden="false" collective="false" import="true" targetId="fcf0-ba2e-3a95-8bc9" type="selectionEntry"/>
<entryLink id="663d-1f36-73dc-9e22" name="Yonella Lightfoot" hidden="false" collective="false" import="true" targetId="8ca4-c1bb-852f-2c74" type="selectionEntry"/>
<entryLink id="a320-0e9b-24f0-0239" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="31f7-db2a-3e6a-0a0f" type="selectionEntry"/>
<entryLink id="024e-04b0-92b6-b309" name="Battle Tactics: The Perennial Watch" hidden="false" collective="false" import="true" targetId="75f9-ec61-54ef-37c2" type="selectionEntry"/>
<entryLink id="b659-7f6a-8461-d373" name="Spirit of Durthu" hidden="false" collective="false" import="true" targetId="ef77-af66-26da-3a02" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="equalTo"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="fc1b-fa96-391e-99fd">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1355-49af-4551-8cae" name="Treelord" hidden="false" collective="false" import="true" targetId="0861-c6bd-bf12-f2f4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="equalTo"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="fc1b-fa96-391e-99fd">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="49c9-a3a0-635d-e67f" name="Treelord Ancient" hidden="false" collective="false" import="true" targetId="524f-f49b-0bfd-9414" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="equalTo"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="fc1b-fa96-391e-99fd">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d5a0-2526-1edf-5bf5" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7f54-1f57-e4f3-ab3e" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="31f2-a17c-9baf-e712" name="Gnomad Core Battalion: Coniferous Conflabulations" hidden="false" collective="false" import="true" targetId="0970-0d2e-b140-14a9" type="selectionEntry"/>
<entryLink id="b617-1d69-5983-844f" name="Gnomad Core Battalion: Gourmet Brigade" hidden="false" collective="false" import="true" targetId="5974-0066-ae6b-bd37" type="selectionEntry"/>
<entryLink id="89c0-f222-bc6a-45bd" name="Gnomad Core Battalion: Laager Voortrekkers" hidden="false" collective="false" import="true" targetId="95f7-245c-c5b9-53e4" type="selectionEntry"/>
<entryLink id="351f-8961-fd35-f86a" name="Icebrow Hunter" hidden="true" collective="false" import="true" targetId="0c12-b753-ae63-d7c6" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="ed82-7794-2f36-f55e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b5e0-879b-519c-acbd" name="Frost Sabres" hidden="true" collective="false" import="true" targetId="b120-24f0-3ea3-c009" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="ed82-7794-2f36-f55e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3221-23fb-92db-52b6" name="Butcher" hidden="true" collective="false" import="true" targetId="3e85-10b8-29a7-f626" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="ed82-7794-2f36-f55e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="454b-7df7-9c17-203e" name="Firebelly" hidden="true" collective="false" import="true" targetId="97a9-ebe6-0652-77d6" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="ed82-7794-2f36-f55e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="61ab-1e8d-5266-5240" name="Maneaters" hidden="true" collective="false" import="true" targetId="f412-f077-1ac2-239c" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="ed82-7794-2f36-f55e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6cc8-b8ad-52de-40c4" name="Ogor Gluttons" hidden="true" collective="false" import="true" targetId="971d-02fe-e073-199a" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="ed82-7794-2f36-f55e">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Regiment of Renown - Norgrimm's Rune Throng" hidden="false" type="selectionEntry" id="8fd7-e8ca-a83a-b1b" targetId="9553-8763-ddc2-a840"/>
<entryLink import="true" name="Regiment of Renown - Elthwin's Thorns" hidden="false" type="selectionEntry" id="800e-5755-3025-dfb8" targetId="66f8-b848-40fa-a08d"/>
<entryLink import="true" name="Regiment of Renown - Fjori's Flamebearers" hidden="false" type="selectionEntry" id="8f0e-8c4e-c3fe-58a9" targetId="679-2ac4-81f1-ac2"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="0374-ed65-bd71-b4a7" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="eb91-d73d-d2e5-f5f5" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="eb91-d73d-d2e5-f5f5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="61d0-ea56-b521-5504" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="280e-af6d-b37a-267d" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3589-bcdc-47b8-cbad" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="622f-05e4-da19-477b">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c54f-2b65-0ec1-b67a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b50f-ed0d-74be-7bfd" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="622f-05e4-da19-477b" name="Allegiance: Gnomad Feastmasters" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f79d-540f-a989-dc22" name="Nimble" publicationId="5d18-ec94-c8dd-a621" page="25" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Hit rolls made for attacks that target friendly BAREFOOT units always fail on an unmodified roll of 1 or 2 (instead of only on a 1) and unmodified hit rolls of 1 or 2 cannot be re-rolled.
Improve the Save characteristic of models in a BAREFOOT unit that is in cover by 1. A BAREFOOT unit that has made a charge move in the same turn does receive the benefit of cover.
In addition, enemy units may not pick a BAREFOOT HERO as the target for an attack with a missile weapon if it is wholly on or within a terrain feature and within 3” of a friendly unit that has 3 or more models.</characteristic>
</characteristics>
</profile>
<profile id="2317-2059-6d6a-d2c0" name="Nature's Blessings" publicationId="5d18-ec94-c8dd-a621" page="25" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Each time a friendly GNOMAD FEASTMASTERS unit is affected by a spell or endless spell, you can roll a dice. If you do so, on a 6+, ignore the effects of that spell or endless spell on that unit.</characteristic>
</characteristics>
</profile>
<profile id="aa08-2085-1945-5729" name="Rouse the Guardians" publicationId="5d18-ec94-c8dd-a621" page="25" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">A GNOMAD FEASTMASTERS army can summon a TREELORD by adding Guardian Counters to terrain features.
When 3 Guardian Counters have been added to a terrain feature, the player who added the third Guardian Counter may spend all Guardian Counters from that terrain feature and summon a TREELORD to the battlefield and add it to their army.
Any summoned units must be set up wholly within 6” of the terrain feature and more than 6” from any enemy units.
When an enemy MONSTER picks a terrain feature that has one or more Guardian Counters using the Smash To Rubble monstrous rampage, remove any Guardian Counters from that terrain feature (in addition to any other effects of Smash To Rubble under core rule 21.1).</characteristic>
</characteristics>
</profile>
<profile id="aff5-bb98-cbcd-cddf" name="Those Lucky Scoundrels" publicationId="5d18-ec94-c8dd-a621" page="25" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If either player has two consecutive turns as a result of the priority roll (core rule 4.1) then this battle trait applies. Apply all the following rules for that battle round.
GNOMAD FEASTMASTERS units ignore negative modifiers to their hit and wound rolls.
If the wound roll for an attack made by a friendly GNOMAD FEASTMASTERS unit is an unmodified 6, that attack inflicts a mortal wound on the target of the attack in addition to any normal damage.
Friendly GNOMAD FEASTMASTERS units have a 5+ ward.
Your opponent cannot re-roll, multiply or modify any casting, unbinding, dispelling, chanting or banishing rolls.</characteristic>
</characteristics>
</profile>
<profile id="2b43-02b4-bee2-d9ac" name="Expedient Providence" publicationId="5d18-ec94-c8dd-a621" page="26" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of the hero phase, you can carry out this heroic action with a friendly GNOMAD FEASTMASTERS HERO instead of any other heroic action you can carry out with that HERO.
HEROIC ACTION
Pick 1 friendly GNOMAD FEASTMASTERS HERO. Until the end of the turn, the Those Lucky Scoundrels battle trait applies to that HERO. You cannot carry out this heroic action with the same HERO more than once in the same battle.</characteristic>
</characteristics>
</profile>
<profile id="8b94-f0e2-e135-5fcd" name="Towering Allies" publicationId="5d18-ec94-c8dd-a621" page="25" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">1 in every 4 units in a GNOMAD FEASTMASTERS army can be a unit chosen from the following warscrolls: SPIRIT OF DURTHU, TREELORD ANCIENT, TREELORD or ARWEN'JAX, SON OF THE JADE FOREST.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="5fc3-57e3-abb0-0322" name="Go With Your Gut" publicationId="5d18-ec94-c8dd-a621" page="26" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="069d-d8d5-2d9f-5d81" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e391-84fd-01e9-4438" type="max"/>
</constraints>
<profiles>
<profile id="33c3-c1bd-158f-6501" name="Last Meal Effect" publicationId="5d18-ec94-c8dd-a621" page="26" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Gnomads' battle prowess largely depends on the Last Meal Eaten. Before the battle begins, immediately before setting up armies, roll a D6 and look up the Last Meal Eaten effect on the list below. A Last Meal Eaten effect applies to all friendly GNOMAD FEASTMASTERS units until the end of the battle.</characteristic>
</characteristics>
</profile>
<profile id="3766-d8de-50a6-be3b" name="1-2 Breakfast" hidden="false" typeId="cd3d-b39b-3f06-4b41" typeName="Last Meal Eaten">
<characteristics>
<characteristic name="Effect" typeId="2ca4-0d1f-5b01-bb17">Add 3” to the range of all friendly GNOMAD FEASTMASTERS units' missile weapons; and add 1 to run and charge rolls. In addition, friendly GNOMAD FEASTMASTERS units may retreat and still shoot or charge later in their turn.</characteristic>
</characteristics>
</profile>
<profile id="1dc8-e709-b75e-06a6" name="3-4 Lunch" hidden="false" typeId="cd3d-b39b-3f06-4b41" typeName="Last Meal Eaten">
<characteristics>
<characteristic name="Effect" typeId="2ca4-0d1f-5b01-bb17">Friendly GNOMAD FEASTMASTERS units may add 2 to their Nature's Blessings rolls. In addition, your opponent may not re-roll any hit or wound rolls for attacks that target friendly BAREFOOT units.</characteristic>
</characteristics>
</profile>
<profile id="8ef9-74ca-3dce-e1c5" name="5-6 Dinner" hidden="false" typeId="cd3d-b39b-3f06-4b41" typeName="Last Meal Eaten">
<characteristics>
<characteristic name="Effect" typeId="2ca4-0d1f-5b01-bb17">Subtract 3” from the range of all friendly GNOMAD FEASTMASTERS units' missile weapons; and subtract 1 from run and charge rolls. In addition, GNOMAD FEASTMASTERS units benefiting from the Those Lucky Scoundrels battle trait have a 4+ ward (instead of a 5+ ward).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9b42-51d2-5828-ec6e" name="It's Been A Long Day" publicationId="5d18-ec94-c8dd-a621" page="26" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="370d-6fc3-d387-4d8f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d789-994c-052d-4707" type="max"/>
</constraints>
<profiles>
<profile id="f4df-a7dd-41e8-8b62" name="It's Been A Long Day" publicationId="5d18-ec94-c8dd-a621" page="26" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">GNOMAD FEASTMASTERS units have a different “It’s been a long day…” ability each battle round, as shown on the table [below]. These effects are not cumulative.</characteristic>
</characteristics>
</profile>
<profile id="86da-6457-ccb7-2f55" name="Battleround 2" hidden="false" typeId="317e-ed0e-e077-0a74" typeName="It's Been a Long Day">
<characteristics>
<characteristic name="Effect" typeId="f953-962d-6528-56f4">Subtract 1 from run rolls for this unit.</characteristic>
</characteristics>
</profile>
<profile id="9257-22d3-f469-721b" name="Battleround 3" hidden="false" typeId="317e-ed0e-e077-0a74" typeName="It's Been a Long Day">
<characteristics>
<characteristic name="Effect" typeId="f953-962d-6528-56f4">Subtract 1 from run and charge rolls for this unit.</characteristic>
</characteristics>
</profile>
<profile id="5952-7b3a-b507-4e66" name="Battleround 4" hidden="false" typeId="317e-ed0e-e077-0a74" typeName="It's Been a Long Day">
<characteristics>
<characteristic name="Effect" typeId="f953-962d-6528-56f4">Subtract 1 from run and charge rolls for this unit. In addition, this unit can only move up to 1” when making a pile-in move.</characteristic>
</characteristics>
</profile>
<profile id="ec03-6b38-31d5-62b2" name="Battleround 5" hidden="false" typeId="317e-ed0e-e077-0a74" typeName="It's Been a Long Day">
<characteristics>
<characteristic name="Effect" typeId="f953-962d-6528-56f4">Add 1 to all wound rolls. In addition, halve the number of models, rounding any fractions down, that have been slain this turn when this unit makes a battleshock roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="44c0-1cde-041e-603a" name="Trail" hidden="false" collective="false" import="true" defaultSelectionEntryId="7f54-1f57-e4f3-ab3e">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="283b-b64b-897b-0660" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7f54-1f57-e4f3-ab3e" name="Gnomiad Trail" publicationId="5d18-ec94-c8dd-a621" page="33" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3bde-1e77-4d9f-ef39" type="max"/>
</constraints>
<profiles>
<profile id="1610-f43b-6335-29c0" name="Antediluvian Protectors" publicationId="5d18-ec94-c8dd-a621" page="33" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">When a GNOMIAD TRAIL Treelord Ancient from this faction uses its Silent Communion ability to set up an AWAKENED WYLDWOOD, add a Guardian Counter to that AWAKENED WYLDWOOD. In addition, if there is no friendly SPIRIT OF DURTHU on the battlefield, then when using the Rouse the Guardians battle trait, when 4 Guardian Counters (rather than 3) have been added to a terrain feature, the player who added the fourth Guardian Counter may spend all Guardian Counters from that terrain feature and summon a SPIRIT OF DURTHU to the battlefield and add it to their army.
Any summoned SPIRIT OF DURTHU units must be set up wholly within 6” of the terrain feature and more than 6” from any enemy units.</characteristic>
</characteristics>
</profile>
<profile id="6b9f-d1d1-1fda-4857" name="Expert Hitchers" publicationId="5d18-ec94-c8dd-a621" page="33" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Any friendly GNOMIAD TRAIL TREELORD, TREELORD ANCIENT or SPIRIT OF DURTHU model may be garrisoned by up to 16 friendly unmounted BAREFOOT models that are not a WAR MACHINE, even though it is not a terrain feature. Units can be set up as this model's garrison when they are selected to deploy. Units cannot join or leave that model's garrison if that model has made a move in the same phase (they can join or leave before it does so). Models in that model's garrison are not counted towards gaining control of an objective. An attack made by a weapon that is in range of that model can target either that model or a unit in its garrison. If that model is destroyed, before it is removed from play, roll 1 dice for each model in its garrison. On a 1, that model is slain. Set up any surviving models wholly within 3” of that model and more than 3” from any enemy units.</characteristic>
</characteristics>
</profile>
<profile id="0770-c353-17fd-643c" name="Boscage Inveigler" publicationId="5d18-ec94-c8dd-a621" page="33" 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 in your hero phase, if your general is on the battlefield, by spending 2 command points. If you do so, place a Guardian Counter on a terrain feature within 12” of your general.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="234a-a6e2-1ff1-d932" name="Curet Trail" publicationId="5d18-ec94-c8dd-a621" page="34" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f66-742c-16d6-c5a1" type="max"/>
</constraints>
<profiles>
<profile id="d92d-f6e9-6d03-eb38" name="So Hangry" publicationId="5d18-ec94-c8dd-a621" page="34" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">CURET TRAIL HEAD CHEF units using their Always Hangry ability may select 2 additional GNOMAD FEASTMASTERS units to be Hangry.</characteristic>
</characteristics>
</profile>
<profile id="bf49-d4de-65c7-87e2" name="Fell that Beast!" publicationId="5d18-ec94-c8dd-a621" page="34" 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 in your hero phase. If you do so, pick 1 CURET TRAIL unit wholly within 12” of a CURET TRAIL HERO or wholly within 18” of a CURET TRAIL general. That unit must receive the command. Add 1 to wound rolls for attacks made by that unit that target an enemy MONSTER until your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d5a0-2526-1edf-5bf5" name="Blazed Trail" publicationId="5d18-ec94-c8dd-a621" page="35" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fe3-c294-aab1-2143" type="max"/>
</constraints>
<profiles>
<profile id="aec8-a026-db86-abc2" name="Rollin', rollin', rollin'" publicationId="5d18-ec94-c8dd-a621" page="35" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Units garrisoned inside a BLAZED TRAIL GASTROGNOME WAR CARAVAN may leave that garrison after that BLAZED TRAIL GASTROGNOME WAR CARAVAN has made a normal move.
Add 1 to the Attacks characteristic of all weapons carried by units that leave that garrison using this ability until the start of your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="6740-d75d-a163-0a40" name="Perpetual Travellers" publicationId="5d18-ec94-c8dd-a621" page="35" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Models in units that are in the garrison of any BLAZED TRAIL GASTROGNOME WAR CARAVAN are counted towards gaining control of an objective.
In addition, if you are fighting a Pitched Battle, you can include one additional BLAZED TRAIL Behemoth in your army.</characteristic>
</characteristics>
</profile>
<profile id="17dd-5986-4bf1-283a" name="They'll never see this one coming!" publicationId="5d18-ec94-c8dd-a621" page="35" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">At the start of each battle round, if you gain a command point from the Dumb Pluck command trait, you may immediately spend that command point to use this command ability. If you do so, immediately select a unit wholly within 12” of a BLAZED TRAIL hero or wholly within 18” of a BLAZED TRAIL general. The selected unit can shoot or, if it is within 3” of any enemy units, it can fight; and counts as being affected by the Those Lucky Scoundrels battle trait when making attacks when it shoots or fights (at the start of this battle round).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="31f7-db2a-3e6a-0a0f" name="Grand Strategy" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="66c4-faa1-f736-7e72" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6314-68a0-3bdb-2ba1" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="66c4-faa1-f736-7e72" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="442f-6218-066a-02c9" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="d32c-3fd6-e0c6-e90a" name="Universal Grand Strategy" hidden="false" collective="false" import="true" targetId="1e64-bcdc-3709-7ec7" type="selectionEntryGroup"/>
<entryLink id="c458-e303-701f-c71e" name="Gnomiad Grand Strategies" hidden="false" collective="false" import="true" targetId="3758-cc51-fdf5-3a16" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dbc1-994c-a217-ef13" name="Trail Master on War-Cockerel" publicationId="5d18-ec94-c8dd-a621" page="39" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="9bfd-abf6-9593-a7dc" name="Trail Master on War-Cockerel" 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">11</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="7444-6bec-e8ca-f265" name="Ancestral Lance" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to wound rolls and improve the Rend characteristic of this model's Ancestral Lance by 1 if this model made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="671c-3e7d-374a-0894" name="Fortune Favours the Brave" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to Ward rolls using the Those Lucky Scoundrels ability if this model made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="efb2-cf28-3ad6-b18c" name="Extra Provisions" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In a turn where you lose the roll off to determine who can take the first turn in each battle round, you may say this model is handing out extra provisions.
All friendly GNOMAD FEASTMASTERS units within 3" of this model may treat this round as Battle Round 1 for the purposes of "It's been a long day".</characteristic>
</characteristics>
</profile>
<profile id="0cf0-d3f2-99c4-e1a2" name="Cock-a-Doodle-Do!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You may use this command ability during your hero phase. If you do so, select a model with this command ability. Until the the start of your next hero phase, all friendly GNOMAD FEASTMASTERS units wholly within 12" of the selected model gain the Breakfast ability from the Go with your Gut trait in addition to any other Last Meal Eaten ability.</characteristic>
</characteristics>
</profile>
<profile id="c03d-833a-5d83-a4cc" name="Mount" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This model's War-Cockerel attacks with its Razor-Sharp Beak and Wicked Talons.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7c94-f6e9-80aa-9d6f" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="c8c7-6d50-f19b-d101" name="GNOMAD FEASTMASTERS" hidden="false" targetId="78d7-bfa7-c521-f7ff" primary="false"/>
<categoryLink id="a032-0b16-27fe-0463" name="STOUT" hidden="false" targetId="9707-2c07-49d5-473d" primary="false"/>
<categoryLink id="8c93-8e11-387a-8a75" name="WAR-COCKEREL" hidden="false" targetId="6b69-ac37-e759-0b76" primary="false"/>
<categoryLink id="7970-0ce8-784c-de70" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="39a1-f5fa-08ef-d4e8" name="MONSTER" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="4a91-b65b-d331-d18e" name="TRAIL MASTER" hidden="false" targetId="bfeb-5790-b319-e85e" primary="false"/>
<categoryLink id="8e99-8192-d7ad-f14d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="eb23-6e3e-d616-9c51" name="Ancestral Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e94-7a43-fed9-9c72" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac6c-f1f4-0b78-5a82" type="max"/>
</constraints>
<profiles>
<profile id="0e17-9c18-6dcc-5d04" name="Ancestral Lance" 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">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>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="01b4-e58e-2bb6-668e" name="Razor-Sharp Beak" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="88d2-3924-b52d-d430" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0cea-3419-446d-d72a" type="max"/>
</constraints>
<profiles>
<profile id="6cb5-c0d4-37c7-9f57" name="Razor-Sharp Beak" 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">*</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"/>
</costs>
</selectionEntry>
<selectionEntry id="7c54-af11-1ba9-4cdf" name="Wicked Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="94ad-f6c5-cce6-9a50" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f78-13bb-ccc2-af9f" type="max"/>
</constraints>
<profiles>
<profile id="446a-5984-3aba-03e3" name="Wicked Talons" 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">*</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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0c2c-55e7-1f40-75e9" name="Wound Track" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7196-34e1-85b9-8f35" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c8b-7ad5-1fe5-e601" type="max"/>
</constraints>
<profiles>
<profile id="1586-c2c6-1083-6b0e" name="00-06" hidden="false" typeId="924f-9868-074a-de36" typeName="Cockerel Wound Table">
<characteristics>
<characteristic name="Move" typeId="4bdf-7da5-c485-4a1c">10"</characteristic>
<characteristic name="Razor-Sharp Beak" typeId="7336-bce7-efa1-9d2c">3+</characteristic>
<characteristic name="Wicked Talons" typeId="f686-518d-ba2b-e2d9">6</characteristic>
</characteristics>
</profile>
<profile id="9f88-6c24-248f-e295" name="07-09" hidden="false" typeId="924f-9868-074a-de36" typeName="Cockerel Wound Table">
<characteristics>
<characteristic name="Move" typeId="4bdf-7da5-c485-4a1c">9"</characteristic>
<characteristic name="Razor-Sharp Beak" typeId="7336-bce7-efa1-9d2c">4+</characteristic>
<characteristic name="Wicked Talons" typeId="f686-518d-ba2b-e2d9">5</characteristic>
</characteristics>
</profile>
<profile id="2b42-39e9-a37d-becd" name="10+" hidden="false" typeId="924f-9868-074a-de36" typeName="Cockerel Wound Table">
<characteristics>
<characteristic name="Move" typeId="4bdf-7da5-c485-4a1c">8"</characteristic>
<characteristic name="Razor-Sharp Beak" typeId="7336-bce7-efa1-9d2c">5+</characteristic>
<characteristic name="Wicked Talons" typeId="f686-518d-ba2b-e2d9">4</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="86f7-5163-fecd-cb5a" name="General" hidden="false" collective="false" import="true" targetId="3900-28c8-0008-3643" type="selectionEntry">
<categoryLinks>
<categoryLink id="115c-2a7f-1f63-2b35" name="STOUT General" hidden="false" targetId="76c3-7e02-dc01-ce50" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="068a-3cfb-ebe3-bb96" name="Battalions" hidden="false" collective="false" import="true" targetId="af68-6b3b-c1ed-a74e" type="selectionEntryGroup"/>
<entryLink id="b955-9a36-94ef-49ac" name="Artefacts" hidden="false" collective="false" import="true" targetId="95d7-5c61-46da-973d" type="selectionEntryGroup"/>
<entryLink id="7436-d879-393a-dc6c" name="Incarnate Bonding" hidden="true" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="234a-a6e2-1ff1-d932" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7dd8-4ed7-9c4f-41ed" name="Command Traits" hidden="false" collective="false" import="true" targetId="c806-f7da-5402-20ad" type="selectionEntryGroup"/>
<entryLink id="426f-eec6-0332-0f31" name="Mount Traits" hidden="false" collective="false" import="true" targetId="e903-73c9-93cc-62e9" type="selectionEntryGroup"/>
<entryLink id="c1a0-0847-5f17-0655" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="b90a-47b2-19b6-d1fc" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</selectionEntry>
<selectionEntry id="3900-28c8-0008-3643" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b34-76cd-b484-81cb" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8e62-3f66-7940-150e" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ddfa-428b-e788-7a1d" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a90-595e-f6e2-f2f7" name="Gastrognome War Caravan" publicationId="5d18-ec94-c8dd-a621" page="40" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="77a0-a955-c863-b15f" name="Gastrognome War Caravan" 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">14</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="2ea6-a70c-71ec-d68f" name="Mount" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit's Crag Ibexes attack with their Prodigious Horns.</characteristic>
</characteristics>
</profile>
<profile id="4639-5e00-c4dc-a098" name="Crew" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit's War-Caravan has a crew of Gnomads armed with Short Spears and a Caravan Driver armed with an Ibex Whip.</characteristic>
</characteristics>
</profile>
<profile id="7cd5-6a41-a5ae-ad9c" name="Alembic Shroud" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When GNOMAD FEASTMASTERS models within range of this model's Alembic Shroud move, they can pass across terrain features in the same manner as a model that can fly. In addition, friendly GNOMAD FEASTMASTERS units wholly within range of this model's Alembic Shroud count as being wholly on or within a terrain feature. In addition, do not apply the cover modifier to save rolls for attacks that target enemy units that are within range of this model's Alembic Shroud.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d6c3-2f18-1687-28d5" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="0ceb-acf0-02d2-5922" name="GASTROGNOME WAR CARAVAN" hidden="false" targetId="3164-cc58-0391-618c" primary="false"/>
<categoryLink id="9150-6588-ada5-06f2" name="GNOMAD FEASTMASTERS" hidden="false" targetId="78d7-bfa7-c521-f7ff" primary="false"/>
<categoryLink id="56d8-7038-b1f3-afb5" name="WAR MACHINE" hidden="false" targetId="880e-1e33-b965-71ec" primary="false"/>
<categoryLink id="e3c3-13b1-a098-f0e5" name="TOTEM" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
<categoryLink id="7a29-0dbe-8c6e-d562" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2da1-044e-ea8a-45f1" name="Alembic Overload" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73bd-4058-4db1-872a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c70-6a6f-2e42-0e12" type="max"/>
</constraints>
<profiles>
<profile id="f5ec-e1e3-f372-b60b" name="Alembic Overload" 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">*</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">*</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">*</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e549-e9aa-1d07-fcbe" name="Ibex Whip" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b19f-36e4-a0f6-dda1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5a7-c350-a8e4-c742" type="max"/>
</constraints>
<profiles>
<profile id="922c-5d2d-27d9-8701" name="Ibex Whip" 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">2</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>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0529-664a-c7e7-be92" name="Short Spears" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5fea-287d-cef1-662a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d52b-6fec-be65-8a11" type="max"/>
</constraints>
<profiles>
<profile id="4e52-7a94-1d35-6397" name="Short Spears" 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">*</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"/>
</costs>
</selectionEntry>
<selectionEntry id="e7b0-21c9-6246-efac" name="Prodigious Horns" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1686-b4d0-c20e-894e" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b7f-b52b-705b-e79a" type="min"/>
</constraints>
<profiles>
<profile id="a0b7-5412-099f-46ee" name="Prodigious Horns" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c4c8-bc79-65e7-0f08" name="Wound Track" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb53-d92a-ec4d-8ba2" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="76b2-c9d2-36bf-fbcc" type="min"/>
</constraints>
<profiles>
<profile id="1d8c-d419-94e5-8d97" name="00-06" hidden="false" typeId="a3c9-d1bf-7e05-ad45" typeName="Caravan Wound Table">
<characteristics>
<characteristic name="Alembic Shroud/Overload" typeId="6557-64c3-ee90-c4cd">12"</characteristic>
<characteristic name="Move" typeId="e9e2-eb9c-572d-d897">8"</characteristic>
<characteristic name="Short Spears" typeId="571e-8cea-9fb0-3579">15</characteristic>
</characteristics>
</profile>
<profile id="e56e-beaa-1658-00f2" name="07-08" hidden="false" typeId="a3c9-d1bf-7e05-ad45" typeName="Caravan Wound Table">
<characteristics>
<characteristic name="Alembic Shroud/Overload" typeId="6557-64c3-ee90-c4cd">10"</characteristic>
<characteristic name="Move" typeId="e9e2-eb9c-572d-d897">7"</characteristic>
<characteristic name="Short Spears" typeId="571e-8cea-9fb0-3579">12</characteristic>
</characteristics>
</profile>
<profile id="a38c-2fe0-57f6-1699" name="09-10" hidden="false" typeId="a3c9-d1bf-7e05-ad45" typeName="Caravan Wound Table">
<characteristics>
<characteristic name="Alembic Shroud/Overload" typeId="6557-64c3-ee90-c4cd">8"</characteristic>
<characteristic name="Move" typeId="e9e2-eb9c-572d-d897">6"</characteristic>
<characteristic name="Short Spears" typeId="571e-8cea-9fb0-3579">9</characteristic>
</characteristics>
</profile>
<profile id="8384-2a85-4c0d-0541" name="11+" hidden="false" typeId="a3c9-d1bf-7e05-ad45" typeName="Caravan Wound Table">
<characteristics>
<characteristic name="Alembic Shroud/Overload" typeId="6557-64c3-ee90-c4cd">6"</characteristic>
<characteristic name="Move" typeId="e9e2-eb9c-572d-d897">5"</characteristic>
<characteristic name="Short Spears" typeId="571e-8cea-9fb0-3579">6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="52df-d571-1181-e92c" name="Battalions" hidden="false" collective="false" import="true" targetId="af68-6b3b-c1ed-a74e" type="selectionEntryGroup"/>
<entryLink id="f798-b7b1-e2fa-4f88" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="b90a-47b2-19b6-d1fc" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</selectionEntry>
<selectionEntry id="1062-1c2d-cc88-f90e" name="Hedge Hermit" publicationId="5d18-ec94-c8dd-a621" page="44" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="cb45-a253-2202-1bec" name="Hedge Hermit" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">4</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="7a66-b452-f29a-901e" name="Soil Affinity" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This model may choose to ignore any effects of Scenery Rules or abilities on SCENERY Warscrolls.</characteristic>
</characteristics>
</profile>
<profile id="ce2f-7cad-937d-6ebd" name="Tree Friend" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>