-
Notifications
You must be signed in to change notification settings - Fork 82
/
Death - Flesh-eater Courts.cat
5892 lines (5880 loc) · 442 KB
/
Death - Flesh-eater Courts.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="6d29-cde4-372b-08d3" name="Death - Flesh-eater Courts" revision="107" battleScribeVersion="2.03" authorName="https://discord.gg/4MSsD7" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<publications>
<publication id="6d29-cde4-pubN65537" name="Battletome: Flesh-eater Courts 2019"/>
<publication id="6d29-cde4-pubN65555" name="Battletome: Flesh-eater Courts"/>
<publication id="6d29-cde4-pubN71388" name="Battletome: Flesh-eater Courts, Official Errata, March 2019"/>
<publication id="6afd-4f9a-0665-9b55" name="Battletome: Flesh-eater Courts, Official Errata, July 2019"/>
<publication id="309b-0f07-5697-9a52" name="Battletome: Flesh-eater Courts, Errata October 2022"/>
</publications>
<profileTypes>
<profileType id="93b7-d756-4558-61e1" name="Battalion Organization">
<characteristicTypes>
<characteristicType id="bc6e-e731-eed7-c384" name="Required"/>
</characteristicTypes>
</profileType>
<profileType id="b1c1-c8b1-016e-4235" name="Zombie Dragon's Wound Table">
<characteristicTypes>
<characteristicType id="1712-425e-7e40-a5b1" name="Move"/>
<characteristicType id="b17b-97f7-9c40-21e5" name="Pestilential Breath"/>
<characteristicType id="e309-9fb0-c644-47ee" name="Sword-like Claws"/>
</characteristicTypes>
</profileType>
<profileType id="cde6-89a6-4a4c-9d32" name="Terrorgheist Wound Table">
<characteristicTypes>
<characteristicType id="2ad2-839b-d5ee-5770" name="Move"/>
<characteristicType id="dfdc-a86c-e979-1eb7" name="Death Shriek"/>
<characteristicType id="5b09-7a6b-dd30-faf1" name="Skeletal Talons"/>
</characteristicTypes>
</profileType>
<profileType id="149a-6d26-c3e0-abdc" name="Delusion Table">
<characteristicTypes>
<characteristicType id="3ac8-c3ba-0bac-115a" name="Delusion"/>
</characteristicTypes>
</profileType>
<profileType id="4959-dfb7-8d3a-a2d8" name="Nagash's Wounds Suffered">
<characteristicTypes>
<characteristicType id="a8cb-c0d2-5f4e-b001" name="The Nine Books of Nagash"/>
<characteristicType id="dc13-513a-62da-5cc4" name="Zefet-nebtar"/>
<characteristicType id="fc3e-569d-c347-0cdc" name="Alakanash"/>
</characteristicTypes>
</profileType>
<profileType name="Ushoran Wounds Suffered" hidden="false" id="47ed-4c74-6bd2-980f">
<characteristicTypes>
<characteristicType id="484c-b8de-f02e-75bb" name="Monstrous Claws and Fangs"/>
<characteristicType id="37c2-fa8b-ae93-152c" name="Epicentre of Delusion"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="da3d-62f1-475c-543b" name="CRYPT GHOULS" hidden="false"/>
<categoryEntry id="e2da-3eb4-92e4-8efb" name="ABHORRANT GHOUL KING" hidden="false"/>
<categoryEntry id="5444-7ff5-341d-3933" name="CRYPT GHAST COURTIER" hidden="false"/>
<categoryEntry id="53f6-aa54-91a5-fcfb" name="MORDANT" hidden="false"/>
<categoryEntry id="3e2f-a545-bac2-1860" name="COURTIER" hidden="false"/>
<categoryEntry id="40b3-b3a5-3e6e-8d0d" name="CRYPT HAUNTER COURTIER" hidden="false"/>
<categoryEntry id="e8b9-1dad-bf27-3eff" name="CRYPT HORRORS" hidden="false"/>
<categoryEntry id="fe5b-b01c-7626-75fb" name="CRYPT INFERNAL COURTIER" hidden="false"/>
<categoryEntry id="b8b2-91fc-0a0d-ae80" name="CRYPT FLAYERS" hidden="false"/>
<categoryEntry id="a721-57e6-b3a9-d735" name="VARGHULF COURTIER" hidden="false"/>
<categoryEntry id="5b04-42e4-33ef-10b1" name="ABHORRANT" hidden="false"/>
<categoryEntry id="c8b5-a8fb-df99-fd54" name="ROYAL TERRORGHEIST" hidden="false"/>
<categoryEntry id="9242-4d53-3ebe-e64a" name="MENAGERIE" hidden="false"/>
<categoryEntry id="3246-ccec-12af-67af" name="KNIGHTS" hidden="false"/>
<categoryEntry id="015d-7ef1-4fdf-f90c" name="ABHORRANT ARCHREGENT" hidden="false"/>
<categoryEntry id="ee79-e29c-b47c-f2db" name="SERFS" hidden="false"/>
<categoryEntry id="17b2-f4c3-e747-162e" name="ROYAL ZOMBIE DRAGON" hidden="false"/>
<categoryEntry id="50f4-2b4e-b140-919f" name="CORPSEMARE STAMPEDE" hidden="false"/>
<categoryEntry id="64bd-85af-1388-5eb6" name="CHALICE OF USHORAN" hidden="false"/>
<categoryEntry id="8c31-0d92-7dd5-4e92" name="CADAVEROUS BARRICADE" hidden="false"/>
<categoryEntry id="2b69-7ea2-a20e-27d1" name="CHARNEL THRONE" hidden="false"/>
<categoryEntry id="590b-2a26-1603-3ed9" name="DUKE CRAKMARROW" hidden="false"/>
<categoryEntry id="8ea6-5bbb-e5d6-0b64" name="GRYMWATCH" hidden="false"/>
<categoryEntry id="aaed-7228-c070-a251" name="HOLLOWMOURNE" hidden="false"/>
<categoryEntry id="af5a-c2ed-b1df-7760" name="CRYPT INFERNAL COURTIER General" hidden="false"/>
<categoryEntry id="e436-d1d7-652b-ab96" name="CRYPT HAUNTER COURTIER General" hidden="false"/>
<categoryEntry id="52e4-3e6e-c3c9-58e0" name="ROYAL BEASTFLAYERS" hidden="false"/>
<categoryEntry name="MARROWSCROLL HERALD" hidden="false" id="e331-5936-7c92-f48b"/>
<categoryEntry name="USHORAN" hidden="false" id="ec00-f808-c337-38f5"/>
<categoryEntry name="ABHORRANT CARDINAL" hidden="false" id="9aa6-4e02-cf3-aa5b"/>
<categoryEntry name="ABHORRANT GOREWARDEN" hidden="false" id="fe0a-2400-fd27-1447"/>
<categoryEntry name="GRAND JUSTICE GORMAYNE" hidden="false" id="bb13-e01f-8d98-c68c"/>
<categoryEntry name="ROYAL DECAPITATOR" hidden="false" id="6aaf-34b3-15d0-400d"/>
<categoryEntry name="CRYPTGUARD" hidden="false" id="9527-1e4c-6681-2aa5"/>
<categoryEntry name="MORBHEG KNIGHTS" hidden="false" id="28ac-1b27-ef5e-33be"/>
<categoryEntry name="Gorewarden general" hidden="true" id="c89f-a721-882d-41b9"/>
<categoryEntry name="THE SKINNERKIN" id="4297-2283-3d20-2b7d" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink targetId="4824-c8e3-ab7f-1b7b" id="c539-c608-7120-b512" type="selectionEntry" name="The Skinnerkin" hidden="false"/>
<entryLink id="c7c9-5a8a-4868-57bc" name="Allegiance" hidden="false" collective="false" import="true" targetId="d563-f542-5dad-2b09" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="005e-16a4-3a0a-aea3" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f202-c960-472b-5361" name="Crypt Ghouls" hidden="false" collective="false" import="true" targetId="631c-0dae-5912-196d" type="selectionEntry"/>
<entryLink id="f8ec-6015-c1a7-2fd3" name="Duke Crakmarrow" hidden="true" collective="false" import="true" targetId="3659-35fc-ee8b-0f3e" type="selectionEntry"/>
<entryLink id="6a82-64d0-618e-b46f" name="Abhorrant Ghoul King on Royal Terrorgheist" hidden="false" collective="false" import="true" targetId="25e3-54ae-82f5-152f" type="selectionEntry"/>
<entryLink id="f4f9-ccff-07e9-813a" name="Abhorrant Ghoul King on Royal Zombie Dragon" hidden="false" collective="false" import="true" targetId="0e13-f2fc-7308-e23b" type="selectionEntry"/>
<entryLink id="a374-bef2-cc39-d352" name="Crypt Ghast Courtier" hidden="false" collective="false" import="true" targetId="bb96-e300-f36b-2080" type="selectionEntry"/>
<entryLink id="0051-4820-7184-9239" name="Crypt Haunter Courtier" hidden="false" collective="false" import="true" targetId="6a20-a4f2-7590-5f61" type="selectionEntry"/>
<entryLink id="ce37-1abd-e3e3-ba02" name="Crypt Infernal Courtier" hidden="false" collective="false" import="true" targetId="b3ef-0596-d6ee-85c6" type="selectionEntry"/>
<entryLink id="ab0c-720f-95e9-3cb4" name="Varghulf Courtier" hidden="false" collective="false" import="true" targetId="f124-2ae2-055e-c865" type="selectionEntry"/>
<entryLink id="dd7b-e22f-149a-4064" name="Crypt Flayers" hidden="false" collective="false" import="true" targetId="b192-e173-4e69-46c5" type="selectionEntry"/>
<entryLink id="6750-e0b5-8407-9c3a" name="Crypt Horrors" hidden="false" collective="false" import="true" targetId="69e7-2a2c-7334-f453" type="selectionEntry"/>
<entryLink id="e5fa-1e34-8d94-3925" name="Battalion: Abattoir" hidden="false" collective="false" import="true" targetId="a843-2762-31a4-c06b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2382-b310-a8e5-159d" name="Battalion: Attendants at Court" hidden="false" collective="false" import="true" targetId="f3b7-13c9-8290-b443" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d51c-c086-4440-82dc" name="Battalion: Deadwatch" hidden="false" collective="false" import="true" targetId="0f6f-2fbb-c19f-803a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7dae-8035-beda-3f5f" name="Battalion: Cannibal Court" hidden="false" collective="false" import="true" targetId="bd10-d21e-8d3e-4787" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="e247-0bed-214e-22fb" name="Battalion: Ghoul Patrol" hidden="false" collective="false" import="true" targetId="d482-d368-2c51-e254" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d91d-1c90-24a0-862f" name="Battalion: King's Ghouls" hidden="false" collective="false" import="true" targetId="01e2-0d19-f1a2-9cd4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="60e3-fc81-2917-9d3c" name="Battalion: Royal Family" hidden="false" collective="false" import="true" targetId="2543-422f-dbf5-e953" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="0b48-47c6-e1d3-f1af" name="Battalion: Royal Menagerie" hidden="false" collective="false" import="true" targetId="f76b-c286-6e6d-6e43" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8975-5ce0-7afc-978f" name="Battalion: Royal Mordants" hidden="false" collective="false" import="true" targetId="bdff-1d40-156b-e7d3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="46e3-0350-944a-55fa" name="Royal Terrorgheist" hidden="false" collective="false" import="true" targetId="5262-3ed0-9e65-e358" type="selectionEntry"/>
<entryLink id="00d1-5864-dfa1-d55e" name="Royal Zombie Dragon" hidden="false" collective="false" import="true" targetId="a0a1-5316-0121-e73d" type="selectionEntry"/>
<entryLink id="a824-2984-06a3-8c1c" name="Abhorrant Archregent" hidden="false" collective="false" import="true" targetId="e7cb-d62d-6411-53fd" type="selectionEntry"/>
<entryLink id="c554-d2c5-8d8d-b5a0" name="Charnel Throne" hidden="false" collective="false" import="true" targetId="abc8-2377-3094-ae06" type="selectionEntry"/>
<entryLink id="747d-4e40-c2c3-7c31" name="Battalion: The Arcasanctorian Guard" hidden="false" collective="false" import="true" targetId="1576-648f-5235-a453" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f766-6ee2-f2f9-28f7" name="Abhorrant Ghoul King" hidden="false" collective="false" import="true" targetId="9515-1a15-4d1e-7f92" type="selectionEntry"/>
<entryLink id="1ccf-b025-1656-1ef0" name="Big Drogg Fort-Kicka - Gatebreaker Mercenary" hidden="false" collective="false" import="true" targetId="8c3b-e825-efb0-25bd" type="selectionEntry"/>
<entryLink id="5fe6-4159-cf72-1dfc" name="Battalion: Mortevell's Helcourt" hidden="false" collective="false" import="true" targetId="3baa-9a5c-36cc-1369" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="0b9e-131f-5420-c144" name="The Grymwatch" hidden="true" collective="false" import="true" targetId="29d5-0b2d-6b17-20ab" type="selectionEntry"/>
<entryLink id="e034-625e-02d2-737a" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="296f-d30b-7ed5-408f" type="selectionEntry"/>
<entryLink id="4764-6e7a-170f-40a8" name="Nagash, Supreme Lord of the Undead" hidden="false" collective="false" import="true" targetId="7c0c-91b9-f052-24af" type="selectionEntry">
<infoLinks>
<infoLink id="e666-fa47-e931-92d0" name="Blood Feast" hidden="false" targetId="8236-8d28-defc-5987" type="profile"/>
<infoLink id="c658-3555-cbe0-e077" name="Bonestorm" hidden="false" targetId="aa99-687a-7d70-4313" type="profile"/>
<infoLink id="884c-7112-68e1-75b8" name="Deranged Transformation" hidden="false" targetId="e03f-f5ef-9494-379b" type="profile"/>
<infoLink id="ad81-e710-6743-5f5f" name="Miasmal Shroud" hidden="false" targetId="a9e3-c72b-a285-1208" type="profile"/>
<infoLink id="4bce-dcdc-5d91-e328" name="Monstrous Vigour" hidden="false" targetId="ca44-d98d-931a-eaba" type="profile"/>
<infoLink id="525e-e2af-1d8a-b250" name="Spectral Host" hidden="false" targetId="a94b-797e-56da-3b8f" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="1811-bee8-aedf-8149" name="Endless Spell: Cadaverous Barricade" hidden="false" collective="false" import="true" targetId="5525-51ac-7d2e-6a3e" type="selectionEntry"/>
<entryLink id="1219-d696-8363-cdc7" name="Endless Spell: Corpsemare Stampede" hidden="false" collective="false" import="true" targetId="67e9-09b1-bc11-a859" type="selectionEntry"/>
<entryLink id="c014-9dd7-2fdc-09bb" name="Endless Spell: Chalice of Ushoran" hidden="false" collective="false" import="true" targetId="a1c1-4af5-032e-8823" type="selectionEntry"/>
<entryLink id="90d5-da38-a8cc-bbbd" name="Flesh-eater Courts Battle Tactics" hidden="false" collective="false" import="true" targetId="ae1d-e49b-1bda-8d2a" type="selectionEntry"/>
<entryLink id="eddd-c7ab-f2c5-aac3" name="Regiment of Renown - Veremord's Shamblers" hidden="false" collective="false" import="true" targetId="fa3f-532f-9753-cd59" type="selectionEntry"/>
<entryLink id="7745-d4c4-91be-339c" name="Royal Beastflayers" hidden="false" collective="false" import="true" targetId="1d12-6216-10d2-2f28" type="selectionEntry"/>
<entryLink import="true" name="Marrowscroll Herald" hidden="false" type="selectionEntry" id="ac3a-6d27-4403-4a41" targetId="73b7-f1ea-97cf-9a50"/>
<entryLink import="true" name="Ushoran, Mortarch of Delusion" hidden="false" type="selectionEntry" id="b4ce-5741-63a4-e537" targetId="3d22-faad-f95d-173a"/>
<entryLink import="true" name="Grand Justice Gormayne" hidden="false" type="selectionEntry" id="c515-3cb7-5c6c-1130" targetId="6dba-937-c22b-bccf"/>
<entryLink import="true" name="Abhorrant Cardinal" hidden="false" type="selectionEntry" id="d6f-d076-daad-57ef" targetId="eff7-5485-4d69-64c7"/>
<entryLink import="true" name="Cryptguard" hidden="false" type="selectionEntry" id="5b73-6667-76b8-2a83" targetId="b689-54f9-5b9e-47cb"/>
<entryLink import="true" name="Abhorrant Gorewarden" hidden="false" type="selectionEntry" id="b11b-f71f-aa5-4f5f" targetId="a617-c031-1894-e81b"/>
<entryLink import="true" name="Royal Decapitator" hidden="false" type="selectionEntry" id="abb4-e512-678f-34be" targetId="698f-7fbf-7a84-59ff"/>
<entryLink import="true" name="Regiment of Renown - Neferata's Royal Echelon" hidden="false" type="selectionEntry" id="b27e-122b-7ea2-b99b" targetId="6a5b-f6a9-b445-7a2f"/>
<entryLink import="true" name="Regiment of Renown - The Sorrowmourne Choir" hidden="false" type="selectionEntry" id="c2e8-63f8-bb0a-3ae8" targetId="48ca-d15d-4e8b-be5b"/>
<entryLink import="true" name="Regiment of Renown - The Sternieste Garrison" hidden="false" type="selectionEntry" id="48b1-474c-a21c-e8bc" targetId="1061-aedd-61af-3ef6"/>
<entryLink import="true" name="Regiment of Renown - Scions of the Necropolis" hidden="false" type="selectionEntry" id="287f-1dca-2566-8845" targetId="8fe0-4d59-efcf-50e0"/>
<entryLink import="true" name="Regiment of Renown - The Liche's Hand" hidden="false" type="selectionEntry" id="2c68-125c-19bd-137d" targetId="b809-9d2-4993-b523"/>
<entryLink import="true" name="Morbheg Knights" hidden="false" type="selectionEntry" id="b051-af5b-1c0a-c68d" targetId="97d9-cba9-52a4-1b00"/>
</entryLinks>
<rules>
<rule id="1b49-484e-bc30-aa58" name="Muster Abilities" publicationId="6d29-cde4-pubN65555" page="75" hidden="false">
<description>Several Flesh-eater Courts units have Muster abilities, such as Muster Royal Guard, that allow you to return slain models to a unit. If you use a Muster ability, set up the returning models one at a time within 1" of a model from the unit they are returning to (this can be a model returned earlier in that phase). The models can only be set up within 3" of an enemy unit if any models from their unit are already within 3" of that enemy unit.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="9515-1a15-4d1e-7f92" name="Abhorrant Ghoul King" publicationId="6afd-4f9a-0665-9b55" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="9087-1bc2-d242-968d" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Black Hunger spells.</characteristic>
</characteristics>
</profile>
<profile id="0b73-5078-f899-a31c" name="Abhorrant Ghoul King" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="e836-17c7-0674-8a88" name="Code of Honour" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of the combat phase, you can pick an enemy HERO within 1" of this unit and say that this unit will duel that enemy HERO. If you do so, add 1 to the Damage characteristic of this unit’s melee weapons until the end of the phase, but it can only target that enemy HERO.</characteristic>
</characteristics>
</profile>
<profile id="544c-2f8f-39d0-fffe" name="Royal Blood" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can heal up to D3 wounds allocated to this unit.</characteristic>
</characteristics>
</profile>
<profile name="Unnatural Speed" typeId="2e81-5e22-c6e1-73cb" typeName="Spell" hidden="false" id="884c-88cf-c581-3d05">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705"/>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, this unit can immediately attempt a charge and you can roll 3D6 for the charge roll. If the charge is successful, the strike-first effect applies to this unit in the following combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e923-a437-d491-e0ec" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="5096-43c6-f9dc-7958" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6419-a903-fee3-9c0b" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="37ba-5738-bbdc-be7b" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="e34b-d656-7132-ffd1" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="5568-0e13-c117-e781" name="New CategoryLink" hidden="false" targetId="6b35-0508-c6cc-6592" primary="false"/>
<categoryLink id="43e2-bad3-d633-f549" name="ABHORRANT" hidden="false" targetId="5b04-42e4-33ef-10b1" primary="false"/>
<categoryLink id="77a6-c11d-ce3b-b804" name="ABHORRANT GHOUL KING" hidden="false" targetId="e2da-3eb4-92e4-8efb" primary="false"/>
<categoryLink id="a48d-f254-b99e-5c5a" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="5ec7-6e7c-8bdc-b2d3" name="VAMPIRE" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<categoryLink id="42cd-e710-cae0-6b70" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="1b9f-6d62-9617-33d4" primary="false" name="Champion"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7576-b547-13d8-fa8b" name="Gory Talons and Fangs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a9f-99d3-197d-2927" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20d5-ef40-087f-22fa" type="max"/>
</constraints>
<profiles>
<profile id="2de7-016a-a7ef-984e" name="Gory Talons and Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b195-f855-a98b-f061" name="General" hidden="false" collective="false" import="true" targetId="8228-415a-66c3-dffe" type="selectionEntry"/>
<entryLink id="67ba-1059-adf3-21fa" name="Artefacts" hidden="false" collective="false" import="true" targetId="c8cb-28b1-ffbb-2bbf" type="selectionEntryGroup"/>
<entryLink id="1e8e-e6c5-4f25-d55f" name="Command Traits" hidden="false" collective="false" import="true" targetId="2b46-6a34-bba4-a7a2" type="selectionEntryGroup"/>
<entryLink id="08ef-1619-cf05-3d50" name="Spell Lores" hidden="false" collective="false" import="true" targetId="011c-b2d0-4781-ff07" type="selectionEntryGroup"/>
<entryLink id="6c50-ce8c-fb83-5e18" name="Battalions" hidden="false" collective="false" import="true" targetId="3f3e-293b-65ed-e3fa" type="selectionEntryGroup"/>
<entryLink id="2477-4f87-8461-0b7b" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="7586-8f34-3277-64b1" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
<entryLink import="true" name="Prayer Scriptures" hidden="false" type="selectionEntryGroup" id="a090-f131-d352-14fd" targetId="ec11-dabf-5c8-1a21"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</selectionEntry>
<selectionEntry id="25e3-54ae-82f5-152f" name="Abhorrant Ghoul King on Royal Terrorgheist" publicationId="6afd-4f9a-0665-9b55" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="37f6-2869-17eb-b9aa" name="Gaping Maw" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with this model’s Fanged Maw is 6, that attack inflicts 6 mortal wounds on the target unit and the attack sequence ends (do not make a wound or save roll).</characteristic>
</characteristics>
</profile>
<profile id="b1cd-c7f6-5b82-7403" name="Infested" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is destroyed, before it is removed from play, each enemy unit within 3” of this unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="bab1-4ccf-a892-82ec" name="Abhorrant Ghoul King on Terrorgheist" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">14</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="830d-0083-244c-813c" name="Royal Blood" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can heal up to D3 wounds allocated to this unit.</characteristic>
</characteristics>
</profile>
<profile id="f3bb-c151-6ac5-f9df" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Unholy Vitality spells.</characteristic>
</characteristics>
</profile>
<profile name="Ferocious Hunger" typeId="2e81-5e22-c6e1-73cb" typeName="Spell" hidden="false" id="6916-2d70-c3c7-a4c9">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 friendly ROYAL TERRORGHEIST wholly within range. You can re-roll hit rolls for attacks made with that unit’s Fanged Maw until your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bed0-d455-3f56-de50" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="86c1-496f-2227-645c" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="afd4-a4e3-279e-ba6a" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bf58-22b4-0c24-d8e9" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="6008-0b45-0287-f2c2" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="c08e-149f-8bbf-45a7" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="a9af-6610-7101-b5c9" name="New CategoryLink" hidden="false" targetId="e2da-3eb4-92e4-8efb" primary="false"/>
<categoryLink id="b437-fdd5-5e47-f065" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="62f8-e2cf-00fd-e6b8" name="New CategoryLink" hidden="false" targetId="6b35-0508-c6cc-6592" primary="false"/>
<categoryLink id="01a1-78cd-f53a-808a" name="ABHORRANT" hidden="false" targetId="5b04-42e4-33ef-10b1" primary="false"/>
<categoryLink id="e02c-23ed-a8c1-5457" name="ROYAL TERRORGHEIST" hidden="false" targetId="c8b5-a8fb-df99-fd54" primary="false"/>
<categoryLink id="7b0b-b653-a952-6e2e" name="VAMPIRE" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<categoryLink id="8ce7-dbab-3053-408f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="1c4e-b0f7-c8e6-cbe0" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b00c-3dcb-9898-625a" name="Death Shriek" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b3b0-3daf-7478-176c" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf5d-4b34-5155-390c" type="min"/>
</constraints>
<profiles>
<profile id="c913-6452-395d-ef84" name="Death Shriek" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">10"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">*</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">*</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">*</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">*</characteristic>
</characteristics>
</profile>
<profile id="715a-07a9-235d-1227" name="Death Shriek" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Do not use the attack sequence for an attack made with this unit’s Death Shriek. Instead, roll a dice and add the Death Shriek value shown on this unit’s damage table. If the total is higher than the target unit’s Bravery characteristic, the target unit suffers a number of mortal wounds equal to the difference between its Bravery characteristic and the total.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3392-841c-7faf-4649" name="Gory Talons and Fangs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="25de-76a9-daf9-fc14" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f95-19cf-9958-9908" type="max"/>
</constraints>
<profiles>
<profile id="380f-2ca0-1900-3ddd" name="Gory Talons and Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4e94-28c7-7dce-43f7" name="Fanged Maw" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6e3-0fb6-150d-b5dc" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0668-edf3-731e-4cc3" type="max"/>
</constraints>
<profiles>
<profile id="ab48-747f-daf0-f452" name="Fanged Maw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3701-2d57-7232-1d09" name="Skeletal Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b971-7e33-0563-8dff" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68fd-d72c-f997-4b2c" type="max"/>
</constraints>
<profiles>
<profile id="8fa2-63c7-50c3-37f7" name="Skeletal Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e950-ab06-cc32-de63" name="General" hidden="false" collective="false" import="true" targetId="8228-415a-66c3-dffe" type="selectionEntry"/>
<entryLink id="a456-5dcd-920c-4e5c" name="Command Traits" hidden="false" collective="false" import="true" targetId="2b46-6a34-bba4-a7a2" type="selectionEntryGroup"/>
<entryLink id="5976-e415-d83e-8fd8" name="Artefacts" hidden="false" collective="false" import="true" targetId="c8cb-28b1-ffbb-2bbf" type="selectionEntryGroup"/>
<entryLink id="e324-2bc9-8a8a-2598" name="Spell Lores" hidden="false" collective="false" import="true" targetId="011c-b2d0-4781-ff07" type="selectionEntryGroup"/>
<entryLink id="a89e-8ecf-f21c-83b8" name="Mount Traits" hidden="false" collective="false" import="true" targetId="10a9-acf0-f1a7-626b" type="selectionEntryGroup"/>
<entryLink id="356f-84db-ee61-f2b5" name="Battalions" hidden="false" collective="false" import="true" targetId="3f3e-293b-65ed-e3fa" type="selectionEntryGroup"/>
<entryLink id="3d5b-36f9-75c5-2a19" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="6b12-c18f-2201-4e2f" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
<entryLink import="true" name="Prayer Scriptures" hidden="false" type="selectionEntryGroup" id="497d-ec2e-c35-edc" targetId="ec11-dabf-5c8-1a21"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="430"/>
</costs>
<infoGroups>
<infoGroup name="Damage Table" hidden="false" id="211f-f34a-c0d2-47bc">
<profiles>
<profile name="0-6" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wounds Suffered" hidden="false" id="bcd9-bce0-9915-bce0">
<characteristics>
<characteristic name="Move" typeId="2ad2-839b-d5ee-5770">14"</characteristic>
<characteristic name="Death Shriek" typeId="dfdc-a86c-e979-1eb7">6</characteristic>
<characteristic name="Skeletal Talons" typeId="5b09-7a6b-dd30-faf1">7</characteristic>
</characteristics>
</profile>
<profile name="7-8" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wounds Suffered" hidden="false" id="6a84-e4cd-ba52-b9a1">
<characteristics>
<characteristic name="Move" typeId="2ad2-839b-d5ee-5770">12"</characteristic>
<characteristic name="Death Shriek" typeId="dfdc-a86c-e979-1eb7">5</characteristic>
<characteristic name="Skeletal Talons" typeId="5b09-7a6b-dd30-faf1">6</characteristic>
</characteristics>
</profile>
<profile name="9-11" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wounds Suffered" hidden="false" id="ecf4-4523-2707-efcd">
<characteristics>
<characteristic name="Move" typeId="2ad2-839b-d5ee-5770">10"</characteristic>
<characteristic name="Death Shriek" typeId="dfdc-a86c-e979-1eb7">4</characteristic>
<characteristic name="Skeletal Talons" typeId="5b09-7a6b-dd30-faf1">5</characteristic>
</characteristics>
</profile>
<profile name="12+" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wounds Suffered" hidden="false" id="bcb0-546a-2ed5-99df">
<characteristics>
<characteristic name="Move" typeId="2ad2-839b-d5ee-5770">8"</characteristic>
<characteristic name="Death Shriek" typeId="dfdc-a86c-e979-1eb7">3</characteristic>
<characteristic name="Skeletal Talons" typeId="5b09-7a6b-dd30-faf1">4</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
</selectionEntry>
<selectionEntry id="0e13-f2fc-7308-e23b" name="Abhorrant Ghoul King on Royal Zombie Dragon" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="d3cb-acad-a59b-e8ba" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Monstrous Hunger spells.</characteristic>
</characteristics>
</profile>
<profile id="353c-cd25-8bcd-cf3f" name="Abhorrant Ghoul King on Royal Zombie Dragon" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">16</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="621c-a17b-3a1f-cc7e" name="Draconic Terror" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Enemy units cannot receive the Inspiring Presence command while they are within 3" of any friendly units with this ability.</characteristic>
</characteristics>
</profile>
<profile id="d9c9-be60-8d1c-e721" name="Royal Blood" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can heal up to D3 wounds allocated to this unit.</characteristic>
</characteristics>
</profile>
<profile name="Monstrous Hunger" typeId="2e81-5e22-c6e1-73cb" typeName="Spell" hidden="false" id="8ee9-bbe7-82e-2a64">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, friendly FLESH-EATER COURTS MONSTERS wholly within range of the caster are filled with monstrous hunger until your next hero phase. A unit filled with monstrous hunger can run and still charge later in the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ce65-1637-b6b6-790b" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="a4c3-d45d-6711-dfed" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="59f6-6d14-c66a-ee09" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="250d-a824-3e98-f894" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="94f1-c0fe-f249-c99b" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="ce92-731c-1216-5ef4" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="0eb6-0449-fcb1-396d" name="New CategoryLink" hidden="false" targetId="e2da-3eb4-92e4-8efb" primary="false"/>
<categoryLink id="4ff1-31c8-ee62-a24b" name="New CategoryLink" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="4c29-db08-ece2-d083" name="New CategoryLink" hidden="false" targetId="6b35-0508-c6cc-6592" primary="false"/>
<categoryLink id="0f93-8510-1c30-d149" name="ABHORRANT" hidden="false" targetId="5b04-42e4-33ef-10b1" primary="false"/>
<categoryLink id="ecac-e622-1f26-add4" name="ROYAL ZOMBIE DRAGON" hidden="false" targetId="17b2-f4c3-e747-162e" primary="false"/>
<categoryLink id="98eb-6102-0223-23a8" name="VAMPIRE" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<categoryLink id="e6d6-c44f-f053-f5b1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6184-0f53-8981-0dfe" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0237-93eb-37be-68f5" name="Sword-like Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6300-73ab-c3ce-7dd7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="80db-725a-f228-b8a2" type="max"/>
</constraints>
<profiles>
<profile id="f2bd-2ef3-fbe8-6294" name="Sword-like Claws" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="25d0-69e8-54f8-b750" name="Snapping Maw" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fa70-432f-899d-f5c4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8c56-a5c3-d23b-5bc8" type="max"/>
</constraints>
<profiles>
<profile id="bd2d-2ef4-f118-7b90" name="Snapping Maw" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-3</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f95e-a16f-e74f-08c2" name="Pestilential Breath" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea76-7d2f-7cd3-9e72" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58ff-ad69-36dd-0f6b" type="max"/>
</constraints>
<profiles>
<profile id="e03a-7430-bd0e-d976" name="Pestilential Breath" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="38a8-9845-c322-21a0" name="Gory Talons and Fangs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58ad-bbd9-610c-887a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a985-2d52-72b3-312d" type="max"/>
</constraints>
<profiles>
<profile id="f263-37f5-027a-0971" name="Gory Talons and Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4123-58ce-995d-a59d" name="General" hidden="false" collective="false" import="true" targetId="8228-415a-66c3-dffe" type="selectionEntry"/>
<entryLink id="1598-07e3-b647-4320" name="Artefacts" hidden="false" collective="false" import="true" targetId="c8cb-28b1-ffbb-2bbf" type="selectionEntryGroup"/>
<entryLink id="7b26-726e-37e0-2715" name="Command Traits" hidden="false" collective="false" import="true" targetId="2b46-6a34-bba4-a7a2" type="selectionEntryGroup"/>
<entryLink id="a5d7-2904-c239-7c37" name="Spell Lores" hidden="false" collective="false" import="true" targetId="011c-b2d0-4781-ff07" type="selectionEntryGroup"/>
<entryLink id="dd92-c8a8-cdf8-db09" name="Mount Traits" hidden="false" collective="false" import="true" targetId="10a9-acf0-f1a7-626b" type="selectionEntryGroup"/>
<entryLink id="7c9c-6e01-4443-f7a5" name="Battalions" hidden="false" collective="false" import="true" targetId="3f3e-293b-65ed-e3fa" type="selectionEntryGroup"/>
<entryLink id="59b0-c483-8013-e8e9" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="f3c0-4225-7cf4-6e00" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="62f4-174e-c529-75fe" type="selectionEntryGroup"/>
<entryLink import="true" name="Prayer Scriptures" hidden="false" type="selectionEntryGroup" id="cf04-fe08-249f-49f1" targetId="ec11-dabf-5c8-1a21"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="420"/>
</costs>
<infoGroups>
<infoGroup name="Damage Table" hidden="false" id="79f6-7731-b373-ba41">
<profiles>
<profile name="0-6" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wounds Suffered" hidden="false" id="6b42-9de3-3b09-7e13">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">14"</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">7</characteristic>
</characteristics>
</profile>
<profile name="7-8" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wounds Suffered" hidden="false" id="be9e-939a-67c2-e39a">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">12"</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">6</characteristic>
</characteristics>
</profile>
<profile name="9-11" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wounds Suffered" hidden="false" id="dcbc-5d2b-3870-2a4b">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">10"</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">5</characteristic>
</characteristics>
</profile>
<profile name="12+" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wounds Suffered" hidden="false" id="3c89-1ee9-b953-869a">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">8"</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">4</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
</selectionEntry>
<selectionEntry id="d563-f542-5dad-2b09" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="maxSelections" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="f052-1385-c070-0262" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="705f-02ae-f4f5-987a">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="705f-02ae-f4f5-987a" name="Allegiance: Flesh-Eater Courts" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="078e-64b1-4b85-3602" name="Deathless Courtiers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Friendly FLESH‑EATER COURTS units have a ward of 6+.</characteristic>
</characteristics>
</profile>
<profile id="7b01-5b29-a8c6-99d2" name="Feeding Frenzy" publicationId="6d29-cde4-pubN71388" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to the Attacks characteristic of melee weapons used by friendly Flesh-eater Courts units while they are wholly within 12" of any friendly Heroes that have 6 noble deeds points.</characteristic>
</characteristics>
</profile>
<profile id="2d74-bc24-c47b-6a6e" name="Noble Deeds" page="FAQ 12/19" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">• Each time a friendly FLESH-EATER COURTS HERO successfully casts a spell that is not unbound, give 1 noble deeds point to that HERO.
• Each time a prayer chanted by a friendly FLESH-EATER COURTS HERO is answered, give 1 noble deeds point to that HERO.
• Each time a friendly FLESH-EATER COURTS HERO fights, after all of its attacks have been resolved, give that HERO a number of noble deeds points equal to the number of wounds and/or mortal wounds caused by that HERO in that phase that were allocated to enemy units. Do not count wounds and/or mortal wounds caused by that HERO's mount. Each time a friendly ABHORRANT fights, if that unit is mounted, any wounds caused by attacks made by the rider must be allocated first, followed by wounds allocated by attacks made by its mount.
Each FLESH-EATER COURTS HERO can have a maximum of 6 noble deeds points at any one time (it cannot be given any more until the number of noble deeds points it has is reduced to less than 6).</characteristic>
</characteristics>
</profile>
<profile id="d0ed-d7c0-491a-bb8c" name="Muster Guard" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of your movement phase, each friendly COURTIER can spend 1 of their noble deeds points to return 1 slain model to a friendly SERFS unit that is within 10" of them, or 2 of their noble deeds points to return 1 slain model to a friendly KNIGHTS unit that is within 10" of them. You can use this ability multiple times each turn as long as the required noble deeds points are available.</characteristic>
</characteristics>
</profile>
<profile id="7721-4f66-303e-3d32" name="Summon Loyal Subjects" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of your movement phase, each friendly ABHORRANT can spend 6 of their noble deeds points to summon loyal subjects. If they do so, pick 1 friendly SERFS or KNIGHTS unit that has been destroyed and add a new replacement unit identical to that unit to your army with half of the models from the unit that was destroyed (rounding up). Replacement units must be set up wholly within 6" of the edge of the battlefield and more than 9" from all enemy units. Each destroyed unit can only be replaced once - replacement units cannot themselves be replaced. Remaining models which are not set up as part of the replacement unit count as having been slain and can be returned to the replacement unit using, for example, the Muster Guard ability or Rally command ability</characteristic>
</characteristics>
</profile>
<profile name="Courts of Delusion" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="1ba3-64f1-29ec-33cf">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">In the first battle round, after the players have received their starting command points but before the start of the first turn, you can pick 1 of the following delusions to apply during the battle:
• 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 that you control.
• The Grand Tournament: Add 1 to hit rolls for attacks made by friendly Flesh-eater Courts Heroes that are not a general if they made a charge move in the same turn.
• The Feast Day: The Feeding Frenzy ability applies to friendly Flesh-eater Courts units while they are wholly within 12" of any friendly Heroes that have 4 or more noble deeds points instead of 6 noble deeds points.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="07b4-9ead-11be-5772" name="New CategoryLink" hidden="false" targetId="6b35-0508-c6cc-6592" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d3a2-e761-7cb7-6d8d" name="Grand Courts" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="471a-bb95-d1fa-ce34" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="dbb1-fd69-0ebc-97df" name="Morgaunt" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="eb48-a123-2428-13f4" name="Morgaunt Kingdoms" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Give 1 noble deeds point to each friendly MORGAUNT FLESH-EATER COURTS HERO at the end of the turn if that Hero is contesting an objective.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c6db-68c4-dfd6-58c0" name="Hollowmourne" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7a8f-b5ea-d969-5458" name="Grisly Cavaliers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to the Damage characteristic of melee weapons used by friendly HOLLOWMOURNE KNIGHTS units that have made a charge move in the same turn. This ability has no effect on attacks made by mounts.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="83a9-0464-b308-eef1" name="Blisterskin" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e81e-4750-3dae-30a6" name="Pious Nobility" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Friendly ABHORRENTS gain the PRIEST keyword but they cannot cast spells and chant prayers in the same hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="99b2-6989-d758-a4be" name="Gristlegore" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1312-c52c-1878-5393" name="Savage Strike" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of your combat phase, you can pick 1 friendly GRISTLEGORE MONSTER on the battlefield. The strike-first effect applies to that MONSTER until the end of the phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6790-d4ea-2812-74bc" name="Courts of Delusion" hidden="false" collective="false" import="true" targetId="ce7b-551c-20f3-f416" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
<infoGroups>
<infoGroup name="Delusions of Grandeur" hidden="false" id="ce75-ec57-89d5-c8ec">
<profiles>
<profile name="Delusions of Grandeur" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="cb2f-8347-5494-6148">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of the hero phase, you can carry out one of the following heroic actions with a friendly FLESH-EATER COURTS HERO instead of any other heroic action you can carry out with that HERO.</characteristic>
</characteristics>
</profile>
<profile name="Rousing Oration" typeId="fff7-7178-1bdb-79d1" typeName="Heroic Action" hidden="false" id="f740-5c34-aa76-9064">
<characteristics>
<characteristic name="Description" typeId="ff08-d093-0b68-a4d6">Pick 1 friendly FLESH-EATER COURTS HERO and roll a dice for each other friendly FLESH-EATER COURTS unit wholly within 12" of that Hero. For each 5+, give 1 noble deeds point to that HERO.</characteristic>
</characteristics>
</profile>
<profile name="Scent of Blood" typeId="fff7-7178-1bdb-79d1" typeName="Heroic Action" hidden="false" id="85c4-aeec-268a-337b">
<characteristics>
<characteristic name="Description" typeId="ff08-d093-0b68-a4d6">Pick 1 friendly FLESH-EATER COURTS HERO and roll a dice. On a 3+, you can make a D6" move with that HERO, but it must finish that move more than 3" from all enemy units and closer to an enemy unit that has any wounds allocated to it.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup name="Undead Monstrosities" hidden="false" id="b603-dea7-f6a5-1e31">
<profiles>
<profile name="Undead Monstrosities" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait" hidden="false" id="e15c-3078-469f-6f45">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">When you carry out a monstrous rampage with a ROYAL TERRORGHEIST or ROYAL ZOMBIE DRAGON, you can carry out 1 of the monstrous rampages below instead of any other monstrous rampage you can carry out with that unit.</characteristic>
</characteristics>
</profile>
<profile name="Bloodcurdling Shriek" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage" hidden="false" id="d790-e1b6-25b9-281">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Pick 1 enemy unit within 3" of this unit and roll a dice. On a 3+, subtract 2 from the Bravery characteristic of that enemy unit until the end of the turn.</characteristic>
</characteristics>
</profile>
<profile name="Delectable Appetisers" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage" hidden="false" id="fd2c-9d34-a202-4c12">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Pick 1 enemy unit that has a Wounds characteristic of 2 or less and is within 3" of this unit and roll a dice. On a 3+, that enemy unit suffers D3 mortal wounds. Then, for each mortal wound that was caused to that enemy unit and not negated, this unit heals 1 wound.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a843-2762-31a4-c06b" name="Battalion: Abattoir" page="135" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0dad-01e2-7058-29cd" name="Body-part Acquisition" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the end of the combat phase, roll 1 dice for each enemy model within 3" of any models from this battalion. For each 6, that enemy model's unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a189-fe37-dbd6-496a" name="New CategoryLink" hidden="false" targetId="6b35-0508-c6cc-6592" primary="false"/>
<categoryLink id="e19a-bfc9-319c-76eb" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="600b-0059-5ef7-80b7" name="1 Crypt Ghoul Unit" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c025-c501-460a-2285" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f01-1b4a-d894-3c0a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c68d-9e00-877d-b1c1" name="Crypt Ghouls" hidden="false" collective="false" import="true" targetId="631c-0dae-5912-196d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>