forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Death - Flesh-eater Courts.cat
4903 lines (4903 loc) · 353 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 id="6d29-cde4-372b-08d3" name="Death - Flesh-eater Courts" revision="27" battleScribeVersion="2.03" authorName="https://discord.gg/4MSsD7" authorContact="" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<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"/>
</publications>
<profileTypes>
<profileType id="6d48-1590-a7ff-4516" name="Evocation of Death Level">
<characteristicTypes>
<characteristicType id="0968-4539-05b1-823e" name="Ability"/>
</characteristicTypes>
</profileType>
<profileType id="823d-e366-580b-9b07" name="Battalion Organization">
<characteristicTypes>
<characteristicType id="bc6e-e731-eed7-c384" name="Required"/>
</characteristicTypes>
</profileType>
<profileType id="1fc7-f451-3937-0a17" 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="370f-9356-a89a-06b3" 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 Claws"/>
</characteristicTypes>
</profileType>
<profileType id="149a-6d26-c3e0-abdc" name="Delusion Table">
<characteristicTypes>
<characteristicType id="3ac8-c3ba-0bac-115a" name="Delusion"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="e50a-c473-627c-a3c2" name="TERRORGHEIST" hidden="false"/>
<categoryEntry id="7a67-dd1c-e979-4efb" name="ZOMBIE DRAGON" hidden="false"/>
<categoryEntry id="d1e1-d80a-c667-b587" name="VAMPIRE" hidden="false"/>
<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"/>
</categoryEntries>
<entryLinks>
<entryLink id="c7c9-5a8a-4868-57bc" name="Allegiance" hidden="false" collective="false" import="true" targetId="7f4c-7d4b-6b8e-575b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.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">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f202-c960-472b-5361-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f8ec-6015-c1a7-2fd3" name="Duke Crakmarrow and the Grymwatch" hidden="false" collective="false" import="true" targetId="bd9c-18e7-22c6-e2b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="f8ec-6015-c1a7-2fd3-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<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">
<categoryLinks>
<categoryLink id="2872-6884-a288-a0ef" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="17a1-e649-c111-baeb" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<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">
<categoryLinks>
<categoryLink id="0ca0-6fde-e0ad-ab7b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="c0b7-9e8b-d98f-f7f0" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a374-bef2-cc39-d352" name="[FEC]Crypt Ghast Courtier" hidden="false" collective="false" import="true" targetId="bb96-e300-f36b-2080" type="selectionEntry">
<categoryLinks>
<categoryLink id="a374-bef2-cc39-d352-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0051-4820-7184-9239" name="Crypt Haunter Courtier" hidden="false" collective="false" import="true" targetId="6a20-a4f2-7590-5f61" type="selectionEntry">
<categoryLinks>
<categoryLink id="0051-4820-7184-9239-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ce37-1abd-e3e3-ba02" name="Crypt Infernal Courtier" hidden="false" collective="false" import="true" targetId="b3ef-0596-d6ee-85c6" type="selectionEntry">
<categoryLinks>
<categoryLink id="ce37-1abd-e3e3-ba02-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ab0c-720f-95e9-3cb4" name="Varghulf Courtier" hidden="false" collective="false" import="true" targetId="f124-2ae2-055e-c865" type="selectionEntry">
<categoryLinks>
<categoryLink id="ab0c-720f-95e9-3cb4-6c6b-e787-f9b8-a510" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dd7b-e22f-149a-4064" name="Crypt Flayers" hidden="false" collective="false" import="true" targetId="b192-e173-4e69-46c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4aa4-651b-be7b-f0ea" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="83a9-0464-b308-eef1" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="dd7b-e22f-149a-4064-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6750-e0b5-8407-9c3a" name="Crypt Horrors" hidden="false" collective="false" import="true" targetId="69e7-2a2c-7334-f453" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f8a6-24be-1ca5-8242" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c6db-68c4-dfd6-58c0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6750-e0b5-8407-9c3a-065e-fda7-fd27-1f40" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e5fa-1e34-8d94-3925-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2382-b310-a8e5-159d-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d51c-c086-4440-82dc-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7dae-8035-beda-3f5f-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e247-0bed-214e-22fb-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d91d-1c90-24a0-862f-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="60e3-fc81-2917-9d3c-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0b48-47c6-e1d3-f1af-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8975-5ce0-7afc-978f-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ce71-75ca-1226-e7fa" name="Crypt Flayers" hidden="false" collective="false" import="true" targetId="b192-e173-4e69-46c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4aa4-651b-be7b-f0ea" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="83a9-0464-b308-eef1" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ce71-75ca-1226-e7fa-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="215c-87ae-6ac0-dab8" name="Crypt Horrors" hidden="false" collective="false" import="true" targetId="69e7-2a2c-7334-f453" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f8a6-24be-1ca5-8242" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c6db-68c4-dfd6-58c0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="215c-87ae-6ac0-dab8-e9f2-765a-b7b8-ce8e" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b9d9-b4e3-09df-4f16" 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>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b479-0bbf-9d50-e5cf" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="46e3-0350-944a-55fa" name="Royal Terrorgheist" hidden="false" collective="false" import="true" targetId="5262-3ed0-9e65-e358" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="99b2-6989-d758-a4be" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="053f-4624-a1b0-920f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="5d3c-f493-a301-7b5e" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="00d1-5864-dfa1-d55e" name="Royal Zombie Dragon" hidden="false" collective="false" import="true" targetId="a0a1-5316-0121-e73d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="99b2-6989-d758-a4be" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d679-86c1-e1cd-4a78" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="c6d4-28b3-bd64-ca66" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a824-2984-06a3-8c1c" name="Abhorrant Archregent" hidden="false" collective="false" import="true" targetId="e7cb-d62d-6411-53fd" type="selectionEntry">
<categoryLinks>
<categoryLink id="a883-deb2-c05f-f630" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f2f6-3270-cf75-9c58" name="Endless Spell: Cadaverous Barricade" hidden="false" collective="false" import="true" targetId="b65c-000c-9036-af95" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2191-4f96-5e3c-edb5" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d527-89d2-a114-2a8b" name="Royal Terrorgheist" hidden="false" collective="false" import="true" targetId="5262-3ed0-9e65-e358" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="99b2-6989-d758-a4be" type="equalTo"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f413-9b2a-57b7-b443" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d738-59a6-01e5-a72b" name="Royal Zombie Dragon" hidden="false" collective="false" import="true" targetId="a0a1-5316-0121-e73d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="705f-02ae-f4f5-987a" type="equalTo"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="99b2-6989-d758-a4be" type="equalTo"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f210-b1f8-62e9-7e60" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c554-d2c5-8d8d-b5a0" name="Charnel Throne" hidden="false" collective="false" import="true" targetId="abc8-2377-3094-ae06" type="selectionEntry">
<categoryLinks>
<categoryLink id="dd48-31cc-2053-c0df" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
</categoryLinks>
</entryLink>
<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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a5cd-e73d-f25f-2a62" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="051c-d0f6-e00b-a87b" name="Endless Spell: Chalice of Ushoran" hidden="false" collective="false" import="true" targetId="b750-d783-a5ab-95b4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="bb46-d80f-d7b4-93cc" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="72b0-8e12-6140-aa1c" name="Endless Spell: Corpsemare Stampede" hidden="false" collective="false" import="true" targetId="3756-b691-3bfa-a3f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="705f-02ae-f4f5-987a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7b52-ea5b-00b8-d233" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f766-6ee2-f2f9-28f7" name="Abhorrant Ghoul King" hidden="false" collective="false" import="true" targetId="9515-1a15-4d1e-7f92" type="selectionEntry">
<categoryLinks>
<categoryLink id="3882-8db1-13d5-8f0e" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</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" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ee85-ecbb-396d-2387" 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 model.</characteristic>
</characteristics>
</profile>
<profile id="9087-1bc2-d242-968d" name="Abhorrant Ghoul King" 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">An Abhorrant Ghoul King is a wizard. He can attempt to cast one spell in each of your hero phases, and attempt to unbind one spell in each enemy hero phase. He knows the 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="Summon Men-at-arms" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of your movement phase. If you do so, pick 1 friendly model that has this command ability and has not used it before in the battle. That model summons 1 unit of up to 10 SERFS to the battlefield. The summoned unit is added to your army, and must be set up wholly within 6" of the edge of the battlefield and more than 9" from any enemy units.</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="8407-7a14-5a32-a37c" name="New CategoryLink" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<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"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a9f-99d3-197d-2927" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="401c-96bf-e614-aa65" name="Black Hunger" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b7d2-f7f8-921f-34ab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba01-f029-7356-2450" type="max"/>
</constraints>
<profiles>
<profile id="d25d-27ca-3ea2-09d1" name="Black Hunger" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 friendly FLESH-EATER COURTS unit wholly within 24" of the caster and visible to them. Add 1 to the Attacks characteristic of melee weapons used by that unit until your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b195-f855-a98b-f061" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry"/>
<entryLink id="67ba-1059-adf3-21fa" name="Artefacts" hidden="false" collective="false" import="true" targetId="a2c1-3fba-5acb-d560" type="selectionEntryGroup"/>
<entryLink id="1e8e-e6c5-4f25-d55f" name="Command Traits" hidden="false" collective="false" import="true" targetId="eda1-7945-4fea-a145" type="selectionEntryGroup"/>
<entryLink id="08ef-1619-cf05-3d50" name="Lore of Madness" hidden="false" collective="false" import="true" targetId="948b-4376-36a6-33c8" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="25e3-54ae-82f5-152f" name="Abhorrant Ghoul King on Royal Terrorgheist" publicationId="6afd-4f9a-0665-9b55" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="21f5-0af7-68bb-37f3" name="00-03" hidden="false" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wound Table">
<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 Claws" typeId="5b09-7a6b-dd30-faf1">4</characteristic>
</characteristics>
</profile>
<profile id="42ea-94de-79eb-fdf7" name="04-06" hidden="false" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wound Table">
<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 Claws" typeId="5b09-7a6b-dd30-faf1">4</characteristic>
</characteristics>
</profile>
<profile id="9ed7-c9b2-49ba-a665" name="07-09" hidden="false" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wound Table">
<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 Claws" typeId="5b09-7a6b-dd30-faf1">3</characteristic>
</characteristics>
</profile>
<profile id="9611-efae-f29e-5a92" name="10-12" hidden="false" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wound Table">
<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 Claws" typeId="5b09-7a6b-dd30-faf1">3</characteristic>
</characteristics>
</profile>
<profile id="298d-d3b2-05a9-64b9" name="13+" hidden="false" typeId="370f-9356-a89a-06b3" typeName="Terrorgheist Wound Table">
<characteristics>
<characteristic name="Move" typeId="2ad2-839b-d5ee-5770">6"</characteristic>
<characteristic name="Death Shriek" typeId="dfdc-a86c-e979-1eb7">2</characteristic>
<characteristic name="Skeletal Claws" typeId="5b09-7a6b-dd30-faf1">2</characteristic>
</characteristics>
</profile>
<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 model is slain, before this model is removed from play each unit within 3" of this model 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 model.</characteristic>
</characteristics>
</profile>
<profile id="f3bb-c151-6ac5-f9df" name="Abhorrant Ghoul King on Royal Terrorgheist" 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">An Abhorrant Ghoul King is a wizard. He can attempt to cast one spell in each of your hero phases, and attempt to unbind one spell in each enemy hero phase. He knows the Arcane Bolt, Mystic Shield and Unholy Vitality spells.</characteristic>
</characteristics>
</profile>
<profile id="0199-13aa-7780-9a11" name="Summon Royal Guard" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of your movement phase. If you do so, pick 1 friendly model that has this command ability and has not used it before in the battle. That model summons 1 unit of up to 3 Knights to the battlefield. The summoned unit is added to your army, and must be set up wholly within 6" of the edge of the battlefield and more than 9" from any enemy units.</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="1914-b9be-345a-33af" name="New CategoryLink" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<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"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9ab0-3a0b-704b-0ae5" name="Unholy Vitality" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="baf8-8d1f-2bf6-8c40" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f86-1a41-042f-ed53" type="max"/>
</constraints>
<profiles>
<profile id="886d-4e03-edac-5280" name="Unholy Vitality" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 friendly Flesh‐eater Courts unit wholly within 24" of the caster and visible to them. Until your next hero phase, roll a dice each time you allocate a wound or mortal wound to that unit. On a 5+ that wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b3b0-3daf-7478-176c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" 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 Weapon</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">Roll a dice and add the Death Shriek value shown on this model’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.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="25de-76a9-daf9-fc14" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6e3-0fb6-150d-b5dc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3701-2d57-7232-1d09" name="Skeletal Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b971-7e33-0563-8dff" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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 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">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e950-ab06-cc32-de63" name="General" hidden="false" collective="false" import="true" targetId="88d2-d540-0573-3402" type="selectionEntry"/>
<entryLink id="a456-5dcd-920c-4e5c" name="Command Traits" hidden="false" collective="false" import="true" targetId="eda1-7945-4fea-a145" type="selectionEntryGroup"/>
<entryLink id="5976-e415-d83e-8fd8" name="Artefacts" hidden="false" collective="false" import="true" targetId="a2c1-3fba-5acb-d560" type="selectionEntryGroup"/>
<entryLink id="e324-2bc9-8a8a-2598" name="Lore of Madness" hidden="false" collective="false" import="true" targetId="948b-4376-36a6-33c8" type="selectionEntryGroup"/>
<entryLink id="a89e-8ecf-f21c-83b8" name="Mount Traits" hidden="false" collective="false" import="true" targetId="10a9-acf0-f1a7-626b" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="420.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e13-f2fc-7308-e23b" name="Abhorrant Ghoul King on Royal Zombie Dragon" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d3cb-acad-a59b-e8ba" name="Abhorrant Ghoul King on Royal Zombie Dragon" 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">This model is a Wizard. It can attempt to cast one spell in your hero phase, and attempt to unbind one spell in the enemy hero phase. It knows the Arcane Bolt, Mystic Shield and Malefic Hunger spells.</characteristic>
</characteristics>
</profile>
<profile id="44b3-6879-4336-6077" name="00-03" hidden="false" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wound Table">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">14"</characteristic>
<characteristic name="Pestilential Breath" typeId="b17b-97f7-9c40-21e5">2+</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">7</characteristic>
</characteristics>
</profile>
<profile id="ed8d-976f-fc8a-5cbd" name="04-06" hidden="false" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wound Table">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">12"</characteristic>
<characteristic name="Pestilential Breath" typeId="b17b-97f7-9c40-21e5">3+</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">6</characteristic>
</characteristics>
</profile>
<profile id="2f95-57cd-a600-4f24" name="07-09" hidden="false" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wound Table">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">10"</characteristic>
<characteristic name="Pestilential Breath" typeId="b17b-97f7-9c40-21e5">4+</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">5</characteristic>
</characteristics>
</profile>
<profile id="3a66-5d5b-06b6-6295" name="10-12" hidden="false" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wound Table">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">8"</characteristic>
<characteristic name="Pestilential Breath" typeId="b17b-97f7-9c40-21e5">5+</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">4</characteristic>
</characteristics>
</profile>
<profile id="a445-c165-01b7-0391" name="13+" hidden="false" typeId="1fc7-f451-3937-0a17" typeName="Zombie Dragon's Wound Table">
<characteristics>
<characteristic name="Move" typeId="1712-425e-7e40-a5b1">6"</characteristic>
<characteristic name="Pestilential Breath" typeId="b17b-97f7-9c40-21e5">6+</characteristic>
<characteristic name="Sword-like Claws" typeId="e309-9fb0-c644-47ee">3</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">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="963d-3a48-1b7d-2936" 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 model.</characteristic>
</characteristics>
</profile>
<profile id="dd33-f077-7952-fc7a" name="Summon Royal Courtier" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of your movement phase. If you do so, pick 1 friendly model that has this command ability and has not used it before in the battle. That model summons 1 Courtier unit to the battlefield. The summoned unit is added to your army, and must be set up wholly within 6" of the edge of the battlefield and more than 9" from any enemy units.</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="fc51-5bac-7326-9d01" name="New CategoryLink" hidden="false" targetId="d1e1-d80a-c667-b587" primary="false"/>
<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"/>
</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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6300-73ab-c3ce-7dd7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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.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.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fa70-432f-899d-f5c4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" 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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea76-7d2f-7cd3-9e72" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58ff-ad69-36dd-0f6b" type="max"/>
</constraints>
<profiles>
<profile id="563f-e2a7-1dcc-f820" name="Pestilential Breath" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When you attack with this model’s Pestilential Breath, roll a dice before making the hit roll for the attack. If the roll is less than or equal to the number of models in the target unit, the attack scores a hit without needing to make a hit roll.</characteristic>
</characteristics>
</profile>
<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">9"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">*</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-3</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5295-f692-14d0-bae7" name="Malefic Hunger" hidden="false" collective="false" import="true" type="upgrade">
<constraints>