forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDestruction - Orruk Warclans.cat
5647 lines (5633 loc) · 417 KB
/
Destruction - Orruk Warclans.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="5419-b58f-5a39-0bfe" name="Destruction - Orruk Warclans" revision="12" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="7e25-33bb-pubN65537" name="Destruction Battletome: Bonesplitterz"/>
<publication id="7e25-33bb-pubN82863" name="Age of Sigmar: The Rules"/>
<publication id="7e25-33bb-pubN82892" name="Destruction Battletomb: Ironjawz"/>
</publications>
<profileTypes>
<profileType id="5814-7e7f-e83d-1669" name="Ritual Dance">
<characteristicTypes>
<characteristicType id="6add-0606-370e-d20a" name="Result"/>
<characteristicType id="7469-ca16-8e98-299a" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="34cd-e678-fd4f-9f1b" name="D66">
<characteristicTypes>
<characteristicType id="9d7b-b684-7633-86eb" name="Strategem"/>
</characteristicTypes>
</profileType>
<profileType id="5dfb-25e6-9322-983a" name="D6">
<characteristicTypes>
<characteristicType id="2c27-08ec-8a3a-6a3e" name="Monster Hunters Result"/>
</characteristicTypes>
</profileType>
<profileType id="f9d0-9e02-bee9-1f0c" name="Wounds Suffered">
<characteristicTypes>
<characteristicType id="77de-c752-9ffa-f346" name="Move"/>
<characteristicType id="bb09-d22f-2469-d46c" name="Mighty Fists"/>
<characteristicType id="f62d-4c93-271b-b6ec" name="Destructive Bulk"/>
</characteristicTypes>
</profileType>
<profileType id="793b-d7fd-01ea-a61b" name="Wounds Suffered">
<characteristicTypes>
<characteristicType id="af21-cdc8-56f1-d7a0" name="Move"/>
<characteristicType id="1498-3aa2-c8ba-3aa0" name="Boulder Fists"/>
<characteristicType id="8706-d34b-5dcc-3926" name="Stompin' Feet"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="d850-d9b0-684b-9f3a" name="Destruction" hidden="false"/>
<categoryEntry id="f643-013c-7718-007d" name="Orruk" hidden="false"/>
<categoryEntry id="03eb-456f-dd6c-7024" name="Ardboys" hidden="false"/>
<categoryEntry id="fb31-0c98-2d1d-8492" name="MEGABOSS" hidden="false"/>
<categoryEntry id="2246-c381-2650-4ca2" name="Ogor" hidden="false"/>
<categoryEntry id="0c7a-b84c-e897-06b8" name="Beastclaw Raiders" hidden="false"/>
<categoryEntry id="d3b6-2571-40a2-8c15" name="Wurrgog Prophet" hidden="false"/>
<categoryEntry id="02c4-b631-39dd-c932" name="Maniak Weirdnob" hidden="false"/>
<categoryEntry id="2657-35fb-5dd1-22d1" name="Wardokk" hidden="false"/>
<categoryEntry id="9fdf-2d50-6d40-665e" name="Savage Orruks" hidden="false"/>
<categoryEntry id="88c1-684d-58df-c938" name="Savage Boarboys" hidden="false"/>
<categoryEntry id="a584-86fb-2025-dece" name="Savage Big Stabbas" hidden="false"/>
<categoryEntry id="d06e-e1ed-a7e0-1330" name="Savage Orruks Morboys" hidden="false"/>
<categoryEntry id="3b76-a074-088f-f62a" name="Savage Boarboy Maniaks" hidden="false"/>
<categoryEntry id="17bd-1fed-fa72-3040" name="Savage Orruks Arrowboys" hidden="false"/>
<categoryEntry id="c9ee-e3ba-3b83-fe1c" name="Savage Big Boss" hidden="false"/>
<categoryEntry id="688f-a281-d5d0-4f24" name="BONEGRINZ" hidden="false"/>
<categoryEntry id="72b6-9777-df40-1149" name="DRAKKFOOT" hidden="false"/>
<categoryEntry id="de74-0645-34e8-23e4" name="ICEBONE" hidden="false"/>
<categoryEntry id="be9b-3544-31f4-ea71" name="MAW-KRUSHA" hidden="false"/>
<categoryEntry id="3bab-d05c-1db0-0b10" name="Warchanter" hidden="false"/>
<categoryEntry id="7ede-c037-02c4-b83d" name="Weirdnob Shaman" hidden="false"/>
<categoryEntry id="2187-d5fb-d16f-646c" name="Brute" hidden="false"/>
<categoryEntry id="ef1e-4f71-6a42-d189" name="GORDRAKK" hidden="false"/>
<categoryEntry id="043f-174a-6b6a-bbb1" name="Gore Gruntas" hidden="false"/>
<categoryEntry id="94d9-92a8-fced-0685" name="BONESPLITTERZ WIZARD" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="fc4d-9292-0908-041e" name="Allegiance" hidden="false" collective="false" import="true" targetId="9dbb-2d1a-12d8-7faf" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="483a-3f02-291a-884b" name="Orruk Ardboys" hidden="false" collective="false" import="true" targetId="e935-25ea-f690-d33e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ad47-29fe-1799-53ed" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="eba0-179a-d749-6e62" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="60b3-fedc-91d7-fe1e" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b685-28b4-a20e-2e33" name="Savage Big Boss" hidden="false" collective="false" import="true" targetId="5e7e-f978-4c37-4666" type="selectionEntry">
<categoryLinks>
<categoryLink id="b685-28b4-a20e-2e33-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5d75-b7e8-53c0-4217" name="Wardokk" hidden="false" collective="false" import="true" targetId="99a1-6ae4-4f8c-bc69" type="selectionEntry">
<categoryLinks>
<categoryLink id="5d75-b7e8-53c0-4217-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b8fe-45e1-5aa2-3421" name="Warrgog Prophet" hidden="false" collective="false" import="true" targetId="f6fa-7f5f-0836-e986" type="selectionEntry">
<categoryLinks>
<categoryLink id="b8fe-45e1-5aa2-3421-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="22a6-f44f-b7bf-8349" name="Savage Big Stabbas" hidden="false" collective="false" import="true" targetId="e930-136b-3f26-a52c" type="selectionEntry">
<categoryLinks>
<categoryLink id="22a6-f44f-b7bf-8349-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="da10-a615-9731-f32b" name="Battalion: Kop Rukk" hidden="false" collective="false" import="true" targetId="048c-4aec-28ac-8cdf" type="selectionEntry"/>
<entryLink id="18cb-ba5b-82af-515a" name="Battalion: Savage Warclan" hidden="false" collective="false" import="true" targetId="e988-0041-4417-8932" type="selectionEntry">
<categoryLinks>
<categoryLink id="18cb-ba5b-82af-515a-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6c5b-a49b-0709-cf41" name="Battalion: Kunnin' Rukk" hidden="false" collective="false" import="true" targetId="c80e-9ef9-e607-5035" type="selectionEntry"/>
<entryLink id="052f-bb00-274a-1e01" name="Battalion: Snaga Rukk" hidden="false" collective="false" import="true" targetId="0443-ee65-3b72-bdef" type="selectionEntry"/>
<entryLink id="aa94-371b-6a3a-ed5c" name="Battalion: Teef Rukk" hidden="false" collective="false" import="true" targetId="b5c4-0dea-165b-3f21" type="selectionEntry"/>
<entryLink id="a5d0-bb47-562a-1b0d" name="Savage Orruks" hidden="false" collective="false" import="true" targetId="bfed-dba3-ebd5-04b1" type="selectionEntry"/>
<entryLink id="e4d6-8f63-98cb-5370" name="Battalion: Brutal Rukk" hidden="false" collective="false" import="true" targetId="ee34-6e96-2da0-46f0" type="selectionEntry"/>
<entryLink id="ff6a-cc79-0720-59e5" name="Ironskull'z Boyz" hidden="false" collective="false" import="true" targetId="cc40-ece7-eef5-d04b" type="selectionEntry"/>
<entryLink id="f41f-e8cb-586a-5a38" name="Maniak Weirdnob" hidden="false" collective="false" import="true" targetId="2d80-c52b-1ec8-3c5d" type="selectionEntry"/>
<entryLink id="a2f4-5cc3-e501-3018" name="Megaboss on Maw-krusha" hidden="false" collective="false" import="true" targetId="e864-97aa-ce42-06dc" type="selectionEntry"/>
<entryLink id="bb82-f362-2522-22f2" name="Orruk Brutes" hidden="false" collective="false" import="true" targetId="fae2-0eef-eb7f-6638" type="selectionEntry"/>
<entryLink id="7d1b-2b07-147d-b963" name="Orruk Gore-Gruntas" hidden="false" collective="false" import="true" targetId="1461-8d7a-4107-d6b1" type="selectionEntry"/>
<entryLink id="9b5b-8707-1196-e114" name="Orruk Megaboss" hidden="false" collective="false" import="true" targetId="9e6f-9feb-1e38-bb18" type="selectionEntry"/>
<entryLink id="d760-2ac1-01ce-25f8" name="Battalion: Gorefist" hidden="false" collective="false" import="true" targetId="e8d5-b52e-8dd2-f65f" type="selectionEntry"/>
<entryLink id="f9e9-8707-147a-e830" name="Battalion: Brutefist" hidden="false" collective="false" import="true" targetId="4045-bc97-5216-4778" type="selectionEntry"/>
<entryLink id="ab8d-9b0f-fef9-1eea" name="Battalion: Ardfist" hidden="false" collective="false" import="true" targetId="a590-ff2f-f6a7-1e6d" type="selectionEntry"/>
<entryLink id="a754-b05a-a1a4-e7fa" name="Orruk Warchanter" hidden="false" collective="false" import="true" targetId="fd0a-af12-54bd-01f0" type="selectionEntry"/>
<entryLink id="2745-51bf-8816-70ee" name="Orruk Weirdnob Shaman" hidden="false" collective="false" import="true" targetId="ae95-32b7-49ff-83d2" type="selectionEntry"/>
<entryLink id="79ad-7d2a-9a47-61f0" name="Battalion: Ironfist" hidden="false" collective="false" import="true" targetId="f4ca-a78c-6300-4390" type="selectionEntry"/>
<entryLink id="62d8-db84-ff94-8190" name="Savage Boarboys" hidden="false" collective="false" import="true" targetId="00a3-3560-0e7e-4008" type="selectionEntry"/>
<entryLink id="0b49-a356-a327-723d" name="Battalion: Moggorz's Rekrootin' Krew" hidden="false" collective="false" import="true" targetId="d74f-b0fa-fe63-3c8b" type="selectionEntry"/>
<entryLink id="deb2-02b7-3b95-559a" name="Savage Orruk Morboys" hidden="false" collective="false" import="true" targetId="64ec-d3e1-bc29-aa24" type="selectionEntry"/>
<entryLink id="5cb3-f6c6-787b-968e" name="Savage Boarboy Maniaks" hidden="false" collective="false" import="true" targetId="52f0-7837-1600-09b4" type="selectionEntry"/>
<entryLink id="6b0d-f8e7-f32f-2453" name="Gordrakk, the Fist of Gork" hidden="false" collective="false" import="true" targetId="8911-e844-4a80-59f4" type="selectionEntry"/>
<entryLink id="4312-2b73-da85-d1fd" name="Savage Orruks Arrowboys" hidden="false" collective="false" import="true" targetId="c5d3-2af4-16d0-77cf" type="selectionEntry"/>
<entryLink id="65ac-88ea-84b8-ff38" name="Super Battalion: Brawl" hidden="false" collective="false" import="true" targetId="5d3f-0d36-6692-069c" type="selectionEntry"/>
<entryLink id="a2b5-6000-cd5d-5d79" name="Rogue Idol" hidden="false" collective="false" import="true" targetId="2eee-3937-3870-783a" type="selectionEntry"/>
<entryLink id="9e8c-55f6-3205-03f8" name="Orruk Ardboys" hidden="false" collective="false" import="true" targetId="e935-25ea-f690-d33e" type="selectionEntry"/>
<entryLink id="4852-e420-aca8-9c30" name="Battalion: Da Bossfist" hidden="false" collective="false" import="true" targetId="ed5f-cc0f-eb0d-39f4" type="selectionEntry"/>
<entryLink id="689f-db5c-dcf9-400e" name="Battalion: Weirdfist" hidden="false" collective="false" import="true" targetId="2900-8eba-305f-e9c5" type="selectionEntry"/>
<entryLink id="4e55-5520-7ed4-fa5f" name="Super Battalion: Dakkbad's Brawl" hidden="false" collective="false" import="true" targetId="8485-cbbb-d20f-a8cb" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="9dbb-2d1a-12d8-7faf" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d421-381f-d0bc-749c" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9d79-362f-c799-0867" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="b9ba-4522-df42-a309" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d503-3edf-9833-b910" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="ad47-29fe-1799-53ed">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="33cb-28e3-cf3d-7f21" name="Bonesplitterz" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="87f9-38bb-8a13-b1cb" name="Warpaint" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Roll a dice each time you allocate a wound or mortal wound to a model with this battle trait. On a 6, that wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
<profile id="df67-0ed5-0773-32d5" name="Tireless Trackers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After armies are set up, but before the first battle round begins, half the BONESPLITTERZ units in a Bonesplitterz army (rounding up) can move up to 5". If both players can move units before the first battle round begins, they must roll off, and the winner chooses who moves their units first.</characteristic>
</characteristics>
</profile>
<profile id="fcde-76a6-8979-7124" name="Monster Hunters" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If a friendly BONESPLITTERZ unit is within 3" of an enemy MONSTER when it is chosen to fight, before it piles in, you can pick one of the following abilities to apply to it until the end of that phase:
Wild Abandon: That unit can move an extra 3" when it piles in.
Stab! Stab! Stab!: Add 1 to hit rolls for attacks made by that unit that target a MONSTER.
Berserk Strength: If the unmodified wound roll for an attack made by that unit that targets a MONSTER is 6, that attack inflicts 1 mortal wound on the target in addition to any normal damage.</characteristic>
</characteristics>
</profile>
<profile id="382d-47e5-5be2-1e7f" name="Spirit of the Beast" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Do not take battleshock tests for a BONESPLITTERZ unit if any enemy MONSTERS were slain by wounds inflicted by that unit in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="4b21-827b-a372-b198" name="Bonesplitterz Waaagh!" 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 once per battle, at the start of the combat phase, if you have a Bonesplitterz army and your general is on the battlefield. If you do so, roll a dice and add the number of friendly BONESPLITTERZ units wholly within 18" of your general to the roll.
If the roll is up to 11, until the end of that phase add 1 to the Attacks characteristic of melee weapons used by friendly BONESPLITTERZ units wholly within 18" of your general.
If the roll is 12 or more, until the end of that phase add 2 to the Attacks characteristic of melee weapons used by friendly BONESPLITTERZ units wholly within 18" of your general.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="62f3-0a29-7a3f-e8c6" name="Clan" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4dfd-1fcf-e074-82b3" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="18c0-ed54-52bc-0de2" name="Icebone" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="492d-0d83-9ecb-45f7" name="Freeze and Run" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of the combat phase. If you do so, pick 1 friendly ICEBONE BOARBOYS unit that is within 3" of an enemy unit and wholly within 18" of a friendly ICEBONE HERO. That ICEBONE BOARBOYS unit can retreat. In addition, until your next charge phase, subtract 2 from charge rolls for enemy units that were within 3" of that ICEBONE BOARBOYS unit before it retreated.</characteristic>
</characteristics>
</profile>
<profile id="7e48-7db1-48cc-868c" name="Freezing Strike" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the unmodified wound roll for an attack made by an ICEBONE unit is 6, improve the Rend characteristic of that attack by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9e65-9af8-84b8-1148" name="Bonegrinz" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d1f7-bc60-04ac-50ba" name="Bring It On!" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Enemy units within 12" of any friendly BONEGRINZ units at the start of their charge phase must attempt to charge and must make a charge move if it is possible for them to do so. In addition, any enemy unit within 3" of a friendly BONEGRINZ unit cannot retreat.</characteristic>
</characteristics>
</profile>
<profile id="cf86-a360-6dae-6bd2" name="Bonegrinz" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick 1 friendly BONEGRINZ unit wholly within 18" of a friendly BONEGRINZ SAVAGE BIG BOSS. Until the end of that phase, if the unmodified hit roll for an attack made by that unit is 6, that attack scores 2 hits on the target instead of 1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="115b-bd71-6506-80ec" name="Drakkfoot" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bc2d-2593-58fc-f1ec" name="Shout Down da Magic!" 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 after an enemy WIZARD casts a spell. If you do so, pick 1 friendly DRAKKFOOT unit with 10 or more models that is wholly within 18" of a friendly DRAKKFOOT WURRGOG PROPHET or DRAKKFOOT WARRDOKK. That unit can attempt to unbind that spell (no other units can attempt to unbind that spell). Add 1 to the unbinding roll if that unit has 20 or more models.</characteristic>
</characteristics>
</profile>
<profile id="4481-3b2c-3880-eaba" name="Strength of Purpose" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">The Ethereal ability has no effect on attacks made by a DRAKKFOOT unit. In addition, any ability that negates wounds has no effect on wounds inflicted by a DRAKKFOOT unit</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3c55-3eee-a90a-ac07" name="*Destruction*" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="523a-2f27-f750-bf4e" name="Rampaging Destroyers" hidden="false" targetId="4571-8f36-98ca-2d16" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="ada8-7960-370e-a3aa" name="Firestorm: Stoneklaw's Gutstompas" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="70e0-5748-6c3d-6cb8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7832-62a6-10aa-a83b" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="dbe2-c49f-2af0-bf6d" name="Stoneklaw's Gutstompas" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7b7c-cb30-6491-c096" name="Insane Advice" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After setting up, but before the first battle round begins, make two D66 rolls to determine the advice given to Stoneklaw by his pair of severed heads. You must pick one of the rolls, which is the advice that is followed. The advice allows you to use a stratagem without having to spend strategy points in order to do so, and it also allows you to use the stratagem in a non-campaign game where strategy points are not being used.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="8179-8ecf-f9a2-dca9" name="Insane Advice Table" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a01f-2a2c-846a-48ba" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3d0-9073-c005-b1dd" type="min"/>
</constraints>
<profiles>
<profile id="6855-842f-5f59-64f1" name="11-13" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Choose a result.</characteristic>
</characteristics>
</profile>
<profile id="df90-f716-1322-b9a3" name="61-63" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Regicide</characteristic>
</characteristics>
</profile>
<profile id="b461-bae5-971b-d43e" name="54-56" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Redeploy</characteristic>
</characteristics>
</profile>
<profile id="4f33-ceb1-4630-2de4" name="51-53" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Pre-emptive Attack</characteristic>
</characteristics>
</profile>
<profile id="6883-2ce1-56fc-0aeb" name="44-46" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Night Attack</characteristic>
</characteristics>
</profile>
<profile id="cdc9-9ce2-33af-5f57" name="41-43" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Inspiring Speech</characteristic>
</characteristics>
</profile>
<profile id="ae02-af45-bcfc-cd1d" name="34-36" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Hatred</characteristic>
</characteristics>
</profile>
<profile id="3514-5525-4002-c1d9" name="31-33" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Forced March</characteristic>
</characteristics>
</profile>
<profile id="caa6-fa57-e273-9fac" name="24-26" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Firestarter</characteristic>
</characteristics>
</profile>
<profile id="2363-1993-3647-a138" name="14-16" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Ambush</characteristic>
</characteristics>
</profile>
<profile id="5039-c9e0-1614-dc99" name="21-23" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Feigned Retreat</characteristic>
</characteristics>
</profile>
<profile id="ed70-589c-0e3d-51ea" name="64-66" hidden="false" typeId="34cd-e678-fd4f-9f1b" typeName="D66">
<characteristics>
<characteristic name="Strategem" typeId="9d7b-b684-7633-86eb">Reinforcements</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eba0-179a-d749-6e62" name="Ironjawz" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="03aa-c0d4-03bf-d5dc" name="Eager for Battle" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to charge rolls for friendly IRONJAWZ units.</characteristic>
</characteristics>
</profile>
<profile id="e1db-094e-ce3d-b9d3" name="Mad As Hell" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of any phase, if any wounds or mortal wounds have been inflicted in that phase on an IRONJAWZ unit thatis more than 9" from any enemy units, that IRONJAWZ unit can move D6".</characteristic>
</characteristics>
</profile>
<profile id="b927-576c-a2b4-7ed4" name="Smashing and Bashing" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">In the combat phase, after a friendly IRONJAWZ unit has fought, if the attacks made by that unit resulted in any enemy units being destroyed, you can pick 1 friendly IRONJAWZ unit that has not yet fought in that combat phase and that is within 3" of an enemy unit. That unit fights immediately, before the opposing player picks a unit to fight in that combat phase. That unit cannot fight again in that combat phase unless an ability or spell allows it to fight more than once.</characteristic>
</characteristics>
</profile>
<profile id="80eb-d2a4-0eed-a84e" name="Mighty Destroyer" 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 friendly IRONJAWZ unit wholly within 12" of a friendly IRONJAWZ HERO or wholly within 18" of a friendly IRONJAWZ HERO that is a general. That unit must make a normal move if it is more than 12" from any enemy units, must fight if it is within 3" of any enemy units, and must attempt to charge in any other circumstances. You cannot pick the same unit to benefit from this command ability more than once per hero phase.</characteristic>
</characteristics>
</profile>
<profile id="ad3f-10d9-a68c-3925" name="Ironjawz Waaagh!" 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 once per battle, at the start of the combat phase, if you have an Ironjawz army and your general is a MEGABOSS and on the battlefield. If you do so, roll a dice and add the number of friendly IRONJAWZ units wholly within 18" of your general to the roll.
If the roll is up to 11, until the end of that phase add 1 to the Attacks characteristic of melee weapons used by friendly IRONJAWZ units wholly within 18" of your general.
If the roll is 12 or more, until the end of that phase add 2 to the Attacks characteristic of melee weapons used by friendly IRONJAWZ units wholly within 18" of your general.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="0f86-0cfe-e147-f955" name="Clan" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="cb41-eb62-87d4-dbca" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="eef6-4cd5-66a5-a5fb" name="Ironsunz" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="785f-48fa-b0bb-47f0" name="Alright – Get ’Em!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of the enemy charge phase. If you do so, pick 1 friendly IRONSUNZ unit that is within 12" of an enemy unit, wholly within 18" of a friendly IRONSUNZ HERO, and more than 3" from any enemy models. That unit can attempt to charge.</characteristic>
</characteristics>
</profile>
<profile id="f64b-4365-a3b7-6fb3" name="Ironsunz Kunnin'" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Subtract 1 from hit rolls for attacks made by enemy units that target an IRONSUNZ unit in the first battle round.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="be7c-ed66-5895-6473" name="Bloodtoofs" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="fbfe-c0c4-a52a-0f02" name="Hunt and Crush" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to run and charge rolls for BLOODTOOF units (the charge roll modifier is in addition to the Eager for Battle modifier).</characteristic>
</characteristics>
</profile>
<profile id="7dcd-0a0f-4e9c-09ea" name="Break Through Da Line" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of your combat phase. If you do so, pick 1 friendly BLOODTOOF unit that fought in that combat phase and that is wholly within 24" of a friendly BLOODTOOF HERO. That unit can make a normal move, but cannot run or retreat</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="106b-3df1-006f-1b47" name="Da Choppas" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c81a-6f25-fddd-7a70" name="Vandal Hordes" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll charge rolls for CHOPPAS units that are within 12" of a terrain feature that is fully or partially in enemy territory.</characteristic>
</characteristics>
</profile>
<profile id="fd47-1a4d-f209-b6b2" name="Da Choppas" 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 when you use a friendly CHOPPAS WARCHANTER’S Violent Fury ability. If you do so, you can pick up to 3 different friendly CHOPPAS BRUTES units and/or CHOPPAS ARDBOYS units to be affected by the ability instead of 1 friendly IRONJAWZ unit</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ad47-29fe-1799-53ed" name="Big Waaagh!" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="13da-4a79-33f7-ebb2" name="Waaagh! Magic" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If you have a Big Waaagh! army with at least 6 Waaagh! points, before making any casting, dispelling or unbinding rolls for a friendly WIZARD, you can say that they will draw on the power of the Waaagh! If you do so, you can reduce your army’s Waaagh! points by D3 points and add 1 to that casting, dispelling or unbind roll, or by D6 points and add 2 to that casting, dispelling or unbind roll.
You cannot use this battle trait more than once for the same WIZARD in the same phase.</characteristic>
</characteristics>
</profile>
<profile id="8481-268b-3951-70bc" name="’Ere We Go, ’Ere We Go, ’Ere We Go!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your hero phase. If you do so, choose 1 friendly ORRUK HERO. You receive 1 Waaagh! point for every 10 ORRUK models that are within 12" of that ORRUK HERO, or within 18" of that ORRUK HERO if they are a general or a WARCHANTER. You cannot use this command ability more than once in the same phase.</characteristic>
</characteristics>
</profile>
<profile id="cd20-7671-7875-8058" name="Da Big Waaagh!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase if you have a Big Waaagh! army with at least 24 Waaagh! points and your general is on the battlefield. If you do so, add 1 to the Attacks characteristic of melee weapons used by friendly ORRUK units until the end of that phase. You cannot use this command ability more than once per phase.
At the end of any phase in which you use this command ability, you must roll a dice. On a 1, reduce the Waaagh! points for your army to 0. On a 2-5, halve the Waaagh! points for your army (rounding down). On a 6, nothing happens.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee34-6e96-2da0-46f0" name="Battalion: Brutal Rukk" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c55-3eee-a90a-ac07" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33cb-28e3-cf3d-7f21" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad47-29fe-1799-53ed" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="d5e4-436d-abfe-ac14" name="Savage Swiftness" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Units from this battalion that are wholly within 12" of the same battalion’s Big Boss at the start of the charge phase can run and still charge later in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="de39-8cf5-9899-2fbb" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3e51-af21-c2d1-3653" name="2. Orruks and Boarboys (2 to 5)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e408-ac71-819d-0e37" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="148a-8c23-9111-d1eb" type="max"/>
</constraints>
<entryLinks>
<entryLink id="05b8-08e3-3ac2-8e2a" name="Savage Boarboys" hidden="false" collective="false" import="true" targetId="00a3-3560-0e7e-4008" type="selectionEntry">
<categoryLinks>
<categoryLink id="de90-ee72-60fb-7de8" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c49d-3716-f609-ef25" name="Savage Orruks" hidden="false" collective="false" import="true" targetId="bfed-dba3-ebd5-04b1" type="selectionEntry">
<categoryLinks>
<categoryLink id="21df-c84d-dfee-9d17" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5e0f-0733-d38a-c1ae" name="1. Savage Big Boss" hidden="false" collective="false" import="true" defaultSelectionEntryId="1e85-0352-f59e-44f5">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1811-4330-978a-018d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d7bf-f587-b4eb-9ee8" type="min"/>
</constraints>
<entryLinks>
<entryLink id="1e85-0352-f59e-44f5" name="Savage Big Boss" hidden="false" collective="false" import="true" targetId="5e7e-f978-4c37-4666" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9178-a3aa-ecbe-2de5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08bd-0a2d-cf29-a1fd" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="048c-4aec-28ac-8cdf" name="Battalion: Kop Rukk" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c55-3eee-a90a-ac07" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33cb-28e3-cf3d-7f21" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad47-29fe-1799-53ed" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="b811-922b-352e-a4c1" name="Savage Waaagh! Energy" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase, you can pick 1 WARDOKK from this battalion that is wholly within 18" of 2 or more units from the same battalion that each have 10 or more models. That WARDOKK can attempt to cast the Fists of Gork spell from the Wurrgog Prophet warscroll in that phase, in addition to any other spells it can cast.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3e2b-0f91-09c8-4fc2" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="72f7-a425-cbe9-0265" name="1. Wardokks (2 to 5)" hidden="false" collective="false" import="true" defaultSelectionEntryId="5284-940c-368a-d9f8">
<entryLinks>
<entryLink id="5284-940c-368a-d9f8" name="Wardokk" hidden="false" collective="false" import="true" targetId="99a1-6ae4-4f8c-bc69" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fab6-cd91-74af-0123" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7249-6635-3f2a-613b" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ab6c-f44a-c9e6-026c" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="04c4-0973-795b-5cec" name="2. Savage Orruk Morboys (2 to 5)" hidden="false" collective="false" import="true" defaultSelectionEntryId="b59a-4fc4-9425-12eb">
<entryLinks>
<entryLink id="b59a-4fc4-9425-12eb" name="Savage Orruk Morboys" hidden="false" collective="false" import="true" targetId="64ec-d3e1-bc29-aa24" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2a4-31d9-db83-04b6" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a70-6054-b7b6-f6e8" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="1043-0960-b1da-4e71" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c80e-9ef9-e607-5035" name="Battalion: Kunnin' Rukk" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c55-3eee-a90a-ac07" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33cb-28e3-cf3d-7f21" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad47-29fe-1799-53ed" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="1e35-e881-553a-5e38" name="Dead Sneaky" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In your hero phase, pick 1 unit from this battalion that is wholly within 12" of the SAVAGE BIG BOSS from the same battalion. That unit can make a normal move or shoot. Units from this battalion cannot have more than 20 models.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c89c-f2d5-c36d-3b47" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="04a0-a83d-59f2-0ec0" name="1. Savage Big Boss" hidden="false" collective="false" import="true" defaultSelectionEntryId="8707-44f6-17cb-3e4b">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e0e-0356-3ab4-f382" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b5a-3d0d-3ad5-425b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8707-44f6-17cb-3e4b" name="Savage Big Boss" hidden="false" collective="false" import="true" targetId="5e7e-f978-4c37-4666" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c810-4860-129c-fa99" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="adcf-2a87-1f10-6baf" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7e4b-e736-cfd9-b042" name="2. Savages & Arrowboys (2 to 5)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e3c3-3fa8-4211-5aa6" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a42-ee7c-106a-052c" type="min"/>
</constraints>
<entryLinks>
<entryLink id="b0e7-1ce2-a826-bfe7" name="Savage Orruks" hidden="false" collective="false" import="true" targetId="bfed-dba3-ebd5-04b1" type="selectionEntry">
<categoryLinks>
<categoryLink id="f4ff-33e2-65e6-9e2e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3389-d4e8-0826-7bb7" name="Savage Orruks Arrowboys" hidden="false" collective="false" import="true" targetId="c5d3-2af4-16d0-77cf" type="selectionEntry">
<categoryLinks>
<categoryLink id="ff76-3ca8-9e14-3c1b" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e988-0041-4417-8932" name="Super Battalion: Big Rukk" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c55-3eee-a90a-ac07" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33cb-28e3-cf3d-7f21" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad47-29fe-1799-53ed" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="35c5-9632-18c3-bae9" name="Big Rukk Warpaint" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">When you use the Warpaint battle trait for a unit from this battalion, you can re-roll the dice that determines if a wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="698f-f810-312a-b29d" name="2. 3-5 battalions in any combination of the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4f12-7250-15c4-7319" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5d37-2860-7231-792f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fe42-9e9b-886a-9b27" name="Battalion: Brutal Rukk" hidden="false" collective="false" import="true" targetId="ee34-6e96-2da0-46f0" type="selectionEntry"/>
<entryLink id="25ef-99b0-b9b8-93b9" name="Battalion: Kop Rukk" hidden="false" collective="false" import="true" targetId="048c-4aec-28ac-8cdf" type="selectionEntry"/>
<entryLink id="c31b-26b8-83fe-0c7e" name="Battalion: Kunnin' Rukk" hidden="false" collective="false" import="true" targetId="c80e-9ef9-e607-5035" type="selectionEntry"/>
<entryLink id="ea0f-2070-588b-77c8" name="Battalion: Snaga Rukk" hidden="false" collective="false" import="true" targetId="0443-ee65-3b72-bdef" type="selectionEntry"/>
<entryLink id="8b73-a24e-91e7-ff3f" name="Battalion: Teef Rukk" hidden="false" collective="false" import="true" targetId="b5c4-0dea-165b-3f21" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="55c3-9317-6578-a1a9" name="1. Wurrog Prophet" hidden="false" collective="false" import="true" defaultSelectionEntryId="5ac3-f1fa-6d6f-dada">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e2d1-29b1-accb-e5ec" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="801b-6648-69a4-7407" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5ac3-f1fa-6d6f-dada" name="Wurrgog Prophet" hidden="false" collective="false" import="true" targetId="f6fa-7f5f-0836-e986" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0443-ee65-3b72-bdef" name="Battalion: Snaga Rukk" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c55-3eee-a90a-ac07" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33cb-28e3-cf3d-7f21" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad47-29fe-1799-53ed" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="36a6-e7d0-cf8b-a201" name="Maniak Stampede" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll charge rolls for units from this battalion while they are wholly within 12" of the MANIAK WEIRDNOB from the same battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6a3b-b940-79eb-0c1a" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="992a-c19e-accd-d6b4" name="1. Maniak Weirdnob" hidden="false" collective="false" import="true" defaultSelectionEntryId="ab0a-bce0-d808-4452">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97ce-469f-5aa5-6fa6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f949-6018-716e-d542" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ab0a-bce0-d808-4452" name="Maniak Weirdnob" hidden="false" collective="false" import="true" targetId="2d80-c52b-1ec8-3c5d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b775-f54a-1bdf-d756" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="80f2-b7c6-ef27-a461" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="3d11-1c7d-3bc2-6e8f" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6246-ddf8-076f-5516" name="2. Savage Boarboy Maniaks (2 to 10)" hidden="false" collective="false" import="true" defaultSelectionEntryId="a06a-3f35-356e-45a6">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3686-9ccc-d965-cea5" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae4c-f81b-f69b-130e" type="min"/>
</constraints>
<entryLinks>
<entryLink id="a06a-3f35-356e-45a6" name="Savage Boarboy Maniaks" hidden="false" collective="false" import="true" targetId="52f0-7837-1600-09b4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b3bd-3df2-e148-c791" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f665-8211-bffd-b111" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5eba-b02f-51ee-6bd3" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b5c4-0dea-165b-3f21" name="Battalion: Teef Rukk" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c55-3eee-a90a-ac07" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="33cb-28e3-cf3d-7f21" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad47-29fe-1799-53ed" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="0f2f-ba25-ddde-28d8" name="We're Da Best!" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Attacks characteristic of melee weapons used by units from this battalion while they are wholly within 12" of the SAVAGE BIG BOSS from the same battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6714-5d64-5ba8-b9f2" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f9d9-a47f-b62c-bdb8" name="2. 2-5 Savage Big Stabbas" hidden="false" collective="false" import="true" defaultSelectionEntryId="5514-a6d3-8478-a72f">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d84-6f6e-52aa-ecb3" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa91-3be9-ffd2-618f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5514-a6d3-8478-a72f" name="Savage Big Stabbas" hidden="false" collective="false" import="true" targetId="e930-136b-3f26-a52c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d555-2e5f-d143-6663" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e123-c0c6-a4db-fd23" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="0b46-86e3-8982-20f1" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8cf0-bae0-ccd9-5a97" name="1. Savage Big Boss" hidden="false" collective="false" import="true" defaultSelectionEntryId="bfe8-650c-bf5f-22e7">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4203-84b9-653a-5efd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd24-5b7f-164f-734e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bfe8-650c-bf5f-22e7" name="Savage Big Boss" hidden="false" collective="false" import="true" targetId="5e7e-f978-4c37-4666" type="selectionEntry">
<categoryLinks>
<categoryLink id="2003-5db5-a420-9c98" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2d80-c52b-1ec8-3c5d" name="Maniak Weirdnob" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eba0-179a-d749-6e62" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="c76f-fe1c-85f6-909e" name="Maniak Weirdnob" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="8058-7533-6850-28e8" name="Tusker Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls and wound rolls for attacks made with this unit’s Tusks and Hooves if this unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="a3e8-5f07-b9d0-d828" name="Ju-ju Squig" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per turn, you can re-roll a casting, dispelling or unbinding roll for this model.</characteristic>
</characteristics>
</profile>
<profile id="5c2d-f49e-c343-cc73" name="Maniak Weirdnob" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Bone Spirit</characteristic>
</characteristics>
</profile>
<profile id="2dcb-fc6d-64b3-a2dd" name="Bone Spirit" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If this spell is successfully cast, you can pick 1 friendly BONESPLITTERZ unit wholly within 12" of the caster and visible to them. Until your next hero phase, if the unmodified hit roll for an attack made by that unit is 6, that attack scores 2 hits on the target instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a491-01fa-17fc-dc7f" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
<infoLink id="858f-8b0a-fd36-9f87" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="115b-bd71-6506-80ec" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink id="fd38-9674-ac69-00ad" name="Fireball" hidden="true" targetId="b40c-04ea-2ffb-0c01" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="115b-bd71-6506-80ec" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="8430-7a2a-6b3c-508f" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="c75b-fe69-e20b-f0ca" name="New CategoryLink" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="c7e7-dc21-6617-744a" name="New CategoryLink" hidden="false" targetId="f643-013c-7718-007d" primary="false"/>
<categoryLink id="8d63-6e80-b011-39a9" name="New CategoryLink" hidden="false" targetId="9db3-55f3-706c-01bd" primary="false"/>
<categoryLink id="cf17-bb3d-999c-6cf5" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="e739-a9d0-6011-74d0" name="New CategoryLink" hidden="false" targetId="02c4-b631-39dd-c932" primary="false"/>
<categoryLink id="43a3-e222-b944-6b47" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2338-02d8-feb0-940c" name="BONESPLITTERZ WIZARD" hidden="false" targetId="94d9-92a8-fced-0685" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0e36-4d67-0203-b4fa" name="Bonebeast Staff" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="317b-a538-387c-1f09" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="360a-b8a1-0bd9-8009" type="max"/>
</constraints>
<profiles>
<profile id="6da7-3368-d698-2bc2" name="Bonebeast Staff" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f671-9205-7f2c-6401" name="Tusks and Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb8b-5f7d-36cf-10cb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0c9-9a5e-3b6c-efb5" type="max"/>
</constraints>
<profiles>
<profile id="4f87-3c81-a0d1-ac83" name="Tusks and Hooves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="928f-0f74-83d3-dcb1" name="General" hidden="false" collective="false" import="true" targetId="2782-06bf-a7cc-86b6" type="selectionEntry"/>
<entryLink id="ba93-4e50-5d48-3558" name="Artefacts" hidden="false" collective="false" import="true" targetId="281b-c7b4-5e59-c155" type="selectionEntryGroup"/>
<entryLink id="4d23-cb31-2767-9b3c" name="Command Traits" hidden="false" collective="false" import="true" targetId="7919-8973-c0b9-afc5" type="selectionEntryGroup"/>
<entryLink id="2329-c6f8-3b26-1426" name="Spell Lores" hidden="false" collective="false" import="true" targetId="e29e-75bb-6308-1c51" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5e7e-f978-4c37-4666" name="Savage Big Boss" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eba0-179a-d749-6e62" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>