forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Dispossessed.cat
2088 lines (2088 loc) · 149 KB
/
Order - Dispossessed.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="9aab-52b0-df34-4f7d" name="Order - Dispossessed" revision="20" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="64" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="9aab-52b0-pubN65537" name="Grand Alliance: Order"/>
<publication id="9aab-52b0-pubN70145" name="Grand Alliance: Order Errata, June 2018"/>
<publication id="9aab-52b0-pubN72613" name="Order Official FAQs and errata, Version 1.4"/>
</publications>
<categoryEntries>
<categoryEntry id="945b-2f5e-58f0-75e2" name="DUARDIN" hidden="false"/>
<categoryEntry id="1907-88f7-307b-fbf9" name="WARDEN KING" hidden="false"/>
<categoryEntry id="e2be-e25c-7bf3-90ad" name="UNFORGED" hidden="false"/>
<categoryEntry id="0cb1-8b30-c44d-2b7a" name="RUNELORD" hidden="false"/>
<categoryEntry id="7080-b504-bdf6-0f72" name="WARRIORS" hidden="false"/>
<categoryEntry id="569e-49af-a5ad-b0ca" name="THUNDERERS" hidden="false"/>
<categoryEntry id="8cf1-ff66-cadb-51eb" name="QUARRELLERS" hidden="false"/>
<categoryEntry id="8e87-284f-3210-b8d7" name="LONGBEARDS" hidden="false"/>
<categoryEntry id="e81b-95b7-4866-db4b" name="HAMMERERS" hidden="false"/>
<categoryEntry id="04b0-28bd-0eac-d481" name="IRONDRAKES" hidden="false"/>
<categoryEntry id="e5be-882b-f509-c6e9" name="IRONBREAKERS" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="7332-f387-438b-852c" name="Allegiance" hidden="false" collective="false" import="true" targetId="3664-5ddc-2926-0fa2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5a85-239e-8b35-3a74" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f3c5-e8de-f359-f60b" name="Warriors" hidden="false" collective="false" import="true" targetId="d37d-9460-288e-8d0f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9c66-6d81-684f-fb45" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="910b-cfba-f5da-a0fa" name="Longbeards" hidden="false" collective="false" import="true" targetId="5875-6808-8640-6a7c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f302-f848-4c36-dd55" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4675-f773-df65-5eb9" name="Runelord" hidden="false" collective="false" import="true" targetId="af53-09f6-7f6a-5a4e" type="selectionEntry">
<categoryLinks>
<categoryLink id="4675-f773-df65-5eb9-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="95a9-5e69-652b-fb3c" name="Unforged" hidden="false" collective="false" import="true" targetId="f79a-e9a6-72d7-3c50" type="selectionEntry">
<categoryLinks>
<categoryLink id="95a9-5e69-652b-fb3c-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4572-8e4e-76f4-2c41" name="Warden King" hidden="false" collective="false" import="true" targetId="a6e1-a551-8e48-3a4f" type="selectionEntry">
<categoryLinks>
<categoryLink id="4572-8e4e-76f4-2c41-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b2c-1f8d-2626-1659" name="Hammerers" hidden="false" collective="false" import="true" targetId="e495-584f-7f83-fddd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="93f9-6eb2-a22a-057a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3b2c-1f8d-2626-1659-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7758-abcd-d076-8df1" name="Ironbreakers" hidden="false" collective="false" import="true" targetId="a182-1bde-3bfc-39c1" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="93f9-6eb2-a22a-057a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7758-abcd-d076-8df1-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="039a-3605-127b-358c" name="Irondrakes" hidden="false" collective="false" import="true" targetId="5a93-6cd1-a1ae-4d4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="039a-3605-127b-358c-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fdbd-2fea-4f96-3709" name="Quarrellers" hidden="false" collective="false" import="true" targetId="30e5-318c-9a9e-2578" type="selectionEntry">
<categoryLinks>
<categoryLink id="fdbd-2fea-4f96-3709-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c80e-afe9-0179-7604" name="Thunderers" hidden="false" collective="false" import="true" targetId="68c2-7d4b-1706-a009" type="selectionEntry">
<categoryLinks>
<categoryLink id="c80e-afe9-0179-7604-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a947-3c8c-0976-d385" name="Battalion: Grudgebound War Throng" hidden="false" collective="false" import="true" targetId="9cb2-64de-f65a-dcc0" type="selectionEntry">
<categoryLinks>
<categoryLink id="a947-3c8c-0976-d385-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6b05-93db-a7c0-339e" name="Hammerers" hidden="false" collective="false" import="true" targetId="e495-584f-7f83-fddd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="93f9-6eb2-a22a-057a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="54c1-1f02-270c-b07c" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="eda7-1176-6e49-49fc" name="Longbeards" hidden="false" collective="false" import="true" targetId="5875-6808-8640-6a7c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3ca2-a783-7444-d719" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fc56-db49-8022-658f" name="Warriors" hidden="false" collective="false" import="true" targetId="d37d-9460-288e-8d0f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2784-4e5e-84f0-cb85" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2693-8a3d-8125-ed72" name="Ironbreakers" hidden="false" collective="false" import="true" targetId="a182-1bde-3bfc-39c1" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="93f9-6eb2-a22a-057a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2842-8504-48e0-e3d0" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="3664-5ddc-2926-0fa2" name="Allegiance" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="minInForce" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="c054-2350-5f5d-85b4" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="93f9-6eb2-a22a-057a">
<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="d51d-dec8-f7a7-351d" name="Allegiance: Order" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f6bb-9b06-85bf-e4ce" name="Defiant Avengers" 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 battleshock tests for friendly ORDER units in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="93f9-6eb2-a22a-057a" name="Allegiance: Dispossessed" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6f36-cbb4-4674-c618" name="Stubborn to the End" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the unmodified roll for a battleshock test for a friendly DISPOSSESSED unit is 1, 2 or 3, that unit is treated as having passed the battleshock test irrespective of any modifiers to the battleshock test or their Bravery characteristic.</characteristic>
</characteristics>
</profile>
<profile id="40a8-bd41-92e3-ad56" name="Grudgebound" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After set-up is complete, but before the battle begins, choose or roll for a grudge from the table. The rules for that grudge apply to all friendly DISPOSSESSED units for the duration of the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="75c1-e1ac-6e03-63bb" name="Grudge" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a6e5-f84e-5e41-6460" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="636e-2e2b-d2fa-8602" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="c0b9-acbf-3b71-015f" name="1. Stuck-up" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f0f8-ff89-fb6a-adf7" name="Stuck-up" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for attacks made by friendly DISPOSSESSED units that target a HERO .</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4798-7e5c-e61d-b4be" name="2. Speed Merchants" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7036-0f26-dbdd-d519" name="Speed Merchants" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for attacks made by friendly DISPOSSESSED units that target a unit with a Move characteristic of 10" or more.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="66e5-352e-1ba1-6b15" name="3. Monstrous Cheaters" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a11d-3c90-a367-22e0" name="Monstrous Cheaters" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for attacks made by friendly DISPOSSESSED units that target a MONSTER.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="31e9-a5b2-ce85-ebbe" name="4. Cowardly Hordes" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="19cd-c6b7-fede-fffb" name="Cowardly Hordes" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for attacks made by friendly DISPOSSESSED units that target an enemy unit that had 20 or more models when it was first set up.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5d20-d1b9-6285-50f1" name="5. Shoddy Craftsmanship" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="50b7-378d-64e2-b819" name="Shoddy Craftsmanship" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for attacks made by friendly DISPOSSESSED units that target a unit that has a Save characteristic of 2+, 3+, or 4+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="93f7-f32d-ff38-dd3d" name="6. Sneak Ambushers" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6b4c-cc20-cf6e-2ada" name="Sneak Ambushers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit rolls of 1 for attacks made by friendly DISPOSSESSED units that target a unit this is in cover, or that started the battle as a reserve 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>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9cb2-64de-f65a-dcc0" name="Battalion: Grudgebound War Throng" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9fd2-db4e-1627-7ba9" name="Ancient Grudges" 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 all hit rolls of 1 for models in a Grudgebound War Throng.</characteristic>
</characteristics>
</profile>
<profile id="6a92-93d1-a9b5-b38c" name="Stubborn to the End" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If you roll a 1, 2 or 3 when taking a battleshock test for a unit in a Grudgebound War Throng, that unit stubbornly refuses to yield and is treated as having passed the battleshock test irrespective of any penalties on their Bravery or the number of casualties they have suffered that turn.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="cabc-3058-420e-cb44" name="3 Irondrakes, Ironbreakers or Hammerers" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="464d-fb3b-127c-d118" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c1c6-e961-eab1-1ed7" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3fb4-f728-d728-8bc7" name="Hammerers" hidden="false" collective="false" import="true" targetId="e495-584f-7f83-fddd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="93f9-6eb2-a22a-057a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="dde6-ea53-264a-7280" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2266-531e-0c5b-7b38" name="Hammerers" hidden="false" collective="false" import="true" targetId="e495-584f-7f83-fddd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="93f9-6eb2-a22a-057a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="510f-b36a-5ff7-f074" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="13ef-3448-e8fb-2b3b" name="Ironbreakers" hidden="false" collective="false" import="true" targetId="a182-1bde-3bfc-39c1" type="selectionEntry">
<categoryLinks>
<categoryLink id="26a7-e053-06ed-e6c2" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a879-5a26-4b98-6194" name="Irondrakes" hidden="false" collective="false" import="true" targetId="5a93-6cd1-a1ae-4d4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="1ced-bb58-c017-c76f" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="cf1a-d8d6-af33-a3c8" name="1 Runelord" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4af5-de9a-1ccc-057c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="71e5-bda1-389a-80a9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8755-9552-9fe4-988d" name="Runelord" hidden="false" collective="false" import="true" targetId="af53-09f6-7f6a-5a4e" type="selectionEntry">
<categoryLinks>
<categoryLink id="9674-4bd3-bf2c-1078" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="1f00-4932-0795-b523" name="1 Unforged" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db17-7e1b-751f-e6a1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ee7-ea40-67dd-539d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e3c7-fef1-7cb0-4077" name="Unforged" hidden="false" collective="false" import="true" targetId="f79a-e9a6-72d7-3c50" type="selectionEntry">
<categoryLinks>
<categoryLink id="de55-e9dc-9e72-7465" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a992-d8ce-48c0-9470" name="Warden King" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb2c-13c9-0e6d-ac15" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a628-b531-20cb-c5ba" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3472-4a5a-5f32-6663" name="Warden King" hidden="false" collective="false" import="true" targetId="a6e1-a551-8e48-3a4f" type="selectionEntry">
<categoryLinks>
<categoryLink id="84a9-9faf-814d-283f" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="d2ca-ed31-2f46-7b2e" name="4 Warriors, Thunderers, Quarrellers or Longbeards" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57f0-e8a2-5aed-3162" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9d7-7c20-4912-24f3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="55f1-f11d-6404-2a0f" name="Warriors" hidden="false" collective="false" import="true" targetId="d37d-9460-288e-8d0f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="50a4-da1d-eccf-2485" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e667-803b-8c8d-13a8" name="Warriors" hidden="false" collective="false" import="true" targetId="d37d-9460-288e-8d0f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8cf8-4439-48a5-a645" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4b9f-471b-c643-af0c" name="Thunderers" hidden="false" collective="false" import="true" targetId="68c2-7d4b-1706-a009" type="selectionEntry">
<categoryLinks>
<categoryLink id="5adc-33ae-d5da-a034" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4d44-dee7-d6da-6ccc" name="Quarrellers" hidden="false" collective="false" import="true" targetId="30e5-318c-9a9e-2578" type="selectionEntry">
<categoryLinks>
<categoryLink id="6f6c-10c3-e035-3dc8" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4d08-5543-4551-b387" name="Longbeards" hidden="false" collective="false" import="true" targetId="5875-6808-8640-6a7c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b031-d78b-554f-8e87" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="058e-7a5a-b0d1-94a4" name="Longbeards" hidden="false" collective="false" import="true" targetId="5875-6808-8640-6a7c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="bf0b-cefa-3a60-c9ce" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e495-584f-7f83-fddd" name="Hammerers" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7d68-dc71-dfcc-1012" name="Hammerers" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="2a44-9440-91e1-dae2" name="Keeper of the Gate" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is the Keeper of the Gate. A Keeper of the Gate makes 3 attacks rather than 2.</characteristic>
</characteristics>
</profile>
<profile id="75e5-f014-1ee7-fb38" name="Kingsguard" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You do not need to take battleshock tests for this unit if it is within 16" of a DISPOSSESSED HERO from your army in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8d77-a9a0-e243-45a4" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="53ef-ce46-2dc0-739a" name="New CategoryLink" hidden="false" targetId="e81b-95b7-4866-db4b" primary="false"/>
<categoryLink id="0c7c-3368-d692-407c" name="New CategoryLink" hidden="false" targetId="4e6a-bfb6-606f-fc89" primary="false"/>
<categoryLink id="0006-1bfe-3d57-36d2" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b3d8-29f5-cd01-af47" name="10 Hammerers" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="points" value="120.0">
<conditions>
<condition field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="06d0-d1b8-c5a7-96cd" name="Standard Bearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="102c-568b-2918-bc4f" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="37d4-38d7-cf6c-4af5" type="min"/>
</constraints>
<profiles>
<profile id="80e7-cf94-5210-82e7" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may be Standard Bearers. If you fail a battleshock test for a unit that has any Standard Bearers, halve the number of models that flee (rounding up).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1cdc-f032-a115-71a5" name="Throng Musician" 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="f817-725f-afb7-9d6c" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0aff-0ca5-262d-55a0" type="min"/>
</constraints>
<profiles>
<profile id="6819-cee2-42fa-dfe5" name="Throng Musician" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit can be Hornblowers or Drummers. When a unit containing any Hornblowers or Drummers runs, they can 'Sound the Advance'. If they do so, do not roll a dice to see how far the unit runs; instead, they can move up to an extra 4".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="db03-2eac-b823-ecfe" name="Gromril Great Hammer" 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="60eb-d4ca-2a44-cabd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf06-1399-416f-1bf4" type="max"/>
</constraints>
<profiles>
<profile id="9125-e9f8-71aa-e431" name="Gromril Great Hammer" 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">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</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>
<selectionEntry id="a182-1bde-3bfc-39c1" name="Ironbreakers" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="d49c-3003-0916-5236" name="Ironbreakers" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="7c73-a5aa-e829-96f9" name="Ironbeard" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is an Ironbeard. An Ironbeard makes 3 attacks with an Ironbreaker Axe or Hammer instead of 2.</characteristic>
</characteristics>
</profile>
<profile id="17c5-6c4a-65e1-7f24" name="Forge-proven Gromril Armour" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When you make save rolls for this unit, ignore the enemy's Rend characteristic unless it is -2 or better.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5148-9531-da9c-22b5" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="54d5-dcad-4aeb-72d7" name="New CategoryLink" hidden="false" targetId="e5be-882b-f509-c6e9" primary="false"/>
<categoryLink id="3899-19de-8e8d-0f5c" name="New CategoryLink" hidden="false" targetId="4e6a-bfb6-606f-fc89" primary="false"/>
<categoryLink id="fc87-94a1-c0fb-1ade" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="26c7-4ed9-05bd-bf17" name="10 Ironbreakers" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="points" value="120">
<conditions>
<condition field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d033-8dcc-c395-05cc" name="Icon Bearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9fdb-da55-b8ee-fd64" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ad5-69fd-b520-70c1" type="min"/>
</constraints>
<profiles>
<profile id="17e2-2ec7-239e-c856" name="Icon Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may Icon Bearers. Roll a dice if an enemy spell affects a unit with any Icon Bearers. On a roll of 5 or more, that spell has no affect on the unit (but it will affect other units normally).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3542-b0f5-7cdb-6c9b" name="Drummers" 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="06f3-b639-9bb6-c358" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc61-8652-e7ea-bf45" type="min"/>
</constraints>
<profiles>
<profile id="e5b6-b0ed-4b79-c5b7" name="Drummers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit can be Drummers. When a unit containing any Drummers runs, they can ‘Sound the Advance’. If they do so, do not roll a dice to see how far the unit runs; instead, they can move up to an extra 4".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="66d6-9e2c-d881-15b7" name="Ironbreaker Axe or Hammer" 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="57b8-1b9d-577a-68b4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e04-e4bc-9363-9aec" type="max"/>
</constraints>
<profiles>
<profile id="f279-7c52-0263-61c6" name="Ironbreaker Axe or Hammer" 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">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d751-a7ed-0a17-fa77" name="Drakefire Pistol" 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="391a-263e-1590-cd5d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="21cc-d56b-6490-8c12" type="min"/>
</constraints>
<profiles>
<profile id="1c09-7f2a-d894-e864" name="Drakefire Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">8"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="4549-e041-2c9a-cf03" name="Drakefire Pistol (Melee)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">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>
<selectionEntryGroups>
<selectionEntryGroup id="da29-bf40-c101-34ae" name="Ironbeard Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a105-f6ac-24c0-4ead" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3a91-66ca-ebba-4c11" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="2ff7-5199-c81f-080d" name="Axe or Hammer and Shield" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8c4e-9f46-7959-042e" name="Gromril Shields" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit can create a shield wall instead of running or charging in its turn. If it does so, re-roll failed save rolls for the unit in the combat phase until its next movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ccf8-3fdf-f40b-22a7" name="Drakefire Pistol and Cinderblast Bomb" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="eba8-beb5-f122-555a" name="Cinderblast Bomb" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, a model with a Cinderblast Bomb can throw it in your shooting phase. To do so, pick a unit within 6" and roll a dice; on a 2 or more, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3684-9449-a42e-823c" name="Drakefire Pistols" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cbe7-49b8-69df-a3e2" name="Brace of Drakefire Pistols" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can make 2 attacks for an Ironbeard armed with more than one Drakefire Pistol in both the shooting and combat phases.</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="5a93-6cd1-a1ae-4d4a" name="Irondrakes" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="0562-27c9-d71c-ce96" name="Irondrakes" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="b48c-729d-482f-dfb2" name="Drakeguns" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">16"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="6f71-2b3e-9dc1-20c4" name="Mailed Fist" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="ec30-423f-a697-bbe1" name="Forge-proven Gromril Armour" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When you make save rolls for this unit, ignore the enemy's Rend characteristic unless it is -2 or better.</characteristic>
</characteristics>
</profile>
<profile id="8f50-8d55-0280-5ea8" name="Ironwarden" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is an Ironwarden. You can add 1 to the hit rolls for an Ironwarden shooting a Drakegun.</characteristic>
</characteristics>
</profile>
<profile id="0af1-d3a9-2e52-c416" name="Blaze Away" publicationId="9aab-52b0-pubN70145" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can add 1 to the Attacks characteristic of this unit’s missile weapons if it has at least 10 models and is more than 3" from of any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9cb9-eb85-a2d5-443d" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="9c61-f147-f8ce-469d" name="New CategoryLink" hidden="false" targetId="04b0-28bd-0eac-d481" primary="false"/>
<categoryLink id="9206-91ba-a0eb-0964" name="New CategoryLink" hidden="false" targetId="4e6a-bfb6-606f-fc89" primary="false"/>
<categoryLink id="151d-f230-3a68-9c28" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a1e1-10b0-8797-da7d" name="10 Irondrakes" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="180.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5727-f66a-7506-0cb3" name="Hornblowers" 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="ef7e-a745-fa8a-0208" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cf5-da96-1d51-9736" type="min"/>
</constraints>
<profiles>
<profile id="47ca-8ca9-14ad-e3da" name="Hornblowers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit can be Hornblowers. When a unit containing any Hornblowers runs, they can ‘Sound the Advance’. If they do so, do not roll a dice to see how far the unit runs; instead, they can move up to an extra 4".</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a41f-40b2-6326-3766" name="Icon Bearer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="439f-07ee-ef82-f876" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac09-b7c9-5445-4afd" type="min"/>
</constraints>
<profiles>
<profile id="5ed5-dcb8-c295-09f2" name="Icon Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit may Icon Bearers. Roll a dice if an enemy spell affects a unit with any Icon Bearers. On a roll of 5 or more, that spell has no affect on the unit (but it will affect other units normally).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4fe4-a8f7-b1dd-b796" name="Drakefire Pistol" 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="f131-e4ed-0e13-ba90" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a51-7b34-db5c-a353" type="min"/>
</constraints>
<profiles>
<profile id="01bd-92ef-0d37-5090" name="Drakefire Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">8"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="e065-ab2b-11e3-e506" name="Drakefire Pistol (Melee)" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">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>
<selectionEntryGroups>
<selectionEntryGroup id="5a46-d39f-664b-9324" name="Ironwarden Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3578-80b5-e347-163c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="faa9-bf15-8255-8cca" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="a450-f1b5-7019-4e5c" name="Drakegun" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6f9a-c1e8-8ead-fbe2" name="Grudgehammer Torpedo" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="256c-fe4c-c405-c405" name="Grudgehammer Torpedo" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">20"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="1c6e-8ff7-40bf-80fb" name="Grudgehammer Torpedo" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Grudgehammer Torpedo inflicts D6 Damage instead of D3 if the target has the MONSTER keyword.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2091-08e7-6f49-3a3e" name="Drakefire Pistol and Cinderblast Bomb" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1550-5512-e099-ccd9" name="Cinderblast Bomb" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, a model with a Cinderblast Bomb can throw it in your shooting phase. To do so, pick a unit within 6" and roll a dice; on a 2 or more, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="469d-5243-fc5d-351f" name="Drakefire Pistols" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3602-57f2-c0bb-7c25" name="Brace of Drakefire Pistols" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can make 2 attacks for an Ironbeard armed with more than one Drakefire Pistol in both the shooting and combat phases.</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="5875-6808-8640-6a7c" name="Longbeards" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="9bb8-c565-961f-912e" name="Longbeards" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="5844-7fdc-ffe3-432a" name="Old Grumblers" publicationId="9aab-52b0-pubN70145" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, this unit will complain about something in a suitably duardin manner. When they do so, pick one of the grumbling listed. This affect lasts until your next hero phase. 'I thought duardin were made of sterner stuff': Roll a dice each time a DISPOSSESSED model from your army flees whilst within 8" of this unit; on a 5 or more that model stands firm under the Longbeards' stern gaze and does not flee. 'Who does this beardling think he is?': Friendly Dispossessed Heroes within 8" of this unit are treated as if they were your general when working out the range of command abilities. 'Grots are weedier these days!': You can re-roll wound rolls of 1 for DISPOSSESSED models from your army that are within 8" of this unit when they attack in the combat phase. </characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cf86-868e-e466-54c4" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="a35e-4cc9-6e33-eb63" name="New CategoryLink" hidden="false" targetId="8e87-284f-3210-b8d7" primary="false"/>
<categoryLink id="b8dc-744d-9a8d-f819" name="New CategoryLink" hidden="false" targetId="4e6a-bfb6-606f-fc89" primary="false"/>
<categoryLink id="1a6d-110b-cf2a-c4fe" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1d4c-b572-e673-4961" name="10 Longbeards" hidden="false" collective="false" import="true" type="model">
<modifiers>