generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Maggotkin of Nurgle - Library.cat
2759 lines (2759 loc) · 203 KB
/
Maggotkin of Nurgle - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="7589-6d2-dadc-bc6" name="Maggotkin of Nurgle - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Horticulous Slimux" hidden="false" id="6393-ad97-81d9-ccbe" publicationId="9c71-86cb-e1d0-ec8d">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="8dd5-39d8-a78e-7a21" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a7a-e406-3d75-34d1" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Cultivating the Garden of Nurgle" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f3ca-68cb-8c37-825b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If there are fewer than 3 friendly **Feculent Gnarlmaws** on the battlefield, you can set up a **Feculent Gnarlmaw** wholly within 12" of this unit, more than 3" from all enemy units, objectives and other terrain features.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Horticulous Slimux" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b09-2052-b59c-3237">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Beast Handler" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="b226-8a5b-e21b-6393">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Beasts of Nurgle** unit that has been destroyed.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, set up a replacement unit wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="d19f-df92-6673-9756" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="1844-e4fa-5a45-bebb" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="9803-2622-c5f7-539e" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="ae88-4989-5e35-a098" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="e615-a7b-eef7-1596" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="8b48-d323-871d-deba" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="15e4-d196-2541-9f12" targetId="926c-df8c-6841-d49e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Horticulous Slimux" hidden="false" id="7839-1e95-ed94-fe19">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lopping Shears" hidden="false" id="e86b-b929-20c7-8490">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f85f-df62-a438-e235"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="44f4-e05a-9b6f-5245"/>
</constraints>
<profiles>
<profile name="Lopping Shears" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="996f-afd1-66de-fbd8">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Slime-encrusted Jaws" hidden="false" id="cb1e-9651-90d4-40bd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fff4-1955-3d9b-834f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="60ca-b7f2-b86d-a663"/>
</constraints>
<profiles>
<profile name="Slime-encrusted Jaws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="61cc-d84c-824f-7afc">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="d051-76e7-7854-4499"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="1117-ebd7-4e4f-bfac"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Lord of Plagues" hidden="false" id="542a-9c27-908f-8c30" publicationId="9c71-86cb-e1d0-ec8d">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="f6bf-e1c6-12ba-4ea5" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Lord of Plagues" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="25ce-e99b-7118-1971">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Sevenfold Slaughter" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8d36-892d-9940-32ea">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Putrid Blightkings** unit that charged this turn and is wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, add 1 to the Attacks characteristic of the target’s **Blighted Weapons** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Lord of the Blightkings" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="62bc-578a-c14f-7d60">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to charge rolls for friendly **Putrid Blightkings** units while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="993f-a491-20d1-3a19" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WARD (5+)" hidden="false" id="a19c-e4d3-15ab-5656" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="4469-d2c5-30aa-bb3f" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="9b41-7186-55db-5c6a" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="ROTBRINGERS" hidden="false" id="88-98d7-d4f9-8b19" targetId="b665-bb9e-c89c-ad7d" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="72f0-481f-97c6-82e6" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Lord of Plagues" hidden="false" id="3398-ea0d-f6e8-ec77">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Plague-ridden Great Blade" hidden="false" id="bb6c-2ad9-d081-12d3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a719-5c2d-2153-3da8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d2e4-ece1-3c60-fcbf"/>
</constraints>
<profiles>
<profile name="Plague-ridden Great Blade" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ac26-c454-78a6-783a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="8a0e-63c8-6db-d90d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="24ae-f737-bfa7-6ed1"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Great Unclean One" hidden="false" id="bbb9-4b05-be8a-af89" publicationId="9c71-86cb-e1d0-ec8d">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="c0da-de54-fb52-72d9" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Great Unclean One" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="78a-1c63-a8cd-d4fb">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">20</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Bloated With Corruption" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2727-f062-ca67-6594">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit is damaged, pick up to 3 enemy units in combat with this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3 for each target. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Plague Wind" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="31ee-f67c-6506-dadc">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 12" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The target has the **^^Diseased^^** keyword.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Locus of Nurgle" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="384-bcf1-cb38-aae0">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Maggotkin of Nurgle Daemon^^** unit that started the battle with 3 or more models and that has been destroyed to be the target</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 4+, set up a replacement unit with half the number of models from the target unit (rounding up) wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a99f-1b24-64b9-afed">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Colossal Blight Weapons** is 3.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="298e-cd26-6adc-db58" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="5b65-bcca-6ab5-539b" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="785-9f1a-943e-c7bd" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="6ab5-a69a-a27d-a096" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="479b-99a8-8b1b-262a" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="c582-dc0a-f7ea-905f" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="57e0-2cde-17e8-9e5f" targetId="dc0b-e417-51f4-10f0" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Great Unclean One" hidden="false" id="ae51-81d-58ac-7259">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Host of Nurglings" hidden="false" id="f6e7-d23c-5f9d-13d2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f5fd-370-1f55-1d7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="df3b-bad2-ed65-9de1"/>
</constraints>
<profiles>
<profile name="Host of Nurglings" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7940-d064-e979-bf5e">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">10</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Noxious Bile" hidden="false" id="641a-a008-7b06-9ca6">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7ee2-cfd3-ab27-5985"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="39a8-fd05-7492-63c7"/>
</constraints>
<profiles>
<profile name="Noxious Bile" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="5cb1-32e8-371d-e52">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">7"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">D3+3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Colossal Blight Weapons" hidden="false" id="cf87-574a-867a-a056">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3403-a99c-231d-6e2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f45d-9788-a3de-7886"/>
</constraints>
<profiles>
<profile name="Colossal Blight Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="670e-4512-b1c8-4f33">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="6a9d-8103-b4e5-9855"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="f5d3-4077-c825-11fe"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="The Glottkin" hidden="false" id="d561-75fb-fd5f-57a5" publicationId="9c71-86cb-e1d0-ec8d">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="3d38-895a-cc1-133e" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="d94c-29db-6e64-e920" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="9826-92d8-2722-c66b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of **Ghurk's Tentacle** is 2.</characteristic>
</characteristics>
</profile>
<profile name="The Glottkin" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="89ae-5ae8-3f5c-781f">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">24</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">10</characteristic>
</characteristics>
</profile>
<profile name="Blighted Stampede" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e66d-9096-37f6-2599">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Reaction: You declared the ‘Counter-charge’ command for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick up to 2 friendly Maggotkin of Nurgle units wholly within 12" of this unit to be the targets. After the ‘Counter-charge’ command for this unit has been resolved, if this unit charged, each of the targets can immediately use the ‘Counter-charge’ command in an order of your choosing without any command points being spent.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Overgrowth of Flesh" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="a1af-e424-4974-43e1">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 12" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a number of dice equal to the target’s Health characteristic. For each 5+, inflict 1 mortal damage on the target, to a maximum of 7 mortal damage.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Horrific Opponent" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="440a-2060-8677-10d8">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 3 from the control scores of enemy units while they are in combat with this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="39c0-4e71-a0d8-fe2" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="abd-a6f-2a92-4fdc" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="cde7-eebb-3932-6bf4" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="342a-c22f-7be2-6ec9" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="864c-b985-9f38-3e06" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="bd2-b8d1-c55a-877" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="1455-4a27-a71-d4bd" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="ROTBRINGERS" hidden="false" id="28dc-a550-52d6-b1a7" targetId="b665-bb9e-c89c-ad7d" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="e797-b674-8ae2-c1ff" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="The Glottkin" hidden="false" id="c01a-e8e8-275b-dffc">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ghurk's Lamprey Maw" hidden="false" id="798a-c33a-a32-5ad2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a777-5aef-5883-af4e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6aef-12c-f275-4e4c"/>
</constraints>
<profiles>
<profile name="Ghurk's Lamprey Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="229c-c358-e893-4119">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ghurk’s Tentacle" hidden="false" id="66bc-62f-2ffe-1da">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="77e0-8614-83af-d11d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="df7b-5f95-999d-d3ea"/>
</constraints>
<profiles>
<profile name="Ghurk’s Tentacle" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="576d-9108-da23-ff54">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3+3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Otto’s Scythe" hidden="false" id="9dd9-6cfa-1a95-166e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="96e3-762a-43d5-9db0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f0a0-404a-acb6-b26d"/>
</constraints>
<profiles>
<profile name="Otto’s Scythe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="cf4d-3fc7-acc4-61bd">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="deb3-eaa8-afd3-6a78"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="aea2-b583-f57e-8805"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Spoilpox Scrivener, Herald of Nurgle" hidden="false" id="d44-acf2-9394-f93" publicationId="9c71-86cb-e1d0-ec8d">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="fbf3-d530-27e0-e979" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Spoilpox Scrivener, Herald of Nurgle" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="26b1-7b9f-f973-6bf4">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Keep Counting, I'm Watching You" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ba07-4997-d508-1bdb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Plaguebearers** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D6. On a 2+, pick 1 of the following effects to apply until the start of your next turn:
***Tally of Blows:*** Add 1 to the Attacks characteristic of the target’s melee weapons.
***Recorded Stamina:*** Add 1 to save rolls for the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="7763-e306-7c42-174d" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WARD (5+)" hidden="false" id="c127-6c7d-7486-bb36" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="ddb5-cf2b-ee0e-a018" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="92b7-defc-f89e-1ad" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="738d-1e84-4c7f-87b" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="fd18-7a8f-646a-ca9b" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Spoilpox Scrivener, Herald of Nurgle" hidden="false" id="cd4a-ac2e-8003-dfde">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Disgusting Sneezes" hidden="false" id="cf67-8794-76aa-6433">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="68b4-6fc2-ff9c-1385"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1f79-85bb-ebe4-c8ea"/>
</constraints>
<profiles>
<profile name="Disgusting Sneezes" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="7f1c-98ba-8901-7d2d">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">7"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">-</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Distended Maw" hidden="false" id="6863-b7df-56d0-9e7a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b33d-7e79-6f3c-56f2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f44e-b77f-7cbe-54cb"/>
</constraints>
<profiles>
<profile name="Distended Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2e0f-127f-d270-9811">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="c95c-f6fb-14d9-82e5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="1b68-8cd2-4aec-be4e"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Sloppity Bilepiper, Herald of Nurgle" hidden="false" id="29d8-9408-2148-b2c9" publicationId="9c71-86cb-e1d0-ec8d">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="63b1-cc6a-a2f9-3047" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Sloppity Bilepiper, Herald of Nurgle" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="563a-95ee-1e25-ed8d">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Jolly Gutpipes" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d45a-f55b-6b34-4733">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible friendly **^^Maggotkin of Nurgle Daemon^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, pick 1 of the following effects to apply for the rest of the turn:
***A-Stabbing We Will Go!:*** Add 1 to wound rolls for the target’s attacks.
***Early One Evening My Pustule Was Seeping:*** Ward rolls cannot be made for damage points inflicted by the target’s combat attacks.
***My Love Is Like a Ripe, Ripe Fart:*** Subtract 1 from hit rolls for attacks made by enemy units that target the target unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="8c0d-2213-ced4-8876" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WARD (5+)" hidden="false" id="7428-9251-74f1-aa85" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="9796-6f60-e64c-8662" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="e27f-f201-5e85-af33" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="9db9-b172-4909-6717" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="140-c450-a1e7-a16c" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Sloppity Bilepiper, Herald of Nurgle" hidden="false" id="cb9b-3778-6186-a015">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Marotter" hidden="false" id="54c-2047-c407-a72f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a98-8bb4-b7d1-8993"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="43cc-1496-353a-aff7"/>
</constraints>
<profiles>
<profile name="Marotter" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f292-cf54-ee87-10b0">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="false" id="cba4-1e2a-3114-37d7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="8ca-8fd-bbeb-5885"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Beasts of Nurgle" hidden="false" id="8197-2f04-e647-f5c" publicationId="9c71-86cb-e1d0-ec8d">
<profiles>
<profile name="Beast of Nurgle" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="b756-df5-c86e-f5a1">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">7"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Attention Seekers" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4d31-aae1-861a-da68">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit is not in combat, pick the closest enemy unit to it to be the target. If 2 or more enemy units are tied to be the closest, you can pick which is the target. Then, make a charge roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit can move a distance up to the value of the charge roll. During that move, this unit can move into
combat and can pass through models in the target unit, but it must end that move within 1" of the target. Then, inflict D3 mortal damage on the target. If it does so, this unit has charged.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**, **^^Move^^**, **^^Charge^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="WARD (5+)" hidden="false" id="d703-74d3-1c97-e139" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="e8fd-6fb7-eb36-fcca" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="932d-f3f4-7094-a233" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="71c8-bd3d-e5fb-bcc8" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="BEAST" hidden="false" id="f198-f742-e0ae-7359" targetId="b224-8c8e-ca93-9860" primary="true"/>
</categoryLinks>
<costs>
<cost name="" id="655c-b4a9-b5d9-4130" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Beasts of Nurgle" hidden="false" id="e848-7195-c93b-9fd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="236c-7d6-d3e-9cb9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9970-ba66-73f9-40e3"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Filthy Claws and Slobbering Maw" hidden="false" id="c75a-65f2-3572-d864">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="be-1f75-27ec-3c88"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c932-2074-93c1-63da"/>
</constraints>
<profiles>
<profile name="Filthy Claws and Slobbering Maw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="68d8-cd8-7c5d-e907">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Beast" id="9f58-1a9c-c31b-409b" hidden="false" type="profile" targetId="8e01-c681-8a44-8f44"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Putrid Blightkings" hidden="false" id="9951-ae95-5386-f8cf" publicationId="9c71-86cb-e1d0-ec8d">
<profiles>
<profile name="Putrid Blightkings" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="bf80-df32-276-ea74">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">3</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Bloated Bulk" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="7ff5-538a-f5b7-e4f">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 3 to this unit’s control score while each model in this unit is contesting an objective you control.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="WARD (5+)" hidden="false" id="305a-71c5-de3d-14a0" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="1437-9320-5816-1d05" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="93f1-bf38-355e-15ed" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="CHAMPION" hidden="false" id="6d47-5b19-a01-742" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="63f9-c758-ceea-aa44" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="ROTBRINGERS" hidden="false" id="6365-cf14-cb87-70a1" targetId="b665-bb9e-c89c-ad7d" primary="false"/>
<categoryLink name="STANDARD BEARER (1/5)" hidden="false" id="34b1-bde4-42af-438a" targetId="73c-8e22-9dde-f97" primary="false"/>
<categoryLink name="MUSICIAN (1/5)" hidden="false" id="e10c-c464-f584-ddcd" targetId="dd6f-27e9-b16e-24ee" primary="false"/>
</categoryLinks>
<costs>
<cost name="" id="203-74f0-dad-ad49" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Putrid Blightking" hidden="false" id="cc14-1755-fca4-4ced" defaultAmount="1,1,1,2">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="true" id="8ae7-e307-2422-4ac3"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="true" id="2c45-c931-cfca-23b"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blighted Weapons" hidden="false" id="99a1-7c20-292d-c217">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f163-49fb-5bb-361d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ab9b-f399-6adc-83fe"/>
</constraints>
<profiles>
<profile name="Blighted Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="390b-69af-84a5-dbf2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="5" field="8ae7-e307-2422-4ac3">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9951-ae95-5386-f8cf" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="5" field="2c45-c931-cfca-23b">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9951-ae95-5386-f8cf" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="196f-daff-ae0b-582e" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="876-cd9a-a6a6-60a8" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Standard Bearer" hidden="false" id="72bd-6e22-6b3-57a2" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="9951-ae95-5386-f8cf" shared="true" id="5995-3017-d08e-301c" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e07b-4af5-9795-a03f"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="5995-3017-d08e-301c">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9951-ae95-5386-f8cf" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Musician" hidden="false" id="746c-632f-acb-175b" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0,0">
<modifiers>
<modifier type="increment" value="1" field="d830-1aa-83af-5557">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9951-ae95-5386-f8cf" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="1" field="selections" scope="9951-ae95-5386-f8cf" shared="true" id="d830-1aa-83af-5557" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d8f5-2411-6185-db5e"/>
</constraints>
</entryLink>
<entryLink import="true" name="Champion" hidden="false" id="69dc-f3c4-a46f-ac85" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="9951-ae95-5386-f8cf" shared="true" id="78aa-1548-78bb-771d" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b77d-b338-525b-d38b"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Nurglings" hidden="false" id="3495-8e1e-11c-5784" publicationId="9c71-86cb-e1d0-ec8d">
<profiles>
<profile name="Nurglings" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="dceb-28af-85a4-d67">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">4</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
<profile name="Endless Swarm" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="76de-92b8-f0da-704a">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">**Heal (3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="INFANTRY" hidden="false" id="e89d-9b32-af59-f575" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="WARD (5+)" hidden="false" id="d3da-c2b4-ed6d-eb4c" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="5cb8-4332-c9ce-932a" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="fc69-e943-91f0-6125" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="5fc3-9fed-47a8-2bcd" targetId="dc0b-e417-51f4-10f0" primary="false"/>
</categoryLinks>
<costs>
<cost name="" id="9d3c-9574-ea6-89e4" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Nurglings" hidden="false" id="4d34-2703-ac-e220">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="caf1-84e0-3956-1c13"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="f296-17c8-2ebd-24f8"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Tiny Razor-sharp Teeth" hidden="false" id="4f9-108b-7831-a9f2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="96e4-e7bb-470c-9d95"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3657-49c7-c045-50d8"/>
</constraints>
<profiles>
<profile name="Tiny Razor-sharp Teeth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="4a34-cb62-5bc3-ee83">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">5+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="6" field="caf1-84e0-3956-1c13">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" value="6" field="f296-17c8-2ebd-24f8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Pusgoyle Blightlords" hidden="false" id="fef0-a956-3083-4cf3" publicationId="9c71-86cb-e1d0-ec8d">
<profiles>
<profile name="Pusgoyle Blightlords" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="fcf4-6ae7-7f11-df36">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Relentless Attackers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f605-733a-b0d1-87b5">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Rend characteristic of this unit’s **Flyrider’s Arsenal** for attacks that target units contesting an objective you do not control.</characteristic>
</characteristics>
</profile>
<profile name="Dispersed Formation" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c4e4-c562-0d69-a419">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit has a coherency range of 2".</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="WARD (5+)" hidden="false" id="1776-803a-c6c8-b809" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="7ec7-9d50-e0d1-aff7" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="46d2-5977-178f-b0e8" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="5bd4-6214-b802-70ee" targetId="926c-df8c-6841-d49e" primary="true"/>
<categoryLink name="FLY" hidden="false" id="d063-8d00-bc43-5961" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="ROTBRINGERS" hidden="false" id="baeb-fda6-677-8a3d" targetId="b665-bb9e-c89c-ad7d" primary="false"/>
</categoryLinks>
<costs>
<cost name="" id="59ea-bb77-6cf4-6dbc" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Pusgoyle Blightlords" hidden="false" id="f7ee-b2a1-a0fa-8a89">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="7479-509f-8c31-baf9"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="3e99-d074-61bb-ba16"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Flyrider’s Arsenal" hidden="false" id="e1a9-a456-a5e7-82c3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fad8-e383-baab-7e2e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="be04-8bfe-f7d4-114e"/>
</constraints>
<profiles>
<profile name="Flyrider’s Arsenal" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6a77-668e-587a-21a2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Rot Fly’s Mouthparts and Sting" hidden="false" id="df32-5e13-6c36-8787">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f5e7-7823-8f84-474f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ba09-285d-5ec3-e7a7"/>
</constraints>
<profiles>
<profile name="Rot Fly’s Mouthparts and Sting" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="26e8-1d3b-9e4b-c2f7">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="increment" value="2" field="7479-509f-8c31-baf9">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="2" field="3e99-d074-61bb-ba16">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" value="1" field="7479-509f-8c31-baf9">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="c461-2ebb-5bbc-81a2" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="1" field="3e99-d074-61bb-ba16">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="c461-2ebb-5bbc-81a2" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Rotigus" hidden="false" id="bb0e-3648-ee6e-3e43" publicationId="9c71-86cb-e1d0-ec8d">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="b771-4564-741e-ec16" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="3a78-2253-a9bc-1933" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="66e4-b8e8-2237-bd41">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Gnarlrod** is 3.</characteristic>
</characteristics>
</profile>
<profile name="Rotigus" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="95f9-4690-c034-5817">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">22</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Mountain of Loathsome Flesh" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2507-a15e-756a-428d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this phase, roll a dice. On a 3+, pick an enemy unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a number of dice equal to the number of models in the target unit. For each 5+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Bringer of Plenty" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c4ca-1f85-2f0a-d219">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to casting rolls for this unit.</characteristic>
</characteristics>
</profile>
<profile name="Deluge of Nurgle" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="dc53-3961-b211-d302">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">8</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick each **^^Diseased^^** enemy unit on the battlefield and each friendly **^^Maggotkin of Nurgle^^** unit in combat with any **^^Diseased^^** enemy units to be the targets. Then, make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a D3 for each target. On a 2+:
• Inflict an amount of mortal damage on each enemy target equal to the roll.
• Heal (X) each friendly target, where X is an amount equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="103-53e1-3578-8fd3" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="eaf9-719f-8073-a602" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="9ca1-b21a-7211-3e2f" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c026-858e-fb18-a73e" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="MAGGOTKIN OF NURGLE" hidden="false" id="a5e-5af6-10a2-3256" targetId="ca3c-6c3b-4887-3a9d" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="ca84-b322-8513-215d" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="524a-195-4961-a431" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="b631-876e-c08d-c586" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="a6e7-cef3-2406-e2eb" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Rotigus" hidden="false" id="16f6-a6e9-b74a-eff1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gnarlrod" hidden="false" id="e530-b232-13b4-c203">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2e29-a182-6d1a-d1b6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f3f9-1a3a-5069-554e"/>
</constraints>
<profiles>
<profile name="Gnarlrod" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c31-67fd-5317-360a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fanged Maws" hidden="false" id="32ff-2eda-f4ad-c64d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="776c-9fa9-e5fb-72b3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fc77-2f45-9402-4cec"/>
</constraints>
<profiles>
<profile name="Fanged Maws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="368c-3019-9d61-e99d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Host of Nurglings" hidden="false" id="db64-40cb-5fc4-b77">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2a2e-242f-f6cc-9f60"/>