forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Death Guard.cat
7480 lines (7478 loc) · 601 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 id="ce57-cc1c-37cb-cb71" name="Chaos - Death Guard" revision="76" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="ce57-cc1c-pubN85391" name="Index: Chaos FAQ"/>
<publication id="ce57-cc1c-pubN85402" name="Index: Chaos"/>
<publication id="ce57-cc1c-pubN108736" name="Codex: Heretic Astartes - Death Guard"/>
</publications>
<profileTypes>
<profileType id="df7f-89aa-8f5b-9d81" name="Gift of Contagion table">
<characteristicTypes>
<characteristicType id="cd06-e404-83c7-28c2" name="D3 Roll"/>
<characteristicType id="04da-4341-1718-541a" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="c295-780c-d1dd-e59f" name="Mortarion Damage Table">
<characteristicTypes>
<characteristicType id="f154-9e75-eeb9-0bba" name="Remaining W"/>
<characteristicType id="bfe9-f5a6-b968-1c4b" name="M"/>
<characteristicType id="20e4-d011-ebc8-ea7f" name="A"/>
<characteristicType id="f9ff-d7e7-804c-5747" name="Host of Plagues"/>
</characteristicTypes>
</profileType>
<profileType id="fbcc-57e7-dd64-9b10" name="Plagueburst Crawler Wound Track">
<characteristicTypes>
<characteristicType id="4849-fe1e-e005-6751" name="Remaining W"/>
<characteristicType id="d75f-fb4a-9f3f-8e84" name="M"/>
<characteristicType id="7dd3-2de2-fbc6-2eeb" name="BS"/>
<characteristicType id="4df7-23b6-3503-5294" name="S"/>
</characteristicTypes>
</profileType>
<profileType id="6c48-3f8e-adc6-e417" name="Mutated Beyond Reason">
<characteristicTypes>
<characteristicType id="be9e-2b06-438b-d717" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="848a6ff2-0def-4c72-8433-ff7da70e6bc7" name="HQ" hidden="false"/>
<categoryEntry id="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" name="Elites" hidden="false"/>
<categoryEntry id="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" name="Troops" hidden="false"/>
<categoryEntry id="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" name="Heavy Support" hidden="false"/>
<categoryEntry id="c274d0b0-5866-44bc-9810-91c136ae7438" name="Fast Attack" hidden="false"/>
<categoryEntry id="c888f08a-6cea-4a01-8126-d374a9231554" name="Lord of War" hidden="false"/>
<categoryEntry id="d713cda3-5d0f-40d8-b621-69233263ec2a" name="Fortification" hidden="false"/>
<categoryEntry id="ca10-a5dd-f54f-0ed5" name="Faction: Heretic Astartes" hidden="false"/>
<categoryEntry id="0fb6-fcaf-b180-5dda" name="Faction: Nurgle" hidden="false"/>
<categoryEntry id="8308-6393-0ce1-4bf9" name="Faction: Death Guard" hidden="false"/>
<categoryEntry id="0bc5-6451-5612-4a25" name="Daemon" hidden="false"/>
<categoryEntry id="c35d-97e7-5b2a-0a70" name="Daemon Engine" hidden="false"/>
<categoryEntry id="eb55-bd6b-3e75-d505" name="Chaos Lord" hidden="false"/>
<categoryEntry id="36b8-cf23-7648-ece9" name="Terminator" hidden="false"/>
<categoryEntry id="ab84-97e0-111c-9ff0" name="Plaguebearer" hidden="false"/>
<categoryEntry id="ce71-91a7-35a9-2d68" name="Lord of Contagion" hidden="false"/>
<categoryEntry id="7b13-7a9e-19f8-a78a" name="Nurglings" hidden="false"/>
<categoryEntry id="198b-9ec3-8ecd-121d" name="Malignant Plaguecaster" hidden="false"/>
<categoryEntry id="cedd-5c01-92d2-32e5" name="Typhus" hidden="false"/>
<categoryEntry id="be6b-26d4-4727-3683" name="Daemon Prince" hidden="false"/>
<categoryEntry id="fa81-3af3-dfd0-208b" name="Sorcerer" hidden="false"/>
<categoryEntry id="a50f-7a19-7624-5793" name="Plague Marines" hidden="false"/>
<categoryEntry id="7c95-4704-2fe5-93bc" name="Chaos Cultists" hidden="false"/>
<categoryEntry id="6676-37bc-5ed8-c56d" name="Poxwalkers" hidden="false"/>
<categoryEntry id="6f8e-4937-f16f-d32b" name="Noxious Blightbringer" hidden="false"/>
<categoryEntry id="af22-997e-da42-e651" name="Foul Blightspawn" hidden="false"/>
<categoryEntry id="ecd7-299f-e997-1548" name="Biologus Putrifier" hidden="false"/>
<categoryEntry id="8d6d-3d6a-dcc9-5731" name="Plague Surgeon" hidden="false"/>
<categoryEntry id="e936-731d-fadb-a113" name="Tallyman" hidden="false"/>
<categoryEntry id="2110-97af-25b6-2eb8" name="Deathshroud" hidden="false"/>
<categoryEntry id="1e74-2c48-7179-152e" name="Blightlord Terminators" hidden="false"/>
<categoryEntry id="5356-a75a-02b3-49e3" name="Helbrute" hidden="false"/>
<categoryEntry id="1d9c-2ef0-0695-e179" name="Beasts of Nurgle" hidden="false"/>
<categoryEntry id="acd7-5577-5a74-bfef" name="Possessed" hidden="false"/>
<categoryEntry id="0472-13fb-7016-2059" name="Foetid Bloat-drone" hidden="false"/>
<categoryEntry id="0053-39d8-9506-8bc8" name="Myphitic Blight-haulers" hidden="false"/>
<categoryEntry id="8a15-9612-41c6-2e02" name="Chaos Spawn" hidden="false"/>
<categoryEntry id="4baf-bddb-d1d6-e66d" name="Plague Drones" hidden="false"/>
<categoryEntry id="d86f-a7f9-e09a-3ab3" name="Chaos Land Raider" hidden="false"/>
<categoryEntry id="b865-e6f2-4c59-ccb8" name="Plagueburst Crawler" hidden="false"/>
<categoryEntry id="5dbc-e607-0dce-b9f0" name="Defiler" hidden="false"/>
<categoryEntry id="ce96-2f80-a7fa-5630" name="Chaos Predator" hidden="false"/>
<categoryEntry id="7627-d7ef-6d16-fc76" name="Chaos Rhino" hidden="false"/>
<categoryEntry id="c940-6653-e034-772f" name="Mortarion" hidden="false"/>
<categoryEntry id="64dd-ed25-1d34-3096" name="Faction: The Tainted" hidden="false"/>
<categoryEntry id="ca3a-6923-9579-044f" name="Necrosius the Undying" hidden="false"/>
<categoryEntry id="1e29-8701-54ab-015d" name="Faction: Daemon" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="8543-16f7-e443-661a" name="Plague Marines" hidden="false" collective="false" import="true" targetId="4124-8ae3-177a-4767" type="selectionEntry"/>
<entryLink id="67bb-552a-510d-f59d" name="New EntryLink" hidden="false" collective="false" import="true" targetId="172a-9105-e028-28a8" type="selectionEntry"/>
<entryLink id="d65b-3bc2-bb33-a191" name="Lord of Contagion" hidden="false" collective="false" import="true" targetId="8fbe-2b19-a2d3-8f50" type="selectionEntry"/>
<entryLink id="aa70-a62e-35d5-cb5f" name="Foetid Bloat-drone" hidden="false" collective="false" import="true" targetId="391f-4490-3ba2-a551" type="selectionEntry"/>
<entryLink id="8d04-1842-4c3f-0d5f" name="Chaos Land Raider" hidden="false" collective="false" import="true" targetId="6c90-74d4-6e66-cb10" type="selectionEntry"/>
<entryLink id="be67-2a91-ee0e-fa69" name="New EntryLink" hidden="false" collective="false" import="true" targetId="598f-3cba-b8c5-e748" type="selectionEntry"/>
<entryLink id="f13e-7e37-3b0a-7fec" name="New EntryLink" hidden="false" collective="false" import="true" targetId="967b-647e-7fec-3469" type="selectionEntry"/>
<entryLink id="6a1e-6f99-2cc7-861c" name="New EntryLink" hidden="false" collective="false" import="true" targetId="e9b8-3691-eed5-b0c7" type="selectionEntry"/>
<entryLink id="6e4d-426c-9064-c9aa" name="New EntryLink" hidden="false" collective="false" import="true" targetId="c5a2-5d3b-99c9-7b99" type="selectionEntry"/>
<entryLink id="0c6a-c6e7-46c7-afa0" name="Sorcerer" hidden="false" collective="false" import="true" targetId="9832-6438-ea96-d6d6" type="selectionEntry"/>
<entryLink id="a0bd-98c4-cba7-b313" name="Sorcerer in Terminator Armour" hidden="false" collective="false" import="true" targetId="313d-d939-4be9-9e48" type="selectionEntry"/>
<entryLink id="d35b-e538-397f-6632" name="New EntryLink" hidden="false" collective="false" import="true" targetId="67df-ff04-b483-f1c3" type="selectionEntry"/>
<entryLink id="ee13-2f6c-97ea-1b3b" name="Chaos Predator" hidden="false" collective="false" import="true" targetId="9765-6363-9d49-b571" type="selectionEntry"/>
<entryLink id="68a1-ca29-c0ee-362e" name="Chaos Cultists" hidden="false" collective="false" import="true" targetId="605b-3c14-2a67-f8e4" type="selectionEntry"/>
<entryLink id="7768-6caf-fd27-612c" name="New EntryLink" hidden="false" collective="false" import="true" targetId="429c-a1b7-b65a-0358" type="selectionEntry"/>
<entryLink id="65d2-4d61-d7fc-f838" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5cae-15dc-4a5d-0b9b" type="selectionEntry"/>
<entryLink id="f693-9d05-eddf-152c" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a008-7caa-0650-327c" type="selectionEntry"/>
<entryLink id="f31b-de7a-d5ee-1b5f" name="Malignant Plaguecaster" hidden="false" collective="false" import="true" targetId="299f-6b03-4963-d522" type="selectionEntry"/>
<entryLink id="649b-164f-b187-2632" name="Typhus" hidden="false" collective="false" import="true" targetId="25f1-c2ff-203f-8173" type="selectionEntry"/>
<entryLink id="0b45-9b7d-604e-6978" name="New EntryLink" hidden="false" collective="false" import="true" targetId="abee-429f-503a-074f" type="selectionEntry"/>
<entryLink id="bdff-4064-28d5-ffcb" name="Noxious Blightbringer" hidden="false" collective="false" import="true" targetId="64e4-21f2-e032-ad64" type="selectionEntry"/>
<entryLink id="61c7-1c0e-a785-327e" name="Sorcerer on Palanquin of Nurgle" hidden="false" collective="false" import="true" targetId="6a69-f097-e443-531d" type="selectionEntry"/>
<entryLink id="7d00-0438-4398-f4aa" name="Mortarion" hidden="false" collective="false" import="true" targetId="0e51-2a41-8394-7f6b" type="selectionEntry"/>
<entryLink id="b4ba-3038-63e5-0277" name="Deathshroud Terminators" hidden="false" collective="false" import="true" targetId="00f1-d9e0-cd71-79f0" type="selectionEntry"/>
<entryLink id="b8b1-5af0-2c0f-90c5" name="Blightlord Terminators" hidden="false" collective="false" import="true" targetId="e9b4-1d6e-8021-095f" type="selectionEntry"/>
<entryLink id="de1a-81e8-6ec7-614d" name="Mephitic Blight-hauler" hidden="false" collective="false" import="true" targetId="c87b-80f6-93b3-ddf6" type="selectionEntry"/>
<entryLink id="bbb2-9b5f-2581-e678" name="Plagueburst Crawler" hidden="false" collective="false" import="true" targetId="e909-3b20-4914-4907" type="selectionEntry"/>
<entryLink id="2008-f6e3-609c-c691" name="Biologus Putrifier" hidden="false" collective="false" import="true" targetId="0bf4-3bb0-c99c-b188" type="selectionEntry"/>
<entryLink id="a13b-2006-ce0a-1de7" name="Plague Surgeon" hidden="false" collective="false" import="true" targetId="d633-7874-7780-7ab8" type="selectionEntry"/>
<entryLink id="9621-a278-63a5-7e2c" name="Tallyman" hidden="false" collective="false" import="true" targetId="6f36-bc00-152e-a734" type="selectionEntry"/>
<entryLink id="245d-3b57-756d-ceb6" name="Foul Blightspawn" hidden="false" collective="false" import="true" targetId="21ec-740e-ec22-cf7c" type="selectionEntry"/>
<entryLink id="12b4-a9e6-a1ea-3d05" name="The Plague Brethren" hidden="false" collective="false" import="true" targetId="c3a5-b40c-b588-9387" type="selectionEntry"/>
<entryLink id="25cc-1b9e-0ba5-2434" name="Chaos Lord with Jump Pack" hidden="false" collective="false" import="true" targetId="e7d3-6be5-3af7-070e" type="selectionEntry"/>
<entryLink id="d1fc-3f04-5d42-cda6" name="Daemon Prince" hidden="false" collective="false" import="true" targetId="4445-6367-dac4-307a" type="selectionEntry"/>
<entryLink id="d969-855b-434d-1b85" name="Felthius' Cohort" hidden="false" collective="false" import="true" targetId="dd30-03a4-3c18-4c5c" type="selectionEntry"/>
<entryLink id="ef76-cc34-c5a1-3bcd" name="Necrosius the Undying" hidden="false" collective="false" import="true" targetId="8e02-debd-f5af-3d20" type="selectionEntry"/>
<entryLink id="570c-1ef0-2477-00af" name="Gifts of Decay (1 Relic)" hidden="false" collective="false" import="true" targetId="7906-7754-69cd-1c2c" type="selectionEntry"/>
<entryLink id="feb0-0814-f4a6-4665" name="Gifts of Decay (2 Relics)" hidden="false" collective="false" import="true" targetId="fe51-f3fa-7a36-7dcd" type="selectionEntry"/>
<entryLink id="1599-0b89-ecb2-60b8" name="Mamon Transfigured" hidden="false" collective="false" import="true" targetId="ef5e-8c5d-1f82-96a3" type="selectionEntry"/>
<entryLink id="723f-8b9a-03f1-ccc6" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<categoryLinks>
<categoryLink id="c9bf-d9e7-171b-89a9" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8406-06dd-abad-3e7e" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="f38c-b31c-6f36-e640" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="fe51-b39d-e8ad-ca11" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="9c32-1cbd-bda2-8351" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="8854-9b1e-d048-2b77" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a78a-dbec-9dd0-a0a6" name="Greater Blight Drone" hidden="false" collective="false" import="true" targetId="3ffd-e386-5370-dbb4" type="selectionEntry">
<categoryLinks>
<categoryLink id="fc8a-2aab-2700-1cc1" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="06cb-bf4b-5e42-e2d3" name="Plague Hulk of Nurgle" hidden="false" collective="false" import="true" targetId="d9a0-b543-74aa-fe4f" type="selectionEntry">
<categoryLinks>
<categoryLink id="0080-fff0-1346-8a14" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f60b-e090-6d0c-d012" name="Chaos Decimator" hidden="false" collective="false" import="true" targetId="19d7-59fa-6050-caf8" type="selectionEntry">
<categoryLinks>
<categoryLink id="f75e-1cb9-848c-7439" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="e2d0-f31c-f4a0-0b6c" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5700-dcf7-3a26-836f" name="Hellforged Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="c593-94fc-fbf9-d0df" type="selectionEntry">
<categoryLinks>
<categoryLink id="8334-2c15-8dc4-272d" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="a48f-b18e-6d16-0146" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="71a5-f506-62bf-69cd" name="Hellforged Land Raider Proteus" hidden="false" collective="false" import="true" targetId="cbe6-e033-9937-7a1d" type="selectionEntry">
<categoryLinks>
<categoryLink id="680c-edfe-0fba-5546" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="a64c-8765-d48f-c98c" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a28f-b6b8-534d-501f" name="Hellforged Land Raider Achilles" hidden="false" collective="false" import="true" targetId="315a-a3db-0caa-6446" type="selectionEntry">
<categoryLinks>
<categoryLink id="f1d0-6c9c-f344-a807" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="663e-c245-71ed-a31e" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e494-3e98-c155-7e36" name="Hellforged Predator" hidden="false" collective="false" import="true" targetId="9e4c-e0d2-2ff0-5e95" type="selectionEntry">
<categoryLinks>
<categoryLink id="68f9-ecd1-2022-1107" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="2b9f-e5d8-a1fb-8c8a" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ad41-52c4-b509-bc87" name="Hellforged Scorpius" hidden="false" collective="false" import="true" targetId="d174-1eae-f6b8-e293" type="selectionEntry">
<categoryLinks>
<categoryLink id="92b9-5b6a-82f0-adff" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="a6df-c464-0ca5-77da" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="897d-a669-4a19-a064" name="Hellforged Sicaran" hidden="false" collective="false" import="true" targetId="f280-8863-be14-0159" type="selectionEntry">
<categoryLinks>
<categoryLink id="9339-e9c1-63f7-2067" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="3f5c-65d5-cff2-6f2a" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1782-5b62-f2e4-e056" name="Hellforged Sicaran Venator" hidden="false" collective="false" import="true" targetId="31a0-13f1-0374-f511" type="selectionEntry">
<categoryLinks>
<categoryLink id="28e4-b8dc-37ce-317e" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="9907-496b-d403-a77a" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="06b5-c0ff-c739-f77d" name="Hellforged Spartan Assault Tank" hidden="false" collective="false" import="true" targetId="eb46-865e-8ccf-a439" type="selectionEntry">
<categoryLinks>
<categoryLink id="2e69-0833-ded9-4c0b" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="54fa-4a90-7615-95c8" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6061-617f-513d-f9c6" name="Hellforged Deredeo Dreadnought" hidden="false" collective="false" import="true" targetId="e261-2875-56c7-caf9" type="selectionEntry">
<categoryLinks>
<categoryLink id="3be1-ff4f-e853-8f10" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="1bcd-b983-71c5-d45a" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="df43-0c72-07e4-bca8" name="Hellforged Rapier Battery" hidden="false" collective="false" import="true" targetId="ffd9-5eea-5484-df0a" type="selectionEntry">
<categoryLinks>
<categoryLink id="3854-d9f3-bb28-b3da" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="eada-e077-9ee4-405d" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ef37-eef8-caee-198b" name="Hellforged Leviathan Dreadnought" hidden="false" collective="false" import="true" targetId="f6c4-89ad-891b-4beb" type="selectionEntry">
<categoryLinks>
<categoryLink id="ae1f-5e90-2178-44a7" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="63ea-fae9-84b1-b1ff" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="392f-387d-90d8-c2e5" name="Hellforged Dreadclaw Drop Pod" hidden="false" collective="false" import="true" targetId="f5b8-443f-f85c-90f1" type="selectionEntry">
<categoryLinks>
<categoryLink id="8261-e3e6-6d73-9af8" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="4279-adab-a7ce-9b08" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c422-831f-99ba-8cd3" name="Hellforged Kharybdis Assault Claw" hidden="false" collective="false" import="true" targetId="e730-3bab-f956-9a95" type="selectionEntry">
<categoryLinks>
<categoryLink id="4b4e-449b-b627-fc58" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="54f0-6c45-49e9-d083" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="063b-c4c3-2dcd-312e" name="Hellforged Cerberus Heavy Destroyer" hidden="false" collective="false" import="true" targetId="0c8f-8122-f2dc-ba7b" type="selectionEntry">
<categoryLinks>
<categoryLink id="a5f7-9d19-70b4-26a5" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="bc44-8468-c879-8ea5" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="9cd3-a626-47c0-2743" name="Hellforged Typhon Heavy Siege Tank" hidden="false" collective="false" import="true" targetId="c011-cf2f-ae1e-3b1a" type="selectionEntry">
<categoryLinks>
<categoryLink id="306e-5331-5935-a08b" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="31e3-2701-c6c3-2d3b" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4b31-e75a-d11c-a926" name="Hellforged Fellblade" hidden="false" collective="false" import="true" targetId="6fe4-b1d3-46d1-3481" type="selectionEntry">
<categoryLinks>
<categoryLink id="7fb4-a9aa-49a9-936b" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="a9ba-b8d9-bb03-3388" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="fb80-01e9-f2aa-e516" name="Hellforged Falchion" hidden="false" collective="false" import="true" targetId="a308-f638-e0af-3e5e" type="selectionEntry">
<categoryLinks>
<categoryLink id="071b-a2dc-760f-c687" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="cd0c-56c2-5d42-a622" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="57cd-7965-c355-bda4" name="Hellforged Mastodon" hidden="false" collective="false" import="true" targetId="3099-f431-71d0-f357" type="selectionEntry">
<categoryLinks>
<categoryLink id="0254-e555-077c-8322" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="5a27-fdfb-cf06-ec5e" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a9e2-5dc9-6f08-0c50" name="Chaos Hell Blade" hidden="false" collective="false" import="true" targetId="5d38-a97d-a864-dd4b" type="selectionEntry">
<categoryLinks>
<categoryLink id="50a6-43a3-b9d3-f7cb" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="b4b8-741e-4008-99e0" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="9536-9fa9-cb77-4176" name="Chaos Hell Talon" hidden="false" collective="false" import="true" targetId="dc79-77bc-6adb-dfbe" type="selectionEntry">
<categoryLinks>
<categoryLink id="df24-dff3-1b89-9b60" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="b6c5-b9e7-e3a0-d5d4" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c5ed-8fad-6c17-5f00" name="Chaos Storm Eagle Assault Gunship" hidden="false" collective="false" import="true" targetId="0ebf-e4c7-f8ca-ce1b" type="selectionEntry">
<categoryLinks>
<categoryLink id="dce6-2c8b-72a7-0fd0" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="bbae-448a-76e2-50f7" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e84e-2680-5862-ce6f" name="Chaos Fire Raptor Assault Gunship" hidden="false" collective="false" import="true" targetId="ceaa-1081-bed7-f249" type="selectionEntry">
<categoryLinks>
<categoryLink id="98fb-4164-86c3-8758" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="baec-2005-e374-ea9a" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a2ad-978e-8334-2d31" name="Chaos Thunderhawk Assault Gunship" hidden="false" collective="false" import="true" targetId="5994-ab72-97e3-f36b" type="selectionEntry">
<categoryLinks>
<categoryLink id="bca7-fb0f-6a51-efdf" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="c720-1714-53f0-d64c" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6124-49f4-50eb-fa4e" name="Chaos Sokar Pattern Stormbird Gunship" hidden="false" collective="false" import="true" targetId="086a-3326-18e2-477f" type="selectionEntry">
<categoryLinks>
<categoryLink id="7a18-e41c-3d2d-3b75" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="87b2-1ff9-e880-c3b8" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d21c-5d1f-b46d-6c5a" name="Chaos Xiphon Interceptor" hidden="false" collective="false" import="true" targetId="a096-b74b-efa6-9bb4" type="selectionEntry">
<categoryLinks>
<categoryLink id="fe69-7eb4-7c80-9d26" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="48a6-cf66-4d4c-62f4" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7eb8-268e-a903-9c87" name="Chaos Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="f957-f774-e452-34ea" type="selectionEntry">
<categoryLinks>
<categoryLink id="ce5e-17db-92b0-7d6e" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="4927-2a0a-0b80-38cd" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b347-af60-1407-512f" name="Ferrum Infernus Dreadnought" hidden="false" collective="false" import="true" targetId="2cc8-0e93-7906-cdf0" type="selectionEntry">
<categoryLinks>
<categoryLink id="bc53-3caa-1e72-e9de" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="3cf5-8f21-7289-1939" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="015c-3781-991d-e4fd" name="Terrax-Pattern Termite Assault Drill" hidden="false" collective="false" import="true" targetId="732b-967e-1bca-5846" type="selectionEntry">
<categoryLinks>
<categoryLink id="273b-aea6-06af-7900" name="Faction: Death Guard" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="2e58-b6e1-fcb5-b9a4" name="Faction: Nurgle" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="b5e7-9a9a-ca4b-6c67" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
<categoryLink id="0d74-05a5-107a-65ea" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="0de3-c407-ee9c-74e1" name="Faction: Heretic Astartes" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="badb-d5f5-edc8-24a2" name="Chaos Lord" hidden="false" collective="false" import="true" targetId="7206-6d46-665e-9012" type="selectionEntry"/>
<entryLink id="8ad3-aef7-ef92-36b5" name="Sorcerer" hidden="false" collective="false" import="true" targetId="c8b7-de19-dfa9-9998" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="f7c7-963e-3fda-16f4" name="Plague Weapon" hidden="false">
<description>You can re-roll wound rolls of 1 for a weapon with this ability.</description>
</rule>
<rule id="c232-21be-118e-d93f" name="Inexorable Advance" hidden="false">
<description>If your Army is Battle-forged, all INFANTRY and HELBRUTE units in DEATH GUARD Detachments gain this ability. Such units do not suffer a penalty for moving and firing Heavy Weapons, or for Advancing and firing Assault weapons. In addition, a unit with this ability can fire twice with Rapid Fire weapons at a range of 18", instead of only being able to fire twice with them up to half the weapon's maximum range.</description>
</rule>
<rule id="8d8a-88a0-6b44-6d71" name="Plague Host" hidden="false">
<description>If your army is Battle-forged, all Troops units in DEATH GUARD Detachments gain this ability. Such a unit that is within range of an objective marker (as specified in the mission) controls that objective marker even if there are more enemy models within range of it. If an enemy unit within range of the same objective marker has a similar ability, then the objective marker is controlled by the player who has the most models within range as normal.</description>
</rule>
<rule id="3e60-7d53-e6ae-d91d" name="Bolter Discipline" hidden="false">
<description>All ADEPTUS ASTARTES, HERETIC ASTARTES and FALLEN models gain this ability.
Instead of following the normal rules for Rapid Fire weapons, models in this unit firing Rapid Fire bolt weapons make double the number of attacks if any of the following apply:
• The firing model’s target is within half the weapon’s maximum range.
• The firing model is INFANTRY and every model in its unit remained stationary in your previous Movement phase.
• The firing model is a TERMINATOR, BIKER, CENTURION, DREADNOUGHT or HELBRUTE.
For the purposes of this ability, a Rapid Fire bolt weapon is any weapon with the Rapid Fire type whose profile includes the word ‘bolt’ (e.g. boltgun, bolt rifle, storm bolter, combi-bolter, hurricane bolter, inferno boltgun, etc.). This also applies when firing the boltgun profile of combi-weapons (including the bolt weapon profile of Relics such as Blood Song and the Lion’s Wrath) and when firing relics that replace a Rapid Fire bolt weapon, so long as the relic is also a Rapid Fire weapon (e.g. Primarch’s Wrath and Fury of Deimos). The Gauntlets of Ultramar and the Talon of Horus are also Rapid Fire bolt weapons, as is the guardian spear used by Deathwatch Watch Masters.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="ec95-f0af-6c7d-e1f8" name="Daemonic Ritual" hidden="false" targetId="bbee-472d-f29f-4288" type="rule"/>
</infoLinks>
<sharedSelectionEntries>
<selectionEntry id="598f-3cba-b8c5-e748" name="Chaos Lord [Legends]" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="780f-2336-4deb-ce41" name="Chaos Lord" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a271-ad31-2800-23e0" name="Death to the False Emperor" hidden="false" targetId="c365-8ca4-3ee1-1677" type="profile"/>
<infoLink id="4da1-37f8-a2e0-faf8" name="Sigil of Corruption" hidden="false" targetId="88cc-1fee-7767-1ab4" type="profile"/>
<infoLink id="6a3d-307f-ee7b-0a4d" name="Lord of Nurgle" hidden="false" targetId="766d-c385-bb6c-01a3" type="profile"/>
<infoLink id="95e9-7657-8094-803d" name="Hateful Assault" hidden="false" targetId="6625-1efb-fc0e-69f2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5fc1-46d1-60bd-bf52" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="14ae-727f-d8cf-c47f" name="New CategoryLink" hidden="false" targetId="eb55-bd6b-3e75-d505" primary="false"/>
<categoryLink id="9cc0-6fdf-1dcd-0d71" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="d7a0-9d4c-6347-7850" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="84f1-40a7-5450-7ce0" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="2fc0-a94c-9d9b-d89e" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="7711-488c-d41e-51d1" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="6b69-0881-1b35-5841" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="df12-04aa-ba2d-a491" name="Chaos Lord Weapon Options" hidden="false" collective="false" import="true" targetId="cbb7-7e96-0482-6ecf" type="selectionEntryGroup"/>
<entryLink id="8ef9-ce16-e9f7-1655" name="Relics of Decay" hidden="false" collective="false" import="true" targetId="0435-2d8f-2e4e-28c3" type="selectionEntryGroup"/>
<entryLink id="9471-c9da-f201-8577" name="Warlord" hidden="false" collective="false" import="true" targetId="a840-f0b3-abac-6d1c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a36-d2c0-e9fb-ba5c" type="max"/>
</constraints>
</entryLink>
<entryLink id="1578-a15e-6f75-95e6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="d59b-974a-122c-6f79" type="selectionEntryGroup"/>
<entryLink id="3271-595c-999d-ad9f" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="cb56-8c51-21dc-4e92" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="15bf-60f8-c3fb-5e2f" name="Blight Grenades" hidden="false" collective="false" import="true" targetId="922e-5c7d-e439-842b" type="selectionEntry"/>
<entryLink id="7339-cd8b-08ba-b967" name="Krak grenades" hidden="false" collective="false" import="true" targetId="0f23-cd69-d106-371e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6811-655c-437b-2c79" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14b0-56b9-aaf6-af87" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="74.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9765-6363-9d49-b571" name="Chaos Predator" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="dcec-84e3-a202-5ba7" name="Chaos Predator" page="0" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">11</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="f353-cbc8-8cf8-a9b1" name="Chaos Predator" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="0466-132c-378a-ed22" name="Chaos Predator1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-11+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="ffdb-13f2-2610-6540" name="Chaos Predator2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="6518-bdc6-f975-a6ec" name="Chaos Predator3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">3"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="113f-c728-f886-9d6d" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="f66f-df94-0706-84d5" name="Hateful Assault" hidden="false" targetId="6625-1efb-fc0e-69f2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c962-e65e-be8e-8607" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="d544-2dc7-1eca-0a9c" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="23bc-4374-312b-0f00" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="81c6-d02b-09ed-bf85" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="8720-7f99-4615-07b3" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="c4ab-22e6-0b3c-eb09" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="470f-b087-39e3-b1d4" name="New CategoryLink" hidden="false" targetId="ce96-2f80-a7fa-5630" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b5d5-8152-ad97-48f8" name="Predator autocannon options" hidden="false" collective="false" import="true" defaultSelectionEntryId="76c9-26af-dbca-8448">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eed2-cf94-693e-1bf6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="975b-7389-4fab-089b" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="76c9-26af-dbca-8448" name="Predator autocannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c0cf-ee9a-c500-8872" name="Predator autocannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4689-7cbe-6243-c589" name="Twin lascannon" hidden="false" collective="false" import="true" targetId="ee18-b1cd-6b60-464d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6656-b5c9-6961-8ba7" name="2x Weapon options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e8a-c578-e899-f285" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="05f4-b9d7-b79c-53ae" name="Two heavy bolters" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="1ea3-7247-b20d-2f0d" name="New EntryLink" hidden="false" collective="false" import="true" targetId="05ab-e7cc-e856-c36f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2e9-d384-5f8a-372f" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a49-1d4c-1d9c-bdf5" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c9f2-0a93-bb22-e49b" name="Two lascannons" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="33c0-501f-23b5-0893" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a908-4664-11cd-f8b2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ad0-a468-6776-6cb9" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7874-f938-a410-6584" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1f14-3677-3768-e2d3" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="f668-0ff7-69d5-be65" type="selectionEntry"/>
<entryLink id="ca5f-5ebd-ef7f-3c2f" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5383-9a88-9883-e144" type="selectionEntryGroup"/>
<entryLink id="bd00-8391-5c20-ac65" name="Smoke launchers" hidden="false" collective="false" import="true" targetId="a8f6-49e7-ea35-aca5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa91-3ddc-6ae9-2188" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e874-ec40-b283-bf40" type="max"/>
</constraints>
</entryLink>
<entryLink id="27f9-8f51-6898-e962" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="ef05-f8eb-7289-2cbe" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="85.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="9.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="abee-429f-503a-074f" name="Chaos Spawn" page="0" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="36de-6b5b-d1df-80a6" name="Fearsome" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Enemy units within 1" of any Chaos Spawn must subtract 1 from their Ld.</characteristic>
</characteristics>
</profile>
<profile id="3937-7401-45fc-31ba" name="Mutated Beyond Reason" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When a unit of Chaos Spawn makes its close combat attacks, roll a D3 and consult the table below.</characteristic>
</characteristics>
</profile>
<profile id="9e91-14bf-fa7f-4865" name="1 - Razor Claws" hidden="false" typeId="6c48-3f8e-adc6-e417" typeName="Mutated Beyond Reason">
<characteristics>
<characteristic name="Effect" typeId="be9e-2b06-438b-d717">The hideous mutations of all Chaos Spawn in the unit have an AP of -4 until the end of the Fight phase.</characteristic>
</characteristics>
</profile>
<profile id="1291-662a-a28e-fb22" name="2 - Grasping Pseudopods" hidden="false" typeId="6c48-3f8e-adc6-e417" typeName="Mutated Beyond Reason">
<characteristics>
<characteristic name="Effect" typeId="be9e-2b06-438b-d717">Each Chaos Spawn in the unit adds 2 to its Attacks characteristic until the end of the Fight phase.</characteristic>
</characteristics>
</profile>
<profile id="ec27-ba38-6234-b5f5" name="3 - Toxic Haemorrhage" hidden="false" typeId="6c48-3f8e-adc6-e417" typeName="Mutated Beyond Reason">
<characteristics>
<characteristic name="Effect" typeId="be9e-2b06-438b-d717">You can re-roll failed wound rolls for this unit until the end of the Fight phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e456-bb11-9708-a293" name="Hateful Assault" hidden="false" targetId="6625-1efb-fc0e-69f2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f330-5ae9-9fce-cf70" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="f4f6-0bf4-9ef0-3c4f" name="New CategoryLink" hidden="false" targetId="7892-58f7-e769-4d87" primary="false"/>
<categoryLink id="794c-b4ce-fb20-3577" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="ab38-3314-4535-fcba" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="119a-0575-66e6-d73c" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="80ad-e0d3-d78a-d0a8" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="e62e-8de0-c398-4b1c" name="New CategoryLink" hidden="false" targetId="8a15-9612-41c6-2e02" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="93eb-e72a-fd89-27b7" name="Chaos Spawn" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d570-8a3c-e0d5-9544" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f94e-49e3-d1c3-b6a7" type="min"/>
</constraints>
<profiles>
<profile id="7298-2329-68bf-7f8b" name="Chaos Spawn" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">-</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">D6</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="f69f-22ec-1d9b-fc37" name="Hideous mutations" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b949-f909-45ff-1d0c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0741-e4f4-946a-dc82" type="min"/>
</constraints>
<profiles>
<profile id="eab9-28c3-6634-a4c7" name="Hideous mutations" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d89a-9b46-ae19-88fd" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="06a8-32dd-0bcd-e9dd" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5a2-5d3b-99c9-7b99" name="Daemon Prince of Nurgle" page="0" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5746-8975-d4e5-72f6" name="Daemon Prince" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="c5a2-5d3b-99c9-7b99" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3c6-499d-a448-e1c6" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">6</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">8</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="0b74-1079-3729-7bcd" name="Daemon Prince" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">1</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">1</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite and 1 power from the Contagion discipline</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2c65-43c6-922d-0004" name="Death to the False Emperor" hidden="false" targetId="c365-8ca4-3ee1-1677" type="profile"/>
<infoLink id="a861-3c9c-1034-761d" name="Daemonic" hidden="false" targetId="5511-cb37-e1c1-5391" type="profile"/>
<infoLink id="b080-0b1c-99fd-343f" name="Prince of Chaos" hidden="false" targetId="b2bf-eff2-2fa6-efcd" type="profile"/>
<infoLink id="9bb2-8b4f-ea7f-1632" name="Disgustingly Resilient" hidden="false" targetId="8f11-6c2b-25e0-d130" type="profile"/>
<infoLink id="9fbe-72bb-5905-dfdb" name="Hateful Assault" hidden="false" targetId="6625-1efb-fc0e-69f2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c5a2-5d3b-99c9-7b99-848a6ff2-0def-4c72-8433-ff7da70e6bc7" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="5b18-4bfa-cbfe-a87d" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="5b48-2199-c520-3ad3" name="New CategoryLink" hidden="false" targetId="0bc5-6451-5612-4a25" primary="false"/>
<categoryLink id="74b3-3eed-2351-009c" name="New CategoryLink" hidden="false" targetId="3b77-decb-d468-6bcc" primary="false"/>
<categoryLink id="eeb1-f348-26d8-0c07" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="6917-4152-682c-cd6c" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="e360-76b4-105a-69a2" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="f712-7e76-1a3d-df73" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="c4e3-8a99-42b0-353c" name="New CategoryLink" hidden="false" targetId="be6b-26d4-4727-3683" primary="false"/>
<categoryLink id="d76c-588d-8eb4-2552" name="Psyker" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d3c6-499d-a448-e1c6" name="Wings" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="972d-4038-947c-9d3c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3303-27f2-aebc-bb3d" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="24.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c8b6-53f1-329f-75e2" name="Hellforged sword options" hidden="false" collective="false" import="true" defaultSelectionEntryId="6768-4032-c530-3500">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="af21-0685-7c68-2fc1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5523-dfd9-5436-01af" type="min"/>
</constraints>
<entryLinks>
<entryLink id="c989-1ce5-fca0-c08b" name="Malefic talon" hidden="false" collective="false" import="true" targetId="ab5a-b591-31e2-e0d0" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="10"/>
</modifiers>
</entryLink>
<entryLink id="6768-4032-c530-3500" name="Hellforged sword" hidden="false" collective="false" import="true" targetId="7d05-2c25-26b8-d4da" type="selectionEntry"/>
<entryLink id="2545-690a-5d9e-5a7f" name="Daemonic axe" hidden="false" collective="false" import="true" targetId="73f0-ec59-a8ea-4ce9" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c884-fb3b-a6b9-fb68" name="Malefic talon" hidden="false" collective="false" import="true" targetId="ab5a-b591-31e2-e0d0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="982e-6f3f-b67b-c2aa" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d8fd-c86d-a183-cf3a" type="max"/>
</constraints>
</entryLink>
<entryLink id="e98f-3b79-e43f-f60d" name="Smite" hidden="false" collective="false" import="true" targetId="03fd-db47-5333-1e1f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0684-bc32-8d52-17b4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c001-af7e-9514-9e9d" type="min"/>
</constraints>
</entryLink>
<entryLink id="225c-14a1-014c-4fe8" name="Contagion Discipline" hidden="false" collective="false" import="true" targetId="51d0-6d01-4ab3-4953" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6431-96e1-8316-2c15" type="max"/>
</constraints>
</entryLink>
<entryLink id="0645-af0c-192b-aae0" name="Relics of Decay" hidden="false" collective="false" import="true" targetId="0435-2d8f-2e4e-28c3" type="selectionEntryGroup"/>
<entryLink id="0ae5-6dfb-eb51-53e9" name="Warlord" hidden="false" collective="false" import="true" targetId="a840-f0b3-abac-6d1c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68c6-332a-7ee4-b825" type="max"/>
</constraints>
</entryLink>
<entryLink id="7e97-1aa9-9841-4297" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="d59b-974a-122c-6f79" type="selectionEntryGroup"/>
<entryLink id="3fe4-d1da-a607-cfa8" name="Plague Spewer" hidden="false" collective="false" import="true" targetId="36f3-205a-9a21-726d" type="selectionEntry">
<modifiers>
<modifier type="set" field="1664-a216-8c57-82d6" value="0.0">
<conditions>
<condition field="selections" scope="c5a2-5d3b-99c9-7b99" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6768-4032-c530-3500" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1664-a216-8c57-82d6" type="max"/>
</constraints>
</entryLink>
<entryLink id="8fa4-da4c-0c8d-c690" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="14dc-cfc5-4a27-94ba" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="146.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="67df-ff04-b483-f1c3" name="Defiler" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="92f7-4fa7-8d78-1f4e" name="Defiler" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">14</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="94d3-1f50-0f53-1cc7" name="Defiler" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="0860-4463-13ed-94ba" name="Defiler1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">8-14+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">8"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4</characteristic>
</characteristics>
</profile>
<profile id="3186-3f9d-3e10-4fec" name="Defiler2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">4-7</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="13f0-20c0-aeb3-721a" name="Defiler3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-3</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">4"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">2</characteristic>
</characteristics>
</profile>
<profile id="2fa1-26ac-6fac-a66f" name="Infernal Regeneration" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the beginning of each of your turns, this model heals one wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c736-96a1-f303-347b" name="Daemonic" hidden="false" targetId="5511-cb37-e1c1-5391" type="profile"/>
<infoLink id="e096-2e7a-fdc8-702d" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="f64c-1870-696d-184b" name="Hateful Assault" hidden="false" targetId="6625-1efb-fc0e-69f2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1eac-cd86-fbf1-b28e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="b893-69ce-8a50-eedd" name="New CategoryLink" hidden="false" targetId="0bc5-6451-5612-4a25" primary="false"/>
<categoryLink id="1a30-dc53-c197-1d63" name="New CategoryLink" hidden="false" targetId="c35d-97e7-5b2a-0a70" primary="false"/>
<categoryLink id="c87b-d6b9-9b95-de45" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="9c74-0ffb-df21-a8a4" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="1883-237e-4087-090a" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="2f81-c96a-ca40-dd7a" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="e24a-2ad4-6ea1-d977" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="6155-ff21-ce0d-5024" name="New CategoryLink" hidden="false" targetId="5dbc-e607-0dce-b9f0" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a065-6733-00d0-cdf5" name="Defiler claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="247e-c7fc-80c5-b6f4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db07-c7ab-daf1-6fc2" type="min"/>
</constraints>
<profiles>
<profile id="56a6-6b62-77e7-449c" name="Defiler claws" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c978-c6d1-053b-9e8f" name="Twin heavy flamer options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2131-3983-10cc-0037" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a83-a703-081d-3404" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="5502-7607-7594-2169" name="Defiler scourge" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9375-4dd0-84e8-197d" name="Defiler scourge" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time the bearer fights, it can make 3 additional attacks with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="12.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="149c-9784-d9ea-951a" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="f668-0ff7-69d5-be65" type="selectionEntry"/>
<entryLink id="dea4-739a-3134-f0cc" name="Twin heavy flamer" hidden="false" collective="false" import="true" targetId="8d70-a6af-cbad-f08c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a1f9-6d35-a433-90d9" name="Reaper autocannon options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c2a-6844-d1f3-faaf" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7361-9fa9-2dc3-94c2" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e70b-14b2-0b6a-1745" name="Twin lascannon" hidden="false" collective="false" import="true" targetId="ee18-b1cd-6b60-464d" type="selectionEntry"/>
<entryLink id="a0a5-40b4-d658-8b6d" name="Twin heavy bolter" hidden="false" collective="false" import="true" targetId="09d8-7790-ed3f-4d6d" type="selectionEntry"/>
<entryLink id="066b-5977-a976-e536" name="Reaper autocannon" hidden="false" collective="false" import="true" targetId="5ab4-1ee7-95ad-7e15" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0cd7-e061-3471-eb96" name="Combi-weapons" hidden="false" collective="false" import="true" targetId="5383-9a88-9883-e144" type="selectionEntryGroup"/>
<entryLink id="1f5f-6312-4edd-d675" name="Smoke launchers" hidden="false" collective="false" import="true" targetId="a8f6-49e7-ea35-aca5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="208a-c28e-1d19-ce05" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7bb8-0882-739f-b242" type="min"/>
</constraints>
</entryLink>
<entryLink id="e325-f843-faa1-0750" name="Battle cannon" hidden="false" collective="false" import="true" targetId="1d7b-4f46-b77b-ead1" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b59f-bab0-2bd5-d993" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd4f-702c-1c2f-3c33" type="min"/>
</constraints>
</entryLink>
<entryLink id="9e26-e120-99fc-b5cd" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="1cd1-bd3a-85dc-1333" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="11.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9832-6438-ea96-d6d6" name="Sorcerer [Legends]" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="a1b6-f555-e2ca-009e" name="Sorcerer" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="9832-6438-ea96-d6d6" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="09a2-f505-bf74-300f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="8587-8197-f048-8d43" name="Sorcerer" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">2</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">1</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite and two powers from the Contagion discipline</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e3a5-1035-6513-5ead" name="Death to the False Emperor" hidden="false" targetId="c365-8ca4-3ee1-1677" type="profile"/>
<infoLink id="3929-9b78-a9b5-b0d5" name="Hateful Assault" hidden="false" targetId="6625-1efb-fc0e-69f2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9832-6438-ea96-d6d6-848a6ff2-0def-4c72-8433-ff7da70e6bc7" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="b88c-0d42-4a78-3fba" name="New CategoryLink" hidden="false" targetId="8308-6393-0ce1-4bf9" primary="false"/>
<categoryLink id="35aa-babc-4bd6-37c6" name="New CategoryLink" hidden="false" targetId="0fb6-fcaf-b180-5dda" primary="false"/>
<categoryLink id="7d72-b00c-1568-2160" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="e6f3-ca22-7f80-d1f3" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="9f7c-e53a-7d12-f64e" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="f271-a194-bd14-7479" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="c43b-1b90-00cb-c383" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="14ca-aa26-cf57-7873" name="New CategoryLink" hidden="false" targetId="fa81-3af3-dfd0-208b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="09a2-f505-bf74-300f" name="Jump Pack" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a902-151c-89d3-4e6c" type="max"/>
</constraints>
<categoryLinks>