forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Death - Ossiarch Bonereapers.cat
4382 lines (4352 loc) · 338 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 id="b3c2-9aff-8664-1d07" name="Death - Ossiarch Bonereapers" revision="52" battleScribeVersion="2.03" authorName="TigerWraith" authorContact="TigerWraith#5618 on Discord" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="cb62-7d89-9fa6-76ad" name="Battletome: Ossiarch Bonereapers"/>
</publications>
<profileTypes>
<profileType id="cbb7-50b4-7858-c68c" name="Katakros Wounds Suffered">
<characteristicTypes>
<characteristicType id="dc90-6700-1043-e553" name="Companions"/>
<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>
<profileType id="69b2-87d1-32ff-50c4" name="Mortek Crawler Wounds Suffered">
<characteristicTypes>
<characteristicType id="7cc3-5c2f-629e-9d81" name="Necrotic Skulls"/>
<characteristicType id="ac18-9c41-f45a-e6f0" name="Cauldron of Torment"/>
<characteristicType id="d119-b63f-68d4-c693" name="Cursed Stele"/>
</characteristicTypes>
</profileType>
<profileType id="4053-20b3-4538-e55f" name="Gothizzar Harvester Wounds Suffered">
<characteristicTypes>
<characteristicType id="2348-9e20-1d8f-ef4d" name="Death's Head Maw"/>
<characteristicType id="b34f-7b46-370b-4995" name="Ossified Hooves and Tail"/>
<characteristicType id="392b-1799-cef0-35cd" name="Soulcleaver Sickles or Soulcrusher Bludgeons"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="d3ef-4794-dca3-91fe" name="MORTIS PRAETORIANS" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="5a33-4bd9-f08b-c2f7" name="OSSIARCH BONEREAPERS" 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="MORTISAN BONESHAPER" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="d94b-1040-b14c-beec" name="MORTISAN SOULMASON" publicationId="cb62-7d89-9fa6-76ad" hidden="false"/>
<categoryEntry id="a8de-a1bc-675c-cdc1" name="MORTISAN 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"/>
</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.0" 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.0" 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="00de-c50d-33b4-216e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c39-8036-b1cb-6181" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bf3e-6af4-9516-2fa0" name="OSSIARCH BONEREAPERS" hidden="false" targetId="5a33-4bd9-f08b-c2f7" primary="false"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5592-924c-dd31-5f69" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39f0-8160-9679-ef81" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9e05-ca6f-6f0e-a3d5" name="New CategoryLink" 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.0" 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="New CategoryLink" 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"/>
<categoryLink id="368f-ee45-c0fe-13fa" name="OSSIARCH BONEREAPERS" hidden="false" targetId="5a33-4bd9-f08b-c2f7" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0ab-27a7-cd0b-a9d7" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bb27-483d-5d38-ecd7" name="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="e1b6-d729-99e0-dbfa" type="selectionEntry">
<categoryLinks>
<categoryLink id="3bc0-5c5a-b1e5-2e07" name="New CategoryLink" 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="5bd1-6315-591d-08c8" type="selectionEntry">
<categoryLinks>
<categoryLink id="15f1-bdb5-d8db-76f3" name="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a67e-702f-47c1-553d" name="Battalion: Ossiarch Cohort" hidden="false" collective="false" import="true" targetId="879c-8978-385a-80d1" type="selectionEntry">
<categoryLinks>
<categoryLink id="ce5a-fc5c-0a20-66f1" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" 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.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="New CategoryLink" 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.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="New CategoryLink" 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.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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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="New CategoryLink" 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"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee95-bfc1-c265-ae65" type="max"/>
<constraint field="selections" scope="roster" value="1.0" 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 shooting phase or any combat phase. If you do so, pick 1 friendly OSSIARCH BONEREAPERS unit that is wholly within 12" of a model with this command ability. Add 1 to the Attacks characteristic of weapons used by that unit in that phase. You cannot pick the same unit to benefit from this command ability more than once per phase.</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 KATAKROS is your general. If you do so, until your next hero phase, add 1 to hit rolls for attacks made by friendly OSSIARCH BONEREAPERS units while they are wholly within 18" of this model, and add 1 to save rolls for attacks that target friendly MORTIS PRAETORIAN units while they are wholly within 18" of this model. You can only use this command ability once per hero phase.</characteristic>
</characteristics>
</profile>
<profile id="c150-6072-443c-c965" name="Deadly Combination" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with the Shield Immortis is 6, that attack inflicts 2 mortal wounds on the target in addition to any normal damage.</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">At the start of your hero phase, if this model is on the battlefield you can pick up to 3 different friendly OSSIARCH BONEREAPERS units wholly within 24" of this model. For each of those units, you can either heal up to 3 wounds allocated to that unit or, if no wounds are allocated to it, you can return a number of slain models to that unit with a combined Wounds characteristic of 3 or less.</characteristic>
</characteristics>
</profile>
<profile id="5ce1-4d87-7388-bdb4" name="Nadirite Weapons" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with a Nadirite weapon is 6, that attack scores 2 hits on the target instead of 1. Make a wound and save roll for each hit.</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 4+ 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 that is 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">When you use this model’s Supreme Lord of the Bonereaper Legions command ability, it affects friendly OSSIARCH BONEREAPERS units while they are wholly within 36" of this model instead of wholly within 18" of this model.</characteristic>
</characteristics>
</profile>
<profile id="f793-e048-b3e8-ffd8" name="00-01" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Companions" typeId="dc90-6700-1043-e553">All</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">1</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">Cannot be used</characteristic>
</characteristics>
</profile>
<profile id="5cb4-b601-48bc-c876" name="02-03" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Companions" typeId="dc90-6700-1043-e553">Prime Necrophoros, Aviarch Spymaster, Liege-Immortis</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">1</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">Cannot be used</characteristic>
</characteristics>
</profile>
<profile id="0a0e-b264-52df-9326" name="04-07" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Companions" typeId="dc90-6700-1043-e553">Aviarch Spymaster, Liege-Immortis</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">2</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">Cannot be used</characteristic>
</characteristics>
</profile>
<profile id="3f20-4919-e1eb-1ac3" name="08-12" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Companions" typeId="dc90-6700-1043-e553">Liege-Immortis</characteristic>
<characteristic name="Inda-Khaat" typeId="dd1b-3d9a-2d9b-7481">2</characteristic>
<characteristic name="The Shield Immortis" typeId="01ed-ad6c-6820-4f3a">Cannot be used</characteristic>
</characteristics>
</profile>
<profile id="3b12-b541-6bec-9c4e" name="13+" hidden="false" typeId="cbb7-50b4-7858-c68c" typeName="Katakros Wounds Suffered">
<characteristics>
<characteristic name="Companions" typeId="dc90-6700-1043-e553">None</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>
<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 Ossiarch Bonereapers army, it is treated as a general even if it is not the model picked to be the army’s general.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4ee9-2b59-9305-1aa3" name="DEATHLORDS" hidden="false" targetId="a3df-7eeb-bcac-ac90" primary="false"/>
<categoryLink id="0033-6f53-2a67-375f" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="8048-e07f-c61e-bd38" name="LIEGE" hidden="false" targetId="54d9-50cd-9ea0-10b9" primary="false"/>
<categoryLink id="8c49-4331-f048-b80e" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="69ab-1e75-b31d-02ac" name="OSSIARCH BONEREAPERS" hidden="false" targetId="5a33-4bd9-f08b-c2f7" 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="New CategoryLink" 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"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a119-0912-6356-12bb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3572-89c8-a92f-4989" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bf90-2801-865d-13f7" name="Nadirite Dagger" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dc9-0316-7000-064a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed7a-a70b-5d68-f423" type="min"/>
</constraints>
<profiles>
<profile id="7c36-ebca-0c1a-823e" name="Nadirite Dagger" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b8ca-d8c9-73f5-c5fe" name="Nadirite Duelling Blades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="065e-6440-c6ba-97ac" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="921c-dfb5-6666-cdff" type="max"/>
</constraints>
<profiles>
<profile id="a483-8cf3-e59f-8e6f" name="Nadirite Duelling 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">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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9db4-5bf1-cf72-2b1f" name="Soulreaver Greatblade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3740-e8fd-2a76-2ba4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0374-8f26-8eec-e7cc" type="max"/>
</constraints>
<profiles>
<profile id="c365-dd9d-0a95-fd16" name="Soulreaver Greatblade" 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>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="36e0-5386-b6f7-36e3" name="Spirit Dagger" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b55c-d558-d348-b8ff" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba97-7ced-d0b1-3a01" type="max"/>
</constraints>
<profiles>
<profile id="bd3d-dac4-3252-61a3" name="Spirit Dagger" 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>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0922-6f5e-4caa-4f44" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" 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"/>
<entryLink id="e8e9-1c30-81d0-65e4" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="450.0"/>
</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 your army is an Ossiarch Bonereapers army, you do not receive command points. Instead, you receive relentless discipline points.
GENERATING RELENTLESS DISCIPLINE POINTS
You receive relentless discipline points in the following ways:
• At the start of each battle round, after determining who will take which turn, you receive 1 relentless discipline point for each friendly OSSIARCH BONEREAPERS HERO that is on the battlefield, 1 relentless discipline point for each friendly LIEGE that is on the battlefield, and 3 relentless discipline points if KATAKROS is your general and is on the battlefield.
• If you will take the first turn, you receive 1 relentless discipline point. If you will take the second turn, you receive 2 relentless discipline points.
• At the start of each hero phase, roll a dice for each friendly OSSIARCH BONEREAPERS unit on the battlefield (including any HEROES). For each 6, you receive 1 extra relentless discipline point. All Relentless discipline points that you have remaining are lost at the end of each battle round.
USING RELENTLESS DISCIPLINE POINTS
Relentless discipline points are used to issue a command in the same manner as command points, but can only be used to issue a command with command abilities that appear on a warscroll that has the OSSIARCH BONEREAPERS keyword, or to issue a command with an OSSIARCH BONEREAPERS Legion command ability, or to issue the Unstoppable Advance command below. The restriction that you cannot use the same command ability more than once in the same phase does not apply to command abilities used with relentless discipline points. For example, you can use the Shieldwall command ability on the Mortek Guard warscroll more than once in the same phase, as long as that command is issued by a model that has not already issued a command in that phase and it is received by a unit that has not already received a command in that phase.
In addition, you cannot use the Expert, Slayers, Strategists or Swift battalion abilities (core rules, 26.3). Instead, for each battalion in your army that has any of these battalion abilities, once per battle at the start of any battle round, you can choose to receive 1 relentless discipline point.</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">Roll a dice each time you allocate a wound or mortal wound to a friendly unit that has the HEKATOS keyword, or is wholly within 6" of a friendly Mortek Hekatos, or is wholly within 12" of a friendly OSSIARCH BONEREAPERS HERO. On a 6, that wound or mortal wound is negated.</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="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can use this command ability in your movement phase when you pick a friendly OSSIARCH BONEREAPERS unit to make a normal move, run or retreat. Add 3" to that unit’s Move characteristic in that phase.</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce0c-7892-55b4-d21a" type="max"/>
<constraint field="selections" scope="parent" value="0.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.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">Subtract 1 from the Bravery characteristic of enemy units while they are within 12" of any friendly MORTIS PRAETORIANS units.</characteristic>
</characteristics>
</profile>
<profile id="916a-85b9-c098-feea" 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 at the end of the enemy charge phase. If you do so, pick 1 friendly MORTIS PRAETORIANS unit that either has the HEKATOS keyword, or is wholly within 6" of a friendly Mortek Hekatos, or is wholly within 12" of a friendly MORTIS PRAETORIANS HERO. Until the end of the turn, you can re-roll hit rolls for attacks made by that unit that target an enemy unit that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4d4f-f703-d6dc-a424" name="New CategoryLink" 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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9967-caa1-41a2-18ef" name="Legion: Stallarch Lords" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5eeb-41c6-6a77-44af" name="Rally Back" 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. If you do so, pick 1 friendly STALLIARCH LORDS unit that has a mount and either is wholly within 6" of a friendly Mortek Hekatos or is wholly within 12" of a friendly STALLIARCH LORDS HERO. That unit can retreat in that phase and still charge later in the same turn, as long as it did not run.</characteristic>
</characteristics>
</profile>
<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">STALLIARCH LORDS units can run and still charge later in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0189-ed88-e7f5-6965" name="New CategoryLink" 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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3421-373c-8c04-4743" name="Legion: Ivory Host" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6996-4bcc-4c45-7b84" name="Temper Fury" 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. If you do so, pick 1 friendly IVORY HOST unit that is subject to rage and either has the HEKATOS keyword, or includes a Mortek Hekatos, or is wholly within 12" of a friendly IVORY HOST HERO. In that phase, do not subtract 1 from save rolls for attacks that target that unit because of its rage, but still add 1 to hit rolls for attacks made by that unit.</characteristic>
</characteristics>
</profile>
<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">At the start of the combat phase, each friendly IVORY HOST unit that is within 6" of a friendly IVORY HOST model that currently has any wounds allocated to it becomes subject to rage until the end of that phase. Add 1 to hit rolls for attacks made by a unit that is subject to rage, but subtract 1 from save rolls for attacks that target a unit that is subject to rage.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6eba-8399-9cec-2d60" name="New CategoryLink" 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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6fb0-6af9-77c8-10da" name="Legion: Crematorians" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6cf5-8ac2-fcd3-a61f" name="Levellers of Cities" 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. If you do so, pick 1 friendly CREMATORIANS unit that either has the HEKATOS keyword, or is wholly within 6" of a friendly Mortek Hekatos, or is wholly within 12" of a friendly CREMATORIANS HERO. Do not apply the cover modifier to save rolls for attacks made with melee weapons by that CREMATORIANS unit in that phase.</characteristic>
</characteristics>
</profile>
<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">Roll a dice each time a friendly CREMATORIANS model is slain by an attack made with a melee weapon, before the slain model is removed from play. Add 1 to the roll if the slain model is a HERO or MONSTER. On a 5+, pick 1 enemy unit within 3" of the slain model. That unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="019f-8519-8cd0-fc13" name="New CategoryLink" 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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="03ba-a0f9-7f97-c53f" name="Legion: Null Myriad" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f93c-5b22-03b5-d6df" name="Holdfast" 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 before you use the Eldritch Nulls ability for a unit that either has the HEKATOS keyword, or is wholly within 6" of a friendly Mortek Hekatos, or is wholly within 12" of a friendly NULL MYRIAD HERO; that unit is not affected by the spell or endless spell on a roll of 2+ instead of 5+</characteristic>
</characteristics>
</profile>
<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">Each time a friendly NULL MYRIAD unit is affected by a spell or endless spell, you can roll a dice. If you do so, on a 5+, ignore the effects of that spell or endless spell on that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="06da-9b4f-ba83-6a1c" name="New CategoryLink" 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.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">Worsen the Rend characteristic of weapons that target PETRIFEX ELITE units by 1, to a minimum of ‘-’.</characteristic>
</characteristics>
</profile>
<profile id="6825-6699-c0a0-d7e8" 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 in a combat phase. If you do so, pick 1 friendly PETRIFEX ELITE unit that either has the HEKATOS keyword, or is wholly within 6" of a friendly Mortek Hekatos, or is wholly within 12" of a friendly PETRIFEX ELITE HERO. In that combat phase, improve the Rend characteristic of melee weapons used by that unit by 1. You cannot pick the same unit to benefit from this command ability more than once per phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e230-1390-eeb7-ed59" name="New CategoryLink" 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.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 unleash one 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. 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 36" of this terrain feature and visible to it, and roll a dice. On a 2+, that unit suffers 1 mortal wound.
Punishment of Ignorance: Pick 1 enemy WIZARD within 36" of this terrain feature and visible to it, and roll a dice. On a 2+, subtract 1 from casting, dispelling and unbinding rolls for that unit until your next hero phase.
Punishment of Lethargy: Pick 1 enemy unit wholly within 18" of this terrain feature and visible to it, and roll a dice. On a 4+, that unit cannot run until your next hero phase, and a D6 is used to make charge rolls for that unit instead of 2D6 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>
</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="New CategoryLink" hidden="false" targetId="bc8a-9257-1601-6d62" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1bf3-85f9-33af-7104" name="Arch-Kavalos Zandtos" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f57-7257-ca27-b883" type="max"/>
</constraints>
<profiles>
<profile id="478b-37f8-5940-ef46" name="Hatred of the Living" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll wound rolls of 1 for attacks made by this model that target ORDER and DESTRUCTION units. You can re-roll any wound rolls for attacks made by this model that target CHAOS units.</characteristic>
</characteristics>
</profile>
<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 model makes a charge move, you can pick 1 enemy unit within 1" of this model and roll a number of dice equal to the charge roll for that charge move. For each 6, that enemy unit suffers 1 mortal wound. In addition, this model can move an extra 3" when it piles in if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="4805-1b3e-4a6f-62a4" 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 shooting phase or any combat phase. If you do so, pick 1 friendly OSSIARCH BONEREAPERS unit that is wholly within 12" of a model with this command ability. Add 1 to the Attacks characteristic of weapons used by that unit in that phase. You cannot pick the same unit to benefit from this command ability more than once per phase</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 your shooting phase or any combat phase. If you do so, pick 1 friendly MORTIS PRAETORIANS unit that is wholly within 24" of this model. Re-roll wound rolls of 1 for attacks made by that unit that target ORDER and DESTRUCTION units until the end of that phase. You can re-roll any wound rolls for attacks made by that unit that target CHAOS units until the end of that phase.</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">12"</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>
</profiles>
<categoryLinks>
<categoryLink id="d316-6b3e-796d-ea10" name="New CategoryLink" 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"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9077-6ddc-0b46-cdc2" name="The Dark Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ab2-051e-1693-13d0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="915f-6a21-a648-6149" type="max"/>
</constraints>
<profiles>
<profile id="41bc-1e94-228b-5fad" name="The 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">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>
<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">The Dark Lance has a Damage characteristic of 3 instead of 2 if this model made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="51ee-926a-d10a-c2e8" name="Nadirite Battle-shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3d0-4d72-2e41-52da" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="34fb-bea6-7b2d-09a2" type="max"/>
</constraints>
<profiles>
<profile id="bc1f-70c2-53d0-cebd" name="Nadirite Battle-shield" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf5f-ecfa-9a30-0124" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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.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="180.0"/>
</costs>
</selectionEntry>
<selectionEntry id="23d1-96dc-7497-7497" name="Liege-Kavalos" hidden="false" collective="false" import="true" type="upgrade">
<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 model makes a charge move, you can pick 1 enemy unit within 1" of this model and roll a number of dice equal to the charge roll for that charge move. For each 6, that enemy unit suffers 1 mortal wound. In addition, this model 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 shooting phase or any combat phase. If you do so, pick 1 friendly OSSIARCH BONEREAPERS unit that is wholly within 12" of a model with this command ability. Add 1 to the Attacks characteristic of weapons used by that unit in that phase. You cannot pick the same unit to benefit from this command ability more than once per phase</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>
</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="9b4e-f2ba-8ed0-cb35" name="OSSIARCH BONEREAPERS" hidden="false" targetId="5a33-4bd9-f08b-c2f7" primary="false"/>
<categoryLink id="52cc-a992-dd79-1161" name="New CategoryLink" 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"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96f4-6b8a-3ddf-d620" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">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>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4da3-9f7a-4232-d996" name="Nadirite Battle-shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d156-91e1-a559-b258" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7da5-e86e-23c2-6d25" type="max"/>
</constraints>
<profiles>
<profile id="e6f0-f164-18ae-84c9" name="Nadirite Battle-shield" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5ce-c95f-bd21-99b7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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.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="1452-f49d-1c76-0b14" name="Spell Lores" hidden="true" collective="false" import="true" targetId="27ff-6862-cc17-b275" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9918-5a46-2468-35e2" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8f61-71e7-a58a-3216" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>