-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gloomspite Gitz - Library.cat
4516 lines (4516 loc) · 327 KB
/
Gloomspite Gitz - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="9fb4-c9d6-3da7-5b5d" name="Gloomspite Gitz - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Dankhold Troggoth" hidden="false" id="9be3-6dc9-3f14-4553" publicationId="bf63-6cf5-2975-bafa">
<profiles>
<profile name="Dankhold Troggoth" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1e98-1dab-b7ab-683b">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">10</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Wade and Smash" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="a437-3230-3274-7d84">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is in combat, it can move 6" but must end that move in combat. Then, roll a D3 for each enemy unit within 1" of this unit. On a 2+, inflict an amount of mortal damage on that unit equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Magical Resistance" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="73a9-46eb-bfd9-ccc7">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a **^^Spell^^** ability</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit was picked to be the target of that spell, roll a dice. On a 4+, ignore the effect of that spell on this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Regeneration" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4631-7eee-36a-4fe2">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Start of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">**Heal (D3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="MONSTER" hidden="false" id="f5f0-d8cd-d7bf-445e" targetId="6d54-625c-d063-13e2" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="ccde-3570-33cb-3fed" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="fcc-1c48-f8b3-95b1" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="TROGGOTH" hidden="false" id="6f57-728a-10ef-2157" targetId="c824-f471-3b8c-e580" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Dankhold Troggoth" hidden="false" id="fc4d-415d-c394-2d49">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Colossal Boulder Club" hidden="false" id="6dc3-455a-c9a5-20d4">
<profiles>
<profile name="Colossal Boulder Club" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f748-7960-2be8-68ac">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3+3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="30b0-e6cb-7cf9-a04c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f0ed-1230-bf44-3d28"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="79eb-b7d6-508e-c25b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7b17-a767-162d-164"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Rockgut Troggoths" hidden="false" id="6b55-8302-d5fe-f8b" publicationId="bf63-6cf5-2975-bafa">
<profiles>
<profile name="Rockgut Troggoths" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e414-dd5c-558f-aae9">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Regeneration" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2e5-c6b1-d5ee-7c7">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Start of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">**Heal (D3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="DESTRUCTION" hidden="false" id="4977-d3f7-cfd2-1ecb" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="5d4f-1763-4c76-867d" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="ac42-e342-43b-fdf4" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="TROGGOTH" hidden="false" id="6009-3735-fe34-5988" targetId="c824-f471-3b8c-e580" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Rockgut Troggoth" hidden="false" id="202d-8ca9-de33-7cfa">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Throwin’ Boulders" hidden="false" id="a60c-6e8b-d4da-54e1">
<profiles>
<profile name="Throwin’ Boulders" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="8c1e-8ab7-1ef5-29a1">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">5+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b4eb-1f23-ebaa-f54e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dbe1-c877-b405-60e5"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Stone Maul or Craggy Hands" hidden="false" id="4a2b-9bc2-d3d6-361">
<profiles>
<profile name="Stone Maul or Craggy Hands" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2b23-c6dc-b760-9388">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1e3e-6469-2b6-c8aa"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dea5-b832-5e7b-de5f"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="850b-b257-1b1-6c30"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="c6c8-96d8-c8-362e"/>
</constraints>
<modifiers>
<modifier type="increment" value="3" field="850b-b257-1b1-6c30">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="6b55-8302-d5fe-f8b" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="c6c8-96d8-c8-362e">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="6b55-8302-d5fe-f8b" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Skragrott the Loonking" hidden="false" id="fda8-9470-94b7-46fa" publicationId="bf63-6cf5-2975-bafa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="b713-7231-37b0-c68a" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Skragrott the Loonking" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b30-a0f0-b90b-8778">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Fangs of da Bad Moon" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="2d71-221c-c9a8-a661">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 18" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a number of dice equal to the unmodified casting roll. For each 3+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="The Loonking's Entreaty" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7779-36eb-5297-59c4">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Reaction: You declared the ‘The Bad Moon’s Orbit’ ability</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">You can choose whether the Bad Moon moves to the next location or stays in its current location instead of rolling the dice.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Babbling Wand" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e03b-f725-abaa-2cf">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared the ‘Redeploy’ command for a friendly **^^Moonclan^^** unit wholly within 12" of this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If you roll a 1-3 when determining the distance that unit can move, you can use a value of 4 instead.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="c347-71ec-63c0-83fb" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="c960-fa20-f61c-b2d1" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="247f-625e-e50f-e840" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="13bc-240c-686c-be98" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="9c3a-d951-4c9a-ff74" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="b13c-6a75-ca5e-d74c" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="4b77-6138-493a-c0ce" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (4+)" hidden="false" id="b49f-f7b9-1524-2889" targetId="f99f-98ee-909f-57cd" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="c094-2052-9197-294d" targetId="76e8-7818-115c-6899" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5bd2-ac78-a433-3d0a" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Skragrott the Loonking" hidden="false" id="51c9-2761-2e05-7e3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Da Moon Onna Stikk" hidden="false" id="a7e3-e703-eb78-e32a">
<profiles>
<profile name="Da Moon Onna Stikk" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="52d1-14e1-a62-5cdc">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="241a-ac42-ca11-dbcf"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fe78-6625-cc06-7f32"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b959-36b7-1bc7-b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dbcf-32dd-7ccc-f06f"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Squigboss with Gnasha-squig" hidden="false" id="3e89-813a-bb70-e48c" publicationId="bf63-6cf5-2975-bafa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="f2ec-7697-a12d-ed2f" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Squigboss with Gnasha-squig" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="7aa4-cf51-e2e0-6bc9">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">4</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Feedin' Time" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4092-b990-247c-396e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly Squig unit
within this unit’s combat range to be
the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, pick 1 of the following effects to apply for the rest of the turn:
***Crimson Deffcap:*** Add 3" to the target’s Move characteristic.
***Yellow Lurka:*** The target’s **Fang-filled Gobs**, **Huge Fang-filled Gobs** or **Massive Fang-filled Gobs** have **Crit (Mortal)**.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="96b8-12f1-36ec-99b9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="ee22-29a2-6205-9b23" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="dc32-423b-84c1-ad68" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="62dd-eff-57de-ba31" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="e71b-a708-d886-46bc" targetId="76e8-7818-115c-6899" primary="false"/>
<categoryLink name="SQUIG" hidden="false" id="ffb2-d3a8-89c4-9163" targetId="378e-9edc-581-d24f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Squigboss with Gnasha-squig" hidden="false" id="5b1c-29aa-9e3e-4f76">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spore Squig’s Vicious Teeth" hidden="false" id="c92a-8c4-6ec5-ee32">
<profiles>
<profile name="Spore Squig’s Vicious Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4923-65a5-a0cc-d1de">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2369-3e0e-471c-5bc9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f5f1-9117-8174-5347"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Moon-sickle" hidden="false" id="7374-b749-6847-c097">
<profiles>
<profile name="Moon-sickle" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e1c6-9a98-1691-b1f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="23f4-32ed-2dad-e4a5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="db3c-5b12-a7e5-4805"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d053-8aff-7c90-5c5e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="36a-196c-97fb-4663"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Mangler Squigs" hidden="false" id="7d29-9cf8-1621-e523" publicationId="bf63-6cf5-2975-bafa">
<profiles>
<profile name="Mangler Squigs" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ee30-c907-2f9d-1b5e">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">D6+8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Squig Rage" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5c69-e4e6-cf3b-f44f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Huge Fang-filled Gobs** is 6.</characteristic>
</characteristics>
</profile>
<profile name="Watch Out!" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="18ca-87f5-b359-4e66">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit is destroyed, before removing it from play, roll a dice for each enemy unit within this unit’s combat range. On a 4+, inflict D3 mortal damage on that unit.</characteristic>
</characteristics>
</profile>
<profile name="Giant Boing!" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="56d7-7a73-6968-21a7">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit charged this turn, roll a dice. On a 3+, this unit can move 3D6" but must end that move in combat.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="DESTRUCTION" hidden="false" id="4529-ff8a-e9e4-294c" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="f50-280d-8aa9-40ab" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="c123-848f-f743-811" targetId="76e8-7818-115c-6899" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="2b28-f5cd-8060-4712" targetId="6d54-625c-d063-13e2" primary="true"/>
<categoryLink name="FLY" hidden="false" id="cad4-4635-552a-2f4e" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="SQUIG" hidden="false" id="18c6-6149-25a3-2451" targetId="378e-9edc-581-d24f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Mangler Squigs" hidden="false" id="c3c5-5975-c688-ed0e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Balls and Chains" hidden="false" id="f0d5-9d77-563c-26e8">
<profiles>
<profile name="Balls and Chains" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="a078-6b7f-6694-159f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d30d-975f-43ed-c40f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b5ed-7006-e44c-dca"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Huge Fang-filled Gobs" hidden="false" id="7f77-d7e1-6526-fbe5">
<profiles>
<profile name="Huge Fang-filled Gobs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="eb8a-ce78-4a0f-54fa">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D6</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cb33-e4-b661-2850"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1c64-8c04-eeda-31e3"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bashin’ Stikks" hidden="false" id="5ee6-ec9-ba37-2be">
<profiles>
<profile name="Bashin’ Stikks" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f3f6-1aeb-9de2-69c7">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f4d4-dbd5-d967-a3b5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3643-273f-8586-826b"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1728-f2fc-667e-3ed4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cc32-4478-3c04-4070"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Rabble-Rowza" hidden="false" id="13ce-b7ed-f419-cdd" publicationId="bf63-6cf5-2975-bafa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="ce54-11f2-d48b-4aa6" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Rabble-Rowza" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1e56-6586-fdd7-7291">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Secret Tunnels" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1729-d0a3-a9a5-459">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit if it has not been deployed.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up this unit in reserve **in a secret tunnel**. It has now been deployed.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Deploy^^**</characteristic>
</characteristics>
</profile>
<profile name="'Neh Neh Nah-neh Neh! Can't Catch Me!"" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="b55c-7af6-d223-dc6f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible friendly **^^Monster^^** or **^^Beast^^** unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, the target can use **^^Charge^^** abilities even if it used a **^^Run^^** ability in the same turn, but each time it uses a **^^Move^^** ability, it must end the move closer to this unit.
In addition, for the rest of the turn, the first time the target ends a move within this unit’s combat range, inflict D6 mortal damage on this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Emerge from the Depths" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cb86-23f7-e4af-db80">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit if it is in a secret tunnel.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up this unit anywhere on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="15f1-6854-961f-62a8" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="338f-b941-20e7-2a92" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="f4d4-947d-7b72-e656" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="4d9e-6423-8b6b-15af" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="8a5c-63c9-3159-799b" targetId="76e8-7818-115c-6899" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Rabble-Rowza" hidden="false" id="cc18-957-77b4-316e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bat Squigs" hidden="false" id="862e-eb9e-cd31-5c3f">
<profiles>
<profile name="Bat Squigs" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="e09b-bff2-581b-5d44">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">-</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6fce-fcc9-e94d-6f05"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fc3e-a6ea-ce44-29e6"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Moon-sickle and Basha" hidden="false" id="b0a6-e9fa-372f-b938">
<profiles>
<profile name="Moon-sickle and Basha" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b5cd-3435-7c88-627f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c164-3856-9de9-4682"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9237-52df-56-2974"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5da8-91b8-dbba-38e6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="20f6-d87b-4071-6e6a"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Fungoid Cave-Shaman" hidden="false" id="5f35-ca66-398-bf72" publicationId="bf63-6cf5-2975-bafa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="97a-e3b1-3c73-27d8" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Fungoid Cave-Shaman" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="febc-331a-3c6c-de69">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Deffcap Mushroom" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="63c3-a386-ebdc-9a2a">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to this unit’s power level for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="3dc1-965f-810b-e433" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="1c5c-5657-587e-db5" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="68a2-75c9-9ab-8585" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="de0-a22-2441-6249" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="e3a1-e828-fbff-79f2" targetId="76e8-7818-115c-6899" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="750b-54e9-8d85-5159" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Fungoid Cave-Shaman" hidden="false" id="d776-c660-ff9b-17b">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spore Squig’s Vicious Teeth" hidden="false" id="266f-ab46-a520-d03c">
<profiles>
<profile name="Spore Squig’s Vicious Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="735a-d155-4e12-b086">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c460-7f1f-b842-b5dc"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="99a2-856b-d647-c176"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Moon-sickle" hidden="false" id="c8e9-3704-da64-fe6f">
<profiles>
<profile name="Moon-sickle" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="9b2-31bb-310f-ae31">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9f3e-7221-dcaa-550"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4e20-b197-ab7d-d9a5"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="996f-431f-e104-ba7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1332-2a1c-33c6-45a2"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Webspinner Shaman on Arachnarok Spider" hidden="false" id="b01b-24e3-c30f-d62f" publicationId="bf63-6cf5-2975-bafa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="3ddf-7264-b015-5c96" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Webspinner Shaman on Arachnarok Spider" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a5e9-78b7-da0d-b016">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2889-b968-5dbc-7100">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Chitinous Legs** is 6.</characteristic>
</characteristics>
</profile>
<profile name="Catchweb Spidershrine" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ed12-633-79c1-bc79">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to casting rolls for friendly **^^Spiderfang Wizards^^** while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Ensnaring Webbing" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7933-93ab-da69-7920">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Infantry Hero^^** within 1" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, the target has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="DESTRUCTION" hidden="false" id="7d25-e5d2-f258-9e92" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="df86-5ea3-b06f-e0f4" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="SPIDERFANG" hidden="false" id="b42f-cce9-8b44-5a5" targetId="75c0-c743-a439-85ea" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="ecbf-8bb2-87d8-3b18" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="HERO" hidden="false" id="d6da-af61-4359-9166" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WIZARD (1)" hidden="false" id="5786-c86b-f5f7-21cd" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="ARACHNAROK" hidden="false" id="93bd-54a4-5d1e-fb4" targetId="89c9-7736-a326-a629" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Webspinner Shaman on Arachnarok Spider" hidden="false" id="a6be-426e-6a8f-6fc6">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spider-bows" hidden="false" id="e00a-ac5d-b90b-216f">
<profiles>
<profile name="Spider-bows" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="b600-1a59-5176-a702">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">18"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">10</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">5+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">-</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f6e-e9a7-dec-88c2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9760-4d53-4193-4117"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Crooked Spears" hidden="false" id="95ee-69a1-c5cf-e17b">
<profiles>
<profile name="Crooked Spears" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="85b9-e6cc-5e07-a052">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">10</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="42a0-d598-85ef-7f96"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c28a-d370-a8d6-d13a"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Monstrous Spider Fangs" hidden="false" id="c6e8-4d-e976-26bc">
<profiles>
<profile name="Monstrous Spider Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f68a-c797-13b0-f842">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f923-4b2f-cde7-f924"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4773-3d64-eb4b-fa32"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Chitinous Legs" hidden="false" id="ff7b-90a0-7837-dd61">
<profiles>
<profile name="Chitinous Legs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3d97-ad98-9aa2-b27f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1592-18a-2a81-a9a8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6237-b6d0-928-6e8c"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Spider God Staff" hidden="false" id="ebbc-481d-8072-ef46">
<profiles>
<profile name="Spider God Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3f6a-a9cf-4354-b2ac">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f72-4e57-2e2-63e4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fce7-154a-742e-3acf"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="20ec-26b0-76e9-8fbc"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="67c2-c44-129a-10f7"/>
</constraints>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Wall Crawler" id="eba5-cc69-e1a9-c803" hidden="false" type="profile" targetId="abfa-3e89-53c2-8773"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Loonboss on Giant Cave Squig" hidden="false" id="66d2-f3d2-93a9-581" publicationId="bf63-6cf5-2975-bafa">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a329-5c80-451d-24d8" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Loonboss on Giant Cave Squig" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="565-1559-6bae-4d7">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">D6+6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Let's Get Bouncin'!" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3179-dd50-73fe-f7cb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non-**^^Hero Squig Cavalry^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target
can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved. If it is picked to do so, add 1 to hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="57e8-fe72-749-7813" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="DESTRUCTION" hidden="false" id="4a0f-81bc-ea09-7f52" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="365d-6aee-5db7-e4a8" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="4a93-4d5e-2e09-c750" targetId="76e8-7818-115c-6899" primary="false"/>
<categoryLink name="SQUIG" hidden="false" id="799c-9940-56d5-e3cf" targetId="378e-9edc-581-d24f" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="ad76-3431-5cae-f397" targetId="926c-df8c-6841-d49e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Loonboss on Giant Cave Squig" hidden="false" id="9c7-6729-3314-bdd1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Massive Fang-filled Gob" hidden="false" id="e41f-79dc-4617-74bc">
<profiles>
<profile name="Massive Fang-filled Gob" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e8f3-5c46-c545-8db6">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="24b9-ae63-b52b-6de8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="abac-2d41-71cb-b385"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Moon-cutta or Loonboss Stabba" hidden="false" id="dc-26f5-1641-e393">
<profiles>
<profile name="Moon-cutta or Loonboss Stabba" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e62a-846-3629-8af8">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3dae-85fc-b0ac-8e4c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a02e-3d-7c2d-d44f"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f785-4429-b65-bd72"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c6cd-95e4-c248-5942"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Squig Herd" hidden="false" id="5e58-eff2-c9a6-7227" publicationId="bf63-6cf5-2975-bafa">
<profiles>
<profile name="Squig Herd" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="4df2-2539-f1e8-1b2e">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">2D6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Squigs Gone Wild" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="26a7-e7eb-b479-661c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time a model in this unit is slain by a combat attack and that model was in combat with the attacking unit, roll a dice. On a 5+, inflict 1 mortal damage on the attacking unit after the **^^Fight^^** ability has been resolved.</characteristic>
</characteristics>
</profile>
<profile name="Herding Squigs" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1091-822d-626b-4eaf">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice for each **Squig Herder** in this unit. For each 2+, you can return D3 slain **Cave Squigs** to this unit. For each 1, 1 **Squig Herder** in this unit is slain.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="DESTRUCTION" hidden="false" id="4fb0-d4a0-f726-6246" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="2ae5-48e4-e67b-8114" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="MOONCLAN" hidden="false" id="8aeb-b6f7-60-c6ae" targetId="76e8-7818-115c-6899" primary="false"/>
<categoryLink name="BEAST" hidden="false" id="9794-680b-6605-7746" targetId="b224-8c8e-ca93-9860" primary="true"/>
<categoryLink name="SQUIG" hidden="false" id="561f-9a6-33d-545a" targetId="378e-9edc-581-d24f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Cave Squig" hidden="false" id="993c-6b16-e975-5321">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Fang-filled Gob" hidden="false" id="b83a-4676-5956-9d2e">
<profiles>
<profile name="Fang-filled Gob" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="cf73-d8bc-cd78-71a9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cb4c-2c6-391a-8314"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4388-7ec5-8cd-2ad8"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="true" id="aeca-6ab9-f7e7-a274"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="true" id="f5d4-4736-23d1-e620"/>
</constraints>
<modifiers>
<modifier type="increment" value="10" field="aeca-6ab9-f7e7-a274">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="5e58-eff2-c9a6-7227" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="f5d4-4736-23d1-e620">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="5e58-eff2-c9a6-7227" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Squig Herder" hidden="false" id="46f0-b887-746b-3d92">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Squig Prodder" hidden="false" id="a64a-55a3-1df0-68f1">
<profiles>
<profile name="Squig Prodder" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5715-d05e-46a4-607b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="99f1-6405-35ae-cc5b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="63fa-7460-cb58-7bee"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="5e03-cd7b-ddf3-6130"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="781e-abd9-5cce-614f"/>
</constraints>
<modifiers>
<modifier type="increment" value="2" field="5e03-cd7b-ddf3-6130">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="5e58-eff2-c9a6-7227" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="2" field="781e-abd9-5cce-614f">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="5e58-eff2-c9a6-7227" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Beast" id="7ec2-8b00-589e-807" hidden="false" type="profile" targetId="8e01-c681-8a44-8f44"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Moonclan Stabbas" hidden="false" id="8be0-b46d-7d03-f8e2" publicationId="bf63-6cf5-2975-bafa">
<profiles>
<profile name="Moonclan Stabbas" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="61e6-d1a5-88e5-bb51">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Netters" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9503-8c9b-9bd9-7292">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Infantry^^** unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, subtract 1 from hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAMPION" hidden="false" id="79c7-3028-4c2f-eb40" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="DESTRUCTION" hidden="false" id="6090-9218-50b2-8e54" targetId="9057-5a29-dda5-3c28" primary="false"/>
<categoryLink name="GLOOMSPITE GITZ" hidden="false" id="6c94-8267-24-b706" targetId="ce45-cc36-d92e-ef70" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="d977-d102-651e-2c3a" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="MOONCLAN" hidden="false" id="4517-6e9d-9db3-9e84" targetId="76e8-7818-115c-6899" primary="false"/>
<categoryLink name="MUSICIAN (1/20)" hidden="false" id="b393-6ada-4b87-cc52" targetId="21e3-b423-1543-7fad" primary="false"/>
<categoryLink name="STANDARD BEARER (1/20)" hidden="false" id="95fd-4f2d-f3ca-f18a" targetId="4eea-935a-1af-1f4" primary="false"/>
</categoryLinks>
<costs>
<cost name="" id="460c-aaaa-a2da-5cc1" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Moonclan Stabbas" hidden="false" id="32c2-fbcc-235c-1298" defaultAmount="1,1,1,17">
<constraints>
<constraint type="min" value="20" field="selections" scope="parent" shared="true" id="d181-ae31-dde1-dd91"/>
<constraint type="max" value="20" field="selections" scope="parent" shared="true" id="4294-c974-97d3-2ba4"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Stabba" hidden="false" id="4e45-fedd-b586-44d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3a03-656b-bd7-305d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6ae7-988-fc9-6ec5"/>
</constraints>
<profiles>
<profile name="Stabba" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e7c9-2160-669f-9d06">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="20" field="d181-ae31-dde1-dd91">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="8be0-b46d-7d03-f8e2" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="20" field="4294-c974-97d3-2ba4">