forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Nurgle.cat
3605 lines (3601 loc) · 279 KB
/
Chaos - Nurgle.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="6894-a70d-7327-b3c3" name="Chaos - Nurgle" revision="98" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="6894-a70d-pubN65537" name="Chaos Battletome: Maggotkin of Nurgle"/>
<publication id="6894-a70d-pubN85775" name="Chaos Battletome: Maggotkin of Nurgle"/>
<publication id="6894-a70d-pubN93566" name="Blightwar"/>
</publications>
<profileTypes>
<profileType id="2333-f7fb-a43f-e529" name="Cycle of Corruption">
<characteristicTypes>
<characteristicType id="c138-7c33-221f-ff16" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="a608-de64-6b1c-c7d5" name="Summon Daemons of Nurgle">
<characteristicTypes>
<characteristicType id="632d-2488-0b60-7ba1" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="c3ab-3321-7c2b-485d" name="Gift of Contagion">
<characteristicTypes>
<characteristicType id="b174-f35b-80c2-c251" name="Result"/>
</characteristicTypes>
</profileType>
<profileType id="23bf-8b01-b604-4c96" name="Nurgle's Tallyman">
<characteristicTypes>
<characteristicType id="0b90-1b87-bdd0-f79d" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="1547-93ca-6319-42ba" name="ROTBRINGER" hidden="false"/>
<categoryEntry id="2992-4fda-36c4-0270" name="GREAT UNCLEAN ONE" hidden="false"/>
<categoryEntry id="e2cb-29f7-305d-9f88" name="ROTIGUS" hidden="false"/>
<categoryEntry id="b7ab-d500-894f-ed85" name="PLAGUEBEARER" hidden="false"/>
<categoryEntry id="5132-c65a-7a3c-295d" name="POXBRINGER" hidden="false"/>
<categoryEntry id="c7af-de92-fae5-5ad0" name="HERALD OF NURGLE" hidden="false"/>
<categoryEntry id="9186-7806-3916-b40c" name="EPIDEMIUS, TALLYMAN OF NURGLE" hidden="false"/>
<categoryEntry id="9d25-a09b-f3f0-e379" name="SPOILPOX SCRIVENER, HERALD OF NURGLE" hidden="false"/>
<categoryEntry id="8d86-e1ec-69c7-873a" name="SLOPPITY BILEPIPER, HERALD OF NURGLE" hidden="false"/>
<categoryEntry id="2c00-205c-0228-f8ce" name="HORTICULOUS SLIMUX" hidden="false"/>
<categoryEntry id="9ec7-39a3-49be-3c0d" name="PLAGUEBEARERS" hidden="false"/>
<categoryEntry id="d7cc-ba0b-da6f-4815" name="PLAGUE DRONES" hidden="false"/>
<categoryEntry id="b12a-6781-bb19-70e0" name="BEASTS OF NURGLE" hidden="false"/>
<categoryEntry id="ee52-7587-7213-ac3f" name="NURGLINGS" hidden="false"/>
<categoryEntry id="35ae-a426-3639-f82d" name="THE GLOTTKIN" hidden="false"/>
<categoryEntry id="7f86-934d-1a0f-ed1c" name="ORGHOTTS DAEMONSPEW" hidden="false"/>
<categoryEntry id="632a-dc15-3346-b8bd" name="BLOAB ROTSPAWNED" hidden="false"/>
<categoryEntry id="2f1a-608d-90b2-36a7" name="MORBIDEX TWICEBORN" hidden="false"/>
<categoryEntry id="92d3-88bf-aeab-af40" name="LORD OF AFFLICTIONS" hidden="false"/>
<categoryEntry id="5697-f8c9-2e4b-1a1f" name="FESTUS THE LEECHLORD" hidden="false"/>
<categoryEntry id="cd95-f4f0-0e1e-5509" name="HARBINGER OF DECAY" hidden="false"/>
<categoryEntry id="d268-016d-0dd0-54e1" name="SORCERER" hidden="false"/>
<categoryEntry id="1009-c1dd-45db-3980" name="LORD OF BLIGHTS" hidden="false"/>
<categoryEntry id="5772-b134-58d8-63bf" name="GUTROT SPUME" hidden="false"/>
<categoryEntry id="af35-d399-4a07-2d3f" name="LORD OF PLAGUES" hidden="false"/>
<categoryEntry id="6c1b-e951-c3dd-d6f6" name="PUTRID BLIGHTKINGS" hidden="false"/>
<categoryEntry id="e2e0-29fb-06a7-4d84" name="PUSGOYLE BLIGHTLORDS" hidden="false"/>
<categoryEntry id="7177-faf1-6a74-d3e2" name="FECULENT GNARLMAW" hidden="false"/>
<categoryEntry id="490d-2728-9e98-d428" name="TAMURKHAN'S HORDE" hidden="false"/>
<categoryEntry id="d8ea-51a4-1e5d-801b" name="TAMURKHAN THE MAGGOT LORD" hidden="false"/>
<categoryEntry id="1e50-efc5-c37e-f75e" name="KAZYK THE BEFOULED" hidden="false"/>
<categoryEntry id="7090-fa98-3c78-45bb" name="PLAGUE OGORS" hidden="false"/>
<categoryEntry id="5bd1-1ee2-a2ef-0d2c" name="BILE TROGGOTHS" hidden="false"/>
<categoryEntry id="5809-f9c2-60e3-ff26" name="GIGANTIC CHAOS SPAWN" hidden="false"/>
<categoryEntry id="52db-b9fc-3b6b-0428" name="DAEMON PLAGUE TOADS OF NURGLE" hidden="false"/>
<categoryEntry id="a0b3-11f9-8fb5-5aed" name="DAEMON POX RIDERS OF NURGLE" hidden="false"/>
<categoryEntry id="9738-972d-3ae5-8eb0" name="EXALTED GREATER DAEMON OF NURGLE" hidden="false"/>
<categoryEntry id="b94f-2405-3436-fe78" name="MONSTERS OF CHAOS" hidden="false"/>
<categoryEntry id="4ca3-d03f-e7f9-e3e2" name="MAGGOTH LORD" hidden="false"/>
<categoryEntry id="815d-6a88-8129-a749" name="ROTBRINGER SORCERER" hidden="false"/>
<categoryEntry id="cc94-f447-dc5a-ce0e" name="BLESSED SONS" hidden="false"/>
<categoryEntry id="9a18-1752-fcd7-c536" name="FECULA FLYBLOWN" hidden="false"/>
<categoryEntry id="5ce8-736a-c516-aa32" name="THE WURMSPAT" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="d8b8-922a-49c2-bb48" name="Allegiance" hidden="false" collective="false" import="true" targetId="66c2-47c1-e76e-75da" type="selectionEntry">
<categoryLinks>
<categoryLink id="fd66-3d9c-4835-5d53" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0b0e-874e-dcf8-599a" name="Great Unclean One" hidden="false" collective="false" import="true" targetId="dc8b-1444-58ea-eb9e" type="selectionEntry">
<categoryLinks>
<categoryLink id="697d-a671-c2e9-6dec" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="8476-f75f-8415-021d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0d1b-98be-c072-46e6" name="Horticulux Slimux" hidden="false" collective="false" import="true" targetId="b94e-7ce1-dafe-5243" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0c3d-9f5e-4065-cd1a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4e23-2afc-ae67-bb0b" name="Poxbringer, Herald of Nurgle" hidden="false" collective="false" import="true" targetId="1d89-9b37-5081-fa4b" type="selectionEntry">
<categoryLinks>
<categoryLink id="3702-e0fd-52a7-868c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a833-5477-7407-050c" name="Rotigus" hidden="false" collective="false" import="true" targetId="e83a-dfaf-86a2-600d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4fe1-3958-a76c-acdc" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="9c3b-cbe8-c1b3-600b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="95c7-6880-94c6-1d82" name="Sloppity Bilepiper, Herald of Nurgle" hidden="false" collective="false" import="true" targetId="5d72-3fee-87a4-716a" type="selectionEntry">
<categoryLinks>
<categoryLink id="afe9-afc0-dcba-1a6e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="abdc-84cb-dbbe-d368" name="Spoilpox Scrivener, Herald of Nurgle" hidden="false" collective="false" import="true" targetId="3af8-f299-d611-c091" type="selectionEntry">
<categoryLinks>
<categoryLink id="482d-f3d0-b086-db67" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="781f-9f20-bfe6-38e1" name="Plaguebearers" hidden="false" collective="false" import="true" targetId="1e14-a40c-8467-4b61" type="selectionEntry"/>
<entryLink id="3b6a-2882-247b-7ea2" name="Epidemius, Tallyman of Nurgle" hidden="false" collective="false" import="true" targetId="de73-103a-9a28-64b6" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b274-06ea-2c68-654f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="beb2-b300-235d-6943" name="Festus The Leechlord" hidden="false" collective="false" import="true" targetId="f17e-a2ef-3242-8805" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="92fc-ed24-7e08-f92e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f406-558f-8036-1dc6" name="Gutrot Spume" hidden="false" collective="false" import="true" targetId="bd67-6671-f5c0-61f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="17f6-1c30-6526-36fc" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b98c-76eb-d072-2e2a" name="Harbinger of Decay" hidden="false" collective="false" import="true" targetId="9139-0603-8006-fcb0" type="selectionEntry">
<categoryLinks>
<categoryLink id="2098-689f-45c4-f9bd" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9c34-4389-c481-d4dd" name="Lord of Afflictions" hidden="false" collective="false" import="true" targetId="377e-e9b7-b768-7c3f" type="selectionEntry">
<categoryLinks>
<categoryLink id="f10c-826b-ae0c-707b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bf8a-2978-e70d-1d65" name="Lord of Blights" hidden="false" collective="false" import="true" targetId="f2d5-3c6a-ec44-b845" type="selectionEntry">
<categoryLinks>
<categoryLink id="4694-68fd-0454-ce8f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4037-cdcb-a4e6-8ae5" name="Lord of Plagues" hidden="false" collective="false" import="true" targetId="9c22-9d46-6b71-b55a" type="selectionEntry">
<categoryLinks>
<categoryLink id="88bf-55a3-e699-7bd6" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b620-ce52-c907-a4c8" name="Rotbringer Sorcerer" hidden="false" collective="false" import="true" targetId="5b84-d8c3-3287-01eb" type="selectionEntry">
<categoryLinks>
<categoryLink id="d555-6c50-8eb8-7914" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dac9-4afd-e40b-330e" name="Bloab Rotspawned" hidden="false" collective="false" import="true" targetId="ba97-4abb-1ec1-657f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e5bd-0400-bb19-387d" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="0857-f35a-a988-90fe" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bbdb-1a45-0708-de2b" name="Morbidex Twiceborn" hidden="false" collective="false" import="true" targetId="857a-93de-02d0-ee3b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b3fa-24f5-c406-17a5" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="d42d-e9b6-273f-bdd8" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="64f6-7ae4-8444-53eb" name="Orghotts Daemonspew" hidden="false" collective="false" import="true" targetId="06c6-66f6-734b-4d58" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0b25-8aea-37d2-d090" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="2743-6fce-24ac-f001" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a863-1c79-7b97-d3c4" name="The Glottkin" hidden="false" collective="false" import="true" targetId="19d6-d1fc-8079-eda7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d9a6-1f44-9ebf-b5b0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b420-c80f-5fb9-bd27" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="26c1-a17e-d63f-20c9" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3157-c286-1dee-a617" name="Beasts of Nurgle" hidden="false" collective="false" import="true" targetId="dcdb-4634-5731-f776" type="selectionEntry">
<categoryLinks>
<categoryLink id="82c7-32c6-41d2-954c" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2aa8-d4d4-3d1d-97f5" name="Nurglings" hidden="false" collective="false" import="true" targetId="ad70-44cd-aa27-73dc" type="selectionEntry">
<categoryLinks>
<categoryLink id="a80e-8689-9cb0-8277" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9f53-4b03-8746-afd8" name="Plague Drones" hidden="false" collective="false" import="true" targetId="792a-edaf-d1db-1715" type="selectionEntry"/>
<entryLink id="66de-8328-4ff8-c4d2" name="Putrid Blightkings" hidden="false" collective="false" import="true" targetId="836e-91bb-9065-5b5c" type="selectionEntry"/>
<entryLink id="93db-60f4-b95e-aae3" name="Pusgoyle Blightlords" hidden="false" collective="false" import="true" targetId="1f72-fccf-ea2d-40f3" type="selectionEntry"/>
<entryLink id="7fea-2876-c24b-2b09" name="Kayzk the Befouled [LEGENDS]" hidden="false" collective="false" import="true" targetId="4a59-0040-d9db-e1ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="4b44-a385-6856-e6b8" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8425-1aab-99d0-1c60" name="Tamurkhan the Maggot Lord [LEGENDS]" hidden="false" collective="false" import="true" targetId="e17f-d45e-f5e7-3d38" type="selectionEntry">
<categoryLinks>
<categoryLink id="ff68-d14d-9e00-85a7" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="a8fa-7b4e-b04e-fa84" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="11b5-477e-72ba-4a14" name="Bile Troggoths [LEGENDS]" hidden="false" collective="false" import="true" targetId="d0a3-8e1b-a66f-ae4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="bd91-205b-f51a-2fa9" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bc0c-3ea7-1f48-b19a" name="Daemon Plague Toads of Nurgle [LEGENDS]" hidden="false" collective="false" import="true" targetId="cb2e-40a0-e549-0c05" type="selectionEntry"/>
<entryLink id="1922-3788-f884-d7c8" name="Daemon Pox Riders of Nurgle [LEGENDS]" hidden="false" collective="false" import="true" targetId="71b3-bfaf-29ff-0d6f" type="selectionEntry">
<categoryLinks>
<categoryLink id="b8df-8781-62b2-658e" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c90c-4185-dce2-9203" name="Exalted Greater Daemon of Nurgle" hidden="false" collective="false" import="true" targetId="279a-d8fc-5a96-38f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="01c1-405b-0d69-1e94" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="6de8-7107-a845-d3e4" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="49a5-ea1a-ea44-c006" name="Feculent Gnarlmaw" hidden="false" collective="false" import="true" targetId="bebe-87ba-15a7-1ceb" type="selectionEntry"/>
<entryLink id="dc13-052a-bdb1-8ffd" name="The Wurmspat" hidden="false" collective="false" import="true" targetId="493b-ff80-f461-ff03" type="selectionEntry"/>
<entryLink id="653e-d2a4-1cac-7f69" name="Fecula Flyblown" hidden="false" collective="false" import="true" targetId="84e0-0f45-4ffd-0732" type="selectionEntry"/>
<entryLink id="600a-2188-91b3-72cb" name="Battalion: Glugurous' Plagueband (Open Play)" hidden="false" collective="false" import="true" targetId="00a5-77d5-79eb-c247" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f645-0726-8cfd-33d1" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e5af-e879-e252-fcd3" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="8b3a-4a2a-db07-a669" type="selectionEntry">
<categoryLinks>
<categoryLink id="7839-dc1e-635b-6271" name="New CategoryLink" hidden="false" targetId="1974-3f49-7f0b-8422" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de8f-883c-e0a2-f318" name="Nurgle Core Battalion: Rotbringer Cyst" hidden="false" collective="false" import="true" targetId="d7aa-596e-dabc-3dae" type="selectionEntry"/>
<entryLink id="fd03-678c-2a26-2cbf" name="Nurgle Core Battalion: Thrice Befoulment" hidden="false" collective="false" import="true" targetId="a971-3115-b0cb-7270" type="selectionEntry"/>
<entryLink id="0e3a-e8be-91c6-a52f" name="Rot Coven" hidden="false" collective="false" import="true" targetId="a0fc-1a6d-64a9-f326" type="selectionEntry">
<categoryLinks>
<categoryLink id="f998-6e8c-0ca8-767b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7c60-e9ca-1859-1409" name="Pusgoyle Blightlord (single)" hidden="false" collective="false" import="true" targetId="ad24-35c7-7836-d8a8" type="selectionEntry"/>
<entryLink id="ba2f-e455-2ec5-5e7f" name="Nurgle Warscroll Battalion: Affliction Cyst" hidden="false" collective="false" import="true" targetId="f900-36e7-67cf-56ad" type="selectionEntry"/>
<entryLink id="3a10-0fc1-abb1-0cf8" name="Nurgle Warscroll Battalion: Blight Cyst" hidden="false" collective="false" import="true" targetId="3454-8e26-06c4-3e2d" type="selectionEntry"/>
<entryLink id="cb60-8c76-e79d-8edf" name="Nurgle Warscroll Battalion: Contagium Overlord" hidden="false" collective="false" import="true" targetId="d369-dbaf-cfb3-58de" type="selectionEntry"/>
<entryLink id="efd9-cc5a-1c8e-0c35" name="Nurgle Warscroll Battalion: Plague Cyst" hidden="false" collective="false" import="true" targetId="b7fb-dbb6-99c7-437c" type="selectionEntry"/>
<entryLink id="29eb-9f50-b6b7-6022" name="Nurgle Warscroll Battalion: Plague Legion Overlord" hidden="false" collective="false" import="true" targetId="39b8-8da2-9507-95ca" type="selectionEntry"/>
<entryLink id="daa5-079d-2a93-457d" name="Nurgle Warscroll Battalion: Rancid Retinue" hidden="false" collective="false" import="true" targetId="5efc-a00e-a18f-8a37" type="selectionEntry"/>
<entryLink id="2060-a6ac-b682-9499" name="Nurgle Warscroll Battalion: Tallyband of Nurgle" hidden="false" collective="false" import="true" targetId="6d46-b7dd-c2ea-d008" type="selectionEntry"/>
<entryLink id="076f-5b76-ea0b-e9a8" name="Battle Tactics: Methods of Cultivation" hidden="false" collective="false" import="true" targetId="b483-8e5d-0632-2165" type="selectionEntry"/>
<entryLink id="8795-6528-542f-c274" name="Plague Ogors [LEGENDS]" hidden="false" collective="false" import="true" targetId="922f-b12d-0144-bd10" type="selectionEntry"/>
<entryLink id="a79a-904a-429b-5619" name="Archaon the Everchosen" hidden="false" collective="false" import="true" targetId="ee9e-b8de-b25d-b6f1" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="ba97-4abb-1ec1-657f" name="Bloab Rotspawned" publicationId="6894-a70d-pubN65537" page="" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="74a9-f69c-69df-bc4b" type="max"/>
</constraints>
<profiles>
<profile id="75e8-8ed5-3318-e9c7" name="Bloab Rotspawned" 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">13</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="38cd-c27b-76bf-856d" name="Bilespurter's Vile Bile" 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">14"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D3</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="ca88-a0e5-0993-62e1" name="Harvestman's Scythe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="f589-0c0d-4cfb-1b16" name="Bilespurter's Monstrous 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="9243-1936-d872-5680" name="WoundTable0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Vile Bile</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Monstrous Claws</characteristic>
</characteristics>
</profile>
<profile id="305d-793e-17e6-3b1d" name="WoundTable1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="1936-1c21-3939-f77f" name="WoundTable2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">7-9</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="f303-6cf4-4495-8763" name="WoundTable3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10-11</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="f2fe-8915-c6bf-daee" name="WoundTable4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">12+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">5"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="a889-32cc-123e-549c" name="Daemon-flies" 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 and the enemy shooting phase, roll a dice for each enemy unit within 7" of this unit. On a 4+, that enemy unit suffers 1 mortal wound and subtract 1 from hit rolls made by that enemy unit in that phase. </characteristic>
</characteristics>
</profile>
<profile id="5490-e399-fefc-9168" name="Windspeaker Bells" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to casting rolls for this unit. In addition, subtract 1 from casting rolls for enemy WIZARDS that are within 14" of this unit.</characteristic>
</characteristics>
</profile>
<profile id="9680-4a71-1e45-370d" name="Bloab Rotspawned" 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 Miasma of Pestilence.</characteristic>
</characteristics>
</profile>
<profile id="db56-80a7-1715-1031" name="Miasma of Pestilence" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">14"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster. Until your next hero phase, roll a dice at the end of each phase in which any wounds or mortal wounds were allocated to this unit. On a 2+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="52d2-d8e5-4e06-3fd1" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="fe4c-8da5-ce57-63c8" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f2e4-2530-0795-1ad5" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="c67b-d36c-5bdb-09bb" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="1f93-ffa1-4dc7-e768" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
<categoryLink id="fb4b-dd7a-9a5a-035c" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="3a2d-ec9f-8696-2fc0" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="b117-fe51-00c9-64a3" name="New CategoryLink" hidden="false" targetId="632a-dc15-3346-b8bd" primary="false"/>
<categoryLink id="6847-9a67-8606-bee1" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="6851-5c01-26d9-ea3d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="7b8f-7dd2-44f6-c80a" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="dac7-e489-99c3-74db" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="a50a-13b7-27a3-69be" name="MAGGOTKIN OF NURGLE" hidden="false" targetId="2963-8fea-92d4-474a" primary="false"/>
<categoryLink id="6cb6-1995-0ec6-efc7" name="MAGGOTH LORD" hidden="false" targetId="4ca3-d03f-e7f9-e3e2" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="2c7a-10b6-e976-63c8" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry"/>
<entryLink id="ab6d-5adb-cb9e-f4a2" name="Lores of Nurgle" hidden="false" collective="false" import="true" targetId="98af-9a06-6b8b-4712" type="selectionEntryGroup"/>
<entryLink id="7305-8db6-47fe-6d66" name="Battalions" hidden="false" collective="false" import="true" targetId="61fa-3b34-1a80-2699" type="selectionEntryGroup"/>
<entryLink id="3b80-1ff1-2471-fd16" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="300.0"/>
</costs>
</selectionEntry>
<selectionEntry id="19d6-d1fc-8079-eda7" name="The Glottkin" publicationId="6894-a70d-pubN65537" page="" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b8b3-4ac9-f749-4907" type="max"/>
</constraints>
<profiles>
<profile id="d8e1-76ac-166d-3ad4" name="The Glottkin" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">20</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="6bb9-16fd-accd-d408" name="Otto's Gut Spray" 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">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="4172-49dd-1a5b-3a01" name="Ghurk's Tentacle" 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">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="08cb-766b-62f6-4cd4" name="Ghurk's Lamprey 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="fd04-2efa-856d-b9d7" name="Otto's Scythe" 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">D3</characteristic>
</characteristics>
</profile>
<profile id="3309-8d8d-9b1b-c0d7" name="WoundTable0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Otto's Gut Spray</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Ghurk's Tentacle</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Mountains of Loathsome Flesh</characteristic>
</characteristics>
</profile>
<profile id="772a-d693-a979-5c77" name="WoundTable1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="7bd7-4166-24cb-c258" name="WoundTable2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">7-12</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="80c3-db8f-9d0f-c13c" name="WoundTable3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">13-16</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">5</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="a90c-3329-c4dd-bef0" name="WoundTable4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">17+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">4</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">1</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="c351-33a0-b6a1-31c8" name="Blitzkrieg" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the end of the enemy movement phase if this unit is within 12" of an enemy unit. The command must be issued by this unit and must be received by another friendly MAGGOTKIN OF NURGLE unit that is within 12" of an enemy unit. This unit and then the unit that received the command can attempt a charge.</characteristic>
</characteristics>
</profile>
<profile id="45dd-5e47-e029-94e5" name="Horrific Opponent" 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 enemy movement phase, you must roll 2D6 for each enemy unit that is within 3" of this unit. If the roll is equal to or greater than that unit's Bravery characteristic, that unit must retreat in that phase or it suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="fee8-6b23-9d7a-f04b" name="The Glottkin" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/2</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Fleshy Abundance.</characteristic>
</characteristics>
</profile>
<profile id="1889-e35b-0370-0cd5" name="Abundance of Flesh" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">14"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 friendly MAGGOTKIN OF NURGLE MORTAL unit within range and visible to the caster. Add 1 to the Wounds characteristic of that unit until your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="b381-5a7a-d76c-ced2" name="Mountain of Loathsome Flesh" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can carry out this monstrous rampage with this unit instead of any other monstrous rampage you can carry out with this unit. If you do so, pick 1 enemy unit within 3" of this unit and roll a dice. On a 2+, that enemy unit suffers a number of mortal wounds equal to the Mountain of Loathsome Flesh value on this unit's damage table.</characteristic>
</characteristics>
</profile>
<profile id="6a8a-4fd8-be7f-f946" name="Warmaster" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is included in a Maggotkin of Nurgle army, it is treated as a a general even if it is not the model picked to be the army's general.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e088-c982-a49e-c734" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="6639-5708-c325-be78" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9c97-a72c-66ec-78e1" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="ebd9-9d84-5e82-5335" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="1e8b-dee8-2b1a-6af0" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
<categoryLink id="aa78-17e9-e7e0-972e" name="New CategoryLink" hidden="false" targetId="1547-93ca-6319-42ba" primary="false"/>
<categoryLink id="81f6-8f49-6354-de24" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="4e67-f732-5b7a-84d2" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="924f-f2db-199c-ac4c" name="New CategoryLink" hidden="false" targetId="35ae-a426-3639-f82d" primary="false"/>
<categoryLink id="5782-44e7-293f-b274" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="3c82-b135-78f9-50f8" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="8818-8c6e-7a9c-94b1" name="MAGGOTKIN OF NURGLE" hidden="false" targetId="2963-8fea-92d4-474a" primary="false"/>
<categoryLink id="bfab-eef1-abde-09d7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="15ac-1f19-d16f-e32d" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="dfe6-fa51-4eae-c1fe" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry">
<categoryLinks>
<categoryLink id="4e0b-9fc9-8cc3-765b" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="86ee-c644-9f15-9727" name="Lores of Nurgle" hidden="false" collective="false" import="true" targetId="98af-9a06-6b8b-4712" type="selectionEntryGroup"/>
<entryLink id="5687-c167-9fb2-a326" name="Battalions" hidden="false" collective="false" import="true" targetId="61fa-3b34-1a80-2699" type="selectionEntryGroup"/>
<entryLink id="06b8-d08c-b62f-aacc" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="700.0"/>
</costs>
</selectionEntry>
<selectionEntry id="857a-93de-02d0-ee3b" name="Morbidex Twiceborn" publicationId="6894-a70d-pubN65537" page="" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5b05-0423-4949-057f" type="max"/>
</constraints>
<profiles>
<profile id="c613-834d-9e4e-948f" name="Morbidex Twiceborn" 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">12</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="789f-838b-7ee3-7c92" name="Slabrous Tongues" 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">7"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">*</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="81c1-5499-9a99-dcf4" name="Fleshreaper Scythe" 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>
<profile id="3843-f05a-7ab5-d960" name="Monstrous 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="6fdb-2aa9-fbda-af5c" name="WoundTable0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Slabrous Tongues</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Monstrous Claws</characteristic>
</characteristics>
</profile>
<profile id="9d9d-b7fa-d7ea-b276" name="WoundTable1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-5</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="71f9-2032-f9aa-ba05" name="WoundTable2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">6-8</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="7a74-0883-5d20-82e1" name="WoundTable3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">9-10</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="c688-efae-fe65-4730" name="WoundTable4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">11+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">5"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="ee0c-91bf-d532-d5bb" name="Lord of Nurglings" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your hero phase, you can return 1 slain model to 1 friendly NURGLING SWARM within 7" of this unit. </characteristic>
</characteristics>
</profile>
<profile id="fc6d-4d95-c342-83d9" name="Gigantic Nurgling-kin" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the battleshock phase, heal half of the wounds that have been allocated to this unit (rounding up).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e8fe-5282-313f-4da8" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="2f7c-3022-ed65-9bd8" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="619a-15f5-7c7b-5a23" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
<categoryLink id="7363-f83b-b89f-501d" name="New CategoryLink" hidden="false" targetId="1547-93ca-6319-42ba" primary="false"/>
<categoryLink id="fa85-a20f-473d-01a0" name="New CategoryLink" hidden="false" targetId="2f1a-608d-90b2-36a7" primary="false"/>
<categoryLink id="befc-7fa6-6a63-584e" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="8817-3b17-13e0-aa63" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="40b6-92f0-3c1f-4cf5" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="fb18-676f-4677-b658" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="7432-bfe1-3e04-ee5d" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="9b3f-d4fc-ae0f-a4b7" name="MAGGOTKIN OF NURGLE" hidden="false" targetId="2963-8fea-92d4-474a" primary="false"/>
<categoryLink id="ad1d-317f-6afc-cd97" name="MAGGOTH LORD" hidden="false" targetId="4ca3-d03f-e7f9-e3e2" primary="false"/>
<categoryLink id="5bcb-7f97-6865-3555" name="NURGLING" hidden="false" targetId="2008-9070-e969-559b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="b91b-dadc-f336-e840" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry">
<categoryLinks>
<categoryLink id="97e1-cc18-ff23-88dc" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6aa7-7876-c64a-0797" name="Battalions" hidden="false" collective="false" import="true" targetId="61fa-3b34-1a80-2699" type="selectionEntryGroup"/>
<entryLink id="f4f1-12c6-3089-c222" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="320.0"/>
</costs>
</selectionEntry>
<selectionEntry id="06c6-66f6-734b-4d58" name="Orghotts Daemonspew" publicationId="6894-a70d-pubN65537" page="" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a9a0-f256-d71f-ba28" type="max"/>
</constraints>
<profiles>
<profile id="49a6-442c-a05b-2aa0" name="Orghotts Daemonspew" 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">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="ad9e-14ab-6bf0-c8eb" name="Whippermaw's Grasping Tongue" 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">7"</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
<profile id="517a-7da4-d10a-c07c" name="The Rotaxes" 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">7</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="1cfc-1fa1-1788-9e79" name="Whippermaw's Monstrous 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
<profile id="8e09-c6d0-2d2b-c169" name="WoundTable0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Grasping Tongue</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Monstrous Claws</characteristic>
</characteristics>
</profile>
<profile id="7888-d881-0a9f-0283" name="WoundTable1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="a366-a77f-e4b8-93b8" name="WoundTable2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">7-9</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="6a64-7f00-8704-536a" name="WoundTable3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10-11</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="e37c-4674-9bb9-50bf" name="WoundTable4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">12+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">5"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="ce00-7c43-7f75-9c3a" name="Acid Ichor" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If an unmodified ward roll for this unit is 6, you can pick 1 enemy unit within 3" of this unit. That enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="319e-9257-cccb-1e2f" name="Lord of Nurgle" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per turn, this unit can issue a command to a friendly MORTAL MAGGOTKIN OF NURGLE unit without a command point being spent.</characteristic>
</characteristics>
</profile>
<profile id="7701-26a5-8612-149d" name="Fester and Rot" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">You can use this command ability in your hero phase. If you do, pick a friendly NURGLE unit within 14" of Orghotts Daemonspew. Re-roll failed wound rolls for that unit until your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="4112-bb05-f491-4dce" name="Warmaster" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit is included in a Maggotkin of Nurgle army, it is treated as a a general even if it is not the model picked to be the army's general.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="de27-a2f1-0b70-a5ff" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="478a-ec90-a924-bc05" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="9038-eb38-4dba-5587" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="cd85-0f32-9d42-ac80" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="b301-3145-ebea-f967" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
<categoryLink id="b598-8c23-0b01-2376" name="New CategoryLink" hidden="false" targetId="1547-93ca-6319-42ba" primary="false"/>
<categoryLink id="7e8b-f20b-5445-bac2" name="New CategoryLink" hidden="false" targetId="7f86-934d-1a0f-ed1c" primary="false"/>
<categoryLink id="5968-98db-4f80-e3d2" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="5c58-c3b9-6ade-59ff" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="425a-253a-828c-8b18" name="MAGGOTKIN OF NURGLE" hidden="false" targetId="2963-8fea-92d4-474a" primary="false"/>
<categoryLink id="1654-90e1-1df1-5feb" name="MAGGOTH LORD" hidden="false" targetId="4ca3-d03f-e7f9-e3e2" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="fe0c-90cd-139e-da73" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry">
<categoryLinks>
<categoryLink id="db2e-d239-ceb5-5b02" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0ac7-e0dd-ae7b-5279" name="Battalions" hidden="false" collective="false" import="true" targetId="61fa-3b34-1a80-2699" type="selectionEntryGroup"/>
<entryLink id="1865-3c1f-0bd9-f623" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="300.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd67-6671-f5c0-61f3" name="Gutrot Spume" publicationId="6894-a70d-pubN65537" page="" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8fd4-48ca-e4a6-a249" type="max"/>
</constraints>
<profiles>
<profile id="68ad-0258-97b1-e63a" name="Gutrot Spume" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="4717-e2aa-71d8-5d2a" name="Rot-pocked Axe" 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">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="2434-19b5-4ba3-41a7" name="Flailing Tentacles" 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">2+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="4ddc-ea01-47d3-aa28" name="Towering Arrogance" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for attacks made by this unit that target a HERO. In addition, if this unit is within 1" of an enemy HERO, all fo the attacks this unit makes must target a HERO. </characteristic>
</characteristics>
</profile>
<profile id="59bb-f582-360b-b419" name="Master of the Slime Fleet" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">During deployment, instead of setting up this unit on the battlefield, you can place it to one side and say that it is set up aboard the Slime Fleet as a reserve unit. If you do so, when you would set up another friendly MORTAL MAGGOTKIN OF NURGLE unit during deployment, you can say that it is joining this unit aboard the Slime Fleet as a resere unit. Up to 3 MORTAL MAGGOTKIN OF NURGLE units can join this unit. Units that have been reinforced count as 2 units. At the end of your movement phase, you can set up this unit on the battlefield, more than 9" away from all enemy units and wholly within 6" of the edge of the battlefield. If you do so, set up all of the units that joined this unit wholly within 12" of this unit, more than 9" from all enemy units, and wholly within 6" of the edge of the battlefield.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="853a-9ee8-869b-ef5d" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="54bb-b529-1da6-bdbb" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="a278-f93a-9f07-c1a5" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
<categoryLink id="d61d-a148-c330-cbe8" name="New CategoryLink" hidden="false" targetId="5772-b134-58d8-63bf" primary="false"/>
<categoryLink id="e3c9-fa4e-19f6-7508" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="216a-02a3-833f-d843" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="310a-d879-8cfa-9153" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="147e-fcef-86da-3778" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="5e20-5395-1a9b-2548" name="MAGGOTKIN OF NURGLE" hidden="false" targetId="2963-8fea-92d4-474a" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8906-01c7-16f7-f384" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry"/>
<entryLink id="fe21-33cb-db64-43e0" name="Battalions" hidden="false" collective="false" import="true" targetId="61fa-3b34-1a80-2699" type="selectionEntryGroup"/>
<entryLink id="5923-3b94-546b-a3b1" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f17e-a2ef-3242-8805" name="Festus The Leechlord" publicationId="6894-a70d-pubN65537" page="" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8933-cd88-9884-a1af" type="max"/>
</constraints>
<profiles>
<profile id="f6b5-7371-0949-45bc" name="Festus The Leechlord" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="9c32-1245-3968-a286" name="Plague Staff" 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">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="6efb-3159-015f-0bd4" name="Delightful Brews, Splendid Restoratives" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your hero phase, you can pick 1 unit within 1" of this unit. If you pick a friendly unit, roll a dice. On a 2+, you can heal up to D3 wounds allocated to that unit. If you pick an enemy unit, roll a dice. On a 2+, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="01fe-5657-2b16-b709" name="Festus The Leechlord" 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 The Leechlord's Curse</characteristic>
</characteristics>
</profile>
<profile id="a380-c88e-7ecd-7abc" name="The Leechlord's Curse" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">14"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster. Subtract 1 from save rolls for attacks that target that unit for the rest of the battle. The same unit cannot be affected by this spell more than once.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b864-5c3e-df40-7a23" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="4e33-e56f-43cc-c09e" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7871-9dfc-29e4-75f3" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="7411-ad7f-7282-04fd" name="New CategoryLink" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="d689-255e-985d-7b73" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
<categoryLink id="32cc-8a0e-0786-af4c" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="5013-0849-015e-eda2" name="New CategoryLink" hidden="false" targetId="5697-f8c9-2e4b-1a1f" primary="false"/>
<categoryLink id="a600-451e-2223-7d1c" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>