generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBeasts of Chaos - Library.cat
2310 lines (2310 loc) · 165 KB
/
Beasts of Chaos - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="5549-bece-2339-36e9" name="Beasts of Chaos - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Beasts of Chaos Chaos Spawn" hidden="false" id="58a2-3a6d-8f77-5f36" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Beasts of Chaos Chaos Spawn" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a5af-4575-dbcf-6ce6">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">2D6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="1268-e312-ab36-6b69" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="729f-9456-6233-8ad2" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="BEAST" hidden="false" id="2d39-825b-a1e0-f6d6" targetId="b224-8c8e-ca93-9860" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Beasts of Chaos Chaos Spawn" hidden="false" id="b2bf-3a67-801d-9b05">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Freakish Mutations" hidden="false" id="c424-8c57-8bf6-25bd">
<profiles>
<profile name="Freakish Mutations" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="38c1-7af7-ab4e-1892">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2D6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits), Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a511-e2cb-fa51-da56"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="64f4-b990-b6e9-8be5"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0e32-d82e-8b76-1e8e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b6be-6cbf-5165-2d6a"/>
</constraints>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Beast" id="4bd0-1ba2-87b1-0e8d" hidden="false" type="profile" targetId="8e01-c681-8a44-8f44"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Great Bray-Shaman" hidden="false" id="dbb1-5ebf-28ce-eb6e" publicationId="3cc2-31d3-9dd2-f858">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="72f7-bb21-38f3-681e" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Great Bray-Shaman" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="42a5-052e-1fc0-a128">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Infuse with Bestial Vigour" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="de8f-9720-dfde-0719">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Beasts of Chaos^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, the target can use a **^^Run^^** ability and still use **^^Charge^^** abilities later in the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="75de-a369-272c-aa32" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="b524-456e-ed7f-bd7e" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="BRAYHERD" hidden="false" id="d7c2-972c-9e33-bc8e" targetId="bf15-f13d-cca6-29d8" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="8eb4-c8a8-e194-4f75" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="7ff5-4ffe-b1d1-b059" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c619-f431-62c6-a735" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Great Bray-Shaman" hidden="false" id="226f-d2a8-f71a-1eb8">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Fetish Staff" hidden="false" id="111e-3606-af8e-75d0">
<profiles>
<profile name="Fetish Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2584-479b-68a4-6c4c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ab69-07ee-3553-e25f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="280f-498f-8afe-5bf6"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5995-249b-b639-7bc7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f91d-e52a-56bc-752b"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Centigors" hidden="false" id="49ea-b4e5-abbc-7c73" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Centigors" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="701d-fc04-6bcc-ca04">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">2</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Drunken Revelry" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="b974-ee4a-7d2d-5815">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army),Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit can use this ability if it is not in combat. It has **^^Ward (4+)^^** 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>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="470d-ae80-c644-6092" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="CHAMPION" hidden="false" id="c8f4-0ccd-e7e7-4d98" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="9141-0c99-90d0-015e" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="BRAYHERD" hidden="false" id="a17d-9fad-bef6-05ee" targetId="bf15-f13d-cca6-29d8" primary="false"/>
<categoryLink name="STANDARD BEARER (1/5)" hidden="false" id="6018-d77c-c018-d52f" targetId="73c-8e22-9dde-f97" primary="false"/>
<categoryLink name="MUSICIAN (1/5)" hidden="false" id="3988-b43c-fa18-4e8e" targetId="dd6f-27e9-b16e-24ee" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="8edb-ece0-4f89-8125" targetId="926c-df8c-6841-d49e" primary="true"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Centigor" hidden="false" id="4741-4b81-f5c9-091e" defaultAmount="1,1,1,2">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="false" id="d21f-10b2-580d-d752"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="false" id="dfa0-22e0-347f-3ff2"/>
</constraints>
<modifiers>
<modifier type="increment" value="5" field="d21f-10b2-580d-d752">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="5" field="dfa0-22e0-347f-3ff2">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gutpiercer Spear" hidden="false" id="40fd-628c-2208-9e1c">
<profiles>
<profile name="Gutpiercer Spear" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="b85e-6e0b-bb54-62a8">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">8"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="9d99-3b3b-37aa-e93a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="3889-ce6d-b8ef-481a"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Clawed Forelimbs" hidden="false" id="395c-bd64-7e79-5281">
<profiles>
<profile name="Clawed Forelimbs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2cd2-94bf-49b1-eabd">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="a823-57bc-5755-67b8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="0c5a-281e-fec2-1f56"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="9d6b-8f06-8cf0-5dfd" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0248-b7e7-4ac4-ee86" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="3db1-42d8-fe48-1ece" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="49ea-b4e5-abbc-7c73" shared="true" id="49e6-bf49-2283-15dd"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="850d-4055-3395-8a56"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="5ed9-67fc-e86b-9251" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="49ea-b4e5-abbc-7c73" shared="true" id="303c-f8ce-e45a-e4ac"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5ca6-3813-9d77-b69a"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="303c-f8ce-e45a-e4ac">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="499e-2ab4-d988-d22c" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="49ea-b4e5-abbc-7c73" shared="true" id="8880-8944-b56f-4947"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c43b-968f-148a-2162"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="8880-8944-b56f-4947">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Bullgors" hidden="false" id="d994-d366-3e28-c304" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Bullgors" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b3b6-ad00-8558-ec4a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">4</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Warherd Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bdbe-c2d7-1406-2f90">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice for each model in this unit. For each 2+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="e563-b150-40bc-76de" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="32c6-b9c4-c3f0-fe99" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="f179-5251-8779-abfb" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="a387-c670-20ed-4378" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="WARHERD" hidden="false" id="cd96-e953-4c51-a0d1" targetId="8fec-20f5-8470-a056" primary="false"/>
<categoryLink name="MUSICIAN (1/3)" hidden="false" id="0a7c-f671-bb5f-147e" targetId="6cae-9aa2-6245-ab11" primary="false"/>
<categoryLink name="STANDARD BEARER (1/3)" hidden="false" id="9da5-33f4-3280-7a3c" targetId="9072-b48-3dd7-2cbc" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Bullgor" hidden="false" id="ccc0-108a-d906-0436" defaultAmount="1,1,1">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="false" id="974e-bf72-7dff-8762"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="false" id="2c5c-8f86-12d9-396d"/>
</constraints>
<modifiers>
<modifier type="increment" value="3" field="974e-bf72-7dff-8762">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="2c5c-8f86-12d9-396d">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Man-splitter Axes" hidden="false" id="bfbe-cce2-3420-d78f">
<profiles>
<profile name="Man-splitter Axes" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="a7aa-e952-0a29-cac4">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="add2-e1ff-29f1-7cae"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="cb4b-fce1-a34e-522b"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Iron-capped Horns" hidden="false" id="30c5-21fe-852a-0545">
<profiles>
<profile name="Iron-capped Horns" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7cb9-652b-84f8-08d0">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="cecb-cb36-57ca-0710"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="61bd-280b-c936-fb44"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="ff67-37fb-0eec-7c91" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a8bf-ab3b-8d96-cdcf" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="4553-2d24-3597-6f69" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="d994-d366-3e28-c304" shared="true" id="1cb0-fd92-2883-6e2c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e491-2347-6f13-2014"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="bd1d-b462-18d1-e6ea" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1">
<constraints>
<constraint type="max" value="1" field="selections" scope="d994-d366-3e28-c304" shared="true" id="5af4-3318-9a01-99d8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8c5e-d887-440a-fdb0"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="5af4-3318-9a01-99d8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="7a89-6b4a-29e8-5c97" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="d994-d366-3e28-c304" shared="true" id="f018-cdf9-d56b-ee25"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="69ec-eebc-2bdc-908e"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="f018-cdf9-d56b-ee25">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Gors" hidden="false" id="2497-0d67-1bcc-e895" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Gors" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="cdb9-1e02-8075-6915">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Gor Stampede" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="af26-c096-6679-573b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy non-**^^Hero Infantry^^** unit that has fewer models than this unit and is within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, the target has **^^Strike-last^^** for the rest of the turn</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="3c80-0ca0-7e40-22bb" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6788-11bc-c813-7370" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="e41d-c51d-0521-66ed" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="STANDARD BEARER (1/10)" hidden="false" id="089b-5769-cb8f-e732" targetId="1f17-ad98-ada0-ccf" primary="false"/>
<categoryLink name="MUSICIAN (1/10)" hidden="false" id="38b3-4698-8590-551b" targetId="eeed-ef77-b0d-fa9d" primary="false"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="9b0e-ab5e-dafb-f00f" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="BRAYHERD" hidden="false" id="7e37-61a9-efac-ee5b" targetId="bf15-f13d-cca6-29d8" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Gor" hidden="false" id="a19a-423a-6516-a4d1" defaultAmount="1,1,1,7">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="false" id="0c1c-0454-ac2c-7f62"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="false" id="9a48-b1a6-494e-ad33"/>
</constraints>
<modifiers>
<modifier type="increment" value="10" field="0c1c-0454-ac2c-7f62">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="9a48-b1a6-494e-ad33">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hacking Blades" hidden="false" id="0243-ed5f-9b48-8013">
<profiles>
<profile name="Hacking Blades" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="45fc-c13c-01ad-7854">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="d867-80c6-0cf6-4263"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="d928-1e4a-6056-5903"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="1384-7a88-0d62-9956" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ed35-7127-296c-7b0d" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="5a36-45a5-04d6-22a6" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="2497-0d67-1bcc-e895" shared="true" id="6d62-e5f5-9bd4-0079"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4d0a-9fac-ca66-ce48"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="0e71-e3d2-3def-33d9" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="2497-0d67-1bcc-e895" shared="true" id="c3d8-9fcd-b638-214f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d199-d249-9a73-e8be"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="c3d8-9fcd-b638-214f">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="7aa6-7a68-7197-d477" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="2497-0d67-1bcc-e895" shared="true" id="1353-c229-f9e7-a41f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="34d5-c454-92c6-2e52"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="1353-c229-f9e7-a41f">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ungor Raiders" hidden="false" id="3771-efac-15d0-cc5b" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Ungor Raiders" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1528-29a0-9e5f-ccb3">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Hidden Volley" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f118-4971-de07-3b57">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit is in reserve in ambush, pick a non-**^^Hero^^** enemy unit within 12" of a battlefield edge to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a number of dice equal to the number of models in this unit. For each 6, inflict 1 mortal damage on the target. Then, in your next movement phase, set up this unit on the battlefield. If it is not possible to do so, it is destroyed.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="def1-a001-9688-e46c" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6d6d-9321-6a9f-4686" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="6099-80b9-315d-e5bd" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="STANDARD BEARER (1/10)" hidden="false" id="dc7d-40e8-e46a-569a" targetId="1f17-ad98-ada0-ccf" primary="false"/>
<categoryLink name="MUSICIAN (1/10)" hidden="false" id="b4db-40fb-579b-e563" targetId="eeed-ef77-b0d-fa9d" primary="false"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="cea3-ecf3-6f4d-0058" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="BRAYHERD" hidden="false" id="62bd-c513-f684-daeb" targetId="bf15-f13d-cca6-29d8" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ungor Raider" hidden="false" id="50f9-7f00-7a44-9034" defaultAmount="1,1,1,7">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="false" id="20cd-0e4d-8495-53c8"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="false" id="aa18-dd17-3b4f-2c8d"/>
</constraints>
<modifiers>
<modifier type="increment" value="10" field="20cd-0e4d-8495-53c8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="aa18-dd17-3b4f-2c8d">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Raider Bow" hidden="false" id="dcb5-7b87-5320-5aa2">
<profiles>
<profile name="Raider Bow" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="737d-d24d-1c37-2f2d">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">18"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">6+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">-</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="4e9d-2767-39c5-dd79"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="63e2-8ee4-f5e0-9957"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Jagged Shank" hidden="false" id="f0c6-4872-5186-de70">
<profiles>
<profile name="Jagged Shank" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e1b7-e942-c44d-f3eb">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">1</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="b251-8a3f-041b-9740"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="7379-4012-7b7c-b04d"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="7984-7a6f-5e8d-abc1" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3d67-360e-c128-5dc7" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="2c90-d21c-cefe-2725" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3771-efac-15d0-cc5b" shared="true" id="a985-260f-7ebd-6168"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ac0c-8e93-441a-991a"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="2238-c72b-e8ef-1709" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3771-efac-15d0-cc5b" shared="true" id="fba6-877b-f1b3-71bf"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="efc8-13d8-c7df-cc2a"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="fba6-877b-f1b3-71bf">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="beb3-f88b-4b49-9eae" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3771-efac-15d0-cc5b" shared="true" id="1d5e-174c-f146-c8c4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b5fb-7b41-de3a-47a9"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="1d5e-174c-f146-c8c4">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ungors" hidden="false" id="920d-c7ac-1a68-8337" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Ungors" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="93e9-5a02-33ee-6a81">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Fleet of Hoof" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="fb4f-c207-7e93-1438">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is in combat, roll a dice. On a 3+, this unit can immediately use the ‘Retreat’ ability as if it were your movement phase without any mortal damage being inicted on it.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="e81b-f9fa-eab2-fe4c" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="b891-0bda-e176-2810" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="4e1c-9fe8-c2ce-61fe" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="STANDARD BEARER (1/10)" hidden="false" id="8e4d-abe1-46c2-53cc" targetId="1f17-ad98-ada0-ccf" primary="false"/>
<categoryLink name="MUSICIAN (1/10)" hidden="false" id="220a-3379-6610-35b5" targetId="eeed-ef77-b0d-fa9d" primary="false"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="cec4-7dff-fab6-e1ac" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="BRAYHERD" hidden="false" id="c03f-edb8-70b6-1cec" targetId="bf15-f13d-cca6-29d8" primary="false"/>
</categoryLinks>
<costs>
<cost name="⬤" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ungor" hidden="false" id="0bb2-14e2-2f2a-9e70" defaultAmount="1,1,1,7">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="false" id="2e83-b51e-16b8-09ae"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="false" id="8f05-153d-4c1e-6507"/>
</constraints>
<modifiers>
<modifier type="increment" value="10" field="2e83-b51e-16b8-09ae">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="8f05-153d-4c1e-6507">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gnarled Weapon" hidden="false" id="7981-c38d-7c48-1607">
<profiles>
<profile name="Gnarled Weapon" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="fa86-8175-79a3-5576">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="2e17-1418-57af-1560"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="76f6-6c70-40aa-7673"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="bf8e-c9ff-ba50-bfaa" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="203d-f532-b557-e3ac" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="cc2c-7675-9f9a-a064" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="920d-c7ac-1a68-8337" shared="true" id="9b14-a39e-9276-9080"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a0a8-821b-c3c6-db31"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="0918-1e81-0720-4e48" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="920d-c7ac-1a68-8337" shared="true" id="0dd4-d39d-ca77-8ca7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6343-dcf7-2d51-2efe"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="0dd4-d39d-ca77-8ca7">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="0730-90a7-03c7-dc0a" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="920d-c7ac-1a68-8337" shared="true" id="ed8b-d372-b4b3-1e8d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cb9a-6561-dd78-4165"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="ed8b-d372-b4b3-1e8d">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Doombull" hidden="false" id="f8d6-201f-bb35-942c" publicationId="3cc2-31d3-9dd2-f858">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="7cf6-f86f-916b-1636" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Doombull" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="99ad-c92e-564f-6242">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Slaughterer's Call" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cdd8-410c-83fb-65b5">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Warherd^^** unit that is not in combat and is wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, add 1 to the number of dice rolled when making charge rolls for the target, to a maximum of 3.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Alpha Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4561-22c9-009f-336c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="51fd-71f1-4a2e-9452" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="0500-1210-335f-96f2" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="ba63-a451-b32a-55df" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="6c6a-4c11-b4eb-16c2" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WARHERD" hidden="false" id="1497-b88e-f99b-0a51" targetId="8fec-20f5-8470-a056" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Doombull" hidden="false" id="f182-094c-ab97-70d1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Slaughterer’s Axe" hidden="false" id="ad4a-016a-38c3-4b04">
<profiles>
<profile name="Slaughterer’s Axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="310f-7d2e-18f3-28bc">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f9e8-70e5-17e1-7aab"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5a71-b60d-ac33-974a"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Alphabeast Horns" hidden="false" id="c4af-0397-cae4-2f49">
<profiles>
<profile name="Alphabeast Horns" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="df64-ddfa-913d-d580">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9f55-835b-f5a2-9838"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="89cd-e4dd-77f1-0751"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f3ec-1c56-a8a2-3d13"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5c1e-d2ec-0142-921f"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Tuskgor Chariots" hidden="false" id="21de-ca00-a110-b175" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Tuskgor Chariots" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d453-4ee4-e5cd-dc82">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Tuskgor Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ebe0-c335-aeb1-361f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="5076-d9d1-f4a0-eb20" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="BRAYHERD" hidden="false" id="aa60-09b3-02d9-b0c6" targetId="bf15-f13d-cca6-29d8" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c0c9-13d5-2aeb-7da8" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="851f-bc4e-bb32-2790" targetId="f7bc-b618-4b5d-2bae" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Tuskgor Chariot" hidden="false" id="12f6-9c62-422d-e390">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Despoiler Weapons" hidden="false" id="c14a-5a02-45b7-38c4">
<profiles>
<profile name="Despoiler Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2ebd-51da-405e-7099">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6d75-9c8f-b385-e664"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8955-3559-56ad-60d8"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Tuskgors’ Iron-hard Tusks" hidden="false" id="6de9-0b8e-6f07-3864">
<profiles>
<profile name="Tuskgors’ Iron-hard Tusks" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="bce6-e93f-1e39-a204">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="414c-0572-ce07-6214"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8cce-1b6f-abad-507c"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1a64-b19e-3996-92fd"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d4b1-b61f-594d-ee7a"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ghorgon" hidden="false" id="de53-89d8-87aa-d8d1" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Ghorgon" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="f1d9-9b2b-f384-2b2b">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">15</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Swallow Whole" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2faf-7ab0-9b72-66d2">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. If the roll exceeds the target’s Health characteristic:
• 1 model in the target unit is slain.
• **Heal (X)** this unit, where **X** is an amount equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="4840-519b-9a61-d9cb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Butchering Blades** is 4.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="BEASTS OF CHAOS" hidden="false" id="270a-bd49-1549-3650" targetId="e902-e0b8-b5ea-d527" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="b553-18f2-ea16-2c74" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="6e45-c669-11a0-35a4" targetId="6d54-625c-d063-13e2" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ghorgon" hidden="false" id="bd64-44a8-1edf-bc34">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Butchering Blades" hidden="false" id="c13e-5ec2-3667-544a">
<profiles>
<profile name="Butchering Blades" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="289b-e9bc-bab9-6294">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^**(+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="15e7-6aae-978c-93a2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="21ab-2587-81a4-44be"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Huge Slavering Maw" hidden="false" id="9879-c318-5a07-690e">
<profiles>
<profile name="Huge Slavering Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f412-3d9c-652e-6354">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D6</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1893-7d8d-6c0e-cc01"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e0d3-6456-f30c-e918"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7c6c-d293-c09f-7a04"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="262c-250d-b299-52a5"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Chaos Warhounds" hidden="false" id="7c3c-ad38-60b3-7c30" publicationId="3cc2-31d3-9dd2-f858">
<profiles>
<profile name="Chaos Warhounds" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c62e-190f-d4cc-c74d">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">2</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Outrunners of Chaos" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d456-44ee-f91f-492f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Charge^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Change one of the dice in the charge roll to a 4.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="ba1f-ee01-2c10-1d53" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="8224-db05-4d5e-40b5" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="CHAMPION" hidden="false" id="168d-d64e-70aa-e7eb" targetId="f679-3bcb-d664-9ac3" primary="false"/>