generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Ironjawz.cat
997 lines (997 loc) · 63.4 KB
/
Ironjawz.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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="false" id="832c-fd6-a535-ffae" name="Ironjawz" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Ironjawz" hidden="false" id="d8ca-c367-a211-97b3">
<profiles>
<profile name="Ironjawz Waaagh!" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="618e-f241-f5d4-a04b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Ironjawz Hero^^** to be the target. You cannot pick the same **^^Hero^^** to be the target of this ability more than once per battle.’</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, the following effects apply to friendly **^^Ironjawz^^** units while they are wholly within 18" of the target:
• Add 1 to charge rolls for those units.
• Add 1 to the Attacks characteristic of those units’ melee weapons.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Waaagh!^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Mighty Destroyers" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="a85a-85d4-514a-44a3">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Ironjawz^^** unit that was not set up this turn to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target can move up to 3". It can move into combat. If it was in combat at the start of the move, it must end that move in combat.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="8ac4-c6f3-90a2-b82e" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Spell Lores" id="b5b-5dbc-9d3b-d075" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lore of the Weird" hidden="false" id="4936-321c-38e9-4dc" defaultAmount="1">
<profiles>
<profile name="Bash 'Em, Ladz" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="ea0c-5e7-77ba-167d">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Ironjawz Wizard^^** to cast this spell, pick a visible friendly **^^Ironjawz^^** unit wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The target’s melee weapons have **Crit (2 Hits)** for the rest of the turn</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="Da Great Big Green Hand of Gork" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="d612-3e23-847d-c58b">
<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 friendly **^^Ironjawz Wizard^^** to cast this spell, pick a visible friendly unit wholly within 9" of them and not in combat to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Remove the target from the battlefield and set it up again wholly within 24" of the caster and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Mighty 'Eadbutt" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="d016-5f8d-9e32-4df0">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Ironjawz Wizard^^** to cast this spell, pick a visible enemy unit within 18" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Inflict D3 mortal damage on the target. If the target is a **^^Wizard^^**, inflict 3 mortal damage on the target instead.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e7f6-d0b2-b075-7ce4"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4ce5-5b24-b04a-1492" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Artefacts of Power" id="4b1c-ea81-9dc1-de9f" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Da Boss's Hoard" id="e6f7-4835-b77d-4052" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Trophy Skulls" hidden="false" id="bfe4-ee9c-3d28-7a61">
<profiles>
<profile name="Trophy Skulls" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5883-f5fe-1170-3995">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 10 to this unit’s control score.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d0b1-ac70-3f6c-639e" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Armour of Gork" hidden="false" id="9e11-9291-83d3-4c4">
<profiles>
<profile name="Armour of Gork" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="6d30-bd08-16b4-dd13">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit has **^^Ward (6+)^^**.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="c0c0-f616-528f-2bc8" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Amberbone Whetstone" hidden="false" id="f21a-9f82-b790-2bbb">
<profiles>
<profile name="Amberbone Whetstone" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f1a0-d4ca-7c79-caf">
<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">Pick 1 of this unit’s weapons. Add 1 to the Rend characteristic of that weapon for the rest of the battle.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="dc9d-c635-195c-ccf5" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ffdc-af6c-9329-16db"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="bf6d-3ace-c5e0-dc7a" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Ironjawz" id="a329-a5f1-b106-7917" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Weirdfist" hidden="false" id="c2f8-2ea8-7d8b-5670">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dca6-d4ee-fd47-f6bd"/>
</constraints>
<profiles>
<profile name="Spirit of Gork" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ceee-4e37-3ed9-db91">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Friendly **^^Ironjawz Infantry^^** units have **^^Ward (6+)^^** while they are wholly within 12" of any friendly **^^Ironjawz Wizards^^** or **^^Priests^^**.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ironjawz Brawl" hidden="false" id="f065-c325-c819-c441">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="44a4-4af3-d50c-aefb"/>
</constraints>
<profiles>
<profile name="Natural Disaster" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="139f-8795-6ff6-1204">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If you make an unmodified charge roll of 8+ for a friendly non-**^^Hero Ironjawz^^** unit, add 1 to the Attacks characteristic of that unit’s melee weapons for the rest of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Grunta Stampede" hidden="false" id="6c2d-5429-6255-9f2a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bebe-1fe1-4c48-4c5f"/>
</constraints>
<profiles>
<profile name="'Ere We Come" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="55e5-a125-a050-8f2e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add the number of enemy units that have been destroyed this battle to the Move characteristic of friendly **Gore-gruntas** and **^^Maw-grunta^^** units, to a maximum of +4.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ironfist" hidden="false" id="5327-56c8-288a-e5c6">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="65bb-1be0-cf9e-9cd1"/>
</constraints>
<profiles>
<profile name="Smashin' and Bashin'" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f09a-2ca5-3a3c-3cc0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">The first time each turn that an enemy unit is destroyed by a **^^Fight^^** ability used by a friendly **^^Ironjawz^^** unit, add 1 to hit rolls for combat attacks made by the next friendly **^^Ironjawz^^** unit that is picked to use a **^^Fight^^** ability for the rest of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="712d-2f05-88d3-fe9b" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="4455-d9dc-24bf-7d91" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Brutal Warlords" id="5213-e13d-7e64-9f74" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hulking Brute" hidden="false" id="ebbf-ad8f-14de-47d1">
<profiles>
<profile name="Hulking Brute" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="26e9-2561-78fd-e0cd">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll. If this unit’s unmodified charge roll this turn was 8+, roll a D6 instead of a D3.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ea99-18a7-2bf8-a7f0" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Mega Bossy" hidden="false" id="1497-d7a7-91c8-4985">
<profiles>
<profile name="Mega Bossy" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a9bd-4aa3-da30-fa5e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit charged this turn, for the rest of the turn, add 1 to charge rolls for friendly **^^Ironjawz^^** units while they are wholly within 18" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="1d60-3081-d538-d5f0" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="An' Eye for da Fight" hidden="false" id="6c1d-e8c2-645d-f041">
<profiles>
<profile name="An' Eye for da Fight" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1112-2947-e137-99f1">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared the ‘Redeploy’ command for a friendly **^^Ironjawz^^** 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"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="69c3-d463-15b0-a3a0" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2bc-536c-f3b6-3c1f"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="fee1-cbd4-49fc-519d" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Prayer Lores" id="a537-457-99e-8b30" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warbeats" hidden="false" id="36aa-af55-d210-d137" defaultAmount="1">
<profiles>
<profile name="Get 'Em Beat" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="8b84-cf49-aa4c-7814">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">Pick a friendly **^^Ironjawz Priest^^** to chant this prayer, pick a visible friendly **^^Ironjawz^^** unit wholly within 12" of them to be the target, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Until the start of your next turn, add 1 to charge rolls for the target. In addition, if the chanting roll was 8+, add 1 to the number of dice rolled when making charge rolls for the target, to a maximum of 3.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="Killa Beat" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="55b0-9f01-4604-6322">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">Pick a friendly **^^Ironjawz Priest^^** to chant this prayer, pick a visible friendly **^^Ironjawz^^** unit wholly within 12" of them to be the target, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">Add 1 to the Damage characteristic of the target’s melee weapons for the rest of the turn. If the chanting roll was 8+, you can pick up to 2 eligible units to be the targets instead of 1</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**</characteristic>
</characteristics>
</profile>
<profile name="Fixin' Beat" typeId="5946-234-d7b4-6195" typeName="Ability (Prayer)" hidden="false" id="5606-7489-d49f-e84">
<characteristics>
<characteristic name="Timing" typeId="76bf-8126-64d4-c709">Your Hero Phase</characteristic>
<characteristic name="Chanting Value" typeId="f192-6780-8138-9cef">4</characteristic>
<characteristic name="Declare" typeId="284c-90b2-245b-adf3">Pick a friendly **^^Ironjawz Priest^^** to chant this prayer, pick a visible friendly **^^Ironjawz^^** unit wholly within 12" of them to be the target, then make a chanting roll of D6.</characteristic>
<characteristic name="Effect" typeId="6219-6fcc-5ae2-a6b7">**Heal (D6)** the target. If the chanting roll was 8+, **Heal (D3+3)** the target instead.</characteristic>
<characteristic name="Keywords" typeId="e3d8-f58b-e4e0-8e9d">**^^Prayer^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e227-f525-5241-81f6"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="7440-7d28-4f9-a428" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<catalogueLinks>
<catalogueLink type="catalogue" name="Ironjawz - Library" id="a6b-356a-5873-dae5" targetId="8c7-eee2-e358-ba1e"/>
</catalogueLinks>
<entryLinks>
<entryLink import="true" name="Ardboy Big Boss" hidden="false" id="7ed0-b183-d0d4-3567" type="selectionEntry" targetId="e020-20c4-a638-6d2b">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="853f-c80-b583-5cd1"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="77c9-cfa1-fee7-6b25" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3980-4b0-37cb-794b" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="9e01-f4e1-28d8-eae4" field="category"/>
<modifier type="set" value="0" field="853f-c80-b583-5cd1">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="9e01-f4e1-28d8-eae4" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Gordrakk, the Fist of Gork" hidden="false" id="6c7d-b000-ff1f-84c5" type="selectionEntry" targetId="b8a1-7664-687e-c0d9">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="ae28-a536-817f-e219"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="430"/>
</costs>
</entryLink>
<entryLink import="true" name="Kragnos, the End of Empires" hidden="false" id="4286-888b-c4d0-6521" type="selectionEntry" targetId="2a45-46b2-62f9-63cc">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="2ac4-a767-f8ae-5d17"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="580"/>
</costs>
</entryLink>
<entryLink import="true" name="Megaboss" hidden="false" id="e8b4-320f-c4f3-577" type="selectionEntry" targetId="4e07-f63a-6315-b48b">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="efc4-8054-920c-7338"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3e03-33ac-969c-e63d" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="ca9f-d179-15ad-738f" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
</entryLink>
<entryLink import="true" name="Megaboss on Maw-krusha" hidden="false" id="9174-23b8-81c6-de7f" type="selectionEntry" targetId="8400-417c-251b-860a">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="f50b-659c-5d49-7f0e"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3456-334d-5851-3dab" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2be-4681-91b7-567d" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400"/>
</costs>
</entryLink>
<entryLink import="true" name="Tuskboss on Maw-grunta" hidden="false" id="e7d0-8e7c-8936-3e88" type="selectionEntry" targetId="3520-fc6a-d4fc-1c1f">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="ace2-1f7b-496a-f170"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="2f59-97a4-678d-3195" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="d87-d2c5-4756-f21c" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Zoggrok Anvilsmasha" hidden="false" id="e77d-afde-3f50-2316" type="selectionEntry" targetId="d4c-6af5-1346-a8ab">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="11ad-c01b-f0d6-d66e"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Weirdnob Shaman" hidden="false" id="9c83-9563-9a4a-f9df" type="selectionEntry" targetId="e824-4e07-12f6-309c">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9634-48e8-ad54-67ca"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a03-9865-a6fa-b7fc" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="7f93-34ea-54c0-3d2" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Warchanter" hidden="false" id="7e95-4316-8e6d-2cd8" type="selectionEntry" targetId="7d89-20b4-7ed4-6ca0">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="c44d-d8bc-dddb-21a6"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8be2-6cd3-f4c9-503" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="1b13-5c39-bda4-bc62" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</entryLink>
<entryLink import="true" name="Zoggrok Anvilsmasha" hidden="false" id="8627-4cd3-fc78-9e8c" type="selectionEntry" targetId="d4c-6af5-1346-a8ab">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="2394-80c0-2e86-71cc" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Ardboy Big Boss" hidden="false" id="ba04-3602-ef65-10a5" type="selectionEntry" targetId="e020-20c4-a638-6d2b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="cc5a-ed9f-d314-74c" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="f828-12f4-7e59-9e50" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="a906-82d2-e5b6-7fda" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Gordrakk, the Fist of Gork" hidden="false" id="70cd-5229-7b3f-94cb" type="selectionEntry" targetId="b8a1-7664-687e-c0d9">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="ded5-d968-4196-ec3f" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="430"/>
</costs>
</entryLink>
<entryLink import="true" name="Kragnos, the End of Empires" hidden="false" id="6343-e28f-bef2-a199" type="selectionEntry" targetId="2a45-46b2-62f9-63cc">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="9473-ea0b-f26f-389" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="580"/>
</costs>
</entryLink>
<entryLink import="true" name="Megaboss" hidden="false" id="4079-fb73-a4d7-7b0d" type="selectionEntry" targetId="4e07-f63a-6315-b48b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="dce6-6c2c-9d25-a8ea" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="54e3-a743-a427-ecce" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="dc45-940f-4711-ef50" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
</entryLink>
<entryLink import="true" name="Megaboss on Maw-krusha" hidden="false" id="d3e0-6a4-afe6-46f5" type="selectionEntry" targetId="8400-417c-251b-860a">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="8873-d2f1-3bff-b839" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="bf78-a193-b766-f7d8" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="6849-234c-9717-51bb" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400"/>
</costs>
</entryLink>
<entryLink import="true" name="Tuskboss on Maw-grunta" hidden="false" id="9c72-2d1d-778a-27d6" type="selectionEntry" targetId="3520-fc6a-d4fc-1c1f">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="f254-d181-2796-50ec" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="d34b-ad65-efc7-13c8" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="c42b-a2a5-6e6-9a42" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Warchanter" hidden="false" id="3076-d691-5aa5-3d56" type="selectionEntry" targetId="7d89-20b4-7ed4-6ca0">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="f611-2f60-400-b31b" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3394-8aab-b0be-4b2e" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="1247-9c85-e039-2d82" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</entryLink>
<entryLink import="true" name="Weirdnob Shaman" hidden="false" id="da11-fae6-a09f-d32c" type="selectionEntry" targetId="e824-4e07-12f6-309c">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="4ab-2fb-bb9c-3a53" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="ccd2-ff90-dd59-c038" type="selectionEntryGroup" targetId="4455-d9dc-24bf-7d91"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="7c5a-2d9b-c01b-7aff" type="selectionEntryGroup" targetId="4b1c-ea81-9dc1-de9f"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Battle Traits: Ironjawz" hidden="false" id="827-e827-4f40-c1ce" type="selectionEntry" targetId="d8ca-c367-a211-97b3">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="c6d3-9d07-a7d5-7a78" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Ardboyz" hidden="false" id="7355-7efd-73c7-8cd7" type="selectionEntry" targetId="f757-3f6b-a13a-546a">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="7bb1-d81d-6877-f0b7" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ba04-3602-ef65-10a5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Brute Ragerz" hidden="false" id="108c-43b6-997d-a71b" type="selectionEntry" targetId="d77b-a0ba-7d99-28d5">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="4d59-faf-6f72-e837" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ba04-3602-ef65-10a5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Brutes" hidden="false" id="12e-804f-876e-1c7" type="selectionEntry" targetId="f330-c2f2-f018-d93b">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="678-8a55-7ab4-95b6" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ba04-3602-ef65-10a5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</entryLink>
<entryLink import="true" name="Gore-gruntas" hidden="false" id="93db-eaf9-a8a-f813" type="selectionEntry" targetId="f4bd-9f1c-cc46-5b5e">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="470f-5239-de74-1d79" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9c72-2d1d-778a-27d6" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="180"/>
</costs>
</entryLink>
<entryLink import="true" name="Maw-grunta Gougers" hidden="false" id="7a13-c98e-7c9b-55b8" type="selectionEntry" targetId="ce75-dedf-3b6f-9a7c">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9c72-2d1d-778a-27d6" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Maw-grunta with Hakkin' Krew" hidden="false" id="3a6f-33e0-8403-b7bb" type="selectionEntry" targetId="2ccb-7f24-4e64-9431">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9c72-2d1d-778a-27d6" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="270"/>
</costs>
</entryLink>
<entryLink import="true" name="Weirdbrute Wrekkaz" hidden="false" id="2a2b-92f0-4d54-1749" type="selectionEntry" targetId="c08c-f42b-30bb-ccd">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="ef60-e62d-119f-2659" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ba04-3602-ef65-10a5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Ironskull's Boyz" hidden="false" id="3319-d9fe-e5ff-04eb" type="selectionEntry" targetId="fd56-6594-4cd4-c765">
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ba04-3602-ef65-10a5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Morgok's Krushas" hidden="false" id="a30c-ee36-5665-b6c4" type="selectionEntry" targetId="5e0d-b8d1-f5e7-f1df">
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ba04-3602-ef65-10a5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="70cd-5229-7b3f-94cb" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6343-e28f-bef2-a199" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4079-fb73-a4d7-7b0d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="d3e0-6a4-afe6-46f5" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3076-d691-5aa5-3d56" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="da11-fae6-a09f-d32c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8627-4cd3-fc78-9e8c" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
</entryLinks>
<categoryEntries>
<categoryEntry name="Headstompa" id="9e01-f4e1-28d8-eae4" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Formation" hidden="false" id="1218-968b-bd6e-351e" defaultAmount="1">
<entryLinks>
<entryLink import="true" name="Battle Formations: Ironjawz" hidden="false" id="a9f8-aa4d-9eed-316a" type="selectionEntryGroup" targetId="a329-a5f1-b106-7917" collective="false" flatten="true"/>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="443d-bf5f-a5da-6578" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<categoryLinks>
<categoryLink name="Army Composition" hidden="false" id="bdad-5fe9-afd1-6990" targetId="ac97-b27c-7e35-7ab9" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Manifestation Lore" hidden="false" id="94cc-9a4c-e4a2-6da1" defaultAmount="1">
<entryLinks>
<entryLink import="true" name="Manifestation Lores" hidden="false" id="26b8-4347-4108-2a75" type="selectionEntryGroup" targetId="748f-5d65-2d45-95c5" flatten="true"/>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d342-4e62-b1e8-8662"/>
<constraint type="max" value="1" field="selections" scope="self" shared="true" id="effb-eb53-d57e-ced3"/>
</constraints>
<categoryLinks>
<categoryLink name="Army Composition" hidden="false" id="7c15-d3c6-7b79-f777" targetId="ac97-b27c-7e35-7ab9" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Spell Lore" hidden="false" id="6876-59db-5e39-aa8a" defaultAmount="1">
<categoryLinks>
<categoryLink name="Army Composition" hidden="false" id="7448-4ef6-34be-95ab" targetId="ac97-b27c-7e35-7ab9" primary="true"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a769-b268-c244-99ec"/>
<constraint type="max" value="1" field="selections" scope="self" shared="true" id="b897-7370-63a4-26fd"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Spell Lores" hidden="false" id="6bce-6e0-ed32-6b66" type="selectionEntryGroup" targetId="b5b-5dbc-9d3b-d075" flatten="true" collective="false"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Prayer Lore" hidden="false" id="35fa-60e6-258a-561f" defaultAmount="1">
<categoryLinks>
<categoryLink name="Army Composition" hidden="false" id="b56d-3db5-e98f-173d" targetId="ac97-b27c-7e35-7ab9" primary="true"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="cee8-ee98-46fc-32db"/>
<constraint type="max" value="1" field="selections" scope="self" shared="true" id="0172-c6d0-61bb-4e7f"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Prayer Lores" hidden="false" id="7339-e4f5-ee09-bd87" type="selectionEntryGroup" targetId="a537-457-99e-8b30" flatten="true" collective="false"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
</catalogue>