-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ossiarch Bonereapers - Library.cat
2150 lines (2150 loc) · 170 KB
/
Ossiarch Bonereapers - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="3521-1b3c-7fd9-838b" name="Ossiarch Bonereapers - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="1" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema" hidden="false">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Vokmortian, Master of the Bone-tithe" hidden="false" id="f92d-b53f-1f6f-1646" publicationId="2f1e-fdf-1ac2-fa38">
<profiles>
<profile name="Vokmortian, Master of the Bone-tithe" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="4541-c949-50ee-b5b3">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Voice of Nagash" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="33cf-317d-ea75-d3ff">
<characteristics>
<characteristic name="Timing" id="f8fd-4505-e4f3-359c" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Hero Phase</characteristic>
<characteristic name="Declare" id="a2aa-2394-cfd4-abc3" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a visible enemy unit within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" id="3115-ffbe-6134-72e9" hidden="false" typeId="b6f1-ba36-6cd-3b03">For the rest of the turn, non-**^^Fight Core^^** abilities cost 1 command point for the target to use.</characteristic>
<characteristic name="Keywords" id="d707-e938-e9cd-d678" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Mortal Contract" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="200c-c7f0-9ef9-1c2d">
<characteristics>
<characteristic name="Timing" id="6a9c-8520-a8d6-ee22" hidden="false" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" id="478d-6ada-6804-83a5" hidden="false" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" id="330f-ce61-55dc-78fd" hidden="false" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 18" of this unit to be bound, pick a visible friendly **^^Ossiarch Bonereapers^^** unit wholly within 18" of this unit to be bound, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" id="4a15-7a8c-99de-3935" hidden="false" typeId="1cb9-a-1345-907f">Until the start of your next turn, each time the bound friendly unit is picked to the target of an ability used by the bound enemy unit, roll a D3. On a 2+, inflict an amount of mortal damage on the bound enemy unit equal to the roll as a reaction. If the bound enemy unit is destroyed by this ability, do not resolve the effect of the enemy ability.</characteristic>
<characteristic name="Keywords" id="6cc7-7d7b-c3f8-df94" hidden="false" typeId="353f-565e-c351-1cf2">^^Spell^^</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="General" hidden="false" type="selectionEntry" id="7a7e-2290-55d7-fb8f" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="6e72-1656-d554-528a" id="44c-de86-4f41-4820" primary="true" name="HERO"/>
<categoryLink targetId="72ce-2188-70bf-2dbd" id="1cc4-7a49-1cde-e933" primary="false" name="UNIQUE"/>
<categoryLink targetId="8179-697a-9f4c-91d4" id="2b66-f4db-cc05-dc22" primary="false" name="WIZARD (2)"/>
<categoryLink targetId="75d6-6995-dfcc-3898" id="4e54-8ed2-e761-731a" primary="false" name="INFANTRY"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="8a2-2d05-913a-7d97" primary="false" name="WARD (6+)"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="886a-7527-a50d-1751" primary="false" name="DEATH"/>
<categoryLink targetId="5603-d1-a021-331e" id="83d8-8a68-f376-9f63" primary="false" name="OSSIARCH BONEREAPERS"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Vokmortian, Master of the Bone-tithe" hidden="false" id="1804-acc4-77e-7e55">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Staff of Retribution" hidden="false" id="dabd-2661-76ab-ea95">
<profiles>
<profile name="Staff of Retribution" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="cc35-5f1d-9f86-2676">
<characteristics>
<characteristic name="Atk" id="7afc-d0fc-83bf-768f" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="d02e-3c67-d36d-e01" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="8ddb-8be9-93c3-2f8c" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="71c1-e611-6afd-ab62" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="9571-46a-2079-eb1f" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="bf41-3cc5-d29a-125f" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="b844-e532-8cb4-dde4-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="b844-e532-8cb4-dde4-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gaze of Death" hidden="false" id="5902-cdb8-7729-3199">
<profiles>
<profile name="Gaze of Death" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="cc4b-f06a-2635-2fa">
<characteristics>
<characteristic name="Rng" id="cfdb-84cf-433-9795" hidden="false" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" id="a38-3b51-43d4-6763" hidden="false" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" id="2ce5-3f83-5c5f-f794" hidden="false" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" id="87f9-fd74-342-c3ff" hidden="false" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" id="ba36-806-9023-fc3c" hidden="false" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" id="854a-1c8-dc25-2bcf" hidden="false" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" id="6b5-d544-9f03-2df3" hidden="false" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="d600-fa53-a8f9-7b63-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="d600-fa53-a8f9-7b63-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="fd2-56de-23be-f64b-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="fd2-56de-23be-f64b-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Mortisan Boneshaper" hidden="false" id="13ec-ca46-9e71-ad2" publicationId="2f1e-fdf-1ac2-fa38">
<profiles>
<profile name="Mortisan Boneshaper" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a9b3-387-c66e-4e99">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Boneshaper" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d898-33a7-8db7-feda">
<characteristics>
<characteristic name="Timing" id="307c-30dd-6095-12b6" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn, Your Hero Phase</characteristic>
<characteristic name="Declare" id="88-f777-db1d-18f6" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Ossiarch Bonereapers^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" id="ff1b-6cda-c4d2-1392" hidden="false" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+:
・If the target is damaged, **Heal (3)** the target.
・If the target is not damaged, return a number of slain models to the target unit with a combined Health characteristic of up to 3.</characteristic>
<characteristic name="Keywords" id="1b04-9774-217c-3091" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="6e72-1656-d554-528a" id="f05a-f34a-7244-3d4d" primary="true" name="HERO"/>
<categoryLink targetId="6f28-c3f6-4b1b-8aff" id="2ce4-21f6-10da-b20c" primary="false" name="WIZARD (1)"/>
<categoryLink targetId="75d6-6995-dfcc-3898" id="1ded-1958-3745-12ae" primary="false" name="INFANTRY"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="49de-b9b7-773b-917e" primary="false" name="WARD (6+)"/>
<categoryLink targetId="5603-d1-a021-331e" id="e91f-a528-c46a-5e94" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="a2d-c08d-4d7d-fe93" id="5368-4fc4-f76c-656f" primary="false" name="MORTISAN"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="5acf-d399-a8b4-dc56" primary="false" name="DEATH"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" type="selectionEntry" id="9f99-13bc-8e94-81e7" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Mortisan Boneshaper" hidden="false" id="69c9-a869-6234-27c6">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ossified Talons" hidden="false" id="3dd4-bd2e-77b8-58cd">
<profiles>
<profile name="Ossified Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e1d4-7ebb-74f4-5568">
<characteristics>
<characteristic name="Atk" id="7be3-70af-f46d-86d2" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="171c-44ad-133e-d76" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="14c6-7c47-f098-3771" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="64c2-c987-2605-fdc3" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="21fa-921a-1bbe-6b1c" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="21ec-ea2c-80ff-3621" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="29ca-c721-4cc8-a5fc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="29ca-c721-4cc8-a5fc-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d921-42ef-bb94-c4a6-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d921-42ef-bb94-c4a6-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Mortek Guard" hidden="false" id="10d1-4f28-db72-1eb9" publicationId="2f1e-fdf-1ac2-fa38">
<profiles>
<profile name="Mortek Guard" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c3fd-ea59-2a21-a94f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Shieldwall" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a711-a3d9-a7f3-7668">
<characteristics>
<characteristic name="Keywords" id="fc0e-292f-66-f46c" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="f7fb-31bd-87b0-8d04" hidden="false" typeId="fd7f-888d-3257-a12b">Ignore all modifiers to save rolls for this unit (positive and negative) for the rest of the turn if this unit did not use a **^^Move^^** ability in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="75d6-6995-dfcc-3898" id="1771-b69b-6981-b80e" primary="true" name="INFANTRY"/>
<categoryLink targetId="5603-d1-a021-331e" id="1cab-303f-f006-d52a" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="74e7-76ff-85c7-fe79" primary="false" name="WARD (6+)"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="e6b8-e3e2-e6d2-98ec" primary="false" name="DEATH"/>
<categoryLink targetId="f679-3bcb-d664-9ac3" id="722b-a3e4-55a5-41" primary="false" name="CHAMPION"/>
<categoryLink targetId="1f17-ad98-ada0-ccf" id="b798-ce52-f151-ffa" primary="false" name="STANDARD BEARER (1/10)"/>
</categoryLinks>
<costs>
<cost name="" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Mortek Guard" hidden="false" id="c0da-5a9-8efb-9238" defaultAmount="1,1,8">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="true" id="4d5c-e59b-71dd-d207-min"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="true" id="4d5c-e59b-71dd-d207-max"/>
</constraints>
<modifiers>
<modifier type="set" value="20" field="4d5c-e59b-71dd-d207-min">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="20" field="4d5c-e59b-71dd-d207-max">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="decrement" value="1" field="4d5c-e59b-71dd-d207-min">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="9c77-5e0b-a20f-d885" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="4d5c-e59b-71dd-d207-max">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="9c77-5e0b-a20f-d885" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Nadirite Weapons" hidden="false" id="b8f0-ee8-b9a1-6990">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="96f3-3885-2356-8c4c-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="96f3-3885-2356-8c4c-max"/>
</constraints>
<profiles>
<profile name="Nadirite Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="21d0-dc7c-e584-93ac">
<characteristics>
<characteristic name="Atk" id="4b45-9160-60ad-80ee" hidden="false" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" id="75bb-4cea-cf77-186f" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="2434-2f1-2ea8-474d" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="4b35-c1dd-298-3438" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="2753-81d1-ae3f-7fd8" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="1f1e-67a2-84b8-8df8" hidden="false" typeId="eda3-7332-5db1-4159">Anti-charge (+1 Rend), Crit (2 hits)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="139d-eb2f-82c6-4815" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f7f1-867d-96aa-b5e4" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="9410-469d-d17a-aa7e" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c3d9-d156-bed6-e8df"/>
<constraint type="max" value="1" field="selections" scope="10d1-4f28-db72-1eb9" shared="true" id="f57c-144c-71c8-dc61" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="c856-a77e-5402-8df1" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="10d1-4f28-db72-1eb9" shared="true" id="c3d3-4498-d341-e5f9" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bce2-c494-5c9b-37bb"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="c3d3-4498-d341-e5f9">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Teratic Cohort" hidden="false" id="c127-fa89-8519-3af0" publicationId="2f1e-fdf-1ac2-fa38">
<categoryLinks>
<categoryLink targetId="75d6-6995-dfcc-3898" id="3052-d557-7f40-23eb" primary="true" name="INFANTRY"/>
<categoryLink targetId="5603-d1-a021-331e" id="d656-4dec-1663-8903" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="11d9-b5b1-3a5b-9e88" primary="false" name="WARD (6+)"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="c535-539f-1ad-cb55" primary="false" name="DEATH"/>
<categoryLink targetId="d131-3bfe-3ff4-a703" id="3964-b803-909e-401d" primary="false" name="CHAMPION (1/8)"/>
</categoryLinks>
<profiles>
<profile name="Teratic Cohort" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="67df-59d2-adfe-a3f7">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">7"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">2</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Predator's Cunning" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="27a3-4335-125-bd4a">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit if it has not been deployed.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up this unit in reserve **outflanking the enemy**. It has now been deployed.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Deploy^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Hunters Unleashed" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e7d2-dd70-af98-ee37">
<characteristics>
<characteristic name="Timing" id="d115-e0a8-5703-bd6d" hidden="false" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" id="f70d-f8b3-65eb-a051" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick this unit if it is **outflanking the enemy**.</characteristic>
<characteristic name="Effect" id="a6dd-779b-949e-413f" hidden="false" typeId="b6f1-ba36-6cd-3b03">Set up this unit anywhere on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" id="4e8c-de6c-189d-7a7b" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Teratic Cohort" hidden="false" id="dce5-3e43-e53-b347">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="true" id="97a6-e2bb-b7df-7b6b-min"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="true" id="97a6-e2bb-b7df-7b6b-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Claws and Talons" hidden="false" id="adc5-d13a-2761-4c0f">
<profiles>
<profile name="Claws and Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3d7a-77b-ae00-7680">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d120-89cd-9378-a49a-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d120-89cd-9378-a49a-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="5" field="97a6-e2bb-b7df-7b6b-min">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="5" field="97a6-e2bb-b7df-7b6b-max">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Mortek Cycloptians" hidden="false" id="457d-3ee8-5c59-1c2a">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="a4b1-873-8711-8ce0-min"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="a4b1-873-8711-8ce0-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Teratic Weapons" hidden="false" id="f53d-a27c-f48b-4cda">
<profiles>
<profile name="Teratic Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f696-4fe-ad84-a8e4">
<characteristics>
<characteristic name="Atk" id="5315-5379-87d0-7188" hidden="false" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" id="ce95-1006-3d6d-f13a" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="5de5-15a0-cb86-3b7b" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="fa65-9b06-3001-a845" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="59b1-7168-c040-bcb3" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="6630-4f78-af79-fb83" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2542-ca24-51ac-907-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2542-ca24-51ac-907-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="2" field="a4b1-873-8711-8ce0-min">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="2" field="a4b1-873-8711-8ce0-max">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kavalos Centauri" hidden="false" id="f47a-c846-f23e-e357">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Teratic Weapons" hidden="false" id="5c37-2348-198a-330a">
<profiles>
<profile name="Teratic Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6c12-3305-4bfd-9a01">
<characteristics>
<characteristic name="Atk" id="f535-ffef-8ab0-9efa" hidden="false" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" id="b8f4-2ae4-5288-2aee" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="e4c9-9dcb-eaac-e942" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="fd6d-e078-677c-c98d" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="2b2f-5d33-80ed-b429" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="c42a-d080-5533-9cae" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b6c2-2f38-8fe0-308d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b6c2-2f38-8fe0-308d-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="64fb-37db-86fe-15af-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="64fb-37db-86fe-15af-max"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="64fb-37db-86fe-15af-min">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="64fb-37db-86fe-15af-max">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="260a-daf5-a565-e3a0" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="635e-94cf-6cab-a953" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="ddbb-4f01-485-1247" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a25a-5842-3ec2-4916-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="aeef-a74c-9eec-5169" publicationId="2f1e-fdf-1ac2-fa38">
<categoryLinks>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="9f83-3359-baf4-c40f" primary="false" name="DEATH"/>
<categoryLink targetId="5603-d1-a021-331e" id="b961-f6f7-7c4f-c76b" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="72ce-2188-70bf-2dbd" id="7fe8-81d3-72c9-2d29" primary="false" name="UNIQUE"/>
<categoryLink targetId="6e72-1656-d554-528a" id="8113-ba6e-50ac-88c6" primary="true" name="HERO"/>
<categoryLink targetId="6d54-625c-d063-13e2" id="1d29-7b61-b675-14d9" primary="false" name="MONSTER"/>
<categoryLink targetId="5a9b-95b7-c807-341f" id="247b-abd3-d889-8926" primary="false" name="WIZARD (9)"/>
<categoryLink targetId="52cc-95fd-6cd3-8f72" id="9ef8-bbc2-abd4-a9f0" primary="false" name="WARD (5+)"/>
<categoryLink targetId="b979-4c3e-7d0e-6921" id="50c3-613e-2bbf-d939" primary="false" name="FLY"/>
<categoryLink targetId="c203-51a0-3d44-6b07" id="715d-fe78-c5f3-48de" primary="false" name="WARMASTER"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="c6dd-4000-e48-4c31" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Nagash, Supreme Lord of the Undead" hidden="false" id="216a-5bdd-cd9e-d622" typeId="ff03-376e-972f-8ab2" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">18</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">10</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" hidden="false" id="c8a6-f264-cdcf-c43b" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, subtract 3 from its power level.</characteristic>
</characteristics>
</profile>
<profile name="The Staff of Power" hidden="false" id="c01f-c73d-2c3f-c3b2" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 2 to casting rolls for this unit while it has not miscast any spells this turn. If this unit miscasts a spell, ignore the restriction that would stop this unit from casting any more spells this turn.</characteristic>
</characteristics>
</profile>
<profile name="Hand of Dust" hidden="false" id="9588-3497-f6b-76f5" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" id="6089-67be-a83f-c080" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" id="d715-ebf0-a724-e603" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a visible enemy **^^Hero^^** or **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" id="a4cf-7414-b93a-323a" hidden="false" typeId="b6f1-ba36-6cd-3b03">Hide a dice in one of your hands or under one of two appropriate containers. Your opponent must pick one of your hands or containers. If they pick the one hiding the dice, this ability has no effect. If they pick the empty one, the target is automatically destroyed.</characteristic>
<characteristic name="Keywords" id="6e26-d118-6300-9b5f" hidden="false" typeId="12e8-3214-7d8f-1d0f">^^Rampage^^</characteristic>
</characteristics>
</profile>
<profile name="Supreme Lord of the Undead" hidden="false" id="df62-4957-56b6-b22c" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" id="e45a-16bd-3c9d-370c" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" id="1a27-df98-8370-8a7" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a friendly non-**^^Hero^^** non-**^^Unique Death^^** unit that has been destroyed to be the target.</characteristic>
<characteristic name="Effect" id="767d-3079-e9a3-117e" hidden="false" typeId="b6f1-ba36-6cd-3b03">Set up a replacement unit identical to the target wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" id="c37-ac5c-e6dc-9dde" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Invocation of Nagash" hidden="false" id="623b-9e30-bc60-c984" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)">
<characteristics>
<characteristic name="Timing" id="5ba-c590-b6fb-269f" hidden="false" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" id="778a-12c7-32de-b1c7" hidden="false" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" id="b2db-871a-deba-847f" hidden="false" typeId="24f8-3803-4ab1-3b6c">This unit can cast this spell more than once per phase. Pick a visible unit wholly within 18" of this unit that has not been picked to be the target of this spell this turn to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" id="ea92-4d38-3182-40bc" hidden="false" typeId="1cb9-a-1345-907f">If the target is an enemy unit, inflict D3 mortal damage on it. If the target is a friendly **^^Death^^** unit, pick 1 of the following effects:
• Return a number of slain models to the target unit with a combined Health characteristic of up to 3.
• The target has **^^Ward (5+)^^** until the start of your next turn</characteristic>
<characteristic name="Keywords" id="7feb-cc7d-f48c-cf23" hidden="false" typeId="353f-565e-c351-1cf2">^^Spell^^</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="708a-52c-cd51-a0e1" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="6f9c-3bc1-f1c5-d944">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Alakanash" hidden="false" id="6e8a-c4ed-ea50-6798">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9d9c-aa2d-c2c4-dbb0-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9d9c-aa2d-c2c4-dbb0-max"/>
</constraints>
<profiles>
<profile name="Alakanash" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c355-57a5-c3de-21e7">
<characteristics>
<characteristic name="Atk" id="aa37-124c-6100-3c6b" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="2777-b837-ccb6-e7a6" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="faab-8587-a8ae-69d3" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="a8be-b836-8ab2-99d3" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="e4db-6893-dae2-f08" hidden="false" typeId="e948-9c71-12a6-6be4">D6</characteristic>
<characteristic name="Ability" id="5957-2cbd-416f-8f78" hidden="false" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Zefet-nebtar" hidden="false" id="8947-aa02-dba0-ac55">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3f02-2791-22fc-f96a-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3f02-2791-22fc-f96a-max"/>
</constraints>
<profiles>
<profile name="Zefet-nebtar" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="43ef-e3ca-3476-6746">
<characteristics>
<characteristic name="Atk" id="65fc-fc96-4897-9750" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="6549-2c15-6ec7-98a0" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="b9ca-6dfe-698c-4ce2" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="bc-7d3-c70b-fd60" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="9ebf-7eb2-9d5f-4b3" hidden="false" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" id="3e5c-3d2b-6323-1945" hidden="false" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3424-3ee7-d590-251-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3424-3ee7-d590-251-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Katakros, Mortarch of the Necropolis" hidden="false" id="9294-b53c-e996-198c" publicationId="2f1e-fdf-1ac2-fa38">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="edf6-f549-edd2-5150" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="2109-b0b8-3828-6249" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a86c-5656-a4ee-fd7b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Inda-Khaat** is 3.</characteristic>
</characteristics>
</profile>
<profile name="Katakros, Mortarch of the Necropolis" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="71bd-c310-eaeb-e69f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">20</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Mortarch of the Necropolis" hidden="false" id="e18c-9aa-ffab-b18e" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" id="821b-c893-315d-8df" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="c429-cc73-54a3-f4d8" hidden="false" typeId="fd7f-888d-3257-a12b">If this unit uses a **^^Relentless Discipline^^** ability, that ability affects friendly **^^OSSIARCH BONEREAPERS^^** units wholly within 18" of this unit instead of wholly within 12".</characteristic>
</characteristics>
</profile>
<profile name="Aviarch Spymaster" hidden="false" id="cd33-c664-d0c4-9474" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn, Reaction: Opponent declared a command for a unit within 18" of this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 5+, that command has no effect, it still counts as having been used and the command points spent to use it are still lost.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Prime Necrophoros" hidden="false" id="46c1-766e-179b-3c1c" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 3 to the control scores of other friendly **^^Ossiarch Bonereapers^^** units while they are wholly within 18" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Supreme Lord of the Bonereaper Legions" hidden="false" id="ec-6c0b-673c-88ee" typeId="55ac-f837-dded-5872" typeName="Ability (Command)">
<characteristics>
<characteristic name="Timing" id="4d10-3bc2-dfd4-ddf9" hidden="false" typeId="736-6e3a-d0b5-a1b0">Your Hero Phase</characteristic>
<characteristic name="Cost" id="10ba-889d-9543-49f4" hidden="false" typeId="a49e-3082-e2a6-e802">1</characteristic>
<characteristic name="Declare" id="9d13-a3e7-882f-965b" hidden="false" typeId="b77f-7548-840e-c086">Pick up to 3 friendly **^^OSSIARCH BONEREAPERS^^** units wholly within 18" of this unit to be the targets.</characteristic>
<characteristic name="Effect" id="9909-ecb5-faee-4a87" hidden="false" typeId="2111-3ca8-61dd-a5f0">Until the start of your next turn, add 1 to save rolls for the targets while they are wholly within 18" of this unit.</characteristic>
<characteristic name="Keywords" id="8e50-9357-3b26-682d" hidden="false" typeId="445d-f443-5448-e7ce"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="5603-d1-a021-331e" id="b29f-60cd-6d7b-b434" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="2fc4-cd9c-4496-21da" primary="false" name="DEATH"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="815a-9151-b2fa-6855" primary="false" name="WARD (6+)"/>
<categoryLink targetId="6e72-1656-d554-528a" id="7ac0-d6e1-ac98-59b2" primary="true" name="HERO"/>
<categoryLink targetId="75d6-6995-dfcc-3898" id="89ca-21ec-ae99-a067" primary="false" name="INFANTRY"/>
<categoryLink targetId="72ce-2188-70bf-2dbd" id="3a1c-1d78-1eba-bc6c" primary="false" name="UNIQUE"/>
<categoryLink targetId="c203-51a0-3d44-6b07" id="c71-f341-3a0-157e" primary="false" name="WARMASTER"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Katakros, Mortarch of the Necropolis" hidden="false" id="babf-adbe-1db7-f2ce">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Inda-Khaat" hidden="false" id="b65-db5b-f4f8-3d1a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="740b-1d4c-7b12-2042-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="740b-1d4c-7b12-2042-max"/>
</constraints>
<profiles>
<profile name="Inda-Khaat" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2853-ae1d-e386-8491">
<characteristics>
<characteristic name="Atk" id="e2ce-f620-1b6b-e4" hidden="false" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" id="316e-250b-5079-b781" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="8f99-eca9-c93e-814c" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="b191-79d3-771d-c0c2" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="df70-b7d7-53a-e33" hidden="false" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" id="bd7b-a54f-e6eb-ec29" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Retinue Blades" hidden="false" id="f883-6d8c-c9b5-a61d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a529-999c-21e2-12f5-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a529-999c-21e2-12f5-max"/>
</constraints>
<profiles>
<profile name="Retinue Blades" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="81d1-aa4d-708e-a921">
<characteristics>
<characteristic name="Atk" id="8ad-f2d-de0b-dbd9" hidden="false" typeId="60e-35aa-31ed-e488">10</characteristic>
<characteristic name="Hit" id="8354-9741-9f62-87e5" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="9fc7-79f4-fbb6-484" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="d804-dadc-12d2-8d9c" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="31d8-52cb-874d-42c0" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="f0b5-5057-1e21-abb3" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Shield Immortis" hidden="false" id="f355-f5bd-5fab-3dda">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c666-4bd5-6677-bf16-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c666-4bd5-6677-bf16-max"/>
</constraints>
<profiles>
<profile name="The Shield Immortis" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e78a-b15-7a1a-5b26">
<characteristics>
<characteristic name="Atk" id="165d-b224-68b1-9140" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="8e49-12f6-ee43-4349" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="a901-a9c0-1d3d-17b9" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="433e-9be7-731d-2044" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="599d-9cf0-2f05-c9ca" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="c903-ca74-a1a-5d38" hidden="false" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="fb3f-fccf-9ac-3533-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="fb3f-fccf-9ac-3533-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Arkhan the Black, Mortarch of Sacrament" hidden="false" id="6652-19e0-6044-62e8" publicationId="2f1e-fdf-1ac2-fa38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="e08d-d55b-7f5d-3153" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Arkhan the Black, Mortarch of Sacrament" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="bd06-92bc-281-37eb">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8134-17b4-5c5d-19c1">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of **Razarak's Ebon Claws** is 3.</characteristic>
</characteristics>
</profile>
<profile name="The Staff of Spirits" hidden="false" id="5a58-d58d-c83a-6d2" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" id="ee71-5a04-2795-24a0" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="4c0c-3d23-4aa-e96e" hidden="false" typeId="fd7f-888d-3257-a12b">Add 1 to casting rolls for this unit. Each time this unit successfully casts a spell, **Heal (1)** this unit.</characteristic>
</characteristics>
</profile>
<profile name="The Doom of Traitors" hidden="false" id="5adc-d600-8746-1eab" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick an enemy unit in combat with it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll. If the target is a **^^Hero^^**, double the amount of mortal damage inflicted.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Mortarch of Sacrament" hidden="false" id="95d2-fbf3-9754-a69e" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" id="bad6-84b2-195e-210a" hidden="false" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a **^^Spell^^** ability</characteristic>
<characteristic name="Declare" id="926f-380e-73d9-d5c8" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="e431-5bd2-4c50-a530" hidden="false" typeId="b6f1-ba36-6cd-3b03">If a friendly **^^Ossiarch Bonereapers^^** unit wholly within 18" of this unit was picked to be the target of that spell, roll a dice. On a 4+, ignore the effect of that spell on that unit. This unit can use this ability more than once per phase but only once per **^^Spell^^** ability.</characteristic>
<characteristic name="Keywords" id="afe9-24b9-cf23-f1e4" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Curse of Years" hidden="false" id="4458-65e0-d01e-85ca" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 18" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll 10 dice. For each 6:
• Inflict 1 mortal damage on the target.
• Roll an extra dice.
For each 5+ on those extra dice, repeat the above bullet points. Then, do the same for each 4+, then each 3+, then each 2+</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="6e72-1656-d554-528a" id="8bf4-8e6a-f623-37c9" primary="true" name="HERO"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="de60-16f9-f061-8069" primary="false" name="DEATH"/>
<categoryLink targetId="72ce-2188-70bf-2dbd" id="1e88-56a6-c03b-b6c2" primary="false" name="UNIQUE"/>
<categoryLink targetId="5603-d1-a021-331e" id="4974-782c-3993-4294" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="6cf5-e256-d41e-c743" primary="false" name="WARD (6+)"/>
<categoryLink targetId="b979-4c3e-7d0e-6921" id="4e38-ebac-e59-250c" primary="false" name="FLY"/>
<categoryLink targetId="6d54-625c-d063-13e2" id="e6ed-b739-27c3-6252" primary="false" name="MONSTER"/>
<categoryLink targetId="8bc-6d63-e37f-9239" id="42d0-a5ec-add6-1c79" primary="false" name="WIZARD (3)"/>
<categoryLink targetId="c203-51a0-3d44-6b07" id="85c9-ba92-3617-be6f" primary="false" name="WARMASTER"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="37ee-1fd6-7ed1-6fd3" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Arkhan the Black, Mortarch of Sacrament" hidden="false" id="3675-506e-fbe2-ddee">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Razarak's Ebon Claws" hidden="false" id="11b7-f632-e6d3-fcae">
<profiles>
<profile name="Razarak's Ebon Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c6e6-2bec-bc83-cca6">
<characteristics>
<characteristic name="Atk" id="9aec-a4c0-dc86-c5e3" hidden="false" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" id="95f8-e9aa-2450-77b4" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="f634-bb5e-c01c-bfea" hidden="false" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" id="3f10-21ad-a00e-7e35" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="38fe-9662-fd36-8092" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="a3e4-ff86-d417-2f9b" hidden="false" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cb34-6cbf-57d5-d811-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cb34-6cbf-57d5-d811-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Zefet-kar and Khenash-an" hidden="false" id="9795-3707-fdcc-cefc">
<profiles>
<profile name="Zefet-kar and Khenash-an" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="8fe5-311c-8c4-385a">
<characteristics>
<characteristic name="Atk" id="e0e6-7851-54d-26b" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="d2b6-865-6037-55d0" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="fc6e-5e31-e59b-8fb3" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="56dd-f9c-fec9-2854" hidden="false" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" id="12a8-dade-fd21-be8b" hidden="false" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" id="b8a-7387-8edd-2907" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d23c-e29f-7de9-9be3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d23c-e29f-7de9-9be3-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5d50-9fe2-e8c0-4c5d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5d50-9fe2-e8c0-4c5d-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Arch-Kavalos Zandtos" hidden="false" id="3d7d-bb9a-b450-8a47" publicationId="2f1e-fdf-1ac2-fa38">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="3f00-6061-8a98-6e64" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Arch-Kavalos Zandtos" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d77a-ec8a-b36b-7ec4">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Spear of the Kavaloi" hidden="false" id="cfc2-98d6-df96-da4b" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)">
<characteristics>
<characteristic name="Keywords" id="addd-2677-643-236a" hidden="false" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" id="b8fe-c1ad-5f07-ad3b" hidden="false" typeId="fd7f-888d-3257-a12b">When this unit uses a **^^Charge^^** ability, it can pass through models in enemy Infantry units as if it had **^^Fly^^.</characteristic>
</characteristics>
</profile>
<profile name="Unstoppable Charge" hidden="false" id="4ea8-2b5b-b380-9016" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" id="5f63-5b85-e2a9-af57" hidden="false" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" id="9366-8bd5-29e8-1417" hidden="false" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy **^^Infantry^^** unit that it passed across to be the target.</characteristic>
<characteristic name="Effect" id="82f2-c019-162a-6bbe" hidden="false" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" id="99bc-50bd-545d-131a" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Still Their Breath!" hidden="false" id="2d3e-4ac0-9ff1-99eb" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" id="63af-9174-3b49-587c" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" id="44fb-c87e-77e6-a6fa" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="e5e4-49be-39e5-dc49" hidden="false" typeId="b6f1-ba36-6cd-3b03">If this unit is in combat, for the rest of the turn, add 1 to the Attacks characteristic of melee weapons used by friendly non-**^^Hero Ossiarch Bonereapers^^** units while they are wholly within 12" of this unit.</characteristic>
<characteristic name="Keywords" id="3029-d8ab-f078-e7c5" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="6e72-1656-d554-528a" id="d5b6-e54e-1de8-e13" primary="true" name="HERO"/>
<categoryLink targetId="d484-a2d7-cf4f-c4a0" id="b5cd-3ad4-efb0-5393" primary="false" name="DEATH"/>
<categoryLink targetId="5603-d1-a021-331e" id="1acc-89a7-c413-d7c7" primary="false" name="OSSIARCH BONEREAPERS"/>
<categoryLink targetId="70a4-383f-421f-52cd" id="f72d-e23d-96a3-53f8" primary="false" name="WARD (6+)"/>
<categoryLink targetId="72ce-2188-70bf-2dbd" id="f76-78d0-de12-5739" primary="false" name="UNIQUE"/>
<categoryLink targetId="926c-df8c-6841-d49e" id="c427-b58d-b6ce-8b57" primary="false" name="CAVALRY"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="826a-a19d-dddc-677a" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Arch-Kavalos Zandtos" hidden="false" id="8749-fcae-2716-e2be">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Kavalos Steed's Hooves, Teeth, and Barbed Tails" hidden="false" id="a015-ed50-95-dec6">
<profiles>
<profile name="Kavalos Steed's Hooves, Teeth, and Barbed Tails" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7ed4-a09-11f8-f765">
<characteristics>
<characteristic name="Atk" id="928-56b9-4af4-1692" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="a8d9-373f-97c6-e785" hidden="false" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" id="132c-24f8-9b6f-5b3f" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="9787-a059-333e-3c68" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="4966-28b9-7d0e-8799" hidden="false" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" id="2837-74c4-8d0b-ce7" hidden="false" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3537-be7-9eff-efcc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3537-be7-9eff-efcc-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Dark Lance" hidden="false" id="131e-ca60-4ffc-142e">
<profiles>
<profile name="The Dark Lance" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="13c3-30bf-925b-be1a">
<characteristics>
<characteristic name="Atk" id="79a8-fcf6-64bd-f6ac" hidden="false" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" id="8d89-f894-e8fd-664e" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="8a09-84ec-5cac-5fb6" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="7651-d8c0-e089-3f7b" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="aef7-f833-5a26-ab5f" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="3e84-8da8-cc6b-55a4" hidden="false" typeId="eda3-7332-5db1-4159">Charge (+1 Damage), Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8b92-2ce1-d4cf-e8cc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8b92-2ce1-d4cf-e8cc-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="897b-9e6-b3ee-fd0b-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="897b-9e6-b3ee-fd0b-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Mortisan Ossifector" hidden="false" id="93ac-6567-8147-a11" publicationId="2f1e-fdf-1ac2-fa38">
<profiles>
<profile name="Mortisan Ossifector" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="4613-e9f-e7c9-2242">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Refined Creations" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5fc8-2b4d-ab3b-f004">
<characteristics>
<characteristic name="Timing" id="a3ae-5f18-3e15-1696" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" id="5507-cad6-975a-f52" hidden="false" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Gothizzar Harvester**, **Morghast Archai** or **Morghast Harbingers** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" id="71e9-babf-6e20-2ffc" hidden="false" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, add 1 to the Rend characteristic of the target’s melee weapons until the start of your next turn.</characteristic>
<characteristic name="Keywords" id="2e5f-5886-f1a-d61" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="cc47-727-e6ce-4871" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WIZARD (1)" hidden="false" id="3f6b-7f1e-2a6c-4be5" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="7885-5afb-176f-efe7" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="d836-46a9-cfa2-5107" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="OSSIARCH BONEREAPERS" hidden="false" id="2707-6773-dde9-e981" targetId="5603-d1-a021-331e" primary="false"/>
<categoryLink name="MORTISAN" hidden="false" id="ae6-2d77-b4f8-31b5" targetId="a2d-c08d-4d7d-fe93" primary="false"/>
<categoryLink name="DEATH" hidden="false" id="aea6-f27b-ab5f-3cfa" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a3f-4e34-28f2-fc5d" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Mortisan Ossifector" hidden="false" id="2ba4-ef95-e986-ad3a">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ossified Talons" hidden="false" id="c6fa-3afb-f230-d7a3">
<profiles>
<profile name="Ossified Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7e1-3da4-ff34-98a4">
<characteristics>
<characteristic name="Atk" id="290d-6c7f-6c13-462d" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="1d7a-2c99-ba88-3fea" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="b21f-a111-5e2f-414f" hidden="false" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" id="27c5-cec3-5fda-a2e1" hidden="false" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" id="f28f-9329-16bf-6ce0" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="82f7-3968-a39c-49ca" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5ca-8ee-6be9-2a93-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5ca-8ee-6be9-2a93-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8d89-2bba-4c50-155c-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8d89-2bba-4c50-155c-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Mortisan Soulreaper" hidden="false" id="647a-dcd6-b2d8-642b" publicationId="2f1e-fdf-1ac2-fa38">
<profiles>
<profile name="Mortisan Soulreaper" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1626-47a1-da74-17ea">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Soulreaper" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ca93-de84-1e69-b8c6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from wound rolls for combat attacks made by enemy units while they are in combat with this unit.</characteristic>
</characteristics>
</profile>
<profile name="Necrotic Impetus" hidden="false" id="846c-e117-b178-2ddf" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)">
<characteristics>
<characteristic name="Timing" id="730d-6478-f7eb-5ea3" hidden="false" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" id="8c4a-c251-eaa7-6be5" hidden="false" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" id="120e-3142-7f8e-1831" hidden="false" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non-**^^Hero Ossiarch Bonereapers Infantry^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved. If it is picked to do so, add 1 to hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" id="3046-537e-6561-e87c" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="8200-49ef-380e-e826" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WIZARD (1)" hidden="false" id="4505-397e-7af-d57d" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="afa2-c5be-a245-ab24" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="e907-4029-bcda-b467" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="OSSIARCH BONEREAPERS" hidden="false" id="6467-f3ff-c695-a27" targetId="5603-d1-a021-331e" primary="false"/>
<categoryLink name="MORTISAN" hidden="false" id="5d3f-89b0-9543-5a02" targetId="a2d-c08d-4d7d-fe93" primary="false"/>
<categoryLink name="DEATH" hidden="false" id="3db7-cb10-7d37-9e2d" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="354d-d706-b89c-79f3" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Mortisan Soulreaper" hidden="false" id="8eb4-2dde-49dd-176c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Soulreaper Scythe" hidden="false" id="6f42-6c0-5a4a-79">
<profiles>
<profile name="Soulreaper Scythe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="aa3d-6ed7-ebc1-4fcc">
<characteristics>
<characteristic name="Atk" id="724a-537c-fc4-4a2d" hidden="false" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" id="d247-c3af-9e18-676f" hidden="false" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" id="734a-9c3a-9140-9651" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="6ab3-1c4a-c5f2-955e" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="8589-71a5-16c7-14ee" hidden="false" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" id="e8b6-ffd0-4b3b-c1f3" hidden="false" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7179-cd59-dc1c-7fc1-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7179-cd59-dc1c-7fc1-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a3f6-47da-94a9-5ee9-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a3f6-47da-94a9-5ee9-max"/>