generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPath to Glory - Ravaged Coast.cat
3187 lines (3187 loc) · 228 KB
/
Path to Glory - Ravaged Coast.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="a434-b1ba-922b-7624" name="Path to Glory - Ravaged Coast" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="4" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Emberstone Vault" hidden="true" id="9690-5cb8-3ced-af49">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Emberstone Shards" hidden="false" id="2dec-0688-7fb3-b6e8"/>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="roster" shared="true" id="bf8c-e620-fb13-5066-min"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="bf8c-e620-fb13-5066-max"/>
</constraints>
<categoryLinks>
<categoryLink name="Army Composition" hidden="false" id="5414-93cc-319f-2600" targetId="ac97-b27c-7e35-7ab9" primary="true"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="01b1-5112-ab45-1afc" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Campaign Progress" hidden="true" id="269b-c85d-cc8d-be04" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="0047-81e1-f99a-5693"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="" id="9704-5304-90d2-960a" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gnaw's Edge Progress " hidden="false" id="2b1b-6453-2d52-c999" sortIndex="1">
<constraints>
<constraint type="max" value="20" field="selections" scope="roster" shared="true" id="b28b-fd5b-0a0d-a377"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hateful Shores Unlocked" hidden="false" id="937c-808f-f98f-8d7c" sortIndex="2">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="9a42-06d8-244e-c746"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hel's Claw Unlocked" hidden="false" id="6cfb-b533-5502-33eb" sortIndex="3">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="1d9e-5936-252c-9128"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="c2bc-eb48-a03e-5cdc" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="01b1-5112-ab45-1afc" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Ravaged Coast Paths" id="7bae-23cb-3977-3ece" hidden="false" flatten="true" publicationId="9787-0c03-7559-2125">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Path of the Artillerist" hidden="true" id="57cf-c347-13b8-a2bd" publicationId="9787-0c03-7559-2125">
<selectionEntryGroups>
<selectionEntryGroup name="Aspiring" id="8237-e983-936b-b9b9" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mobile Construction" hidden="false" id="0ed7-1a28-a19f-a37e">
<profiles>
<profile name="Mobile Construction" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="dd91-e941-bd07-8379">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time this unit uses a **^^Move^^**ability, add 2" to the distance it can move</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e83e-29a2-6a1c-8e07"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Surly Crew" hidden="false" id="cbe5-7710-02b3-2a94">
<profiles>
<profile name="Surly Crew" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="567a-256e-f9d2-7d32">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Attacks characteristic of this unit's melee weapons.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="65d2-4b7e-3fc8-de60"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d060-cc9d-e075-48df"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Elite" id="6aff-b53a-40a5-5f13" hidden="false" sortIndex="2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="King of the Hill" hidden="false" id="6d20-b9d0-a46c-4187">
<profiles>
<profile name="King of the Hill" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="db9e-85a7-9223-99ba">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">While this unit is contesting an objective, enemy **^^Infantry^^** and **^^Cavalry^^** units cannot contest that objective.</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="parent" shared="true" id="2627-0d08-482d-93e5"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Veteran Spotter" hidden="false" id="87a2-be14-6dc3-e925">
<profiles>
<profile name="Veteran Spotter" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="610e-4d7d-b272-3b36">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can ignore the effects of the 'Guarded Hero' ability when picking targets for its shooting attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a83e-33af-7149-cde1"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cb82-2837-31e3-cbea"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Mighty" id="be99-7e44-fc8d-b68c" hidden="false" sortIndex="3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blackpowder Munitions" hidden="false" id="f523-0e56-8a99-6dfc">
<profiles>
<profile name="Blackpowder Munitions" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a47c-7424-2845-f45a">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit's ranged weapons have **Crit (Mortal)** for the rest of the phase.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5267-9bd7-975d-4ac3"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Trained Hands" hidden="false" id="4f76-cf41-2e9c-0d0e">
<profiles>
<profile name="Trained Hands" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bc8f-157a-f465-be4a">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Reaction: You declared a **^^Shoot^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Immediately after the **^^Shoot^^** ability has been resolved, this unit can use a second **^^Shoot^^** ability.</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="parent" shared="true" id="02d4-b23e-b012-2f43"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1d3c-0e6c-c64c-13da"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Legendary" id="bded-581a-271b-11a4" hidden="false" sortIndex="4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Quick Repositioning" hidden="false" id="96f9-347b-5d4e-ca40">
<profiles>
<profile name="Quick Repositioning" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="58ca-cca8-2d0a-0fee">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit that charged this turn and is in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit can move a distance up to its Move characteristic. It can move through the combat ranges of enemy units but cannot end that move within an enemy unit's combat range. Then, roll a dice. On a 3+, the target cannot make a pile-in move for the rest of the phase.</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="parent" shared="true" id="971b-4100-0ea2-b7fb"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Perfect Trajectory" hidden="false" id="7989-2096-2666-642e">
<profiles>
<profile name="Perfect Trajectory" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2c62-904b-6adf-4094">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is contesting an objective that you control, add 6" to the Range characteristic of its ranged weapons.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a991-dd4e-d173-b065"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="14d4-7ed3-242b-88a1"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="f7bc-b618-4b5d-2bae" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Path of the Behemoth" hidden="true" id="6452-2424-6f47-a8e6" publicationId="9787-0c03-7559-2125">
<selectionEntryGroups>
<selectionEntryGroup name="Aspiring" id="d8d6-b79b-a877-2b19" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mind Set Aflame" hidden="false" id="fa65-d641-0ff0-610f">
<profiles>
<profile name="Mind Set Aflame" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="9972-8688-2f6c-1504">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">The 'Battle Damaged' ability has no effect on this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2e45-5bd0-b3a4-9566"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Lumbering Titan" hidden="false" id="686b-7a93-473e-7abe">
<profiles>
<profile name="Lumbering Titan" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3a5b-f840-0d1c-6e04">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to this unit's Health characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c557-5f62-85c3-6ac9"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1f0e-0008-a8fb-0034"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Elite" id="b434-a837-fe67-ea9b" hidden="false" sortIndex="2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Agile Onslaught" hidden="false" id="b765-2d01-d4c8-3892">
<profiles>
<profile name="Agile Onslaught" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8498-6c3e-4f3f-b3d8">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">You can re-roll charge rolls for this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="891f-eb3d-439f-42eb"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Burning Bloodlust" hidden="false" id="079a-3871-034d-274a">
<profiles>
<profile name="Burning Bloodlust" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="6f5d-caad-0efe-8ee8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared the 'All-out Attack' command for a unit in combat with this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to hit rolls for this unit's attacks for the rest of the turn.</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="parent" shared="true" id="8e44-22f7-39e5-1096"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7ad7-e3a1-3af7-b4b1"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Mighty" id="5049-48bc-c2db-39e4" hidden="false" sortIndex="3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Furnace of Fury" hidden="false" id="0286-4bee-03f4-59e3">
<profiles>
<profile name="Furnace of Fury" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="bbe5-f2a6-5c41-d8a7">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use 2 **^^Rampage^^** abilities in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ce03-4d94-18d0-b5ec"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Unnatural Resilience" hidden="false" id="b5cc-2083-668f-004f">
<profiles>
<profile name="Unnatural Resilience" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c239-5a72-de8b-d382">
<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="parent" shared="true" id="086e-5613-ce55-75ff"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0537-ae60-a738-d093"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Legendary" id="8d02-bf55-0f0d-81f4" hidden="false" sortIndex="4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Unrestrained Aggression" hidden="false" id="1258-7a2b-334c-061d">
<profiles>
<profile name="Unrestrained Aggression" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ea49-fc72-2844-debc">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit's weapons have **Crit (2 Hits)**.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="313f-6e38-8122-0cb1"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Obsidian Bones" hidden="false" id="bcee-bfac-30eb-94d6">
<profiles>
<profile name="Obsidian Bones" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="aeb7-5df9-19f9-c575">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to save rolls for this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="57c1-4485-4b9e-b58f"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3040-691a-fe51-beff"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="6d54-625c-d063-13e2" shared="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="root-entry" childId="6e72-1656-d554-528a" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Path of the Brawler" hidden="true" id="57b3-2954-cf35-016a" publicationId="9787-0c03-7559-2125">
<selectionEntryGroups>
<selectionEntryGroup name="Aspiring" id="636e-9417-f568-5676" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Dependable Assault" hidden="false" id="4be1-e19e-7d83-5c35">
<profiles>
<profile name="Dependable Assault" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="731a-906d-a4ca-2683">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is not in combat and has not used a **^^Run^^** or **^^Retreat^^** ability this turn, it can move a distance of 7". This unit can pass through the combat ranges of enemy units but it must end that move within 1⁄2" of a visible enemy unit. If it does so, this unit has charged.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**, **^^Move^^**, **^^Charge^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6d69-9e76-8cbe-51ab"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="First to the Fight" hidden="false" id="c4ae-e337-107b-4505">
<profiles>
<profile name="First to the Fight" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="d90b-1e4a-46a1-6bf0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 2 to charge rolls for this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="19aa-ad3f-0fbb-2d4a"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9a73-d07b-17ee-70c9"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Elite" id="df6c-54f7-a28f-51d3" hidden="false" sortIndex="2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Veteran's Eye" hidden="false" id="73fe-0914-d513-dd9c">
<profiles>
<profile name="Veteran's Eye" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="fd17-2de2-a2ae-6533">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls for this unit's combat attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5351-45ad-dfc5-2098"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Powerful Bruiser" hidden="false" id="2443-86bb-a95f-5a94">
<profiles>
<profile name="Powerful Bruiser" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="dbe6-ffb4-995d-28d3">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to wound rolls for this unit's combat attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2dd9-d79c-e135-539b"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c18c-c4de-4ec6-b460"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Mighty" id="2add-333f-f579-d099" hidden="false" sortIndex="3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Reckless Brutality" hidden="false" id="fe6c-d66e-03df-cfbd">
<profiles>
<profile name="Reckless Brutality" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="82c9-b515-e96a-9a3d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the phase:
• Subtract 1 from save rolls for this unit.
• Add 2 to the Rend characteristic of this unit's weapons.</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="parent" shared="true" id="4c76-98a2-ad49-c53c"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Deathdealer" hidden="false" id="3a85-0ff1-f18a-10ca">
<profiles>
<profile name="Deathdealer" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="92bd-100c-7dfd-a087">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick each enemy unit in combat with this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3 for each target. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</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="parent" shared="true" id="2309-7e79-32d0-cff6"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d7f5-0faf-e12b-b6d6"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Legendary" id="5cdd-2d9b-0325-ef98" hidden="false" sortIndex="4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Devastating Strength" hidden="false" id="9305-7d6e-2f05-55b6">
<profiles>
<profile name="Devastating Strength" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2ec2-2551-01cc-167e">
<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 melee weapons. Add 1 to the Damage 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="parent" shared="true" id="05e8-cdf5-5ca9-4222"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Flurry of Attacks" hidden="false" id="5613-c42b-2aaa-a5cd">
<profiles>
<profile name="Flurry of Attacks" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f190-7072-1638-ba6f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 2 to the Attacks characteristic of this unit's melee weapons.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="76b1-c148-c4e1-e608"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ff4a-6c3f-c452-855c"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="6e72-1656-d554-528a" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Path of the Bulwark" hidden="true" id="9b7c-dd22-0377-88dc" publicationId="9787-0c03-7559-2125">
<selectionEntryGroups>
<selectionEntryGroup name="Aspiring" id="54cb-4d08-579e-2247" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Anti-Cavalry Tactics" hidden="false" id="8348-7c24-64cc-9cf9">
<profiles>
<profile name="Anti-Cavalry Tactics" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="b2d8-3d9b-7c68-46f0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While each model in this unit is contesting an objective wholly within friendly territory, this unit's melee weapons have **Anti-charge (+1 Rend)**.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f326-67cc-034c-797f"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Indomitable Defenders" hidden="false" id="3a67-f392-0f5d-be91">
<profiles>
<profile name="Indomitable Defenders" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="4aed-9402-1adf-e4ee">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While each model in this unit is contesting an objective that is not wholly within enemy territory, add 5 to this unit's control score.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3f39-b56e-8d6e-6bc7"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="138e-071e-0b8c-b5ba"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Elite" id="b507-2af6-3aee-9d45" hidden="false" sortIndex="2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Thin the Ranks" hidden="false" id="d2b1-e3f6-b9e2-aacb">
<profiles>
<profile name="Thin the Ranks" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9d20-9e40-bc63-1370">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit did not charge this turn, pick an enemy unit in combat with it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. If the roll is less than the number of models in the target unit, inflict an amount of mortal damage on the target equal to the roll</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="parent" shared="true" id="af46-0e81-39ee-de26"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Defence Above All" hidden="false" id="c370-0ca6-2c0a-71e7">
<profiles>
<profile name="Defence Above All" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="0880-8f88-5c28-fa4f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is wholly within friendly territory, roll a dice. On a 4+, for the rest of the turn:
• Add 1 to save rolls for this unit.
• This unit has **^^Strike-last^^**.</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="parent" shared="true" id="2d1d-f74c-fc20-edc8"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8ef2-1165-5d99-74c2"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Mighty" id="41d6-153d-1826-d644" hidden="false" sortIndex="3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Territorial" hidden="false" id="d64d-ad58-72af-3542">
<profiles>
<profile name="Territorial" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2f12-4480-b4cb-eb94">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is contesting an objective within friendly territory, enemy units cannot be set up within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7dca-ed47-a734-aca9"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fortress Formation" hidden="false" id="059b-f3ab-bd45-802c">
<profiles>
<profile name="Fortress Formation" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8f07-c271-ffc0-dba5">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While each model in this unit is contesting an objective that is not within enemy territory, enemy models that have a lower Health characteristic than this unit cannot contest objectives while they are in combat with this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="46db-a236-4942-38ec"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="31ea-89cc-6902-f9f1"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Legendary" id="74ed-4b7d-d94c-8af5" hidden="false" sortIndex="4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Made of Stone" hidden="false" id="ab76-52bd-7994-78f4">
<profiles>
<profile name="Made of Stone" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="9380-9d96-9626-e7f5">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is contesting an objective within friendly territory, the **Charge (+1 Damage)** weapon ability has no effect on attacks that target this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f6ee-9eaa-52ef-7022"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fight Fire with Fire" hidden="false" id="5cc7-be4c-d1c5-81db">
<profiles>
<profile name="Fight Fire with Fire" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5448-6d5b-5eb8-4883">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit is in combat with an enemy unit that uses the 'All-out Attack' command, add 1 to save rolls for this unit for the rest of the turn</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8af4-0ccf-38e8-63d8"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f4e2-b121-904f-d616"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="root-entry" childId="6e72-1656-d554-528a" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="75d6-6995-dfcc-3898" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Path of the Cavalier" hidden="true" id="fd8c-4e2f-33fa-724f" publicationId="9787-0c03-7559-2125">
<selectionEntryGroups>
<selectionEntryGroup name="Aspiring" id="5ca6-8eb6-a2eb-f9bf" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hot-blooded Charge" hidden="false" id="fd1b-e47e-b056-e397">
<profiles>
<profile name="Hot-blooded Charge" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3295-30e0-1656-d536">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to charge rolls for this unit while it is wholly within enemy territory.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="788f-ee47-d4f0-da0f"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Terrifying Stampede" hidden="false" id="a6ae-1513-ac4c-c05a">
<profiles>
<profile name="Terrifying Stampede" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2b18-7ffd-3afb-eaa3">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit charged this turn, add 5 to its control score for the rest of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8a0d-332c-7a78-03ab"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9b5c-c06a-27e7-a599"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Elite" id="5cbb-49fa-fa49-f210" hidden="false" sortIndex="2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Shrouded by Smoke" hidden="false" id="5fad-1a57-424a-0695">
<profiles>
<profile name="Shrouded by Smoke" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="66af-6ba3-1106-095e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from wound rolls for shooting attacks that target this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="61f8-5da0-c01b-3381"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hardy Steeds" hidden="false" id="6839-b6bf-245e-3c2d">
<profiles>
<profile name="Hardy Steeds" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="60ac-98ed-ef25-2148">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Run^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Instead of making a run roll as part of that **^^Run^^** ability, you can use a value of 6 for the roll that cannot be modified.
In addition, this unit cannot use **^^Charge^^** abilities for the rest of the turn.</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="parent" shared="true" id="c3de-93c8-d448-d650"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1672-7f32-a99d-93e0"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Mighty" id="6118-2d42-45b5-c3ab" hidden="false" sortIndex="3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sunder Their Spears" hidden="false" id="44f4-0839-db2b-89dd">
<profiles>
<profile name="Sunder Their Spears" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f453-5a6d-4d52-550b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">The **Anti-charge (+1 Rend)** weapon ability has no effect on attacks that target this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ed6c-b73b-6b0e-b01a"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Staggering Charge" hidden="false" id="0c00-fa01-b22b-1bbb">
<profiles>
<profile name="Staggering Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="65e0-2e4e-efa8-9749">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn and is contesting an objective you do not control, pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target has **^^Strike-last^^** for the rest of the turn.</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="parent" shared="true" id="313e-e03d-3b7d-44fd"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fb7b-ee92-9299-6598"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Legendary" id="b77a-4888-847e-fbb1" hidden="false" sortIndex="4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ride to Glory" hidden="false" id="a92b-a4fa-41ed-9541">
<profiles>
<profile name="Ride to Glory" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="336b-ab29-a590-7a2f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is contesting an objective you do not control, this unit can use 2 **^^Fight^^** abilities this phase. After the first is used, however, this unit has **^^Strike-last^^** for the rest of the turn.</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="parent" shared="true" id="bde7-bbe5-44f2-d8b3"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Furious Mounts" hidden="false" id="3801-a16f-c403-7afc">
<profiles>
<profile name="Furious Mounts" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="40de-2492-fb84-46fa">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is in enemy territory, this unit's **Companion** weapons have **Crit (Mortal)**.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5957-4e9c-9ce9-b756"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4922-3255-2b21-00bb"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="root-entry" childId="6e72-1656-d554-528a" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="926c-df8c-6841-d49e" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Path of the Colossus" hidden="true" id="bdeb-97f5-0538-30ab" publicationId="9787-0c03-7559-2125">
<selectionEntryGroups>
<selectionEntryGroup name="Aspiring" id="7e4d-6663-6406-53ca" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Thundering Bulk" hidden="false" id="7c62-808f-7f96-ed65">
<profiles>
<profile name="Thundering Bulk" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2258-3393-3f8e-793c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time this unit uses the 'Power Through'
command, inflict an additional 1 mortal damage on
the target.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a7e4-9384-26aa-45f0"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Alpha Beast" hidden="false" id="f746-fdef-d71b-c534">
<profiles>
<profile name="Alpha Beast" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1417-a9ce-6ac1-16f6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 2 from the control scores of enemy **^^Monsters^^** while they are in combat with this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6b01-08db-a516-9040"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b8ce-9b3f-3e11-f9b9"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Elite" id="201e-b60f-26ae-7f17" hidden="false" sortIndex="2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wrestle Down" hidden="false" id="a49f-1655-7164-b296">
<profiles>
<profile name="Wrestle Down" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3acd-ae32-f0ca-9a30">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit cannot be picked to be the target of enemy **^^Rampage^^** abilities.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="29fa-5898-472d-a5a6"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bestial Bellows" hidden="false" id="e803-a3f1-670f-0dc1">
<profiles>
<profile name="Bestial Bellows" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="61b0-ed9e-f9a1-6cba">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">The effects of the 'Champion', 'Standard Bearer' and 'Musician' abilities do not apply to enemy units while they are within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d26e-32ec-4af0-824b"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f4ad-9365-20ac-7f28"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Mighty" id="ccc8-ac9d-efba-2e10" hidden="false" sortIndex="3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Animal Fury" hidden="false" id="7d4f-914f-26eb-2d9c">
<profiles>
<profile name="Animal Fury" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="438c-dc85-ae2f-ffe2">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Attacks characteristic of this unit's weapons. This also affects weapons that have the **Companion** weapon ability</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b708-d7df-2f6a-2df2"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Volcanic Charge" hidden="false" id="8570-149e-7034-9910">
<profiles>
<profile name="Volcanic Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="6e30-ef49-1309-f78e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is not in combat and has not used a **^^Run^^** or **^^Retreat^^** ability this turn, it can move a distance of 9". This unit can pass through the combat ranges of enemy units but it must end that move within ½" of a visible enemy unit. If it does so, this unit has charged.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**, **^^Move^^**, **^^Charge^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e240-da91-8ec7-48ec"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2c87-98ac-dfdc-9d0a"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Legendary" id="b291-0443-4ac7-8f1d" hidden="false" sortIndex="4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Pulversing Blows" hidden="false" id="1089-866c-8faf-96d0">
<profiles>
<profile name="Pulversing Blows" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="eec2-8ab6-456d-0536">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, subtract 1 from save rolls for the target for the rest of the phase.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3a7c-5121-49a4-c2a4"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Obliterating Impact" hidden="false" id="d173-394c-3e36-56a4">
<profiles>
<profile name="Obliterating Impact" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2795-1bc6-0f5f-4f86">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick a visible enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a number of dice equal to this unit's Health characteristic minus the number of damage points it has. For each 4+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2ce9-93f1-cb49-24b3"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8274-5123-9753-0d8b"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="6e72-1656-d554-528a" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="6d54-625c-d063-13e2" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Path of the Conjurer" hidden="true" id="1ee0-275f-335b-ecb9" publicationId="9787-0c03-7559-2125">