generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Flesh-eater Courts - Library.cat
2751 lines (2751 loc) · 205 KB
/
Flesh-eater Courts - 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="a6b3-b9f5-ea34-9c96" name="Flesh-eater Courts - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="4898-ff01-e50e-4325">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="4ac1-23a-a81-fb2d" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="9cba-287c-6eba-6385" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="84d1-d2d0-bcd7-70b9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="9602-3115-899c-4930" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WIZARD (9)" hidden="false" id="3f2a-30c9-5dcc-2714" targetId="5a9b-95b7-c807-341f" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="fbe4-527e-2b95-885f" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="9a2c-70ca-6f38-17d8" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="7e04-ece5-e31d-8066" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="b70e-e95c-d5f6-ad29" targetId="8d10-dc24-7ece-50df" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="c79b-7a4e-ed99-1ceb" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Nagash, Supreme Lord of the Undead" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="2296-745c-ef44-6a1e">
<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" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e8cf-1618-d6be-a884">
<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" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="bfb8-ece1-f289-7057">
<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" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ed1e-5b4b-7b3d-133f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" 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" 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" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Supreme Lord of the Undead" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c1ea-3098-8940-1e15">
<characteristics>
<characteristic name="Timing" id="314a-2857-7671-c27a" hidden="false" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" id="e036-909e-9bb9-366a" 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="c32b-2444-e693-baaa" 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="3500-73d7-7af6-b282" hidden="false" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Invocation of Nagash" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="8a56-829c-c47b-40ec">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" 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" 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" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ed49-d2f5-685a-3628" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Nagash, Supreme Lord of the Undead" hidden="false" id="a8ce-f741-7f64-91f9">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Alakanash" hidden="false" id="f1b2-6862-165f-eed7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5562-8c66-c188-397"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f89a-a3f7-3ed7-6161"/>
</constraints>
<profiles>
<profile name="Alakanash" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ee0d-edff-ceda-30f3">
<characteristics>
<characteristic name="Atk" id="a24c-4770-9161-9243" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="c303-c10f-6974-8986" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="5a15-1ec0-e333-e85a" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="8a79-b162-661-88f7" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="5940-3c0c-82e9-7f21" hidden="false" typeId="e948-9c71-12a6-6be4">D6</characteristic>
<characteristic name="Ability" id="83ec-1cd7-3f98-4d64" hidden="false" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Zefet-nebtar" hidden="false" id="66dc-cadb-a6ba-bde5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="34a-6437-10dd-d2d6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e593-ba7b-a14c-9cc8"/>
</constraints>
<profiles>
<profile name="Zefet-nebtar" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="63f2-3cd4-ff54-8d5">
<characteristics>
<characteristic name="Atk" id="cb63-2813-8c06-5fd1" hidden="false" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" id="ca77-8fac-41cb-35b2" hidden="false" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" id="71ac-4b3f-b416-98de" hidden="false" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" id="7438-4a05-976d-7d7c" hidden="false" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" id="983a-faa3-57b7-fd7f" hidden="false" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" id="1e7e-3584-8b4d-45c" 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="f14b-5e1e-5d1e-b787"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="98e8-b831-5307-7b37"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Grand Justice Gormayne" hidden="false" id="52f6-b3c0-7891-bb69">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="4ccf-836a-ae1a-60ce" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="e0ee-f8e7-2396-60d3" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="cb48-b93-6bcf-2cd3" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="468b-3706-81a7-281f" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="ABHORRENT" hidden="false" id="55e5-21e8-7592-a201" targetId="b59b-b9ff-5e6e-87b2" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6655-c4aa-bb69-3b42" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="3270-8c90-ce7d-b7a8" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="b503-1b6f-3775-a2fc" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Grand Justice Gormayne" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e7e-8177-3865-1324">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Delusion of Justice Served" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="6eb7-28db-b87-d03">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible enemy unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, this unit gains 1 **noble deeds point**. Then, pick 1 of the following effects to apply to the target until the start of your next turn:
***Petty Transgression:*** Add 1 to wound rolls for combat attacks that target that unit.
***Dishonourable Conduct in Battle:*** Friendly non-**^^Monster Flesh-eater Courts^^** units can use **^^Charge^^** abilities even if they used a **^^Run^^** ability in the same turn, but if they do so, they must end the charge move within ½" of the target.
***Grievous Insult to the Court:*** While the target is in combat with a friendly **^^Abhorrant^^**, add 1 to hit rolls for attacks made by friendly **^^Flesh-eater Courts^^** units that target that unit.
***Regicide:*** If the target destroyed a friendly **^^Abhorrant^^** this battle, add 1 to the Damage characteristic of melee weapons used by friendly **^^Flesh-eater Courts^^** units that target that unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="60c6-ecd0-814c-f0c8" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Grand Justice Gormayne" hidden="false" id="e942-85e5-1afe-2f24">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gore-streaked Gavel" hidden="false" id="d4e7-6eda-290d-d6fc">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="54b8-fd72-1f0d-4b02"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5cc2-cbdd-5e17-66ae"/>
</constraints>
<profiles>
<profile name="Gore-streaked Gavel" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4f21-5263-b044-ccc0">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8e50-26db-46a2-8e1f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="13f2-65eb-be9c-e7df"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Abhorrant Ghoul King on Royal Zombie Dragon" hidden="false" id="eac0-ccfe-4b67-34a">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="374a-bf27-a116-7bf5" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="HERO" hidden="false" id="ce61-be71-5ec1-8f60" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="9dab-be99-2e39-3dcf" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="1c8f-37af-acdf-5e70" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="ABHORRENT" hidden="false" id="93c7-63e4-62df-52c0" targetId="b59b-b9ff-5e6e-87b2" primary="false"/>
<categoryLink name="FLY" hidden="false" id="7000-9f7a-e6f3-c984" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="55ea-9aff-534-83b7" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="42da-9ebd-d475-8b57" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="4b8-2246-9ba9-2ac6" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Abhorrant Ghoul King on Royal Zombie Dragon" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c3cd-fa25-8fab-82da">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</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="b2a-6b78-4f3c-50e9">
<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 **Draconic Claws** is 5.</characteristic>
</characteristics>
</profile>
<profile name="Monstrous Hunger" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="1c3-f4fe-657a-d595">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While they are wholly within 12" of this unit, friendly non-**^^Hero Flesh-eater Courts Monsters^^** can use **^^Charge^^** abilities even if they used a Run ability in the same turn.</characteristic>
</characteristics>
</profile>
<profile name="Draconic Terror" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9d6b-e632-39f1-4b1b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. If the roll exceeds the target’s Control characteristic, the target cannot use commands for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Abhorrant Ghoul King on Royal Zombie Dragon" hidden="false" id="9d85-fafe-caa9-8ae1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Pestilential Breath" hidden="false" id="64ef-9d71-a57b-419a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4ce4-811c-6cbd-453d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8283-9b29-7c28-6be0"/>
</constraints>
<profiles>
<profile name="Pestilential Breath" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="2462-2302-52c2-bd8f">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat, Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gory Talons and Fangs" hidden="false" id="1ce8-ffb5-99b1-3826">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3f2c-dea7-35fc-e711"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2d0f-d66d-51bb-b114"/>
</constraints>
<profiles>
<profile name="Gory Talons and Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="13d4-70f4-59aa-a10b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Draconic Maw" hidden="false" id="63c6-1b10-4fa6-94b4">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d0bb-c809-e70e-c427"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="729-83fe-1c8d-42bc"/>
</constraints>
<profiles>
<profile name="Draconic Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2c14-3faf-8d21-c892">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Draconic Claws" hidden="false" id="2547-9152-4887-6bdd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1b41-f652-36e5-fed"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6a24-f205-3884-da5c"/>
</constraints>
<profiles>
<profile name="Draconic Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d285-cf59-7f1f-b263">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3fc-9c5d-6939-14d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e001-a3a8-8fef-1100"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Abhorrant Ghoul King on Royal Terrorgheist" hidden="false" id="c3e8-13a9-161d-1573">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="b726-b2ea-2cda-8b19" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="HERO" hidden="false" id="8de3-6f7c-da0-ee39" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="f11c-547-a243-bd02" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="60fa-1518-bb82-7eda" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="ABHORRENT" hidden="false" id="e1d1-ab90-9f94-18e8" targetId="b59b-b9ff-5e6e-87b2" primary="false"/>
<categoryLink name="FLY" hidden="false" id="adf3-cb1-2eda-d40c" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="206f-96ce-a4a5-34f5" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="9367-5738-8d68-a431" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="444c-593b-9d3c-501f" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Abhorrant Ghoul King on Royal Terrorgheist" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="179d-47c7-c37-4729">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</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="5094-3614-8694-7a1e">
<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 **Terrorgheist's Skeletal Talons** is 4.</characteristic>
</characteristics>
</profile>
<profile name="Gaping Maw" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e85d-bb17-3072-5e55">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time an attack made with this unit’s **Terrorgheist’s Fanged Maw** scores a critical hit, that attack inflicts 6 mortal damage on the target unit and the attack sequence ends.</characteristic>
</characteristics>
</profile>
<profile name="Ferocious Hunger" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bf1b-63f8-a773-7305">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Hero^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, attacks made with this unit’s **Terrorgheist’s Fanged Maw** that target that enemy unit score critical hits on unmodified hit rolls of 5+ for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Abhorrant Ghoul King on Royal Terrorgheist" hidden="false" id="cc48-11c0-4726-168d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Death Shriek" hidden="false" id="f6ee-f4bf-16a3-1a9d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fcc5-8bb8-ae9b-9eb7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="83ad-ecaa-b747-a482"/>
</constraints>
<profiles>
<profile name="Death Shriek" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="bd08-d3ab-acf8-44b5">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D6</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat, Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gory Talons and Fangs" hidden="false" id="91bc-f666-bb8f-a2e9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4851-e192-9732-e36a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f878-68-b14e-c798"/>
</constraints>
<profiles>
<profile name="Gory Talons and Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2519-be1-a5e1-c606">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Terrorgheist’s Fanged Maw" hidden="false" id="bc93-8bba-9085-b2d7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6ffe-9ea9-7e1a-fd24"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2f5e-29fa-3183-cf8c"/>
</constraints>
<profiles>
<profile name="Terrorgheist’s Fanged Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b3b4-2c3f-86c4-2a44">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D6</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Terrorgheist’s Skeletal Talons" hidden="false" id="159c-a01c-9831-799f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a34a-6057-db11-3d77"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2e18-af56-ab6f-d33b"/>
</constraints>
<profiles>
<profile name="Terrorgheist’s Skeletal Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="83a-dea1-30e5-2987">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1413-205-3b52-6e71"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="13f8-85-2c97-e3ce"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ushoran, Mortarch of Delusion" hidden="false" id="b0a4-76e1-de3-9384">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="9af3-f3ea-9586-7f5a" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="9299-fe2-84bd-ead0" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="5e92-b546-8f7e-7ff2" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="24b3-e6b6-45ae-689a" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="fe11-71af-a4e4-d6ed" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="31a1-2d0f-93d2-1404" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="c068-fed6-5f18-45ba" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="7d8f-4611-48e2-24a0" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="ABHORRENT" hidden="false" id="1ad1-66d2-97b0-c2b8" targetId="b59b-b9ff-5e6e-87b2" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5d98-583c-86f9-c975" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Ushoran, Mortarch of Delusion" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="cab4-12e7-bf30-e6c9">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</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="ad57-f96d-b74c-32ef">
<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 **Monstrous Talons** is 6.</characteristic>
</characteristics>
</profile>
<profile name="The Carrion King" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="69e8-3e9b-ff28-29e1">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 6 noble deeds points, the effect of the ‘Feeding Frenzy’ ability applies to friendly **^^Flesh-eater Courts^^** units while they are wholly within 24" of this unit instead of 12".</characteristic>
</characteristics>
</profile>
<profile name="Shroudcage Fragment" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f4e7-62d2-5c6-97ff">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 enemy units in combat with this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice for each target. If the roll exceeds the target’s Control characteristic, the target has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Epicentre of Delusion" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="83d6-2d7e-fbe8-1e41">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick 1 of the following effects to apply until the start of your next turn:</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">***The Royal Hunt:*** Add 1 to wound rolls for attacks made by friendly **^^Flesh-eater Courts^^** units that target a **^^Monster^^**.
***Crusading Army:*** Add 1 to run rolls and charge rolls for friendly **^^Flesh-eater Courts^^** units.
***Defenders of the Realm:*** Add 1 to save rolls for friendly **^^Flesh-eater Courts^^** units while they are contesting an objective you control.
***The Grand Tournament:*** Add 1 to hit rolls for attacks made by other friendly **^^Flesh-eater Courts Heroes^^** if they charged in the same turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Glimpse of Delusion" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="510c-b21a-1880-adfd">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy model within 18" of this unit to be the target, pick another enemy unit within the target’s combat range to be the victim, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Pick 1 of the target’s melee weapons. Immediately resolve combat attacks made with that weapon against the victim.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="7d5d-6145-5e0c-3242" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ushoran, Mortarch of Delusion" hidden="false" id="a2ec-82c1-5fea-6122">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sceptre of the Carrion King" hidden="false" id="eb50-6b14-bd05-537c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6cec-a653-c760-534c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="deda-fc26-398-1665"/>
</constraints>
<profiles>
<profile name="Sceptre of the Carrion King" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7b19-5d1f-71b6-f463">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3+3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Monstrous Talons" hidden="false" id="373b-704c-cd8-6355">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1980-928b-edcc-7f3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3f2d-c8ca-72e-2f33"/>
</constraints>
<profiles>
<profile name="Monstrous Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="a21c-e3f2-8e0-38b9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bc96-9e4a-8fb5-9bc9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f126-a9d9-aa90-9fd2"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Abhorrant Cardinal" hidden="false" id="2f4b-8632-d9fe-ac87">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="e1aa-1cc4-613d-a9c8" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="HERO" hidden="false" id="4e07-deac-b3a0-51cb" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="a445-2ea0-9ba2-244c" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="3531-2eba-f8b5-5f4" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="dbad-7144-a0d6-d7f5" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="PRIEST (1)" hidden="false" id="35d2-db12-115-a997" targetId="3fe-84f4-cec6-a1c1" primary="false"/>
<categoryLink name="ABHORRENT" hidden="false" id="5b22-9cb5-82d5-4f13" targetId="b59b-b9ff-5e6e-87b2" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="8bce-5ca2-4110-a911" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Abhorrant Cardinal" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a978-9f44-7219-d790">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Rousing Oration" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2856-e35e-d2dc-9241">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Flesh-eater Courts Hero^^** wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, give the target a number of **noble deeds points** equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Abhorrant Cardinal" hidden="false" id="453a-fba7-9520-d22a">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cursed Crosier" hidden="false" id="80d8-ee12-700-2b79">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2bcf-d74d-7a4b-5a9d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a8b3-d90e-91e-fe6a"/>
</constraints>
<profiles>
<profile name="Cursed Crosier" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="241-295d-7325-3a6f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="751d-e367-e039-ee44"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9577-2665-2f4d-c1b6"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Abhorrant Gorewarden" hidden="false" id="3a7-f618-ba4d-9f6f">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="a9e5-b6c0-a471-d2de" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="HERO" hidden="false" id="52a9-316c-4192-671e" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="1596-9185-d101-68f0" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="ABHORRENT" hidden="false" id="e896-761c-3848-904f" targetId="b59b-b9ff-5e6e-87b2" primary="false"/>
<categoryLink name="FLY" hidden="false" id="8b25-d03-ecdc-e5f8" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="4555-dbb5-bb57-c212" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="ff6a-906e-43d0-4f6a" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="3a46-86ed-955a-39cf" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="d1d4-af1c-7e95-ea6" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Abhorrant Gorewarden" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="939b-c830-4d0-95ff">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Ferocious Hunger" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7577-bbdc-9dfd-5860">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit is not in combat, you can pick up to 2 friendly **Crypt Flayers** or **Morbheg Knights** units that are not in combat and are wholly within 12" of this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove this unit and the targets (if any) from the battlefield. Set up this unit again on the battlefield more than 9" from all enemy units. Then, set up each target wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Abhorrant Gorewarden" hidden="false" id="93c0-c490-b205-d9ac">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gory Talons and Fangs" hidden="false" id="dad0-d5c6-7ef0-f429">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3db3-126-b6bc-e7db"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="332c-24fc-c58-1e1a"/>
</constraints>
<profiles>
<profile name="Gory Talons and Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="8544-dba-5ab4-d629">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="46f6-c35e-657d-1226"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="be6a-a1c7-2126-7acb"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Cryptguard" hidden="false" id="3ca4-c35b-27c9-63c4">
<profiles>
<profile name="Cryptguard" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="6dee-af2e-8d90-af88">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">1</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Royal Bodyguard" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="592d-2d0-99bd-35cf">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While any friendly **^^Flesh-eater Courts Heroes^^** are wholly within this unit’s combat range, both this unit and those **^^Heroes^^** have **^^Ward (5+)^^**.</characteristic>
</characteristics>
</profile>
<profile name="Armoury of Madness" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1773-34d0-98c0-2136">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If any damage points inflicted by attacks made as part of that **^^Fight^^** ability are allocated to any enemy units, those enemy units cannot use commands until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="WARD (6+)" hidden="false" id="9ec1-1857-8f4d-486c" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="DEATH" hidden="false" id="d273-e609-3bcc-a623" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="CHAMPION" hidden="false" id="a19b-f0d9-227a-ccc1" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="75be-7aa4-a7da-b4f3" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="STANDARD BEARER (1/10)" hidden="false" id="f321-ad01-e41d-8085" targetId="1f17-ad98-ada0-ccf" primary="false"/>
<categoryLink name="MUSICIAN (1/10)" hidden="false" id="f1ca-c4e-2e44-69ed" targetId="eeed-ef77-b0d-fa9d" primary="false"/>
<categoryLink name="SERFS" hidden="false" id="b096-de68-9743-b82a" targetId="7c27-1670-92e9-a96" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="a6c8-3437-6739-774a" targetId="75d6-6995-dfcc-3898" primary="true"/>
</categoryLinks>
<costs>
<cost name="" id="65ac-e3ca-376f-69bd" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Cryptguard" hidden="false" id="b563-29c4-3aa0-f369" defaultAmount="1,1,1,7">
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="true" id="dc5b-df24-c8a8-fcf0"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="true" id="5505-1e5c-801d-610a"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cursed Weapon" hidden="false" id="7c56-f8fe-b3c-c783">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bd51-eb85-199a-67c6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3982-93f3-f3a8-2b81"/>
</constraints>
<profiles>
<profile name="Cursed Weapon" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="aa43-7153-228d-b5ec">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="10" field="dc5b-df24-c8a8-fcf0">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="10" field="5505-1e5c-801d-610a">
<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="55a8-774-75fd-e0bd" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c244-eb19-9e34-10b2"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="df27-22cc-bbf2-9196" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3ca4-c35b-27c9-63c4" shared="true" id="c8da-cc8-d8f4-d3ab" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="d70b-6e9-c64f-8cf3" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3ca4-c35b-27c9-63c4" shared="true" id="d331-db07-3dbb-be85" includeChildSelections="true"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="d331-db07-3dbb-be85">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="3ca4-c35b-27c9-63c4" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="1300-9f7a-1702-db4d" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3ca4-c35b-27c9-63c4" shared="true" id="2ab3-9374-fb60-c641" includeChildSelections="true"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="2ab3-9374-fb60-c641">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="3ca4-c35b-27c9-63c4" 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="Morbheg Knights" hidden="false" id="3b30-80e8-cca6-e129">
<profiles>
<profile name="Morbheg Knights" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="60d0-d762-4962-2c51">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">4</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 Pounce" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="58df-97e0-a3bb-9cf0">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use **^^Charge^^** abilities even if it used a **^^Retreat^^** ability in the same turn. In addition, no mortal damage is inflicted on this unit by **^^Retreat^^** abilities.</characteristic>
</characteristics>
</profile>
<profile name="Shrieking Charge" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="330c-8364-7d14-c770">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="WARD (6+)" hidden="false" id="83c6-d55a-d13-b81e" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="DEATH" hidden="false" id="be26-cfa4-1fb7-e28" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="CHAMPION" hidden="false" id="575e-9653-52fc-d1cb" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="FLY" hidden="false" id="4cfe-34ce-1018-b4ef" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="80c4-f374-65f1-de28" targetId="926c-df8c-6841-d49e" primary="true"/>
<categoryLink name="STANDARD BEARER (1/3)" hidden="false" id="30bf-b4c5-71ff-fb7" targetId="9072-b48-3dd7-2cbc" primary="false"/>
<categoryLink name="MUSICIAN (1/3)" hidden="false" id="ee88-86c9-96d7-90e4" targetId="6cae-9aa2-6245-ab11" primary="false"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="c5e1-d17d-6c6-42f1" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="KNIGHTS" hidden="false" id="5781-32d6-d2a-6d76" targetId="6233-2f5-6c79-e030" primary="false"/>
</categoryLinks>
<costs>
<cost name="" id="cc4-c39a-a317-9e52" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Morbheg Knight" hidden="false" id="de70-5375-8e70-6ad8" defaultAmount="1,1,1">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="f1c-f4fc-42fc-d010"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="27bb-d633-6fe5-d95a"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Nightshrieker’s Claws and Teeth" hidden="false" id="9c86-9f55-a274-c0e8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="39d2-a672-bc39-7253"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cc8c-b45f-94f8-e8ca"/>
</constraints>
<profiles>
<profile name="Nightshrieker’s Claws and Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6ba2-ba21-3758-683a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Grisly Lance" hidden="false" id="b1a-6df2-429c-8d28">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a173-c9e5-429-9e97"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d2a8-507a-d747-1bcd"/>
</constraints>
<profiles>
<profile name="Grisly Lance" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4f70-1e4c-2169-58fc">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="3" field="f1c-f4fc-42fc-d010">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="27bb-d633-6fe5-d95a">
<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="79f2-ebac-c53e-a82" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a471-bc2e-6b08-b802"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Standard Bearer" hidden="false" id="c769-605c-1825-77b1" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1">
<constraints>
<constraint type="max" value="1" field="selections" scope="3b30-80e8-cca6-e129" shared="true" id="e154-659f-36bf-af3" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="909d-24b6-a034-65ff"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="e154-659f-36bf-af3">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="3b30-80e8-cca6-e129" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="78cf-11b4-6b23-7eca" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3b30-80e8-cca6-e129" shared="true" id="3b8a-a393-e5a9-59d7" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="435b-2d1d-f9e7-fb7"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="3b8a-a393-e5a9-59d7">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="3b30-80e8-cca6-e129" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Champion" hidden="false" id="cb6d-5226-d5ff-85ad" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="3b30-80e8-cca6-e129" shared="true" id="b5b0-97f3-f584-e69d" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c3b0-11d5-4eaf-aace"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Marrowscroll Herald" hidden="false" id="c9ce-303a-ccbb-65de">
<categoryLinks>
<categoryLink name="DEATH" hidden="false" id="1655-4f75-85a1-509" targetId="d484-a2d7-cf4f-c4a0" primary="false"/>
<categoryLink name="HERO" hidden="false" id="706-b7c1-d52a-19c6" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="FLESH-EATER COURTS" hidden="false" id="6bfa-6cf8-3b9e-b9b7" targetId="8d10-dc24-7ece-50df" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="3deb-5f4d-e53d-890a" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="a28d-cb7c-9cf0-421f" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="COURTIER" hidden="false" id="66da-f06e-eff3-fae8" targetId="887c-f52e-a855-53ec" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="3098-c77e-2618-2a71" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Marrowscroll Herald" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="52f8-154c-a6ae-1c50">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="The King's Entreaty" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1a3a-7639-c04-2aa8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat
with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, pick 1 of the following effects:
***Attack the Apostate!:*** Friendly **^^Flesh-eater Courts^^** units in combat with the target have **^^Strike-first^^** for the rest of the turn.
***Welcome the Disciple!:*** The target has the **^^Infected^^** keyword for the rest of the battle. Each time your opponent declares a command, **^^Spell^^** ability or **^^Prayer^^** ability for an **^^Infected^^** unit, roll a dice as a reaction. On a 5+:
• If they declared a command, that command has no effect. The command still counts as having been used and the command points spent to use the command are still lost.
• If they declared a **^^Spell^^** or **^^Prayer^^** ability, that spell or prayer fails.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Don't Shoot the Mesenger" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a8fc-646f-b789-c54c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is not in combat and is wholly within the combat ranges of 3 or more other friendly **^^Flesh-eater Courts Infantry^^** models, it is not visible to enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Marrowscroll Herald" hidden="false" id="45bf-6108-7dc7-842">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bone Scythe" hidden="false" id="18d5-f887-a4f5-288c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="13d1-523d-b781-7918"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fa89-a7ee-5c60-deb5"/>
</constraints>
<profiles>
<profile name="Bone Scythe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="8851-8bd7-b5dd-b6c8">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>