-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathDeath - Ossiarch Bonereapers.cat
4478 lines (4457 loc) · 349 KB
/
Death - Ossiarch Bonereapers.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="b3c2-9aff-8664-1d07" name="Death - Ossiarch Bonereapers" revision="95" battleScribeVersion="2.03" authorName="TigerWraith" authorContact="TigerWraith#5618 on Discord" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<publications>
<publication id="cb62-7d89-9fa6-76ad" name="Battletome: Ossiarch Bonereapers"/>
<publication id="254c-b9bb-a650-0c40" name="White Dwarf Issue 472"/>
<publication id="51d8-050e-16e0-d1e3" name="Battletome: Ossiarch Bonereapers Errata October 2022"/>
</publications>
<profileTypes>
<profileType id="cbb7-50b4-7858-c68c" name="Katakros Wounds Suffered">
<characteristicTypes>
<characteristicType id="dc90-6700-1043-e553" name="Retinue Blades"/>
<characteristicType id="dd1b-3d9a-2d9b-7481" name="Inda-Khaat"/>
<characteristicType id="01ed-ad6c-6820-4f3a" name="The Shield Immortis"/>
</characteristicTypes>
</profileType>
<profileType id="8a9d-4a10-7f23-258c" name="Companion Abilities">
<characteristicTypes>
<characteristicType id="4d2b-4e4a-9c90-82b0" name="Companion Abilities Details"/>
</characteristicTypes>
</profileType>
<profileType id="f670-aa2b-192b-4937" name="Legion Abilities">
<characteristicTypes>
<characteristicType id="42b4-00f1-787a-3067" name="Legion Abilities Details"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="d3ef-4794-dca3-91fe" name="MORTIS PRAETORIANS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="54d9-50cd-9ea0-10b9" name="LIEGE" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="4936-b2ff-a8e9-73b1" name="HEKATOS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="6c5f-7df3-b2d1-f507" name="KATAKROS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="2d2b-30b3-f190-6a59" name="KAVALOS DEATHRIDERS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="44b1-be1e-0abb-c4f1" name="MORTECK CRAWLER" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="d2f0-0db8-fe50-04bf" name="MORTEK GUARD" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="bf60-30f0-48ac-aa79" name="GOTHIZZAR HARVESTER" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="54de-4602-9d6c-bb39" name="ARCH-KAVALOS ZANDTOS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="af6c-470c-e226-ec72" name="LIEGE-KAVALOS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="f276-f622-355d-065d" name="BONESHAPER" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="d94b-1040-b14c-beec" name="SOULMASON" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="a8de-a1bc-675c-cdc1" name="SOULREAPER" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="a1cb-8b54-abd8-80cf" name="VOKMORTIAN" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="7518-c312-3584-ce14" name="IMMORTIS GUARD" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="884b-b398-8f97-4521" name="NECROPOLIS STALKERS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="346d-c116-0f2a-79cd" name="Legion" hidden="false"/>
<categoryEntry id="71a8-55d3-6af8-fb6e" name="PETRIFEX ELITE" hidden="false"/>
<categoryEntry id="12c4-74d8-eb78-ee93" name="STALLIARCH LORDS" hidden="false"/>
<categoryEntry id="5d31-ffd8-bb95-d796" name="IVORY HOST" hidden="false"/>
<categoryEntry id="5ebb-bf02-4e1e-fca5" name="NULL MYRIAD" hidden="false"/>
<categoryEntry id="b226-271d-a8e1-1a42" name="CREMATORIANS" hidden="false"/>
<categoryEntry id="e987-a727-bfd8-576b" name="BONE-TITHE NEXUS" hidden="false"/>
<categoryEntry id="c0a2-7436-d3b1-fbc4" name="MORTISAN" hidden="false"/>
<categoryEntry id="790e-9800-e523-7f33" name="NIGHTMARE PREDATOR" hidden="false"/>
<categoryEntry id="d357-860a-e9cd-5a0f" name="SOULSTEALER CARRION" hidden="false"/>
<categoryEntry id="32a4-57c7-6e06-47a1" name="BONE-TITHE SHRIEKER" hidden="false"/>
<categoryEntry id="3989-7a63-611a-831d" name="KATAKROSIAN DEATHGLAIVE" hidden="false"/>
<categoryEntry id="463d-38b6-d1f8-3061" name="MIR KAINAN" hidden="false"/>
<categoryEntry id="02ae-a534-1d37-bacc" name="KAINAN'S REAPERS" hidden="false"/>
<categoryEntry id="496d-9428-b92f-6cab" name="Mortisan General" hidden="false"/>
<categoryEntry id="b3e7-cff2-fece-655e" name="OSSIFECTOR" hidden="false"/>
<categoryEntry id="a766-0f08-430a-f9e4" name="Ossiarch Core Battalion" hidden="false"/>
<categoryEntry id="f13c-1c57-4ffc-8b58" name="Ossiarch Warscroll Battalion" hidden="false"/>
<categoryEntry id="7ef7-6d52-fb39-d497" name="ARKHAN" hidden="false"/>
<categoryEntry id="37f4-ccaf-509d-74fd" name="MORGHAST" hidden="false"/>
<categoryEntry id="922c-ead5-87a1-8417" name="MORGHAST ARCHAI" hidden="false"/>
<categoryEntry id="990e-be45-eec0-a1a9" name="MORGHAST HARBINGERS" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="60f9-e9e7-9284-3de3" name="Katakros, Mortarch of the Necropolis" hidden="false" collective="false" import="true" targetId="5f00-f498-a38e-fd3f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dffa-5468-5a99-70eb" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="fad1-daad-07d7-cd9f" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bfd3-6337-9f58-cb7c" name="Nagash, Supreme Lord of the Undead" hidden="false" collective="false" import="true" targetId="7c0c-91b9-f052-24af" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3992-b7f4-bc9f-3ac5" type="max"/>
</constraints>
</entryLink>
<entryLink id="8064-1f5b-8a55-5967" name="Arkhan the Black, Mortarch of Sacrament" hidden="false" collective="false" import="true" targetId="b9e5-10aa-60da-adb9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c39-8036-b1cb-6181" type="max"/>
</constraints>
</entryLink>
<entryLink id="7649-c607-3d1d-6053" name="Allegiance: The Ossiarch Empire" hidden="false" collective="false" import="true" targetId="4030-1d9b-ec45-bc4b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5592-924c-dd31-5f69" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39f0-8160-9679-ef81" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9e05-ca6f-6f0e-a3d5" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f256-61f3-b86b-48dd" name="Bone-Tithe Nexus" hidden="false" collective="false" import="true" targetId="0b77-c985-68db-2231" type="selectionEntry">
<categoryLinks>
<categoryLink id="6cd7-dd54-ff16-71ab" name="BONE-TITHE NEXUS" hidden="false" targetId="e987-a727-bfd8-576b" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b781-451e-419c-19b1" name="Arch-Kavalos Zandtos" hidden="false" collective="false" import="true" targetId="1bf3-85f9-33af-7104" type="selectionEntry">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3696-828d-32ef-aa53" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="1630-41ad-cdf6-a42a" name="ARCH-KAVALOS ZANDTOS" hidden="false" targetId="54de-4602-9d6c-bb39" primary="false"/>
<categoryLink id="c5ba-8aca-7636-77d1" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="8bdc-8854-b753-6129" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="76cc-7243-ae22-29a5" name="LIEGE" hidden="false" targetId="54d9-50cd-9ea0-10b9" primary="false"/>
<categoryLink id="eff1-2fd6-b07b-6038" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="e6f4-2af5-cae3-930a" name="MORTIS PRAETORIANS" hidden="false" targetId="d3ef-4794-dca3-91fe" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2109-cfc2-4a2d-5a3a" name="Liege-Kavalos" hidden="false" collective="false" import="true" targetId="23d1-96dc-7497-7497" type="selectionEntry">
<categoryLinks>
<categoryLink id="7225-2e36-30d8-3d04" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8878-7d1e-ed85-0084" name="Mortisan Boneshaper" hidden="false" collective="false" import="true" targetId="c425-bb0c-f3e4-fdff" type="selectionEntry">
<categoryLinks>
<categoryLink id="f4eb-ac7c-dd54-3943" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6bee-1f0a-3837-1698" name="Mortisan Soulmason" hidden="false" collective="false" import="true" targetId="8b35-fd9a-4fa4-39a5" type="selectionEntry">
<categoryLinks>
<categoryLink id="cac9-5df9-8e6b-ba28" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="84af-cd83-ff17-ca1d" name="Mortisan Soulreaper" hidden="false" collective="false" import="true" targetId="a5af-fc01-1a16-07bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="64c0-1b02-553f-514f" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f82e-3447-8b0f-a675" name="Vokmortian, Master of the Bone-tithe" hidden="false" collective="false" import="true" targetId="c934-f0d1-983f-7d97" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0ab-27a7-cd0b-a9d7" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bb27-483d-5d38-ecd7" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b383-9c4d-7c07-66b8" name="Mortek Guard" hidden="false" collective="false" import="true" targetId="b3c8-2774-ec82-b81a" type="selectionEntry">
<categoryLinks>
<categoryLink id="fa60-6241-cc38-6319" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c555-8795-af15-c7b6" name="Kavalos Deathriders" hidden="false" collective="false" import="true" targetId="67a7-9ab1-b14d-4542" type="selectionEntry">
<categoryLinks>
<categoryLink id="dca3-3d58-4534-5a4b" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a113-5c34-cb9c-36ee" name="Immortis Guard" hidden="false" collective="false" import="true" targetId="160b-aaf3-282f-b1b6" type="selectionEntry">
<categoryLinks>
<categoryLink id="9fca-433b-d4aa-7e8c" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="770d-3f38-9e95-3424" name="Necropolis Stalkers" hidden="false" collective="false" import="true" targetId="274c-34ca-7a2d-c996" type="selectionEntry">
<categoryLinks>
<categoryLink id="b174-5683-9325-35b9" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c906-9966-078f-235a" name="Morghast Archai" hidden="false" collective="false" import="true" targetId="bcaa-6106-7b10-d96c" type="selectionEntry">
<categoryLinks>
<categoryLink id="3bc0-5c5a-b1e5-2e07" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0076-4d67-eaad-13f2" name="Morghast Harbingers" hidden="false" collective="false" import="true" targetId="a45a-c87a-3b85-49ff" type="selectionEntry">
<categoryLinks>
<categoryLink id="15f1-bdb5-d8db-76f3" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8341-7d79-efde-0dc6" name="Mortek Crawler" hidden="false" collective="false" import="true" targetId="ee88-5516-65a3-e025" type="selectionEntry">
<categoryLinks>
<categoryLink id="f8b0-ab1a-8665-2946" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
<categoryLink id="db97-e100-d333-835c" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4f43-3b05-82a3-64e5" name="Gothizzar Harvester" hidden="false" collective="false" import="true" targetId="0c95-ff85-ad7b-a081" type="selectionEntry">
<categoryLinks>
<categoryLink id="9fd9-c0e8-ba5f-f58f" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="706f-a220-7902-152c" name="Battalion: Mortek Shield-corps" hidden="false" collective="false" import="true" targetId="f292-62fc-26f6-51b1" type="selectionEntry">
<categoryLinks>
<categoryLink id="159b-9efe-4742-8cf7" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2cb5-970c-9dc6-deee" name="Battalion: Mortisan Trident" hidden="false" collective="false" import="true" targetId="0743-3125-e0e5-a0aa" type="selectionEntry">
<categoryLinks>
<categoryLink id="5f80-9834-7692-378d" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4510-c69e-41cc-d217" name="Battalion: Aegis Immortal" hidden="false" collective="false" import="true" targetId="c5df-db6a-1dfb-d61f" type="selectionEntry">
<categoryLinks>
<categoryLink id="7a89-1e6c-85ec-2126" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="24e1-a79f-b77c-e979" name="Battalion: Katakrosian Deathglaive" hidden="false" collective="false" import="true" targetId="c659-ccca-5704-9324" type="selectionEntry">
<categoryLinks>
<categoryLink id="96d4-790c-696c-67fe" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="20f0-f826-b3ea-7165" name="Battalion: Kavalos Lance" hidden="false" collective="false" import="true" targetId="7d6e-408f-07ba-1fde" type="selectionEntry">
<categoryLinks>
<categoryLink id="ccbe-dedc-265f-ba35" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fdd7-84cc-afc1-e67e" name="Battalion: Mortek Ballistari" hidden="false" collective="false" import="true" targetId="a1e4-9ddc-e11f-51a5" type="selectionEntry">
<categoryLinks>
<categoryLink id="d0e1-f594-07ca-a204" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a67e-702f-47c1-553d" name="Ossiarch Core Battalion: Ossiarch Cohort" hidden="false" collective="false" import="true" targetId="879c-8978-385a-80d1" type="selectionEntry">
<categoryLinks>
<categoryLink id="d0bf-aed5-f3a0-8d4f" name="Core Battalion" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ce71-cc3a-5989-8ed3" name="Battalion: Vokmortian's Tithe Legion" hidden="false" collective="false" import="true" targetId="eedc-80f8-8c65-d3ea" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7b88-4e33-8740-fff5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="84a5-9914-1dce-0f24" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ab0b-588f-c896-16eb" name="Battalion: Vokmortian's Dread Retinue" hidden="false" collective="false" import="true" targetId="3f0f-06da-1c11-7dd7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7b88-4e33-8740-fff5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3d2f-45b4-aea1-a73e" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e7bf-6c1f-b5ae-52ad" name="Battalion: Harvester Scythe-Corps" hidden="false" collective="false" import="true" targetId="c8bc-58f9-cfe6-776c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7b88-4e33-8740-fff5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="95e5-829a-78c0-df39" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e3a3-4a1e-5c61-5ec3" name="Big Drogg Fort-Kicka - Gatebreaker Mercenary" hidden="false" collective="false" import="true" targetId="8c3b-e825-efb0-25bd" type="selectionEntry"/>
<entryLink id="ee93-df71-1f02-bdab" name="Battalion: Vokmortian's Retinue" hidden="false" collective="false" import="true" targetId="455d-2f9f-538f-46aa" type="selectionEntry">
<categoryLinks>
<categoryLink id="2053-141b-56c5-36fd" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d622-3bf1-6862-1344" name="Battalion: Horrek's Dreadlance" hidden="false" collective="false" import="true" targetId="3f28-a2ed-3411-fcd3" type="selectionEntry">
<categoryLinks>
<categoryLink id="4dd2-41ab-ce26-64b9" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9f7d-d054-4d8d-370c" name="Mir Kainan" hidden="false" collective="false" import="true" targetId="266e-f55f-294b-4fcf" type="selectionEntry">
<categoryLinks>
<categoryLink id="7f61-ac02-6f69-890d" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4015-0f53-4a37-c86a" name="Kainan's Reapers" hidden="false" collective="false" import="true" targetId="1e56-7da9-6592-8cbb" type="selectionEntry">
<categoryLinks>
<categoryLink id="a58e-2812-37a1-65c6" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8153-4d11-9c5e-7d14" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="d8b3-6277-b672-a953" type="selectionEntry"/>
<entryLink id="ffaa-7d26-e911-b449" name="Endless Spell: Bone-tithe Shrieker" hidden="false" collective="false" import="true" targetId="b1d1-7112-2b5a-3b1f" type="selectionEntry"/>
<entryLink id="fd88-7a4d-452c-4e89" name="Endless Spell: Nightmare Predator" hidden="false" collective="false" import="true" targetId="10e2-e521-0f19-af15" type="selectionEntry"/>
<entryLink id="34bb-bebb-4d1b-d4f1" name="Endless Spell: Soulstealer Carrion" hidden="false" collective="false" import="true" targetId="9643-6bdc-b3c2-deb1" type="selectionEntry"/>
<entryLink id="228c-8bbb-04fd-2ede" name="Battle Tactics: Flawless Executions" hidden="true" collective="false" import="true" targetId="09a2-53e5-aec8-25e3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4030-1d9b-ec45-bc4b" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9fa8-0bea-b913-4925" name="Regiment of Renown - Veremord's Shamblers" hidden="false" collective="false" import="true" targetId="fa3f-532f-9753-cd59" type="selectionEntry"/>
<entryLink id="def7-970b-2b47-c18f" name="Mortisan Ossifector" hidden="false" collective="false" import="true" targetId="4d8f-bc70-beb5-bd53" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Jerrion's Delegation" hidden="false" type="selectionEntry" id="c19f-dde4-1e85-de49" targetId="7836-fd33-36d8-9a7a"/>
<entryLink import="true" name="Regiment of Renown - Neferata's Royal Echelon" hidden="false" type="selectionEntry" id="88b6-598a-c006-add5" targetId="6a5b-f6a9-b445-7a2f"/>
<entryLink import="true" name="Regiment of Renown - The Sorrowmourne Choir" hidden="false" type="selectionEntry" id="ad99-df47-beca-1327" targetId="48ca-d15d-4e8b-be5b"/>
<entryLink import="true" name="Regiment of Renown - The Summerking's Entourage" hidden="false" type="selectionEntry" id="50e3-49be-48e7-4c26" targetId="2eda-9ef0-22d9-a4ba"/>
<entryLink import="true" name="Regiment of Renown - The Sternieste Garrison" hidden="false" type="selectionEntry" id="efa2-cf4a-1406-2f22" targetId="1061-aedd-61af-3ef6"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="5f00-f498-a38e-fd3f" name="Katakros, Mortarch of the Necropolis" publicationId="cb62-7d89-9fa6-76ad" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee95-bfc1-c265-ae65" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e28-eadd-b567-4eec" type="max"/>
</constraints>
<profiles>
<profile id="17f7-6751-80a4-54a4" name="Endless Duty" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your hero phase. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit. Until your next hero phase, add 1 to the Attacks characteristic of that unit's melee weapons.</characteristic>
</characteristics>
</profile>
<profile id="8dea-2f55-258e-a64f" name="Supreme Lord of the Bonereaper Legions" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your hero phase if this unit is more than 3" from all enemy units. This unit must receive the command. Until your next hero phase, add 1 to hit rolls for attacks made by friendly OSSIARCH BONEREAPERS units while they are wholly within 24" of this unit and add 1 to save rolls for attacks that target friendly OSSIARCH BONEREAPERS units while they are wholly within 24" of this unit.</characteristic>
</characteristics>
</profile>
<profile id="923a-9a99-d525-1b0e" name="Mortarch of the Necropolis" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can pick up to 3 different friendly OSSIARCH BONEREAPERS units wholly within 24" of this unit. If that unit is not an IMMORTIS GUARD or NECROPOLIS STALKERS unit, you can either heal up to 3 wounds allocated to that unit or, of if no wounds have been allocated to that unit, you can return a number of models to it that have a combined Wounds characteristic of 3 or less.
If that unit is an IMMORTIS GUARD or NECROPOLIS STALKERS unit, you can either heal up to 3 wounds allocated to that unit or, if no wounds have been allocated to that unit, roll a dice. On a 3+, you can return 1 slain model to that unit with 4 wounds allocated to it.</characteristic>
</characteristics>
</profile>
<profile id="0594-2d51-37ba-41cd" name="Aviarch Spymaster" hidden="false" typeId="8a9d-4a10-7f23-258c" typeName="Companion Abilities">
<characteristics>
<characteristic name="Companion Abilities Details" typeId="4d2b-4e4a-9c90-82b0">Once per turn, you can roll a dice when your opponent receives a command point. If you do so, on a 5+ that command point is lost.</characteristic>
</characteristics>
</profile>
<profile id="db33-a913-d4c3-8927" name="Gnosis Scrollbearer" hidden="false" typeId="8a9d-4a10-7f23-258c" typeName="Companion Abilities">
<characteristics>
<characteristic name="Companion Abilities Details" typeId="4d2b-4e4a-9c90-82b0">At the start of your hero phase, you can pick 1 enemy unit on the battlefield. Until your next hero phase, subtract 1 from hit rolls for attacks made by that unit that target friendly OSSIARCH BONEREAPERS units.</characteristic>
</characteristics>
</profile>
<profile id="990a-6654-3324-3c75" name="Prime Necrophoros" hidden="false" typeId="8a9d-4a10-7f23-258c" typeName="Companion Abilities">
<characteristics>
<characteristic name="Companion Abilities Details" typeId="4d2b-4e4a-9c90-82b0">Once per turn, this unit can issue a command to a friendly OSSIARCH BONEREAPERS unit anywhere on the battlefield without a command point being spent.</characteristic>
</characteristics>
</profile>
<profile id="def4-ffb4-df31-cf97" name="Katakros, Mortarch of the Necropolis" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">20</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="6e6f-f0e5-e7ae-3f13" name="Warmaster" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is included in an Mortis Praetorians army, it is treated as a general even if it is not the model picked to be the army’s general.</characteristic>
</characteristics>
</profile>
<profile id="902e-e72b-fce8-91bc" name="Do Nothing! This One is Mine!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Use the bottom row of this unit's damage table while it is within 3" of any enemy HEROES.</characteristic>
</characteristics>
</profile>
<profile id="e357-acd4-cfa8-519e" name="Companion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit is accompanied by a personal guard armed with Retinue Blades. The Nadirite Weapons battle trait applies to attacks made with Retinue Blades.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0033-6f53-2a67-375f" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="8c49-4331-f048-b80e" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="d52b-f977-90be-f8ac" name="MORTIS PRAETORIANS" hidden="false" targetId="d3ef-4794-dca3-91fe" primary="false"/>
<categoryLink id="e448-03bd-2671-c884" name="KATAKROS" hidden="false" targetId="6c5f-7df3-b2d1-f507" primary="false"/>
<categoryLink id="b578-fc0f-6618-16e3" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="7ad1-9171-81a5-9cff" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="5545-d1ac-5921-d8de" name="OSSIARCH BONEREAPERS" hidden="false" targetId="89d5-185d-4935-ee59" primary="false"/>
<categoryLink id="5079-37c7-76a0-8cdb" name="MORTARCH" hidden="false" targetId="75f5-9da1-acc8-eb33" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="20dd-f77b-342d-db5c" name="Inda-Khaat" publicationId="cb62-7d89-9fa6-76ad" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a119-0912-6356-12bb" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d48-1b75-084b-9077" type="min"/>
</constraints>
<profiles>
<profile id="6028-c93e-36f0-ebb4" name="Inda-Khaat" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-3</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="96f4-21f1-fa4e-c855" name="The Shield Immortis" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3572-89c8-a92f-4989" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63d0-b36e-aea8-97a2" type="max"/>
</constraints>
<profiles>
<profile id="c71a-2484-c8f5-3523" name="The Shield Immortis" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bf90-2801-865d-13f7" name="Retinue Blades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dc9-0316-7000-064a" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed7a-a70b-5d68-f423" type="min"/>
</constraints>
<profiles>
<profile id="7c36-ebca-0c1a-823e" name="Retinue Blades" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fb01-3773-e2e6-c807" name="Damage Table" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a0aa-08d5-06ae-e727" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a336-8c82-e811-938e" type="max"/>
</constraints>
<profiles>
<profile id="5771-6058-cd42-7cf4" name="00-09" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Retinue Blades" typeId="dc90-6700-1043-e553">10</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">1</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">1</characteristic>
</characteristics>
</profile>
<profile id="9ff3-c77a-26cb-0073" name="10-12" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Retinue Blades" typeId="dc90-6700-1043-e553">9</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">2</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">2</characteristic>
</characteristics>
</profile>
<profile id="fce9-e228-18ad-e6f4" name="13-15" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Retinue Blades" typeId="dc90-6700-1043-e553">8</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">3</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">3</characteristic>
</characteristics>
</profile>
<profile id="6147-9a49-c558-167b" name="16+" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Retinue Blades" typeId="dc90-6700-1043-e553">7</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">4</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">4</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0922-6f5e-4caa-4f44" name="General" hidden="false" collective="false" import="true" targetId="5422-78b3-c57b-5f40" type="selectionEntry">
<categoryLinks>
<categoryLink id="ed54-bed3-e0ce-8f01" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5f82-c3d3-40db-caaa" name="Battalions" hidden="false" collective="false" import="true" targetId="4baa-4d7c-a4a3-3939" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="500"/>
</costs>
</selectionEntry>
<selectionEntry id="4030-1d9b-ec45-bc4b" name="Allegiance: The Ossiarch Empire" publicationId="cb62-7d89-9fa6-76ad" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="18d0-b9ce-e638-2219" name="Relentless Discipline" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If you command an Ossiarch Bonereapers army, when you receive your starting command ponits, you receive extra command points as follows. These command points are cumulative.
* You receive 1 extra command point if there are 3 or more friendly OSSIARCH BONEREAPERS units on the battlefield.
* You receive 2 extra command points if there are 5 or more friendly OSSIARCH BONEREAPERS units on the battlefield.
* You receive 3 extra command points if there are 7 or more friendly OSSIARCH BONEREAPERS units on the battlefield.</characteristic>
</characteristics>
</profile>
<profile id="9aa5-31fe-9014-ac47" name="Deathless Warriors" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Friendly OSSIARCH BONEREAPERS units have a ward of 6+.</characteristic>
</characteristics>
</profile>
<profile id="c95b-122f-a912-40e6" name="Ranks Unbroken by Dissent" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Do not take battleshock tests for friendly OSSIARCH BONEREAPERS units.</characteristic>
</characteristics>
</profile>
<profile id="e82a-1f03-63ab-46be" name="Unstoppable Advance" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your movement phase when you pick a friendly OSSIARCH BONEREAPERS unit to make a normal move. Add 3" to that unit’s Move characteristic until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="b6cc-f15c-8b4b-f521" name="Reknit Constructs" publicationId="254c-b9bb-a650-0c40" page="104" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of your movement phase. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit that is more than 3" from all enemy units. You can heal up to D3 wounds allocated to that unit or, if no wounds are allocated to it, you can return a number of slain models to that unit that have combined Wounds characteristic of D3 or less.</characteristic>
</characteristics>
</profile>
<profile id="736f-e0b0-d62f-e432" name="Unflinching Coordination" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in the combat phase, after a friendly OSSIARCH BONEREAPERS HERO has fought for the first time in that phase. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit that has not yet fought in that combat phase, that is within 3" of an enemy unit and this is wholly within 12" of that friendly OSSIARCH BONEREAPERS HERO. That unit fights immediately.</characteristic>
</characteristics>
</profile>
<profile id="d0e2-b465-c8c7-a07c" name="Impenetrable Ranks" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability when a friendly OSSIARCH BONEREAPERS unit is picked as the target of an attack. That unit must receive the command. Until the end of the phase, add 1 to ward rolls for that unit for the purposes of the Deathless Warriors battle trait (pg. 74).</characteristic>
</characteristics>
</profile>
<profile id="d518-3daa-66a2-9475" name="Re-form Ranks" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your movement phase. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit. That unit can retreat in that phase ans still charge later in the turn.</characteristic>
</characteristics>
</profile>
<profile id="1d05-39ee-21da-5da7" name="Counter-strike" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in the enemy charge phase, after an enemy unit has finished a charge move. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit that is within 3" of an enemy unit that made a charge move in the same turn and more than 3" from all other enemy units. Add 1 to wound rolls for attacks made with melee weapons by that unit in the following combat phase.</characteristic>
</characteristics>
</profile>
<profile id="1a8e-bf4f-c4f7-f51b" name="Bludgeon" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit. Improve the Rend characteristic of that unit's melee weapons by 1 until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="d85c-19bb-e7d7-4dbc" name="Nadirite Weapons" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the unmodified hit roll for an attack made with a melee weapon by a friendly OSSIARCH BONEREAPERS unit is 6, that attack scores 2 hits on the target instead of 1. Make a wound roll and save roll for each hit. This ability has no effect on attacks made by mounts, unless otherwise noted.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0b7c-eb01-44c1-9941" name="Allegiance OBR" hidden="false" targetId="f40d-1d71-6120-3cd1" primary="false"/>
<categoryLink id="2bf2-3a06-5868-631b" name="Prime Hunters" hidden="false" targetId="74b1-b223-a366-572d" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="72ce-0fd2-4d5e-b414" name="Legion" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce0c-7892-55b4-d21a" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8780-0d54-f96f-de92" type="min"/>
</constraints>
<entryLinks>
<entryLink id="6923-d11d-c2e0-54dc" name="Legion: Crematorians" hidden="false" collective="false" import="true" targetId="6fb0-6af9-77c8-10da" type="selectionEntry"/>
<entryLink id="9cd8-37a9-6dd7-0868" name="Legion: Ivory Host" hidden="false" collective="false" import="true" targetId="3421-373c-8c04-4743" type="selectionEntry"/>
<entryLink id="2e6f-8f96-421c-f25c" name="Legion: Mortis Praetorians" hidden="false" collective="false" import="true" targetId="7b88-4e33-8740-fff5" type="selectionEntry"/>
<entryLink id="8804-1342-4343-25a4" name="Legion: Stallarch Lords" hidden="false" collective="false" import="true" targetId="9967-caa1-41a2-18ef" type="selectionEntry"/>
<entryLink id="ef02-b3c3-f135-eb42" name="Legion: Null Myriad" hidden="false" collective="false" import="true" targetId="03ba-a0f9-7f97-c53f" type="selectionEntry"/>
<entryLink id="e5b5-3b35-6924-6275" name="Legion: Petrifex Elite" hidden="false" collective="false" import="true" targetId="ee62-d02b-28f4-2a00" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7b88-4e33-8740-fff5" name="Legion: Mortis Praetorians" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f085-69e0-daf5-926a" name="The Dread Legion" hidden="false" typeId="f670-aa2b-192b-4937" typeName="Legion Abilities">
<characteristics>
<characteristic name="Legion Abilities Details" typeId="42b4-00f1-787a-3067">Once per turn, during the enemy charge phase, after an enemy unit finishes a charge move, you can pick 1 friendly MORTIS PRAETORIANS unit within 12" of that enemy unit and more than 3" from all enemy units. That unit can attempt a charge.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4d4f-f703-d6dc-a424" name="Legion" hidden="false" targetId="346d-c116-0f2a-79cd" primary="true"/>
<categoryLink id="fc11-78be-69d8-7252" name="MORTIS PRAETORIANS" hidden="false" targetId="d3ef-4794-dca3-91fe" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9967-caa1-41a2-18ef" name="Legion: Stallarch Lords" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4187-ffe6-bcb5-1735" name="Equumortoi" hidden="false" typeId="f670-aa2b-192b-4937" typeName="Legion Abilities">
<characteristics>
<characteristic name="Legion Abilities Details" typeId="42b4-00f1-787a-3067">You can re-roll charge rolls for friendly STALLIARCH LORDS units that have a mount.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0189-ed88-e7f5-6965" name="Legion" hidden="false" targetId="346d-c116-0f2a-79cd" primary="true"/>
<categoryLink id="22b5-11c0-ce95-85a3" name="STALLIARCH LORDS" hidden="false" targetId="12c4-74d8-eb78-ee93" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3421-373c-8c04-4743" name="Legion: Ivory Host" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7df9-3e60-53c3-1acc" name="Simmering Rage" hidden="false" typeId="f670-aa2b-192b-4937" typeName="Legion Abilities">
<characteristics>
<characteristic name="Legion Abilities Details" typeId="42b4-00f1-787a-3067">Add 1 to the number of hits scored by Nadrite Weapons battle trait (pg 74) by friendly IVORY HOST units if the unmodified hit roll was 6 and any wounds or mortal wounds were allocated to that unit earlier in the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6eba-8399-9cec-2d60" name="Legion" hidden="false" targetId="346d-c116-0f2a-79cd" primary="true"/>
<categoryLink id="da34-0d0c-3041-907e" name="IVORY HOST" hidden="false" targetId="5d31-ffd8-bb95-d796" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6fb0-6af9-77c8-10da" name="Legion: Crematorians" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7a2f-13cd-83da-d66f" name="Immolation" hidden="false" typeId="f670-aa2b-192b-4937" typeName="Legion Abilities">
<characteristics>
<characteristic name="Legion Abilities Details" typeId="42b4-00f1-787a-3067">Each time a friendly CREMATORIANS model is slain, before that slain model is removed from play, you can pick 1 enemy unit within 3" of it and roll a number of dice equal to the Wounds characteristic of that model. For each 5+, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="019f-8519-8cd0-fc13" name="Legion" hidden="false" targetId="346d-c116-0f2a-79cd" primary="true"/>
<categoryLink id="0653-9146-8522-79e1" name="CREMATORIANS" hidden="false" targetId="b226-271d-a8e1-1a42" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="03ba-a0f9-7f97-c53f" name="Legion: Null Myriad" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f5b3-f686-7512-997e" name="Eldritch Nulls" hidden="false" typeId="f670-aa2b-192b-4937" typeName="Legion Abilities">
<characteristics>
<characteristic name="Legion Abilities Details" typeId="42b4-00f1-787a-3067">You can roll a dice each time a friendly NULL MYRIAD unit affected by a spell cast by an enemy unit or the abilities of an endless spell summoned by an enemy unit. On a 4+, ignore the effect of that spell or the effects of that endless spell's abilities on that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="06da-9b4f-ba83-6a1c" name="Legion" hidden="false" targetId="346d-c116-0f2a-79cd" primary="true"/>
<categoryLink id="c0d9-7cea-d4ac-e2c5" name="NULL MYRIAD" hidden="false" targetId="5ebb-bf02-4e1e-fca5" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee62-d02b-28f4-2a00" name="Legion: Petrifex Elite" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a139-f0f9-86ac-a7d3" name="Unstoppable Juggernauts" hidden="false" typeId="f670-aa2b-192b-4937" typeName="Legion Abilities">
<characteristics>
<characteristic name="Legion Abilities Details" typeId="42b4-00f1-787a-3067">Subtract 1 from wound rolls for combat attacks that target friendly PETRIFEX ELITE HEKATOS or PRETRIFEX ELITE GOTHIZZAR HARVESTER units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e230-1390-eeb7-ed59" name="Legion" hidden="false" targetId="346d-c116-0f2a-79cd" primary="true"/>
<categoryLink id="12e3-9f5d-f7a8-d725" name="PETRIFEX ELITE" hidden="false" targetId="71a8-55d3-6af8-fb6e" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b77-c985-68db-2231" name="Bone-Tithe Nexus" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f8d8-2891-fa97-292d" name="Deadly Gaze" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can choose for this terrain feature to deliver 1 of the following punishments:
Punishment of Agony: Pick 1 enemy unit wholly within 18" of this terrain feature and visible to it, and roll a dice. Add 1 to the roll if any enemy models were slain within 12" of this terrain feature in the previous turn. On a 4+, subtract 1 from hit rolls for attacks made by that unit until your next hero phase.
Punishment of Death: Pick 1 enemy unit within 18" of this terrain feature and visible to it, and roll a dice. Add 1 to the roll if any enemy models were slain within 12" of this terrain feature in the previous turn. On a 4+, that unit suffers D3 mortal wounds.
Punishment of Ignorance: Pick 1 enemy WIZARD or PRIEST within 18" of this terrain feature and visible to it, and roll a dice. Add 1 to the roll if any enemy models were slain within 12" of this terrain feature in the previous turn. On a 4+, subtract 1 from casting or chanting rolls for that unit until your next hero phase.
Punishment of Lethargy: Pick 1 enemy unit within 18" of this terrain feature and visible to it, and roll a dice. Add 1 to the roll if any enemy models were slain within 12" of this terrain feature in the previous turn. On a 4+, that unit cannot run until your next hero phase. In addtion, subtract 3 from charge rolls for that unit until your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="1a5c-cad4-2c04-9ee6" name="Set-Up" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After territories are determined, you can set up this faction terrain feature wholly within your territory and more than 3" from all objectives and other terrain features. If these restrictions mean you cannot set up this faction terrain feature, you can remove 1 terrain feature that is wholly or partially within your territory and attempt to set up this faction terrain feature again. If it is still impossible to set up this faction terrain feature, then it is not used. If both players can set up faction terrain features at the same time, they must roll off and the winner chooses who sets up their faction terrain features first.</characteristic>
</characteristics>
</profile>
<profile id="fa72-78d7-364e-6df0" name="Impassable" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You cannot move a model over this terrain feature unless it can fly, and you cannot move a model onto this terrain feature or set up a model on this terrain feature (even if it can fly).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="abb6-8c7b-bc13-b212" name="BONE-TITHE NEXUS" hidden="false" targetId="e987-a727-bfd8-576b" primary="false"/>
<categoryLink id="d476-0263-f0f9-6096" name="Scenery" hidden="false" targetId="bc8a-9257-1601-6d62" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1bf3-85f9-33af-7104" name="Arch-Kavalos Zandtos" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f57-7257-ca27-b883" type="max"/>
</constraints>
<profiles>
<profile id="d474-ee83-068e-98ea" name="Unstoppable Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this unit makes a charge move, you can pick 1 enemy unit within 1" of this model and roll a number of dice equal to the unmodified charge roll for that charge move. For each 5+, that enemy unit suffers 1 mortal wound. In addition, this unit can move an extra 3" when it piles in if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="0a93-7de8-af2c-42e3" name="Still Their Breath!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in the combat phase. This unit must receive the command. Until your next hero phase, add 1 to wound rolls for attacks made with melee weapons by friendly MORTIS PRAETORIANS units while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
<profile id="5bbb-fec3-3a27-0d87" name="Arch-Kavalos Zandtos" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">7</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="bc36-a225-0474-5ffc" name="The Will of the Legions" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per turn, this unit can issue a command to a friendly OSSIARCH BONEREAPERS unit without a command point being spent.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d316-6b3e-796d-ea10" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="b790-4175-588c-e599" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="d6e6-a3c0-b4bb-75e3" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="ffa7-ffad-ae7c-5603" name="OSSIARCH BONEREAPERS" hidden="false" targetId="89d5-185d-4935-ee59" primary="false"/>
<categoryLink id="cb76-2311-55e6-fc31" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="2142-4fe1-142d-02d6" name="MORTIS PRAETORIANS" hidden="false" targetId="d3ef-4794-dca3-91fe" primary="false"/>
<categoryLink id="e9a6-34ac-e4af-93ad" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="0630-d0f1-9274-03aa" name="LIEGE" hidden="false" targetId="54d9-50cd-9ea0-10b9" primary="false"/>
<categoryLink id="12bd-df96-fea8-a94b" name="ARCH-KAVALOS ZANDTOS" hidden="false" targetId="54de-4602-9d6c-bb39" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9077-6ddc-0b46-cdc2" name="Dark Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ab2-051e-1693-13d0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="915f-6a21-a648-6149" type="max"/>
</constraints>
<profiles>
<profile id="41bc-1e94-228b-5fad" name="Dark Lance" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="9dd0-0ec3-c9da-6160" name="The Dark Lance" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Damage characteristic of this unit's Dark Lance if this unit made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="402f-b5fd-692e-cf32" name="Hooves, Teeth and Barbed Tails" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf5f-ecfa-9a30-0124" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bfbb-5f6f-c5fb-c78b" type="max"/>
</constraints>
<profiles>
<profile id="9410-ebcf-abd6-61e8" name="Hooves, Teeth and Barbed Tails" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d1e0-6868-0862-a59a" name="General" hidden="false" collective="false" import="true" targetId="5422-78b3-c57b-5f40" type="selectionEntry">
<categoryLinks>
<categoryLink id="ecd4-5a32-d4a4-56c7" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ad6d-aeb6-8929-11ae" name="Battalions" hidden="false" collective="false" import="true" targetId="4baa-4d7c-a4a3-3939" type="selectionEntryGroup"/>
<entryLink id="a13f-b876-d592-372b" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="170"/>
</costs>
</selectionEntry>
<selectionEntry id="23d1-96dc-7497-7497" name="Liege-Kavalos" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="eee5-cc4d-4b16-80e8" name="Unstoppable Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this unit makes a charge move, you can pick 1 enemy unit within 1" of this unit and roll a number of dice equal to the unmodified charge roll for that charge move. For each 5+, that enemy unit suffers 1 mortal wound. In addition, this unit can move an extra 3" when it piles in if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="498e-80ef-9ead-3fe2" name="Endless Duty" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your hero phase. The unit that receives the command must be a friendly OSSIARCH BONEREAPERS unit. Until your next hero phase, add 1 to the Attacks characteristic of that unit's melee weapons.</characteristic>
</characteristics>
</profile>
<profile id="d754-1fab-c219-578a" name="Liege-Kavalos" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">7</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="d766-3b7f-a243-ad74" name="The Will of the Legions" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per turn, this unit can issue a command to a friendly OSSIARCH BONEREAPERS unit without a command point being spent.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="50f2-2acd-29e6-babd" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="1280-2377-2779-6f85" name="LIEGE" hidden="false" targetId="54d9-50cd-9ea0-10b9" primary="false"/>
<categoryLink id="5d95-608e-d5b8-ebe0" name="LIEGE-KAVALOS" hidden="false" targetId="af6c-470c-e226-ec72" primary="false"/>
<categoryLink id="ae5c-6ad2-fd3b-f4b5" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="52cc-a992-dd79-1161" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="36f8-6233-e135-3880" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="8696-b236-1842-d54e" name="OSSIARCH BONEREAPERS" hidden="false" targetId="89d5-185d-4935-ee59" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ab9e-5c01-6142-6f3a" name="Commander's Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96f4-6b8a-3ddf-d620" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f063-0681-8103-b132" type="max"/>
</constraints>
<profiles>
<profile id="37d4-72a2-218f-7292" name="Commander's Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c04c-ddde-d919-959f" name="Hooves, Teeth and Barbed Tails" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5ce-c95f-bd21-99b7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d210-26d0-0718-7b55" type="max"/>
</constraints>
<profiles>
<profile id="d18c-cae7-35d0-31f8" name="Hooves, Teeth and Barbed Tails" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="be30-8600-b470-5586" name="General" hidden="false" collective="false" import="true" targetId="5422-78b3-c57b-5f40" type="selectionEntry"/>
<entryLink id="71a2-2399-8b08-ea12" name="Command Traits" hidden="false" collective="false" import="true" targetId="3bb4-6aaa-4a0e-f67b" type="selectionEntryGroup"/>
<entryLink id="77d4-572e-88d3-aa71" name="Artefacts" hidden="false" collective="false" import="true" targetId="196e-6964-efa8-8d05" type="selectionEntryGroup"/>
<entryLink id="8893-3d4d-289e-3b7d" name="Battalions" hidden="false" collective="false" import="true" targetId="4baa-4d7c-a4a3-3939" type="selectionEntryGroup"/>
<entryLink id="48a7-c385-0b6b-6f48" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="6449-0da6-27d8-d16e" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
</selectionEntry>
<selectionEntry id="5422-78b3-c57b-5f40" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e74f-dfc9-d282-c537" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="baf6-4030-39c7-d3a2" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c583-9486-15c1-7bfe" name="General" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c425-bb0c-f3e4-fdff" name="Mortisan Boneshaper" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="30e3-2cf4-13d5-31ff" name="Boneshaper" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can pick 1 friendly OSSIARCH BONEREAPERS unit within 6" of this unit. If that unit is not an IMMORTIS GUARD or NECROPOLIS STALKERS unit, you can either heal up to 3 wounds allocated to that unit or, if no wounds have been allocated to that unit, you can return a number slain models to it that have a combined Wounds characteristic of 3 or less.
If that unit is a IMMORTIS GUARD or NECROPOLIS STALKERS unit, you can either heal up to 3 wounds allocated to this unit or, if no wounds have been allocated to that unit, roll a dice. On a 3+, you can return 1 slain model to that unit with 4 wounds allocated to it.</characteristic>
</characteristics>
</profile>
<profile id="0bfd-e239-3613-1a14" name="Shard-storm" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster and roll a number of dice equal to the number of models in that unit. For each 5+, that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="d7c9-f23f-0bad-2523" name="Mortisan Boneshaper" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="378e-417b-9160-7616" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Shard-storm spells.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e4f1-e560-920b-d586" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="f714-c68b-b3ea-ff77" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="40cc-7c95-7fa1-aaee" name="MORTISAN" hidden="false" targetId="c0a2-7436-d3b1-fbc4" primary="false"/>
<categoryLink id="a0f7-86c1-334e-2e46" name="BONESHAPER" hidden="false" targetId="f276-f622-355d-065d" primary="false"/>
<categoryLink id="600b-752b-5d90-c899" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="d9cc-de38-855c-2d73" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="0a3e-0d52-f46f-3065" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="677c-7d95-c8b4-108a" name="OSSIARCH BONEREAPERS" hidden="false" targetId="89d5-185d-4935-ee59" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="6dbd-2731-d8df-c4bc" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="dab0-066d-9a25-c486" name="Ossified Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0abe-69cc-c1e1-44c1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be27-4778-1f0b-b63c" type="max"/>
</constraints>
<profiles>
<profile id="2e62-0ae3-bdbb-b428" name="Ossified Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>