generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathChaos-MaggotkinOfNurgle-Rotbringers.cat
967 lines (967 loc) · 64.1 KB
/
Chaos-MaggotkinOfNurgle-Rotbringers.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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="79ae-8761-15f6-2eef" name="Chaos - Maggotkin of Nurgle - Rotbringers" revision="17" battleScribeVersion="2.03" library="false" gameSystemId="e5fe-db52-95ba-6b62" gameSystemRevision="60" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="32e7-5f04-0036-fba8" name="Underworlds Fecula" hidden="false"/>
<categoryEntry id="81f3-2a02-d61e-d89c" name="Nurgle Rotbringers" hidden="false"/>
<categoryEntry id="c166-74fb-0124-4e62" name="Wurmspat" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="9df5-8533-db91-3378" name=" Fecula Flyblown" hidden="false" collective="false" import="true" targetId="96cb-659c-248e-33fa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="028c-4309-0b09-f14d" name="Underworlds Fecula" hidden="false" targetId="32e7-5f04-0036-fba8" primary="false"/>
<categoryLink id="3b17-dfb8-915f-b038" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="482d-2b76-a52a-20c2" name=" Harbinger of Decay" hidden="false" collective="false" import="true" targetId="34fb-e729-033d-f1a8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b1ca-db0f-5e7f-d226" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d5c8-5195-9cc3-906f" name=" Lord of Afflictions" hidden="false" collective="false" import="true" targetId="0218-013a-acf2-1280" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b1d7-f0f6-56dd-feed" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="335e-18fe-f0cc-da5b" name=" Lord Of Blights" hidden="false" collective="false" import="true" targetId="fe80-13fc-a01b-ad90" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="21db-0d78-da93-4a89" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8686-a791-d6bb-92dc" name=" Lord Of Plagues" hidden="false" collective="false" import="true" targetId="ce11-5ec7-d9bb-2c56" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="386d-f61e-b874-15cf" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0ce1-bf3d-df06-ae5e" name=" Putrid Blightking Blightlord" hidden="false" collective="false" import="true" targetId="808b-bc52-a6c7-2ce7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1568-e031-b278-5c08" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="16a2-917a-8dc7-b756" name=" Rotbringer Sorcerer" hidden="false" collective="false" import="true" targetId="d97a-4f10-686a-d7b1" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0b55-540e-5cd4-4769" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fb9d-6a5f-3341-1fa2" name="Ghulgoch the Butcher" hidden="true" collective="false" import="true" targetId="098d-3333-5559-a27e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32e7-5f04-0036-fba8" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3bfb-b807-77a3-c2d3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9bcf-897f-ceee-fd2d" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7ab7-24d4-224f-d327" name="Sepsimus Plaguesworn" hidden="true" collective="false" import="true" targetId="8cdf-ed13-be6d-7b3d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32e7-5f04-0036-fba8" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a069-63a6-a6b4-742b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b721-79fd-1645-8130" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="1a96-aaff-6e0c-7aea" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b098-9972-8fab-c578" name=" Fecula Flyblown" hidden="false" collective="false" import="true" targetId="96cb-659c-248e-33fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="e83b-a1c2-e405-9ff3" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bd26-f6d1-3154-6fbd" name="Ghulgoch the Butcher" hidden="false" collective="false" import="true" targetId="098d-3333-5559-a27e" type="selectionEntry"/>
<entryLink id="5ab8-d941-e4aa-d842" name=" Harbinger of Decay" hidden="false" collective="false" import="true" targetId="34fb-e729-033d-f1a8" type="selectionEntry">
<categoryLinks>
<categoryLink id="52a2-3df4-1272-978e" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2d06-4bd8-0c01-ac55" name=" Lord of Afflictions" hidden="false" collective="false" import="true" targetId="0218-013a-acf2-1280" type="selectionEntry">
<categoryLinks>
<categoryLink id="f758-f4e4-c694-c064" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e6ed-7c57-082f-3333" name=" Lord Of Blights" hidden="false" collective="false" import="true" targetId="fe80-13fc-a01b-ad90" type="selectionEntry">
<categoryLinks>
<categoryLink id="c0b2-2ceb-c976-e9df" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0197-69bd-ea91-7258" name=" Lord Of Plagues" hidden="false" collective="false" import="true" targetId="ce11-5ec7-d9bb-2c56" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc69-c133-8a95-1d89" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="feff-b383-3bad-12e2" name="Pusgoyle Blightlord" hidden="false" collective="false" import="true" targetId="cbf3-0b29-4875-7900" type="selectionEntry"/>
<entryLink id="80b8-ee68-dd5d-1eb1" name="Putrid Blightking" hidden="false" collective="false" import="true" targetId="175c-6aab-d41c-a27f" type="selectionEntry"/>
<entryLink id="047a-683b-44bf-a3ba" name=" Putrid Blightking Blightlord" hidden="false" collective="false" import="true" targetId="808b-bc52-a6c7-2ce7" type="selectionEntry">
<categoryLinks>
<categoryLink id="9a61-311d-dfdb-3bb7" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6bbf-4065-0028-0452" name=" Rotbringer Sorcerer" hidden="false" collective="false" import="true" targetId="d97a-4f10-686a-d7b1" type="selectionEntry">
<categoryLinks>
<categoryLink id="cd66-c9a8-9c14-c250" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0185-2812-7531-22e4" name="Sepsimus Plaguesworn" hidden="false" collective="false" import="true" targetId="8cdf-ed13-be6d-7b3d" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="fe80-13fc-a01b-ad90" name=" Lord Of Blights" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="e677-d046-f1b0-2d8a" name="Lord Of Blights" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">5</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">32</characteristic>
</characteristics>
</profile>
<profile id="a5de-4344-486c-7a6f" name="Bubotic Hammer" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="30d8-5d05-606b-a71c" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="38e4-9ede-4f06-e977" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="35e6-fe57-6768-01b4" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="250f-8f93-8c9f-cae3" name=" Bulwark" hidden="false" targetId="0f0b-3883-05ea-e379" primary="false"/>
<categoryLink id="61ff-36bb-c023-9b54" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="51d0-7dd1-80d2-ee8d" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="170"/>
</costs>
</selectionEntry>
<selectionEntry id="ce11-5ec7-d9bb-2c56" name=" Lord Of Plagues" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="4c6f-ae27-01d6-0f07" name="Lord Of Plagues" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">32</characteristic>
</characteristics>
</profile>
<profile id="d4b9-a245-b9b1-094c" name="Plague-ridden Great Blade" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">5</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">3/5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a036-04f0-dca2-55ed" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6698-7da6-36c8-0f8d" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="f9ca-8631-d86d-b126" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="f44d-dc9e-146f-1656" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="308c-2eb6-afa1-6ec6" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="170"/>
</costs>
</selectionEntry>
<selectionEntry id="0218-013a-acf2-1280" name=" Lord of Afflictions" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="b03e-0dcd-b181-bf67" name="Lord of Afflictions" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">6</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">42</characteristic>
</characteristics>
</profile>
<profile id="7b48-f1f1-5fce-af8d" name="Festerspike" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">4</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">5</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">3/5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0791-639f-2aa2-7b79" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7de8-14ff-e0ff-288b" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="87e2-64b7-4845-e40b" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="80c4-ba54-1fa6-7581" name=" Fly" hidden="false" targetId="6840-bddb-4164-6ebe" primary="false"/>
<categoryLink id="bd28-3f1b-38ac-2b09" name=" Destroyer" hidden="false" targetId="4a55-52e5-0611-9983" primary="false"/>
<categoryLink id="b1c9-dc8e-0c61-83cf" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="4b32-4680-9203-1ea0" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="320"/>
</costs>
</selectionEntry>
<selectionEntry id="d97a-4f10-686a-d7b1" name=" Rotbringer Sorcerer" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="9721-67a6-f1ce-b14c" name="Rotbringer Sorcerer" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">3</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">22</characteristic>
</characteristics>
</profile>
<profile id="e73c-77d6-8bc1-144c" name="Rotwood Staff" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">3</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">1/4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6048-5e58-822f-c972" name="Arcane Bolt" hidden="false" targetId="dd17-5f25-3a66-0d5a" type="profile"/>
<infoLink id="7032-798f-5d2b-9253" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="030a-c241-4afe-d0d3" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="c07a-7923-563a-11e9" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="c9df-82c8-2613-dcc0" name=" Mystic" hidden="false" targetId="7622-abbe-a6f9-0bc6" primary="false"/>
<categoryLink id="8697-090c-a53f-a6c0" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="9ecb-365a-d4ac-84ee" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="125"/>
</costs>
</selectionEntry>
<selectionEntry id="34fb-e729-033d-f1a8" name=" Harbinger of Decay" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="10c7-20a6-1ebd-0562" name="Harbinger of Decay" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">6</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">25</characteristic>
</characteristics>
</profile>
<profile id="6d62-5398-0c35-07be" name="Plague Scythe" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">4</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c903-1d7f-14fb-245b" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cf76-abdf-5732-40f2" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="9d16-9820-36cb-dc1f" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="a189-40ff-3519-285a" name=" Mount" hidden="false" targetId="85e4-2bbc-e2a5-c551" primary="false"/>
<categoryLink id="b447-2d29-97ad-07d7" name=" Terrifying" hidden="false" targetId="9a13-b45c-d217-fc43" primary="false"/>
<categoryLink id="85da-39bf-3f48-d61b" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="0e45-ea6a-3797-28fc" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="195"/>
</costs>
</selectionEntry>
<selectionEntry id="808b-bc52-a6c7-2ce7" name=" Putrid Blightking Blightlord" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c8ab-dd28-8cea-d581" name="Putrid Blightking Blightlord" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">30</characteristic>
</characteristics>
</profile>
<profile id="c2df-4c4a-fb19-4611" name="Blightlord Blighted Weapon " hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="525f-072d-2004-49fb" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2fc0-da42-eaef-ab9e" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="f0c3-c759-d53a-cd51" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="c2a8-5fe4-06c5-b9a8" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="052d-4f93-5952-b9ee" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="145"/>
</costs>
</selectionEntry>
<selectionEntry id="96cb-659c-248e-33fa" name=" Fecula Flyblown" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f185-d4ef-4760-a7e3" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="f1d7-762f-c4e7-a13a" name="Fecula Flyblown" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">28</characteristic>
</characteristics>
</profile>
<profile id="d8ce-658e-11ee-35b8" name="Rotwood Staff" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">1/4</characteristic>
</characteristics>
</profile>
<profile id="d8b0-f90f-1a15-7489" name="Arcane Bolt" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">3-7</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">2</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">3</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">3/6</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d9cc-d538-a58e-aec8" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9f60-66b3-78cf-6e26" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="2e80-25b4-13f1-f033" name=" Hero" hidden="false" targetId="e5fd-f9f1-938d-dc5b" primary="false"/>
<categoryLink id="8d82-0d8b-9f0c-5ba3" name="Wurmspat" hidden="false" targetId="c166-74fb-0124-4e62" primary="false"/>
<categoryLink id="9e50-22f9-a487-44c2" name=" Mystic" hidden="false" targetId="7622-abbe-a6f9-0bc6" primary="false"/>
<categoryLink id="505b-7b18-c5ec-45d2" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="b8d2-8517-773a-8d51" name="Leader Options" hidden="false" collective="false" import="true" targetId="cb05-fb8b-8fa4-fca2" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="170"/>
</costs>
</selectionEntry>
<selectionEntry id="8cdf-ed13-be6d-7b3d" name="Sepsimus Plaguesworn" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f185-d4ef-4760-a7e3" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="06a5-fbec-35a6-5095" name="Sepsimus Plaguesworn" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">26</characteristic>
</characteristics>
</profile>
<profile id="9ef1-05ab-6108-fcda" name="Blighted Weapon" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">1/5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2ff2-eec1-acc0-0938" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9d65-ec37-346d-c6fa" name="Bladeborn Fighters" hidden="false" targetId="82fd-8251-2413-feb8" primary="false"/>
<categoryLink id="864b-f356-720c-cd1b" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="true"/>
<categoryLink id="398a-38f2-0561-fff2" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="004b-0b1f-6d7d-5ce6" name="Wurmspat" hidden="false" targetId="c166-74fb-0124-4e62" primary="false"/>
<categoryLink id="a3cb-7500-8f22-2731" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="89db-6a97-cba0-cfa0" name="Fighter Options" hidden="false" collective="false" import="true" targetId="48e0-6cce-1680-dc73" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="110"/>
</costs>
</selectionEntry>
<selectionEntry id="098d-3333-5559-a27e" name="Ghulgoch the Butcher" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f185-d4ef-4760-a7e3" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="d5e8-9abe-e743-ef7e" name="Ghulgoch the Butcher" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">26</characteristic>
</characteristics>
</profile>
<profile id="cc99-5eee-cf51-531c" name="Blighted Weapon" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">4</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fe33-de46-0ab7-ecff" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c7aa-bd64-eddb-b98d" name="Bladeborn Fighters" hidden="false" targetId="82fd-8251-2413-feb8" primary="false"/>
<categoryLink id="be2a-f9d6-e1dd-2ce9" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="true"/>
<categoryLink id="675d-fd27-0080-c6f7" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="07ef-2c88-5670-aaaf" name="Wurmspat" hidden="false" targetId="c166-74fb-0124-4e62" primary="false"/>
<categoryLink id="12cf-964b-237b-9ac6" name=" Beast" hidden="false" targetId="a333-9146-42e8-421a" primary="false"/>
<categoryLink id="4a0f-dd11-1693-9abd" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="643e-f2b0-d2ec-506a" name="Fighter Options" hidden="false" collective="false" import="true" targetId="48e0-6cce-1680-dc73" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="100"/>
</costs>
</selectionEntry>
<selectionEntry id="8fa4-ccd7-86aa-1f8f" name="-Fighters" hidden="true" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cbf3-0b29-4875-7900" name="Pusgoyle Blightlord" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c7b5-e9e1-6229-8355" name="Pusgoyle Blightlord" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">6</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">38</characteristic>
</characteristics>
</profile>
<profile id="abd8-37f2-2f16-982c" name="Pusgoyle Blighted Weapon" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">4</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">5</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5dab-85db-19d0-3e49" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8fdd-4883-084e-9084" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="true"/>
<categoryLink id="9743-fba1-4ae1-3b76" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="27eb-ea98-e945-d7cf" name=" Destroyer" hidden="false" targetId="4a55-52e5-0611-9983" primary="false"/>
<categoryLink id="fec4-5d7a-5e89-1b20" name=" Fly" hidden="false" targetId="6840-bddb-4164-6ebe" primary="false"/>
<categoryLink id="cf8e-60d0-ec38-ebe8" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="bf22-5c6e-a98e-c450" name="Fighter Options" hidden="false" collective="false" import="true" targetId="48e0-6cce-1680-dc73" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="260"/>
</costs>
</selectionEntry>
<selectionEntry id="175c-6aab-d41c-a27f" name="Putrid Blightking" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="append" field="name" value="with Filth-encrusted Shield">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db7d-d654-4d0c-c3bb" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="with Sonorous Tocsin">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bd7f-bee2-a1c6-230c" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="with Blighted Weapon">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="17df-174f-b3fd-4bce" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="Icon Bearer">
<conditions>
<condition field="selections" scope="self" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07a7-9a3d-cd97-abd5" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cde5-63b6-b0b9-1686" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="true"/>
<categoryLink id="357c-adad-ff40-d73a" name="Nurgle Rotbringers" hidden="false" targetId="81f3-2a02-d61e-d89c" primary="false"/>
<categoryLink id="397f-b2c8-bd3d-5636" name=" Chaos" hidden="false" targetId="a069-63a6-a6b4-742b" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d517-e2b9-8c98-1135" name="Profile" hidden="false" collective="false" import="true" defaultSelectionEntryId="db7d-d654-4d0c-c3bb">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c3ec-d62f-5267-9a43" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5cd7-dff1-6325-6958" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="db7d-d654-4d0c-c3bb" name="with Filth-encrusted Shield" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="2263-4cb6-062d-29e4" name="Filth-encrusted Shield" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">2</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/4</characteristic>
</characteristics>
</profile>
<profile id="18ad-06dc-cc8b-77f6" name="Putrid Blightking" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">5</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">25</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="99f6-17cd-4a36-8174" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="110"/>
</costs>
</selectionEntry>
<selectionEntry id="07a7-9a3d-cd97-abd5" name="Icon Bearer" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="eabb-20e5-4540-5253" name="Icon Bearer Blighted Weapon" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/4</characteristic>
</characteristics>
</profile>
<profile id="545e-f2c0-a3a3-94f5" name="Putrid Blightking" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">25</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="742c-725d-4547-4769" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="29bc-042f-4ab3-1087" name=" Icon Bearer" hidden="false" targetId="2bf9-3f3e-ea63-1f26" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="115"/>
</costs>
</selectionEntry>
<selectionEntry id="bd7f-bee2-a1c6-230c" name="with Sonorous Tocsin" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="d021-c5b6-bf77-e1b5" name="Sonorous Tocsin" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">2</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">4</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">1/4</characteristic>
</characteristics>
</profile>
<profile id="68f7-80b3-0685-f6c0" name="Putrid Blightking" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">25</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a8a3-dcf0-38a8-06fa" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6629-409f-7979-f556" name=" Champion" hidden="false" targetId="3c8f-bdce-f950-c13e" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="120"/>
</costs>
</selectionEntry>
<selectionEntry id="17df-174f-b3fd-4bce" name="with Blighted Weapon" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="820d-9f65-fcb1-d476" value="0">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a02-64ba-a525-e21d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="27a5-7b17-288d-9b02" name="Blighted Weapon" hidden="false" typeId="d83c-f0e3-af8e-b6b0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="e85b-c9e0-0d39-7786">1</characteristic>
<characteristic name="Attacks" typeId="60cf-9920-ff5d-032d">3</characteristic>
<characteristic name="Strength" typeId="4591-7140-62c7-f2f1">4</characteristic>
<characteristic name="Damage" typeId="446b-a910-1596-123b">2/4</characteristic>
</characteristics>
</profile>
<profile id="d037-fb56-8835-aa80" name="Putrid Blightking" hidden="false" typeId="7bf1-ad0a-0d19-6565" typeName="Model">
<characteristics>
<characteristic name="Move" typeId="c652-026b-c19b-fb1a">3</characteristic>
<characteristic name="Toughness" typeId="68cf-bb2c-bce1-e83e">4</characteristic>
<characteristic name="Wounds" typeId="585d-de0f-f39b-3633">25</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1187-51d7-ff89-f94f" name="Special Abilities" hidden="false" targetId="9668-02fe-70f0-a0c9" type="infoGroup"/>
</infoLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="110"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="30cc-b74a-9514-0833" name="Fighter Options" hidden="false" collective="false" import="true" targetId="48e0-6cce-1680-dc73" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="820d-9f65-fcb1-d476" value="0"/>
</costs>
</selectionEntry>
</sharedSelectionEntries>
<sharedInfoGroups>
<infoGroup id="9668-02fe-70f0-a0c9" name="Special Abilities" hidden="false">
<infoLinks>
<infoLink id="fcf6-c86f-247b-7dd9" name="Nurgle Rotbringers Abilities" hidden="false" targetId="3609-311a-b8bc-967b" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="3609-311a-b8bc-967b" name="Nurgle Rotbringers Abilities" hidden="false">
<rules>
<rule id="b86d-900a-f7bd-89fb" name="⚁ [Double] Draw Upon the Retchling's Power" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c166-74fb-0124-4e62" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e5fd-f9f1-938d-dc5b" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>A fighter can only use this ability once per battle. This fighter makes a bonus attack action that has the Blast runemark.</description>
</rule>
<rule id="b753-fe53-e4d5-54fc" name="⚂ [Triple] Stream of Corruption" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e5fd-f9f1-938d-dc5b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7622-abbe-a6f9-0bc6" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Pick a visible enemy fighter within 7" of this fighter and roll 3 dice. For each roll of 5+, allocate 1 damage point to that fighter and, until the end of the battle round, subtract 1 from that fighter’s Toughness characteristic (to a minimum of 1).</description>
</rule>
<rule id="f70b-a29f-d44a-10d8" name="⚁ [Double] Thrice-ripened Death's Head" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0f0b-3883-05ea-e379" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e5fd-f9f1-938d-dc5b" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Pick a visible enemy fighter within 7" of this fighter and roll 2 dice. For each roll of 4-5, allocate 1 damage point to that fighter. For each roll of 6, allocate a number of damage points to that fighter equal to the value of this ability.</description>
</rule>
<rule id="50fb-8112-e8ce-334c" name="⚁ [Double] Toll of the Sonorous Tocsin" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c8f-bdce-f950-c13e" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Until the end of the battle round, add 1 to the Move characteristic of friendly fighters while they make a move action that starts within 7" of this fighter.</description>
</rule>
<rule id="f002-f44e-2b20-f3f2" name="⚁ [Double] Venomous Sting" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4a55-52e5-0611-9983" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Pick a visible enemy fighter within 1" of this fighter and roll a dice. On a roll of 2+, until the end of this battle round, that fighter cannot make move actions or disengage actions.</description>
</rule>
<rule id="c4f5-e92b-aded-4ed3" name="⚁ [Double] Virulent Discharge" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<description>Pick a visible enemy fighter within 1" of this fighter and roll a number of dice equal to the value of this ability. For each roll of 4+, allocate 1 damage point to that fighter.</description>
</rule>
<rule id="c145-75ed-cf18-d99c" name="⚂ [Triple] Blighted Icon" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2bf9-3f3e-ea63-1f26" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Until the end of the battle round, add 1 to the Toughness characteristic of visible friendly fighters while they are within 7" of this fighter.</description>
</rule>
<rule id="0b38-4389-99a0-4d90" name="⚂ [Triple] Grandfather's Blessing" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e5fd-f9f1-938d-dc5b" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Until the end of the battle round, add 1 to the Strength characteristic of melee attack actions made by visible friendly fighters while they are within 7" of this fighter.</description>
</rule>
<rule id="91a5-93f4-664b-2e01" name="⚂ [Triple] Rotsword Stab" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e5fd-f9f1-938d-dc5b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a13-b45c-d217-fc43" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>This fighter can make a bonus melee attack action. If that bonus attack action scores any critical hits, roll a dice. On a roll of 4+, until the end of the battle, subtract 1 from the Move characteristic (to a minimum of 1) of the target fighter.</description>
</rule>
<rule id="f7b9-b140-30ec-d4ed" name="⚂ [Triple] Unnatural Regeneration" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<description>A fighter can only use this ability if there are no enemy fighters within 1" of this fighter. Remove a number of damage points allocated to this fighter up to double the value of this ability.</description>
</rule>
<rule id="d0b6-6b08-61ec-1184" name="[Reaction] Impossible to Wound" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="ancestor" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f3-2a02-d61e-d89c" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<description>A fighter can make this reaction when they are targeted by a melee attack action but before the hit rolls are made. Subtract 1 from the damage points allocated to this fighter by each hit from that attack action (to a minimum of 1).</description>
</rule>
</rules>
</infoGroup>
</sharedInfoGroups>
<catalogueLinks>
<catalogueLink id="006e-984d-c5e8-5ed6" name="Chaos - Chaotic Beasts" targetId="6f6f-a348-e87b-3017" type="catalogue" importRootEntries="true"/>
</catalogueLinks>
</catalogue>