forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChaos - Nurgle.cat
5251 lines (5251 loc) · 396 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="40" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="23" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="6894-a70d-pubN65537" name="Chaos Battletome: Maggotkin of Nurgle"/>
<publication id="6894-a70d-pubN78755" name="Compendium: Tamurkhan's Horde"/>
<publication id="6894-a70d-pubN85775" name="Chaos Battletom: Maggotkin of Nurgle"/>
<publication id="6894-a70d-pubN88662" name="Compendium: Monstrous Arcanum"/>
<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"/>
</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="a85e-8d4c-be4c-d290" name="Battalion: Affliction Cyst" hidden="false" collective="false" import="true" targetId="f900-36e7-67cf-56ad" type="selectionEntry">
<categoryLinks>
<categoryLink id="0c61-4d41-b166-7608" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="00d7-6b7e-4e3b-2f57" name="Battalion: Blight Cyst" hidden="false" collective="false" import="true" targetId="32fd-6211-ea35-3e6e" type="selectionEntry">
<categoryLinks>
<categoryLink id="8c5e-4c10-839a-743d" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="878a-3d7a-e2f7-c244" name="Battalion: Nurgle's Menagerie" hidden="false" collective="false" import="true" targetId="623e-cbb1-7349-5620" type="selectionEntry">
<categoryLinks>
<categoryLink id="6a20-3ddd-268e-6f99" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="45fb-b289-401e-81a8" name="Battalion: Plague Cyst" hidden="false" collective="false" import="true" targetId="9e05-207d-5035-eb99" type="selectionEntry">
<categoryLinks>
<categoryLink id="2db0-447c-2065-b013" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="939e-3a16-68a6-14fb" name="Battalion: Tallyband of Nurgle" hidden="false" collective="false" import="true" targetId="a29e-ca16-22a7-824f" type="selectionEntry">
<categoryLinks>
<categoryLink id="20e2-09cd-3427-7b7b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6e69-74a0-c506-9fdf" name="Battalion: The Blessed Sons" hidden="false" collective="false" import="true" targetId="d498-57f6-f94c-33e0" type="selectionEntry">
<categoryLinks>
<categoryLink id="33d5-0ff0-d740-69d0" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63d9-bf6b-bbbf-54a8" name="Battalion: The Munificent Wanderers" hidden="false" collective="false" import="true" targetId="8cf7-55ec-fd05-ca54" type="selectionEntry">
<categoryLinks>
<categoryLink id="3ac3-9733-c497-049b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1e0a-f663-70f5-dd87" name="Battalion: Thricefold Befoulment" hidden="false" collective="false" import="true" targetId="eebc-d0db-9388-dc5d" type="selectionEntry">
<categoryLinks>
<categoryLink id="e979-492c-b38e-41ae" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0b0e-874e-dcf8-599a" name="Great Unclean One" hidden="false" collective="false" import="true" targetId="7186-178d-d244-378e" 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="e3d9-2c81-1e23-4773" 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="d4a0-d196-3588-a740" 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="b3cc-d1c0-7f15-9fdc" 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="1646-c52f-cdd5-2b5c" 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="269a-f1cd-5284-d87e" 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="87c3-252f-9909-04d7" type="selectionEntry"/>
<entryLink id="3b6a-2882-247b-7ea2" name="Epidemius, Tallyman of Nurgle" hidden="false" collective="false" import="true" targetId="d562-8951-70d1-6d72" 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="96b2-72d1-1197-ed32" 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="0611-7dab-0590-0650" 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="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="5ef0-6016-f13d-8595" 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="e73c-02cb-c9bf-fdfc" 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="9545-7a7f-1e26-c353" type="selectionEntry">
<categoryLinks>
<categoryLink id="5953-11ed-1663-5224" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<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="e12e-646d-c72f-b1eb" type="selectionEntry"/>
<entryLink id="b08d-9a0a-5571-541c" name="Gigantic Chaos Spawn (of Nurgle)" hidden="false" collective="false" import="true" targetId="8fbc-e0e7-28bb-b4ee" 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="false" childId="e2dc-66be-b715-6f9b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="08b2-5dab-2b77-48d4" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7fea-2876-c24b-2b09" name="Kayzk the Befouled" 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" 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" 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" hidden="false" collective="false" import="true" targetId="e504-575a-ec2d-3c9c" type="selectionEntry"/>
<entryLink id="1922-3788-f884-d7c8" name="Daemon Pox Riders of Nurgle" hidden="false" collective="false" import="true" targetId="0e31-eadc-a402-f7f7" 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="2c2b-66f3-2cec-e0a0" name="Plague Ogors" hidden="false" collective="false" import="true" targetId="6378-7fa4-03df-0e10" type="selectionEntry"/>
<entryLink id="35e6-0a43-cbba-501d" name="Battalion: Sons of the Maggot Lord" hidden="false" collective="false" import="true" targetId="e2dc-66be-b715-6f9b" type="selectionEntry">
<categoryLinks>
<categoryLink id="816f-9481-fb44-c148" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="127a-28c4-c658-2ccb" name="Battalion: Leaping Pox" hidden="false" collective="false" import="true" targetId="422b-a476-03f6-59bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="440f-1ebb-edd2-d40b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6594-9591-f6c8-9462" name="Battalion: Fecund Rituculturalists" hidden="false" collective="false" import="true" targetId="63ea-9ee2-5262-b546" type="selectionEntry">
<categoryLinks>
<categoryLink id="a05e-9dbe-15a9-6d63" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c90c-4185-dce2-9203" name="Exalted Greater Daemon of Nurgle" hidden="false" collective="false" import="true" targetId="36b5-7c64-95cc-8612" 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="8269-d5a3-2620-c03e" name="Battalion: Pestilent Throng" hidden="false" collective="false" import="true" targetId="d842-8970-3cae-866a" type="selectionEntry">
<categoryLinks>
<categoryLink id="2533-e8ca-72f7-4bee" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1edb-6b1a-8c91-2418" name="Lord of Chaos" hidden="false" collective="false" import="true" targetId="1ccb-5743-64df-f027" type="selectionEntry">
<categoryLinks>
<categoryLink id="5526-c975-06f2-657c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9ba6-bb14-6f72-ba71" name="Exalted Hero of Chaos" hidden="false" collective="false" import="true" targetId="69e5-b08e-9813-f378" type="selectionEntry">
<categoryLinks>
<categoryLink id="3a43-ce56-e643-92b2" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="276e-023e-3c03-560e" name="Chaos Warshrine" hidden="false" collective="false" import="true" targetId="89b1-9d63-4211-96da" type="selectionEntry">
<categoryLinks>
<categoryLink id="04ee-6e32-93b9-9f7f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ea2a-ea7f-b242-141f" name="Chaos Warriors" hidden="false" collective="false" import="true" targetId="22ed-600b-a62c-7ebe" type="selectionEntry"/>
<entryLink id="4316-7653-77d4-5f23" name="Chaos War Mammoth" hidden="false" collective="false" import="true" targetId="23e4-3184-435d-9681" type="selectionEntry">
<categoryLinks>
<categoryLink id="1c17-91d6-9d7e-e26f" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1cca-e16c-74bf-d7be" name="Chaos Spawn" hidden="false" collective="false" import="true" targetId="494c-81bb-bb30-3d33" type="selectionEntry">
<categoryLinks>
<categoryLink id="8fe8-544e-abe4-a854" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a3bc-e30d-c5b5-16be" name="Chaos Sorcerer Lord on Manticore" hidden="false" collective="false" import="true" targetId="c132-1271-a655-1e16" type="selectionEntry">
<categoryLinks>
<categoryLink id="c92b-5424-ddf7-c50a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="0736-8007-b92f-cc65" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f3f0-0a2e-5772-57f6" name="Chaos Sorcerer Lord" hidden="false" collective="false" import="true" targetId="1080-2582-0880-dd78" type="selectionEntry">
<categoryLinks>
<categoryLink id="1cc1-47c6-b740-8e53" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c8c2-a165-ea61-3833" name="Chaos Marauders" hidden="false" collective="false" import="true" targetId="08c1-05a1-4828-6983" type="selectionEntry"/>
<entryLink id="8b0c-3219-4204-9c47" name="Chaos Marauder Horsemen" hidden="false" collective="false" import="true" targetId="ce01-c0f8-2c4b-fddc" type="selectionEntry"/>
<entryLink id="8564-8430-ca4e-26b9" name="Chaos Lord on Manticore" hidden="false" collective="false" import="true" targetId="3303-cef0-2064-a5f5" type="selectionEntry">
<categoryLinks>
<categoryLink id="089a-e53c-a987-ac33" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6a0b-61da-2c5d-51ca" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6eec-2ec7-547d-39a6" name="Chaos Lord on Daemonic Mount" hidden="false" collective="false" import="true" targetId="ae9b-b9fe-18ba-2f9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="bd29-7293-2986-6cf5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a77d-2bda-bf79-e526" name="Chaos Knights" hidden="false" collective="false" import="true" targetId="e432-9436-085d-4c93" type="selectionEntry"/>
<entryLink id="0b75-a4bb-421f-fc40" name="Chaos Gorebeast Chariots" hidden="false" collective="false" import="true" targetId="44d4-5116-6301-5c92" type="selectionEntry">
<categoryLinks>
<categoryLink id="100e-67d4-03be-27a4" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c89f-937c-e8bd-8f61" name="Chaos Chosen" hidden="false" collective="false" import="true" targetId="7117-c074-dd10-883d" type="selectionEntry">
<categoryLinks>
<categoryLink id="88a0-2877-a58c-ac43" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="faf7-4671-52ea-42f9" name="Chaos Chariots" hidden="false" collective="false" import="true" targetId="8bc4-05d4-ff31-086b" type="selectionEntry"/>
<entryLink id="c7f7-21ea-7a4d-b724" name="Daemon Prince of Nurgle" hidden="false" collective="false" import="true" targetId="56c6-bdaa-8ced-26c2" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="5ef0-6016-f13d-8595" name="Beasts of Nurgle" publicationId="6894-a70d-pubN65537" page="93" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="decrement" field="points" value="100">
<conditions>
<condition field="selections" scope="5ef0-6016-f13d-8595" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2e2-064c-d5ba-53c4" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="points" value="100">
<repeats>
<repeat field="selections" scope="5ef0-6016-f13d-8595" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2e2-064c-d5ba-53c4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<profiles>
<profile id="1425-f698-9028-6240" name="Beasts of Nurgle" 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">7</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="eb4c-3986-9e13-64be" name="Claws and 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">D6</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">1</characteristic>
</characteristics>
</profile>
<profile id="b5bd-b236-5df4-b322" name="Slobbering Tongue" 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">1</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">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="f334-8ece-ef5f-2e64" name="Acidic Slime Trail" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice for each enemy unit that is within 3" of this unit immediately before this unit makes a retreat move. On a 4+ that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="c06f-5723-b11e-a337" name="Attention Seekers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit can charge in the same turn in which it ran or retreated.</characteristic>
</characteristics>
</profile>
<profile id="32a7-a984-64aa-62d2" name="Locus of Virulence" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Damage characteristics of this unit’s weapons while it is within 7" of a friendly NURGLE DAEMON HERO.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cc52-4ab8-9a1d-dbfc" name="Disgustingly Resilient" hidden="false" targetId="136c-278b-2cba-c36c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8fb6-5eac-2db7-cad9" name="New CategoryLink" hidden="false" targetId="b12a-6781-bb19-70e0" primary="false"/>
<categoryLink id="5a24-b979-c2a3-f017" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="bb7d-06e2-7e51-66a7" name="New CategoryLink" hidden="false" targetId="1418-9a68-9f9e-e9a7" primary="false"/>
<categoryLink id="cbfb-74ac-743a-5be1" name="New CategoryLink" hidden="false" targetId="dd77-19a5-28eb-cbec" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c2e2-064c-d5ba-53c4" name="Beast of Nurgle" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dd7c-c17a-001e-646c" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e291-a5fe-a908-5f5e" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ba97-4abb-1ec1-657f" name="Bloab Rotspawned" publicationId="6894-a70d-pubN65537" page="96" 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">12</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">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</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">2"</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">3"</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">2+</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="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-2</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</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">3-4</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</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">5-7</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="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">8-9</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">4</characteristic>
</characteristics>
</profile>
<profile id="bfc5-909e-3618-5aab" name="WoundTable5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">4"</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="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 your hero phase, roll a dice for each enemy unit within 7" of Bloab Rotspawned. On a 4+ subtract 1 from hit rolls for that unit until your next hero 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">Subtract 1 from the casting rolls of enemy WIZARDS while they are within 14" of Bloab Rotspawned.</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="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick an enemy unit within 14" of the caster that is visible to them. Until your next hero phase, roll a dice at the end of each phase in which any wounds or mortal wounds were allocated to that unit and not negated. 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="d2ac-9f1c-b5d0-9277" name="New CategoryLink" hidden="false" targetId="1547-93ca-6319-42ba" 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"/>
</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"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="240.0"/>
</costs>
</selectionEntry>
<selectionEntry id="19d6-d1fc-8079-eda7" name="The Glottkin" publicationId="6894-a70d-pubN65537" page="94" 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">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">18</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="Pestilent Torrent" 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">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">*</characteristic>
</characteristics>
</profile>
<profile id="4172-49dd-1a5b-3a01" name="Ghurk's Flailing 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">4+</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">2</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">2"</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">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="fd04-2efa-856d-b9d7" name="Otto's Poison-slick 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">2"</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">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">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Pestilent Torrent</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Ghurk's Flailing Tentacle</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-3</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">6</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">4-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">D6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</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">7-9</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">D3</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</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">10-12</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="5e24-8acc-ed78-42f4" name="WoundTable5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">13+</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="Blessings of Nurgle" 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 heal D3 wounds that have been allocated to this model.</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 combat phase, roll 2D6 for each enemy unit within 7" of this model. If the roll is greater than that unit’s Bravery characteristic, subtract 1 from hit rolls for that unit in that combat phase.</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/1</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="Fleshy Abundance" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick a friendly unit within 14" of the caster that is visible to them. Add 1 to the Wounds characteristic of all models in that unit until your next hero phase. At the start of your next hero phase, the unit’s Wounds characteristic is reduced to its original value. Note that this can result in a model that has been allocated wounds being slain.</characteristic>
</characteristics>
</profile>
<profile id="3335-5eb1-7ce7-2c20" name="Lords of Nurgle" 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, then until your next hero phase add 1 to the Attacks characteristic of any melee weapons used by friendly NURGLE units while they are within 14" of this model. You cannot use this command ability more than once per hero phase. *Errata Jul'18*</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1c55-83ae-7180-a6be" name="Mountain of Loathsome Flesh" hidden="false" targetId="66db-bd9c-e302-aae8" type="profile"/>
<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"/>
</categoryLinks>
<entryLinks>
<entryLink id="dfe6-fa51-4eae-c1fe" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry"/>
<entryLink id="86ee-c644-9f15-9727" name="Lores of Nurgle" hidden="false" collective="false" import="true" targetId="98af-9a06-6b8b-4712" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="420.0"/>
</costs>
</selectionEntry>
<selectionEntry id="857a-93de-02d0-ee3b" name="Morbidex Twiceborn" publicationId="6894-a70d-pubN65537" page="97" 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">6"</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">2"</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">3"</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">2+</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="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-2</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</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">3-4</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">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">5-7</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="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">8-9</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">4</characteristic>
</characteristics>
</profile>
<profile id="c2f0-6f8b-b682-96dd" name="WoundTable5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">4"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</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 pick 1 friendly Nurglings unit within 7" of Morbidex Twiceborn and add 1 model to it.</characteristic>
</characteristics>
</profile>
<profile id="fc6d-4d95-c342-83d9" name="Malicious Mites" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to wound rolls for friendly Nurglings units while they are within 7" of Morbidex Twiceborn.</characteristic>
</characteristics>
</profile>
<profile id="a0ae-2bd9-b048-3b18" name="Nurgle’s Rot" 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, roll a dice for each unit (friend or foe) within 3" of any units with this ability. On the roll of a 6, that unit suffers D3 mortal wounds. Units with the NURGLE keyword are unaffected by this ability.</characteristic>
</characteristics>
</profile>
<profile id="7670-1f3a-265c-d8e2" name="Repugnant Regrowth" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice in your hero phase. On a 4+ heal 1 wound that has been allocated to Morbidex Twiceborn. On a 6+ heal D3 wounds instead.</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"/>
</categoryLinks>
<entryLinks>
<entryLink id="b91b-dadc-f336-e840" name="General" hidden="false" collective="false" import="true" targetId="cb83-a378-d442-0e53" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="260.0"/>
</costs>
</selectionEntry>
<selectionEntry id="06c6-66f6-734b-4d58" name="Orghotts Daemonspew" publicationId="6894-a70d-pubN65537" page="95" 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">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="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">6"</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">2"</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>
<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">3"</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">2+</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="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-2</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</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">3-4</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>