forked from BSData/wh40k-10e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Death Guard.cat
6461 lines (6459 loc) · 465 KB
/
Chaos - Death Guard.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="5108-f98-63c2-53cb" name="Chaos - Death Guard" revision="26" battleScribeVersion="2.03" library="false" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue">
<catalogueLinks>
<catalogueLink id="9fec-b3ad-9626-6706" name="Chaos - Chaos Knights" targetId="8106-aad2-918a-9ac" type="catalogue" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Chaos - Daemons Library" id="4e2e-3067-84f6-f727" targetId="b45c-af22-788a-dfd6" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Astartes Heresy Legends" id="ff65-1828-b2a0-477" targetId="ac3b-689c-4ad4-70cb" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Library - Titans" id="95ad-ce51-ebd4-583d" targetId="7481-280e-b55e-7867" importRootEntries="true"/>
</catalogueLinks>
<entryLinks>
<entryLink import="true" name="Detachment Choice" hidden="false" type="selectionEntry" id="60ed-ab58-d20f-75e7" targetId="57f2-e2d6-47ed-ddd2"/>
<entryLink import="true" name="Death Guard Daemon Prince" hidden="false" type="selectionEntry" id="8ea0-48a3-68f8-ee6a" targetId="4cb3-e6b6-4e82-23bf"/>
<entryLink import="true" name="Death Guard Daemon Prince with wings" hidden="false" type="selectionEntry" id="45d5-2e84-1f02-4fd4" targetId="f4d7-244d-16c4-f2f3"/>
<entryLink import="true" name="Typhus" hidden="false" type="selectionEntry" id="17ec-2b07-8c4c-cf1" targetId="e6a4-7055-fd23-5123"/>
<entryLink import="true" name="Death Guard Chaos Lord" hidden="false" type="selectionEntry" id="8d8b-5cae-1e6a-1ddb" targetId="cfc1-1741-530c-3335"/>
<entryLink import="true" name="Death Guard Chaos Lord in Terminator Armour" hidden="false" type="selectionEntry" id="1524-f7fd-4838-ffd7" targetId="bacc-4f1-649-a051"/>
<entryLink import="true" name="Lord of Virulence" hidden="false" type="selectionEntry" id="af3-b43-7cc8-c165" targetId="c15c-2b5a-dcab-7627"/>
<entryLink import="true" name="Lord of Contagion" hidden="false" type="selectionEntry" id="10a1-5896-98da-8c7c" targetId="8700-3d3-efbb-ef8d"/>
<entryLink import="true" name="Death Guard Sorcerer in Terminator Armour" hidden="false" type="selectionEntry" id="9414-da22-4118-5ac3" targetId="93ac-1b31-4238-d60e"/>
<entryLink import="true" name="Malignant Plaguecaster" hidden="false" type="selectionEntry" id="83ad-afe0-9ee9-d7e5" targetId="9900-77d7-10e3-5c91"/>
<entryLink import="true" name="Plague Marines" hidden="false" type="selectionEntry" id="7ff5-9b50-8c58-b32e" targetId="8467-b3a2-2597-de0d"/>
<entryLink import="true" name="Death Guard Cultists" hidden="false" type="selectionEntry" id="7669-5b4f-29dc-73f5" targetId="d579-88cd-c634-f800"/>
<entryLink import="true" name="Poxwalkers" hidden="false" type="selectionEntry" id="87a0-216e-215b-d3c8" targetId="7c30-1e92-2faa-eb03"/>
<entryLink import="true" name="Noxious Blightbringer" hidden="false" type="selectionEntry" id="3bac-3a12-8a6e-eaa5" targetId="1ffc-27de-8aea-e7bb"/>
<entryLink import="true" name="Foul Blightspawn" hidden="false" type="selectionEntry" id="b47b-dec2-17a8-fc18" targetId="c88f-d4dc-84b3-1b31"/>
<entryLink import="true" name="Biologus Putrifier" hidden="false" type="selectionEntry" id="ad06-9aca-1787-d1c9" targetId="690b-a189-5935-f32e"/>
<entryLink import="true" name="Tallyman" hidden="false" type="selectionEntry" id="b0be-a5af-5462-fb7" targetId="506c-16a8-68f7-c08a"/>
<entryLink import="true" name="Plague Surgeon" hidden="false" type="selectionEntry" id="50f3-35a7-322d-94cd" targetId="9a82-ea13-3511-6c08"/>
<entryLink import="true" name="Deathshroud Terminators" hidden="false" type="selectionEntry" id="76ab-697e-17ea-5edf" targetId="83e8-ebb7-785a-2115"/>
<entryLink import="true" name="Deathguard Helbrute" hidden="false" type="selectionEntry" id="56ad-b86c-3c6a-ff59" targetId="2a2b-643e-860e-b524"/>
<entryLink import="true" name="Blightlord Terminators" hidden="false" type="selectionEntry" id="c5ce-7c31-b5a6-1bd" targetId="5b4e-dcf1-5c6f-4d35"/>
<entryLink import="true" name="Death Guard Chaos Spawn" hidden="false" type="selectionEntry" id="3ec7-cb34-a128-da74" targetId="1d85-475f-5ab-9823"/>
<entryLink import="true" name="Myphitic Blight-haulers" hidden="false" type="selectionEntry" id="d49b-c44e-3421-4d3f" targetId="35b2-7490-1a7b-cd99"/>
<entryLink import="true" name="Foetid Bloat-drone" hidden="false" type="selectionEntry" id="c935-4db0-a2f-1bd8" targetId="26d5-ec73-3517-f3f"/>
<entryLink import="true" name="Plagueburst Crawler" hidden="false" type="selectionEntry" id="6ccf-b8b-fa83-8476" targetId="e58b-507a-937f-7abf"/>
<entryLink import="true" name="Death Guard Land Raider" hidden="false" type="selectionEntry" id="6d9b-82d6-be21-f3b3" targetId="89d-b0c0-6e19-f017"/>
<entryLink import="true" name="Death Guard Predator Annihilator" hidden="false" type="selectionEntry" id="6175-44bb-ff39-6469" targetId="9b58-210d-c12f-4d46"/>
<entryLink import="true" name="Death Guard Predator Destructor" hidden="false" type="selectionEntry" id="a11c-fd5a-5d19-d5ae" targetId="ab4e-466d-e9e8-89d5"/>
<entryLink import="true" name="Death Guard Defiler" hidden="false" type="selectionEntry" id="cf37-5524-8172-85c8" targetId="fa0-69c3-b68f-cea7"/>
<entryLink import="true" name="Death Guard Rhino" hidden="false" type="selectionEntry" id="a0fc-8a48-f51e-f81b" targetId="b899-92e2-693a-975f"/>
<entryLink import="true" name="Mortarion" hidden="false" type="selectionEntry" id="4109-85ad-cf45-d294" targetId="f5ac-4f37-fe7b-36b6"/>
<entryLink import="true" name="Death Guard Icon Bearer" hidden="false" type="selectionEntry" id="9d60-2b6f-4b65-7d62" targetId="3e5b-23db-4ccd-ea97"/>
<entryLink import="true" name="Miasmic Malignifier" hidden="false" type="selectionEntry" id="153c-aeaf-664f-2c67" targetId="55c7-e5b8-9737-f58e"/>
<entryLink import="true" name="Kratos" hidden="false" type="selectionEntry" id="cd07-156e-de4e-d99d" targetId="78aa-3f99-5fb7-7f83">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="d41c-cba2-f803-2aca" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="ff2d-7111-9879-f7f0" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="6473-6be5-289a-edd8" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="7942-c6fb-285e-5e63" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="ada8-edbf-d0a7-3699" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Cerberus" hidden="false" type="selectionEntry" id="d55a-594a-2f89-f511" targetId="4044-b458-fb4d-d05b">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="b52d-61d5-ca4c-7b41" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="3960-24c2-1ef4-a9e4" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="5267-1db4-c063-a8a2" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="7986-af94-bf2e-8c95" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="be66-3a26-ca34-339a" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Relic Contemptor Dreadnought" hidden="false" type="selectionEntry" id="c3b2-b8eb-da6b-b5ce" targetId="783a-1c02-b377-b169">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="e088-c4c7-3958-5257" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="627d-38f7-669-fc9e" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="9401-cded-5bf6-9de5" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="1e61-2042-e6f0-9a5e" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="5b5b-f4eb-9bf0-aa75" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Deredeo Dreadnought" hidden="false" type="selectionEntry" id="874-93d4-cf01-d8c2" targetId="d38d-c3a2-f753-efea">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="7bd0-587f-3c59-a6fc" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="c8ff-10f8-d902-aa7e" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="4f-cf4d-147a-eec1" primary="false" name="Nurgle"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Leviathan Dreadnought" hidden="false" type="selectionEntry" id="a04e-a182-f224-cc6d" targetId="14d4-8062-f090-6719">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="3050-c51d-2b19-c210" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="11b0-3f70-d158-de7a" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="f13a-bef0-6835-530" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="63e4-9748-4611-303c" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="582d-4992-6c73-f0c1" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Land Raider Proteus" hidden="false" type="selectionEntry" id="2a8d-61a2-7b7b-9da8" targetId="34c8-1025-33f7-baaf">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="5887-c65e-88f5-ea98" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="ad1c-ff13-16a0-b1c9" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="3099-2ef8-2ba8-a57d" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="f1b6-196d-38d6-65c9" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="b589-6090-c071-c8d1" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Land Raider Achilles" hidden="false" type="selectionEntry" id="3fa3-123a-8f1a-52b9" targetId="3006-ffe-2b0c-6b1b">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="b148-791c-7978-24df" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="c5c9-7f88-7110-5ace" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="3cf-9dda-bf92-ac57" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="ace9-ccd8-5c66-2ba2" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="1304-ab8b-6c4f-c656" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sicaran Battle Tank" hidden="false" type="selectionEntry" id="325b-b542-b53f-2298" targetId="b2f1-197b-fb3b-687f">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="f7fa-ab6-394c-1eeb" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b97a-7d12-a51a-c46f" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="78a8-6bd-2f87-7f29" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="e5bb-ffe9-c930-bf7" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="215-ed87-a20f-1bdc" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sicaran Punisher" hidden="false" type="selectionEntry" id="b529-f3bd-bd79-e40a" targetId="68aa-28bf-bd73-3355">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="fe92-b710-8e63-28b" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="905-4ca4-a98f-eee2" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="9a1b-cb47-9ac6-4622" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="579a-bbe4-dbe-7504" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="f48d-f6a1-9705-a8fc" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sicaran Venator" hidden="false" type="selectionEntry" id="5bf9-5a2d-cfa5-f117" targetId="e63e-2aa6-f840-b54e">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="9b4b-c611-290-a1f2" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="f6fd-9f4e-8894-5af0" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="6b6f-9b74-d5e5-3d0c" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="c7cd-d85d-d745-8e27" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="aa3e-a4d8-c5f3-307f" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Rapier Carrier" hidden="false" type="selectionEntry" id="bb72-b9ec-9abf-a651" targetId="2aee-e03c-836e-4c6e">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="6c1b-9bd7-1895-ea71" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="8839-7d9a-c411-843f" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="11fa-d9e7-8cb5-e3d8" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="78ac-e5e2-31ed-4324" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="af14-54b9-8f93-e52d" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Whirlwind Scorpius" hidden="false" type="selectionEntry" id="a59-50b-2a6b-98ee" targetId="97dc-f0c8-1354-88fb">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="c2f6-d317-1605-63f" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="1fa1-48ba-968f-c020" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="6796-322f-9003-6fa2" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="1349-816e-c457-6467" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="cf45-6210-ce72-6eb4" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Terrax-pattern Termite" hidden="false" type="selectionEntry" id="112-17a-6fa1-d1c3" targetId="3d36-e9d7-54c5-deb7">
<categoryLinks>
<categoryLink targetId="4c00-2578-faf5-6918" id="54d8-520b-5640-e0c5" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="3ef5-b954-d53a-fb38" primary="false" name="Nurgle"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Xiphon Interceptor" hidden="false" type="selectionEntry" id="2d20-4f52-c14d-a532" targetId="1aa5-d081-2442-4c37">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="7500-f101-e482-c5a2" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b844-2caf-f947-7fc2" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="ad89-db0c-61be-8ba7" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="751-163a-57fe-6a00" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="d519-bdcf-282f-349f" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Storm Eagle Gunship" hidden="false" type="selectionEntry" id="d5ad-77b7-25ef-2a85" targetId="3b7d-b14e-603-e1ad">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="7eeb-997a-e807-1680" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="fa84-811c-3e14-72dc" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="7442-87c4-485d-cd9a" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="b2d5-856b-5835-da43" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="cd48-6494-e1f9-6be2" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Fire Raptor Gunship" hidden="false" type="selectionEntry" id="5a24-5d3b-949f-984c" targetId="1fc7-7880-e4d4-acbf">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="ff8b-93ef-b1d8-7e79" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="5c7e-158e-12d2-9cdf" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="e4f6-53c8-79b-53" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="e102-8905-1c7-72b6" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="82c-4ebb-489a-514" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Typhon" hidden="false" type="selectionEntry" id="1317-b13f-7d9e-578a" targetId="f60c-1b93-9ee8-59d2">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="486d-ff95-c12c-f994" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="7a69-a74e-4f90-5419" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="4262-e17c-9d75-4aaa" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="90c-2660-d309-b37b" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="d1bd-747d-e332-295d" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Spartan" hidden="false" type="selectionEntry" id="3b6e-1591-a9ca-f737" targetId="7b3a-9a63-6200-ec7">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="de80-4905-2582-2bba" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="5da9-746f-cea1-6ba2" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="35b4-80bc-1df7-cb99" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="4b54-d841-809e-1b4e" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="2fc6-b59b-b9df-66ac" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Fellblade" hidden="false" type="selectionEntry" id="c8a4-91de-cd54-31cd" targetId="585d-722b-4304-2f63">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="41fc-b51c-c612-7d5" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="1ce0-776d-fc2e-8a2a" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="2b6-c583-cd26-749" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="d569-68c7-ef5c-384c" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="e5b1-dcda-c101-5246" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Falchion" hidden="false" type="selectionEntry" id="5c4-93b0-7d7d-6681" targetId="625b-29e4-7be7-db5a">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="ccf3-4c22-21fe-2a34" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="d0ad-b90-efb0-9e07" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="71bb-f680-ccd5-8486" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="271d-b798-1b15-9b74" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="3a11-189e-7a8-4e39" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Mastodon" hidden="false" type="selectionEntry" id="3641-6309-27f0-6e1b" targetId="e337-7f05-f1b3-d64e">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="e76b-807-d033-cafc" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="32ab-77b1-afae-925b" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="c7d9-e8e6-680a-2496" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="1c84-8696-be17-6292" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="e95d-a0ac-e1c1-6b3e" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sokar-pattern Stormbird" hidden="false" type="selectionEntry" id="c454-7590-c271-5827" targetId="a80f-8343-85f3-716a">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="1da7-f6eb-9ece-3ee0" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="37ef-8bc9-76c5-c359" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="f6b3-431b-1c65-b479" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="1dd1-22c7-b477-d7a2" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="2d6a-86d-fc6e-e933" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Greater Blight Drone" hidden="false" type="selectionEntry" id="b5f6-f34-9fa-eeba" targetId="412c-3499-8275-2637">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="55e0-ae17-2b5-6fcf" primary="false" name="Faction: Death Guard"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="e67d-2337-26c1-553c" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="d3be-b67f-caa3-8a16" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Chaos Thunderhawk" hidden="false" type="selectionEntry" id="4034-1ba6-4214-7211" targetId="6844-986c-b0ea-6dd5">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="ab56-5410-dbf2-b57" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="13d2-5fdb-a88c-8487" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="81a2-14ef-e079-a2c8" primary="false" name="Nurgle"/>
</categoryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="3f92-78c8-ed08-5c36" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="d6cb-3f6-7ee3-482c" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Chaos Lord on Palanquin of Nurgle [Legends]" hidden="false" type="selectionEntry" id="63a6-8395-a213-e948" targetId="1d25-87a1-2d17-5d02"/>
<entryLink import="true" name="Gellerpox Infected" hidden="false" type="selectionEntry" id="378a-7609-1281-280e" targetId="6d29-1c06-c787-64e0"/>
<entryLink import="true" name="Hellblade" hidden="false" type="selectionEntry" id="584-40de-76ef-b9c7" targetId="3e86-ef61-9b87-3658"/>
<entryLink import="true" name="Hell Talon" hidden="false" type="selectionEntry" id="2a66-a8a1-e783-8e59" targetId="8cba-21cc-a3b3-91ed"/>
<entryLink import="true" name="Mutoid Vermin" hidden="false" type="selectionEntry" id="cbe6-7a9c-1bd9-d9c" targetId="2dfd-cddb-9fef-494b"/>
<entryLink import="true" name="Sorcerer on Palanquin of Nurgle [Legends]" hidden="false" type="selectionEntry" id="7e97-7f05-236f-44c2" targetId="474-6b31-df19-2b49"/>
<entryLink import="true" name="Death Guard Possessed [Legends]" hidden="false" type="selectionEntry" id="85f5-bfd1-2923-c3bf" targetId="efa6-3620-2b6c-ce70"/>
<entryLink import="true" name="Show/Hide Options" hidden="false" type="selectionEntry" id="6086-9ba7-e934-39eb" targetId="e8ef-836a-a9d1-901d">
<entryLinks>
<entryLink import="true" name="Show Chaos Knights" hidden="false" type="selectionEntry" id="554c-41fb-92b2-6c21" targetId="aeb4-96de-7401-eaa3"/>
<entryLink import="true" name="Show Nurgle Daemons" hidden="false" type="selectionEntry" id="3838-64a-1952-1ed4" targetId="f486-5e38-994c-15ec"/>
</entryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Detachment Choice" hidden="false" id="57f2-e2d6-47ed-ddd2">
<selectionEntryGroups>
<selectionEntryGroup name="Detachment" hidden="false" id="72c8-a740-51e3-1a83" defaultSelectionEntryId="c7ba-3925-2fed-4539">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="707a-2d03-d797-f4d6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="406b-754e-2e87-d074"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Plague Company" hidden="false" id="c7ba-3925-2fed-4539"/>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="true" id="d0fc-2407-4d9a-4b8d"/>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="7ccf-458d-4a6b-8f86"/>
</constraints>
<categoryLinks>
<categoryLink targetId="4ac9-fd30-1e3d-b249" id="9c8e-ea83-8bdc-6958" primary="true" name="Configuration"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death Guard Daemon Prince" hidden="false" id="4cb3-e6b6-4e82-23bf" publicationId="6bb4-8611-986f-58fa" page="7-8">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="160"/>
</costs>
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="641f-30a2-474-c3fc" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="9693-cf84-fe69-37a9" id="1f85-60ba-48d4-a655" primary="false" name="Monster"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="c335-ea6-89c8-d1fb" primary="true" name="Character"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="848-d2b0-c9d0-ba2" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="69bd-3e67-e8-4ec7" primary="false" name="Nurgle"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="fe90-c460-1c9e-6ce4" primary="false" name="Psyker"/>
<categoryLink targetId="9c0e-7e25-4580-e439" id="37bc-30d8-2231-2a87" primary="false" name="Daemon"/>
<categoryLink targetId="4f09-0141-6c70-6c5a" id="503d-86d-c49-6d92" primary="false" name="Daemon Prince"/>
</categoryLinks>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="6414-ab21-60a3-1209" includeChildSelections="true"/>
</constraints>
<infoLinks>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="e9c3-700c-6cb4-6859" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="8a8-9010-3dbb-9c5b" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="ae3b-e0e1-1845-f8dc" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
<profiles>
<profile name="Grandfather's Blessing (Aura, Psychic)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="a62-2152-78a8-d7c8">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly DEATH GUARD INFANTRY unit is within Contagion Range of this model, models in that unit have the Feel No Pain 6+ ability.</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6e8c-70d5-2b8f-2b2c">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Death Guard Daemon Prince" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="5a12-5af0-2569-d704">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">7"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">11</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Enhancements" hidden="false" type="selectionEntryGroup" id="9233-6098-aa0d-6b8b" targetId="c93c-acdd-5ab4-afb8"/>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="d44d-9f5a-bd16-489b" targetId="b526-972f-7394-632a"/>
<entryLink import="true" name="Hellforged weapons" hidden="false" type="selectionEntry" id="fdf9-6384-4fa0-ca18" targetId="9530-7fc3-630c-f162"/>
<entryLink import="true" name="Plague spewer" hidden="false" type="selectionEntry" id="9d29-8a5a-6e67-dde8" targetId="11ee-cdcb-eee3-4db9"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warlord" hidden="false" id="b526-972f-7394-632a">
<categoryLinks>
<categoryLink targetId="5c0e-4c31-d51b-e470" id="d282-bde8-8475-d687" primary="false" name="Warlord"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d340-840f-c460-dbbb"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death Guard Daemon Prince with wings" hidden="false" id="f4d7-244d-16c4-f2f3" publicationId="6bb4-8611-986f-58fa" page="9-10">
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="5454-3335-a428-cedc" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="9693-cf84-fe69-37a9" id="40fe-718c-2d8e-cccf" primary="false" name="Monster"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="a3ab-a68c-53f7-9b89" primary="true" name="Character"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b88-5315-4c31-952" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="fc68-b152-b6d5-eb22" primary="false" name="Nurgle"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="74ce-4ac3-aeec-83f8" primary="false" name="Psyker"/>
<categoryLink targetId="9c0e-7e25-4580-e439" id="92fa-6493-115-b3a" primary="false" name="Daemon"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="aeb0-996b-7cef-1f88" primary="false" name="Fly"/>
<categoryLink targetId="5b9e-935a-4ad6-5524" id="545f-3b86-6ccf-b5f6" primary="false" name="Daemon Prince with Wings"/>
</categoryLinks>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="6414-ab21-60a3-1209" includeChildSelections="true"/>
</constraints>
<infoLinks>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="bf37-327d-2b05-2680" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="314-90e6-366c-bf66" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="8510-fa75-b25c-4948" targetId="d2e3-6a22-845c-9340"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="b4fb-946c-664e-4e39" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Deep Strike" hidden="false" type="rule" id="96e0-a037-7586-63c9" targetId="7cb5-dd6b-dd87-ad3b"/>
</infoLinks>
<profiles>
<profile name="Warp Horror (Psychic)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="8ce2-6dec-6caf-3777">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model ends a Charge move, select one enemy unit within Engagement Range of it. That unit must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d376-c886-6c02-923f">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Death Guard Daemon Prince with wings" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="a998-e586-80ca-2fea">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">11"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">10</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile name="Devastating Assault" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e98-fdf-85f6-5c44">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model ends a Charge move, until the end of the turn, its hellforged weapons have the [DEVASTATING WOUNDS] ability.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Enhancements" hidden="false" type="selectionEntryGroup" id="203e-ea60-85d7-2206" targetId="c93c-acdd-5ab4-afb8"/>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="ebac-7456-a1aa-c84b" targetId="b526-972f-7394-632a"/>
<entryLink import="true" name="Hellforged weapons" hidden="false" type="selectionEntry" id="4eee-92f0-88a0-292e" targetId="9530-7fc3-630c-f162"/>
<entryLink import="true" name="Plague spewer" hidden="false" type="selectionEntry" id="6e7d-c3cc-7ac4-d0f6" targetId="11ee-cdcb-eee3-4db9"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="195"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Typhus" hidden="false" id="e6a4-7055-fd23-5123" publicationId="6bb4-8611-986f-58fa" page="11-12">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="80"/>
</costs>
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="3a56-dc0d-b5c4-7b33" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="a851-4082-f5d1-ab1a" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="59d4-7c8a-f427-37d1" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="1595-1c05-309d-2660" primary="true" name="Epic Hero"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="c3c3-d2-4ce5-e34c" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="c2c3-e20f-9cde-3b0d" primary="false" name="Nurgle"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="e592-2b74-9970-4f79" primary="false" name="Psyker"/>
<categoryLink targetId="3113-5b62-29ef-b798" id="fd31-d232-ebc0-fd36" primary="false" name="Terminator"/>
<categoryLink targetId="ce7a-c25-fcfc-8033" id="f057-2457-df0d-57e9" primary="false" name="Typhus"/>
</categoryLinks>
<profiles>
<profile name="Typhus" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="cc77-474f-9d63-9535">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">6</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="77d-6b50-56be-1c71">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ BLIGHTLORD TERMINATORS
■ DEATHSHROUD TERMINATORS
■ POXWALKERS</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2e89-e2c6-f499-e2b">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="The Destroyer Hive" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e1de-40a6-c9a9-7316">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a melee attack targets that unit, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="The Eater Plague" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="595f-4a7d-3845-2131">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Shooting phase, you can select one enemy unit within 18" of and visible to this PSYKER and roll one D6: on a 1, this PSYKER's unit suffers D3 mortal wounds; on a 2-5, that enemy unit suffers D6 mortal wounds; on a 6, that enemy unit suffers D3+3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="3183-f720-7026-3fe7" targetId="b526-972f-7394-632a"/>
</entryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="a479-83fd-f742-47b4" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Deep Strike" hidden="false" type="rule" id="3fa1-1c61-8d3d-7417" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Leader" hidden="false" type="rule" id="fab3-4597-8608-e9d4" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="7281-91bf-2e48-59d1" targetId="d2e3-6a22-845c-9340"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="6414-ab21-60a3-1209" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Master-crafted manreaper" hidden="false" id="5be0-b07e-bdf5-d4ba">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7e8b-58e2-1b27-1c79"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f72e-900d-6c56-d06f"/>
</constraints>
<profiles>
<profile name="➤ Master-crafted manreaper - strike" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="8576-b61a-fda9-9ec6">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">9</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
<profile name="➤ Master-crafted manreaper - sweep" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="a230-d987-b4fa-381b">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">10</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="3df5-c621-a316-dff6" targetId="d1d1-611e-5191-1095"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hellforged weapons" hidden="false" id="9530-7fc3-630c-f162">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8a8d-71cd-2c84-fcc"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7364-585f-8532-1b25"/>
</constraints>
<profiles>
<profile name="➤ Hellforged weapons - strike" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="e650-65-3ad9-a97e">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
<profile name="➤ Hellforged weapons - sweep" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="412b-2ba9-4ca-3523">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">14</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plague spewer" hidden="false" id="11ee-cdcb-eee3-4db9" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d855-162b-16a6-9bf8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b2ef-3194-40ec-906d"/>
</constraints>
<profiles>
<profile name="Plague spewer" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="d957-3e1d-68b7-f121">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-INFANTRY 2+, Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="118c-8601-3698-cc3c" targetId="4111-82e3-9444-e942"/>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="14f3-ab56-e584-6c9f" targetId="4640-43e7-30b-215a"/>
<infoLink name="Torrent" hidden="false" type="rule" id="5446-2729-213c-a31e" targetId="5edf-d619-23e0-9b56"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death Guard Chaos Lord" hidden="false" id="cfc1-1741-530c-3335" publicationId="6bb4-8611-986f-58fa" page="13-14">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e07c-d154-7b9d-ddfa" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Enhancements" hidden="false" type="selectionEntryGroup" id="66bd-af09-9646-66e0" targetId="c93c-acdd-5ab4-afb8"/>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="5f92-175d-8981-f75d" targetId="b526-972f-7394-632a"/>
</entryLinks>
<infoLinks>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="e38c-e265-681a-78eb" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="c4e0-df85-14a-4736" targetId="d2e3-6a22-845c-9340"/>
<infoLink name="Leader" hidden="false" type="rule" id="4254-1e18-a079-482c" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Chaos Lord" hidden="false" type="profile" id="6638-cc1d-3524-58cc" targetId="2e70-7085-af42-e162"/>
<infoLink name="Dessication Conduit (Aura)" hidden="false" type="profile" id="31d7-a45f-2be9-cfda" targetId="8e2-8f3e-c390-791a"/>
</infoLinks>
<profiles>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f34e-24da-8f79-a9c2">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Death Guard Chaos Lord" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="f7d1-99bc-5fc2-6e5c">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">5</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b29a-947-acbe-1eba">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
■ PLAGUE MARINES</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="9b16-5cfb-bd81-54d6" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="afe3-9c0-8ce8-783f" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="bf34-7410-9be3-65db" primary="true" name="Character"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="4229-caf7-1bf2-4fb6" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="aa8b-6b35-28a6-dba0" primary="false" name="Nurgle"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="f214-4b7c-ddaf-ecf0" primary="false" name="Grenades"/>
<categoryLink targetId="ca73-6068-bfc9-c0dd" id="c6cb-70af-fb37-1d1" primary="false" name="Chaos Lord"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="65"/>
</costs>
<selectionEntryGroups>
<selectionEntryGroup name="Replace pistol" hidden="false" id="307f-17a2-e99c-18f3" defaultSelectionEntryId="fbb1-edb6-c802-71aa">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3e2c-c709-b151-970c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="45c7-d18-9094-585d"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Plague bolt pistol" hidden="false" id="fbb1-edb6-c802-71aa">
<profiles>
<profile name="Plague bolt pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="8877-9ef7-eb6b-2ac0">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Lethal Hits, Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="f0fc-43a0-431a-dde4" targetId="d1d1-611e-5191-1095"/>
<infoLink name="Pistol" hidden="false" type="rule" id="a137-8f39-5b16-b332" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plasma pistol" hidden="false" id="fd11-4028-7bea-569b">
<profiles>
<profile name="➤ Plasma pistol - standard" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="5ae4-2211-556b-525a">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">7</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
<profile name="➤ Plasma pistol - supercharge" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="2b4-c96a-2d9e-7103">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Hazardous, Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="c21e-3b98-d9a1-c4c9" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Hazardous" hidden="false" type="rule" id="124f-b9dc-8920-ec88" targetId="8367-374c-f87-c627"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Combi-weapon" hidden="false" id="c96d-dfc2-a9be-a9f7">
<profiles>
<profile name="Combi-weapon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="5f4d-e552-82f1-cb26">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-INFANTRY 4+, Devastating Wounds, Rapid Fire 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="475c-4c16-5f96-d8b1" targetId="4111-82e3-9444-e942"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="be7c-62bc-1efa-c065" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="b3b1-d621-250c-e2a2" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Plague fist" hidden="false" type="selectionEntry" id="2d3d-6edc-af04-f39b" targetId="1ca4-8321-8700-aeef"/>
<entryLink import="true" name="Plague-encrusted exalted weapon" hidden="false" type="selectionEntry" id="5798-2c14-563f-17df" targetId="a568-af4e-afe5-f9b"/>
<entryLink import="true" name="Twin lightning claws" hidden="false" type="selectionEntry" id="8eba-c534-d739-7ac6" targetId="5ec6-6b37-93b7-a7aa"/>
<entryLink import="true" name="Plague combi-bolter" hidden="false" type="selectionEntry" id="4dd2-e230-a643-2f0b" targetId="9f9b-2c4c-2144-2574"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup name="Replace chainsword" hidden="false" id="d8d5-56f6-c654-c484" defaultSelectionEntryId="1661-456b-2c5-77b4">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="572f-da2b-db68-4ba0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7c50-63be-7456-8bb9"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Astartes chainsword" hidden="false" id="1661-456b-2c5-77b4">
<profiles>
<profile name="Astartes chainsword" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="450d-c7de-a25a-f0ec">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">7</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="0" field="572f-da2b-db68-4ba0">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="cfc1-1741-530c-3335" childId="5ec6-6b37-93b7-a7aa" shared="true" id="27ea-632e-ecc5-7cf7" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set" value="0" field="7c50-63be-7456-8bb9">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="cfc1-1741-530c-3335" childId="5ec6-6b37-93b7-a7aa" shared="true" id="27ea-632e-ecc5-7cf7" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Plague fist" hidden="false" type="selectionEntry" id="fd39-69f5-6b32-a7c7" targetId="1ca4-8321-8700-aeef"/>
<entryLink import="true" name="Plague-encrusted exalted weapon" hidden="false" type="selectionEntry" id="6c1f-f125-2bfb-5289" targetId="a568-af4e-afe5-f9b"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plague fist" hidden="false" id="1ca4-8321-8700-aeef">
<profiles>
<profile name="Plague fist" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="2edd-1e37-6a6-d3d8">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="9123-c774-938d-2c3e" targetId="d1d1-611e-5191-1095"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plague-encrusted exalted weapon" hidden="false" id="a568-af4e-afe5-f9b">
<profiles>
<profile name="Plague-encrusted exalted weapon" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="7cea-c6-7093-3a8b">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="4" field="2337-daa1-6682-b110"/>
<modifier type="set" value="3+" field="95d1-95f-45b4-11d6"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="e37b-6db-a5-23ed" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="677b-c3d7-e1ca-1757" targetId="d1d1-611e-5191-1095"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plague combi-bolter" hidden="false" id="9f9b-2c4c-2144-2574" collective="false">
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="e5a2-4eb4-bc15-b8d4" targetId="d1d1-611e-5191-1095"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="bd57-e0c9-5d30-1f69" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
<profiles>
<profile name="Plague combi-bolter" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="9562-5504-46cc-e504">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Lethal Hits, Rapid Fire 2</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="2+" field="94d-8a98-cf90-183e">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="ca73-6068-bfc9-c0dd" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin lightning claws" hidden="false" id="5ec6-6b37-93b7-a7aa">
<profiles>
<profile name="Twin lightning claws" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="4726-2289-b378-98b1">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">7</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Twin-linked" hidden="false" type="rule" id="c194-153f-2e71-dc8b" targetId="cf93-ad4d-2f08-a79d"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death Guard Chaos Lord in Terminator Armour" hidden="false" id="bacc-4f1-649-a051" publicationId="6bb4-8611-986f-58fa" page="15-16">
<entryLinks>
<entryLink import="true" name="Enhancements" hidden="false" type="selectionEntryGroup" id="f4ea-281a-5bfb-bcc7" targetId="c93c-acdd-5ab4-afb8"/>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="e118-f4d1-80ea-af08" targetId="b526-972f-7394-632a"/>
</entryLinks>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="6af7-15ae-3c69-425b" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Nurgle's Gift" hidden="false" type="rule" id="522b-5186-d5c5-9fd8" targetId="ea42-7d15-fd81-73d6"/>
<infoLink name="Spread the Sickness" hidden="false" type="rule" id="ae8-1883-1021-b4ac" targetId="d2e3-6a22-845c-9340"/>
<infoLink name="Chaos Lord" hidden="false" type="profile" id="4463-b42-e2ae-84db" targetId="2e70-7085-af42-e162"/>
<infoLink name="Dessication Conduit (Aura)" hidden="false" type="profile" id="efb8-29de-953d-45f1" targetId="8e2-8f3e-c390-791a"/>
<infoLink name="Deep Strike" hidden="false" type="rule" id="cb31-1457-e46f-423d" targetId="7cb5-dd6b-dd87-ad3b"/>
</infoLinks>
<profiles>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="fe5a-2fe9-242a-d7fb">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="90a2-1895-2e96-d987">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ BLIGHTLORD TERMINATORS
■ DEATHSHROUD TERMINATORS</characteristic>
</characteristics>
</profile>
<profile name="Death Guard Chaos Lord in Terminator Armour" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="bd9a-6d-9a1-e259">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">6</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Replace combi-bolter" hidden="false" id="e950-495a-5d0-b8c5" defaultSelectionEntryId="897d-e64c-a44-c614">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f89f-e62d-b612-27f3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="53f2-6d1c-300a-d5db"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Plague combi-bolter" hidden="false" type="selectionEntry" id="897d-e64c-a44-c614" targetId="9f9b-2c4c-2144-2574"/>
<entryLink import="true" name="Plague-encrusted exalted weapon" hidden="false" type="selectionEntry" id="5619-5f80-b6fe-4cd7" targetId="a568-af4e-afe5-f9b"/>
</entryLinks>
<modifiers>
<modifier type="set" value="0" field="f89f-e62d-b612-27f3">
<conditions>
<condition type="equalTo" value="1" field="selections" scope="bacc-4f1-649-a051" childId="5ec6-6b37-93b7-a7aa" shared="true" id="5593-996f-6787-6d4a" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set" value="0" field="53f2-6d1c-300a-d5db">
<conditions>
<condition type="equalTo" value="1" field="selections" scope="bacc-4f1-649-a051" childId="5ec6-6b37-93b7-a7aa" shared="true" id="5593-996f-6787-6d4a" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Combi-weapon" hidden="false" id="4711-c32b-445f-377c">
<profiles>
<profile name="Combi-weapon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="36d0-64e7-1536-8ea0">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-INFANTRY 4+, Devastating Wounds, Rapid Fire 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="a7f6-94c1-5946-8855" targetId="4111-82e3-9444-e942"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="763a-a56e-b4c3-8193" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="c601-c1a0-99d-256f" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Replace exalted weapon" hidden="false" id="1df6-a9ed-f1cb-a190" defaultSelectionEntryId="b8d4-d57b-1f26-f03d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a9f0-96f-3457-7465"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2d4c-4f8b-5934-72c9"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Plague-encrusted exalted weapon" hidden="false" type="selectionEntry" id="b8d4-d57b-1f26-f03d" targetId="a568-af4e-afe5-f9b"/>
<entryLink import="true" name="Twin lightning claws" hidden="false" type="selectionEntry" id="28a5-730b-da47-a4e2" targetId="5ec6-6b37-93b7-a7aa"/>
<entryLink import="true" name="Chainfist" hidden="false" type="selectionEntry" id="87ce-205d-9486-54c2" targetId="2afc-fcc3-c636-e4b8"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Plague fist" hidden="false" id="dfdd-16f9-6e87-457f">
<profiles>
<profile name="Plague fist" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="7df-7c10-b76e-7645">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="be0d-dc72-fcaf-1235" targetId="d1d1-611e-5191-1095"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink targetId="9888-ddb2-a141-6037" id="679-b2be-d705-ec3e" primary="false" name="Faction: Death Guard"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="98f7-83f4-9437-4125" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="ecee-410-c379-1744" primary="true" name="Character"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="8859-7e70-5e13-37bd" primary="false" name="Chaos"/>
<categoryLink targetId="ed0d-8e2a-225c-2340" id="5d9f-acc8-d6bb-556b" primary="false" name="Nurgle"/>
<categoryLink targetId="3113-5b62-29ef-b798" id="8c73-a9b1-99b8-c5e0" primary="false" name="Terminator"/>
<categoryLink targetId="ca73-6068-bfc9-c0dd" id="6d2c-1e03-bc7f-ad8b" primary="false" name="Chaos Lord"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>