forked from BSData/wh40k-10e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - World Eaters.cat
5110 lines (5109 loc) · 378 KB
/
Chaos - World Eaters.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="df9a-59b2-f464-59ad" name="Chaos - World Eaters" revision="22" battleScribeVersion="2.03" library="false" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue">
<profileTypes>
<profileType id="02a0-fa96-6f9b-354f" name="Wrathful Presence">
<characteristicTypes>
<characteristicType id="64d6-2545-b925-8bb5" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="e302-b2bb-5860-6a70" name="Leader"/>
<profileType id="d07f-b12b-1c73-fa2c" name="Blessings of Khorne">
<characteristicTypes>
<characteristicType id="f99e-3b0d-b8fa-71b6" name="Roll"/>
<characteristicType id="fcc3-ca7a-d697-7098" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8a1c-5832-fe04-fd64" name="Angron" hidden="false"/>
<categoryEntry id="096b-6376-97e0-b82f" name="Khârn the Betrayer" hidden="false"/>
<categoryEntry id="59a2-5bf7-970b-4720" name="Lord Invocatus" hidden="false"/>
<categoryEntry id="e531-2b12-c56c-aa51" name="Lord on Juggernaut" hidden="false"/>
<categoryEntry id="11bd-04b2-ef68-f7b7" name="Master of Executions" hidden="false"/>
<categoryEntry id="802c-f8e1-e339-84b3" name="Berserkers" hidden="false"/>
<categoryEntry id="f05b-e25f-cda0-4669" name="Jakhals" hidden="false"/>
<categoryEntry id="de05-aa6e-fc97-c400" name="Terminator" hidden="false"/>
<categoryEntry id="bed2-a2a1-caf3-d9d7" name="Terminator Squad" hidden="false"/>
<categoryEntry id="aa38-6b43-3c3e-3ed9" name="Eightbound" hidden="false"/>
<categoryEntry id="b8d9-6a4b-fd6b-e82d" name="Exalted Eightbound" hidden="false"/>
<categoryEntry id="8419-8f54-c5b0-8f76" name="Land Raider" hidden="false"/>
<categoryEntry id="a510-da27-1450-e28c" name="Predator Annihilator" hidden="false"/>
<categoryEntry id="a2a0-c04e-a958-afed" name="Predator Destructor" hidden="false"/>
<categoryEntry id="271b-ea4c-8319-1dea" name="Defiler" hidden="false"/>
<categoryEntry id="67ee-e549-a0de-413b" name="Forgefiend" hidden="false"/>
<categoryEntry id="f4f2-8000-3586-26f6" name="Helbrute" hidden="false"/>
<categoryEntry id="6d5b-9e47-e038-6871" name="Heldrake" hidden="false"/>
<categoryEntry id="ed41-36cc-6e01-1084" name="Maulerfiend" hidden="false"/>
<categoryEntry id="7683-9a29-39d9-ae31" name="Rhino" hidden="false"/>
<categoryEntry id="8596-9508-212e-9628" name="Spawn" hidden="false"/>
<categoryEntry id="ad21-8e29-c122-9cbb" name="Lord of Skulls" hidden="false"/>
<categoryEntry name="Hell Talon" hidden="false" id="4f9b-f5a5-ad88-6e14"/>
<categoryEntry name="Hellblade" hidden="false" id="17dd-7d43-376b-664e"/>
</categoryEntries>
<entryLinks>
<entryLink id="37e4-799e-798f-19a8" name="Angron" hidden="false" collective="false" import="true" targetId="f4b8-1179-de57-4d69" type="selectionEntry"/>
<entryLink id="1cfc-2dc0-2a7a-28fe" name="Khârn the Betrayer" hidden="false" collective="false" import="true" targetId="3449-7dac-6ac8-5d51" type="selectionEntry"/>
<entryLink id="e6a1-7ae6-b759-9a96" name="Lord Invocatus" hidden="false" collective="false" import="true" targetId="3b15-b424-2059-71fa" type="selectionEntry"/>
<entryLink id="9537-27cc-2058-3ccc" name="World Eaters Daemon Prince" hidden="false" collective="false" import="true" targetId="40c5-9ebd-6d42-2855" type="selectionEntry"/>
<entryLink id="7541-4d29-df98-afc4" name="World Eaters Daemon Prince with wings" hidden="false" collective="false" import="true" targetId="0294-61a4-c6ed-b2e8" type="selectionEntry"/>
<entryLink id="222c-8db7-5b68-a060" name="World Eaters Lord on Juggernaut" hidden="false" collective="false" import="true" targetId="ec72-f024-4283-0558" type="selectionEntry"/>
<entryLink id="ca7d-c77a-28e2-7b6b" name="World Eaters Master of Executions" hidden="false" collective="false" import="true" targetId="1b56-682c-ac33-bc5f" type="selectionEntry"/>
<entryLink id="b250-a2f9-7098-353d" name="Khorne Berserkers" hidden="false" collective="false" import="true" targetId="f909-00c7-8ba4-018a" type="selectionEntry"/>
<entryLink id="94b7-fa73-a8cd-5b9d" name="World Eaters Terminator Squad" hidden="false" collective="false" import="true" targetId="45f6-8429-a1d9-2a51" type="selectionEntry"/>
<entryLink id="8568-71db-b833-93d5" name="Jakhals (alt)" hidden="false" collective="false" import="true" targetId="6f81-4538-a414-251e" type="selectionEntry"/>
<entryLink id="96aa-4baa-2cb2-da3d" name="Eightbound" hidden="false" collective="false" import="true" targetId="9435-1f44-7e5b-d510" type="selectionEntry"/>
<entryLink id="e213-0676-347e-9292" name="Exalted Eightbound" hidden="false" collective="false" import="true" targetId="9932-3d2b-1e47-d53b" type="selectionEntry"/>
<entryLink id="79da-4515-ca6e-ce6c" name="World Eaters Land Raider" hidden="false" collective="false" import="true" targetId="4251-bd4f-f7ac-9487" type="selectionEntry"/>
<entryLink id="2036-652e-faf4-0d0e" name="World Eaters Predator Annihilator" hidden="false" collective="false" import="true" targetId="497c-f787-5a7e-1020" type="selectionEntry"/>
<entryLink id="0b05-8696-2b92-85a5" name="World Eaters Predator Destructor" hidden="false" collective="false" import="true" targetId="04a0-269e-3bab-2c61" type="selectionEntry"/>
<entryLink id="9b39-b485-dbc8-fcf9" name="World Eaters Defiler" hidden="false" collective="false" import="true" targetId="ea51-5575-9e74-9346" type="selectionEntry"/>
<entryLink id="b3d8-740b-9c4a-c031" name="World Eaters Forgefiend" hidden="false" collective="false" import="true" targetId="81e1-b212-69c1-308f" type="selectionEntry"/>
<entryLink id="f867-cbc9-d166-18eb" name="World Eaters Helbrute" hidden="false" collective="false" import="true" targetId="273a-db24-3f7c-b977" type="selectionEntry"/>
<entryLink id="64bc-5065-4f9e-4564" name="World Eaters Heldrake" hidden="false" collective="false" import="true" targetId="de2e-8fae-9d22-24a4" type="selectionEntry"/>
<entryLink id="6afa-65ac-21df-090d" name="World Eaters Maulerfiend" hidden="false" collective="false" import="true" targetId="a619-8a52-be03-3bd5" type="selectionEntry"/>
<entryLink id="891d-f175-70de-994e" name="World Eaters Rhino" hidden="false" collective="false" import="true" targetId="e849-ce40-ee43-7623" type="selectionEntry"/>
<entryLink id="4d07-d613-ee8a-1a27" name="World Eaters Chaos Spawn" hidden="false" collective="false" import="true" targetId="edde-57bf-bccc-d8b2" type="selectionEntry"/>
<entryLink id="92f2-c2b5-a0c8-6e19" name="Khorne Lord of Skulls" hidden="false" collective="false" import="true" targetId="836c-f65b-6bcb-9663" type="selectionEntry"/>
<entryLink id="8d4f-a4cb-ec1c-7f95" name="Blessings of Khorne Reference" hidden="false" collective="false" import="true" targetId="5558-f47e-9f45-3fca" type="selectionEntry"/>
<entryLink id="d325-e694-6930-accb" name="Detachment Choice" hidden="false" collective="false" import="true" targetId="84c8-b821-877d-72e6" type="selectionEntry"/>
<entryLink import="true" name="Cerberus" hidden="false" type="selectionEntry" id="f924-6fa9-cee4-b6ee" targetId="4044-b458-fb4d-d05b">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="69ed-f973-2bc5-6ab0" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="3d47-ec70-bb58-ec8b" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="fa21-800e-bd7a-2c" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="cff9-33bf-ac93-f1ec" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="2fe8-60d9-a7ab-cf78" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Chaos Thunderhawk" hidden="false" type="selectionEntry" id="f7dd-51f2-3195-dca4" targetId="6844-986c-b0ea-6dd5">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="e6d6-a98e-f19d-6f70" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="490-d63c-b875-31a0" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="1e0c-1dfd-26d7-4f57" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="832c-d796-683e-f82c" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="5ccd-102f-a541-73dd" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Deredeo Dreadnought" hidden="false" type="selectionEntry" id="e86a-63b2-d572-270b" targetId="d38d-c3a2-f753-efea">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="a4a4-df02-189d-8e73" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="cf2d-eb8d-b77-e859" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="b21a-4db4-6af-f324" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="6c2e-53f6-22f5-41cd" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="9df6-63e0-3e51-7715" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Relic Contemptor Dreadnought" hidden="false" type="selectionEntry" id="29d2-ab15-e518-2503" targetId="783a-1c02-b377-b169">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="3308-bc8d-58bb-e487" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="fd91-52d2-360a-410b" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="68cb-fee8-e1f2-8671" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="7b9e-e7b2-a54c-2039" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="de3-fb63-7c40-483e" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sicaran Battle Tank" hidden="false" type="selectionEntry" id="6253-e786-e83e-23e9" targetId="b2f1-197b-fb3b-687f">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="9997-69df-2cef-bf2f" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="20ad-e1df-1a44-4acb" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="5c55-9d02-b1fd-4ca1" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="f72f-9b95-b7e1-ec23" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="d292-9c61-d10a-2b91" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sicaran Punisher" hidden="false" type="selectionEntry" id="29fb-f6b4-4070-8e20" targetId="68aa-28bf-bd73-3355">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="2bc8-3021-890d-b84d" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="c6af-3c72-b27c-5a66" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="5ca0-e7e-8d2b-ebf" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="7acc-d294-f61e-e0ba" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="b663-5c2e-abb4-ee7a" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sicaran Venator" hidden="false" type="selectionEntry" id="f6e3-745b-88cf-c04a" targetId="e63e-2aa6-f840-b54e">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="11c4-3936-bbc4-1e2a" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="8aaf-e9d8-1a34-a0" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="f5b5-3464-1dc2-71e1" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="f4bb-b66d-fca4-d617" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="13c9-38f-c947-589c" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Rapier Carrier" hidden="false" type="selectionEntry" id="ebdf-c9f8-b845-6b8c" targetId="2aee-e03c-836e-4c6e">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="faf5-df04-7b7c-1566" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="591a-bcf4-b0c4-7d77" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="73f7-36bf-9ecb-d598" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="94b6-5e72-efe6-5a9f" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="a837-ea9a-a015-e99d" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Whirlwind Scorpius" hidden="false" type="selectionEntry" id="b65-c988-9c88-4d4a" targetId="97dc-f0c8-1354-88fb">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="a00b-68fc-13c-7abf" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="a1b6-b642-8ebd-a0c5" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="ca1f-6e22-46f-304" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="843e-c4b5-3fbc-3928" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="ca7a-1b71-3edf-378a" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Xiphon Interceptor" hidden="false" type="selectionEntry" id="4c50-4f0e-eddf-e5aa" targetId="1aa5-d081-2442-4c37">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="d4fe-87c6-cfba-d8fc" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="dec5-e285-5c37-b463" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="1597-3f01-ea54-7485" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="1c0e-b436-bd20-7bc1" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="d84b-3330-84ee-fb6f" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Terrax-pattern Termite" hidden="false" type="selectionEntry" id="636a-d16c-b2f0-20ec" targetId="3d36-e9d7-54c5-deb7">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="6eab-3ffa-7d96-212e" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="557f-1675-f6fc-3867" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="5e55-555e-aa48-7bca" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="b826-f45e-e2c4-3119" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="e35a-4e47-c274-fada" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Storm Eagle Gunship" hidden="false" type="selectionEntry" id="d13d-e898-e857-1d02" targetId="3b7d-b14e-603-e1ad">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="ce38-cc6f-ef5f-a499" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="4158-8064-23b0-7fdb" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="7f94-cab1-5607-7eb" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="9e5-582c-bca6-bb21" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="ad04-6f76-152f-9e88" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Fire Raptor Gunship" hidden="false" type="selectionEntry" id="306-db45-d47c-f0e9" targetId="1fc7-7880-e4d4-acbf">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="e79d-cc39-1757-dc61" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b686-862f-2706-22fb" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="6404-d703-ef1c-3b67" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="dcd4-793c-a051-ea8b" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="7744-20a5-6172-ff4a" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Typhon" hidden="false" type="selectionEntry" id="4847-772c-f3e0-917b" targetId="f60c-1b93-9ee8-59d2">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="3c07-889c-4fff-bc9d" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="88d9-ec84-b4de-5631" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="b849-4445-944-9297" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="c1bc-7a4f-780-96e" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="2a96-4ed2-76e2-3d14" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Spartan" hidden="false" type="selectionEntry" id="cd23-530a-922c-5821" targetId="7b3a-9a63-6200-ec7">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="82c-126c-afc2-d6f8" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="9a22-d7c4-431-506f" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="5a9d-38e3-992e-28b2" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="20cf-ab09-a95e-b960" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="e277-8e09-6c49-81db" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Fellblade" hidden="false" type="selectionEntry" id="46f-4b79-2b39-41ac" targetId="585d-722b-4304-2f63">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="3b9c-d47b-bd91-a788" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b05c-faa8-8060-f2a1" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="3333-cb6f-f274-deac" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="55ef-cd4d-f545-b83b" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="c1d0-3b8e-5235-be94" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Falchion" hidden="false" type="selectionEntry" id="bcb4-5b55-e4f1-1257" targetId="625b-29e4-7be7-db5a">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="1b09-bcde-fa11-869" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b29d-5430-8cf5-b317" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="6ca9-4167-f0f9-b575" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="ceb5-d9ac-f344-90d7" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="a725-8786-f7d1-919a" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Mastodon" hidden="false" type="selectionEntry" id="3143-8abd-418b-8863" targetId="e337-7f05-f1b3-d64e">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="bac3-6fe2-611f-65f9" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="e25-c88-648c-e8fd" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="89ed-f19-49c9-4342" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="a012-765f-b417-12ed" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="f19f-4243-2a20-b332" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Sokar-pattern Stormbird" hidden="false" type="selectionEntry" id="cc59-8f57-3730-c65" targetId="a80f-8343-85f3-716a">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="7443-5968-949-3965" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="333b-9e14-b29-4e6b" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="ad17-633e-2ac0-527b" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="a1f2-3067-613c-8dfc" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="4445-959-9821-784c" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Greater Brass Scorpion" hidden="false" type="selectionEntry" id="4ef1-a5e1-ce64-d13" targetId="f564-7bc-21a6-7796">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="b27f-5ca0-b077-151" primary="false" name="Faction: World Eaters"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="c5cd-90b3-197b-b6f1" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="15a0-241a-947f-9abe" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Blood Slaughterer" hidden="false" type="selectionEntry" id="e2a-75fd-5a20-fffc" targetId="fdad-1104-a934-3812">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="e19b-27de-a76a-5f29" primary="false" name="Faction: World Eaters"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="1b51-41b9-660-f76d" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="b6f7-77b2-9b57-84f2" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Kytan Ravager" hidden="false" type="selectionEntry" id="f630-edc9-339d-a309" targetId="6c76-b4e-4437-27e2">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="1d01-9710-175e-789c" primary="false" name="Faction: World Eaters"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="2758-68dc-c1cd-d3bd" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="a0c2-5eb-2843-d590" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
<entryLink import="true" name="Hell Talon [Legends]" hidden="false" type="selectionEntry" id="5504-a332-cd26-a84b" targetId="4e04-74aa-2c2f-66d0"/>
<entryLink import="true" name="Hellblade [Legends]" hidden="false" type="selectionEntry" id="4bc4-284d-9598-a9ec" targetId="7320-3dba-703c-b3f0"/>
<entryLink import="true" name="Land Raider Achilles [Legends]" hidden="false" type="selectionEntry" id="1e2d-1a05-ec5-9cbd" targetId="3006-ffe-2b0c-6b1b">
<categoryLinks>
<categoryLink targetId="4c00-2578-faf5-6918" id="1a4b-605b-d01-2dda" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="a2e1-42a-bf15-4382" primary="false" name="Khorne"/>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="69cc-2c5b-62bf-e607" primary="false" name="Faction: World Eaters"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Land Raider Proteus [Legends]" hidden="false" type="selectionEntry" id="4ee3-6d48-2502-12ba" targetId="34c8-1025-33f7-baaf">
<categoryLinks>
<categoryLink targetId="4c00-2578-faf5-6918" id="a3b8-e4bd-8197-fced" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="5f6f-9c98-8e90-2572" primary="false" name="Khorne"/>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="ee00-eea-49c9-4650" primary="false" name="Faction: World Eaters"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Leviathan Dreadnought [Legends]" hidden="false" type="selectionEntry" id="4436-ca5-9f90-df10" targetId="14d4-8062-f090-6719">
<categoryLinks>
<categoryLink targetId="4c00-2578-faf5-6918" id="1d7a-bd15-4517-9b08" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="dff-7090-cb8a-11d5" primary="false" name="Khorne"/>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="331a-b219-1b7b-d33a" primary="false" name="Faction: World Eaters"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Show/Hide Options" hidden="false" type="selectionEntry" id="8dab-22ac-6ba-1175" targetId="e8ef-836a-a9d1-901d">
<entryLinks>
<entryLink import="true" name="Show Chaos Knights" hidden="false" type="selectionEntry" id="f615-8151-d191-4eff" targetId="aeb4-96de-7401-eaa3"/>
<entryLink import="true" name="Show Khorne Daemons" hidden="false" type="selectionEntry" id="c8ce-d14f-e623-6c7" targetId="f5f9-1339-84bb-ae85"/>
<entryLink import="true" name="Show Titans" hidden="false" type="selectionEntry" id="7584-2768-a9d9-7a78" targetId="f26b-79db-80e0-3a3b"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Kratos [Legends]" hidden="false" type="selectionEntry" id="20a6-a58b-37a3-6db7" targetId="78aa-3f99-5fb7-7f83">
<categoryLinks>
<categoryLink targetId="bd1d-c1a5-6ca2-c791" id="cf6d-6973-2145-4c0a" primary="false" name="Faction: World Eaters"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="b224-9be7-4603-4ce5" primary="false" name="Chaos"/>
<categoryLink targetId="4bd-5ee0-f179-2fc5" id="adf-31a1-2d30-173e" primary="false" name="Khorne"/>
</categoryLinks>
<infoLinks>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="61d8-ea19-de02-c4a" targetId="e68b-b42f-6f7c-4670"/>
<infoLink id="c9ae-f760-4bf5-4d92" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
</infoLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="f4b8-1179-de57-4d69" name="Angron" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2a44-e16c-0226-49ff" type="max"/>
</constraints>
<profiles>
<profile id="3783-5cea-375d-0421" name="Angron" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">14"</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">16</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">5+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">6</characteristic>
</characteristics>
</profile>
<profile id="1bc6-f5af-5413-b734" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="c119-e343-c7ef-bd4c" name="Reborn in Blood" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time you make a Blessings of Khorne roll, if this model is destroyed, you can use a triple 6 from that roll to use this ability. If you do, this model is no longer destroyed and is placed into Reserves with its full wounds remaining.</characteristic>
</characteristics>
</profile>
<profile id="0d65-4434-1179-25f7" name="Wrathful Presence" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your Charge phase, select one Wrathful Presence ability. Until the start of your next Charge phase, this model has that ability.</characteristic>
</characteristics>
</profile>
<profile id="6bc9-7ca7-a2f6-aa83" name="Glorious Bloodletting (Aura)" hidden="false" typeId="02a0-fa96-6f9b-354f" typeName="Wrathful Presence">
<characteristics>
<characteristic name="Effect" typeId="64d6-2545-b925-8bb5">While a friendly WORLD EATERS unit is within 6" of this model, each time a Charge roll is made for that unit, add 1 to the roll.</characteristic>
</characteristics>
</profile>
<profile id="30f4-54de-d45c-aa7d" name="Infectious Rage (Aura)" hidden="false" typeId="02a0-fa96-6f9b-354f" typeName="Wrathful Presence">
<characteristics>
<characteristic name="Effect" typeId="64d6-2545-b925-8bb5">While a friendly WORLD EATERS unit that is below its Starting Strength is within 6" of this model, add 1 to the Attacks characteristic of melee weapons equipped by models in that unit. For the purposes of this ability, if a unit has a Starting Strength of 1, it is considered to be below its Starting Strength while it has lost one or more wounds.</characteristic>
</characteristics>
</profile>
<profile id="6ae8-099a-2349-6f8b" name="Righteous Slaughter (Aura)" hidden="false" typeId="02a0-fa96-6f9b-354f" typeName="Wrathful Presence">
<characteristics>
<characteristic name="Effect" typeId="64d6-2545-b925-8bb5">While a friendly WORLD EATERS unit is within 6" of this model, each time a model in that unit makes an attack, you can re-roll the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="Damaged: 1-6 wounds remaining" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e84c-e5e3-3819-db1e">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model has 1-6 wounds remaining, each time this model makes an attack, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5308-3ca8-3701-b9ea" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D6"/>
</modifiers>
</infoLink>
<infoLink id="77d5-5b00-c4ca-a7b6" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="c96e-a3aa-a635-b776" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="392b-d21e-7a78-16d5" targetId="e68b-b42f-6f7c-4670"/>
</infoLinks>
<categoryLinks>
<categoryLink id="dfe5-8f59-5e03-6560" name="Faction: World Eaters" hidden="false" targetId="bd1d-c1a5-6ca2-c791" primary="false"/>
<categoryLink id="3d96-490a-9aac-7b34" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="a7d2-e36c-f136-4cba" name="Fly" hidden="false" targetId="c619-2086-bbcf-69c9" primary="false"/>
<categoryLink id="44e1-b2dd-a69a-0d6c" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="c963-6c70-4949-6cf0" name="Epic Hero" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="3d81-13df-734f-976e" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="873e-1aa9-e5f8-0ff2" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="081c-51a6-7fe0-b351" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="47c5-f8a8-0935-4b13" name="Primarch" hidden="false" targetId="6474-0ce3-6b5a-120c" primary="false"/>
<categoryLink id="cf4b-62f9-90ea-107f" name="Angron" hidden="false" targetId="8a1c-5832-fe04-fd64" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3f1f-49de-78f6-e59e" name="Samni’arius and Spinegrinder" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52b5-ec61-d6b3-f6f4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="482e-d548-5ec5-8808" type="max"/>
</constraints>
<profiles>
<profile id="c2d5-0bee-869e-fb77" name="Samni’arius and Spinegrinder - strike" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">8</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">16</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-4</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D6+2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
<profile id="be4d-fdfc-bae7-1387" name="Samni’arius and Spinegrinder - sweep" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">18</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">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3efa-d821-7853-0961" name="Warlord" hidden="false" collective="false" import="true" targetId="9754-481c-c292-a1f9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73d6-a234-25af-5f26" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="415"/>
</costs>
</selectionEntry>
<selectionEntry id="9754-481c-c292-a1f9" name="Warlord" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d859-b623-eb8b-535f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="dd78-4ceb-52e7-4174" name="Warlord" hidden="false" targetId="5c0e-4c31-d51b-e470" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3449-7dac-6ac8-5d51" name="Khârn the Betrayer" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3a27-b88e-584c-7d2c" type="max"/>
</constraints>
<profiles>
<profile id="e617-5a38-2a0f-85ed" name="Khârn the Betrayer" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</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 id="bf3d-552f-3273-5bad" name="Legendary Killer" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit makes an attack, re-roll a Hit roll of 1 and re-roll a Wound roll of 1.</characteristic>
</characteristics>
</profile>
<profile id="f98c-6c6c-2f6b-4626" name="The Betrayer" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the end of your Charge phase, if this model is leading a unit and that unit is not within Engagement Range of one or more enemy units, you must take a Leadership test for this model. If that test is failed, one Bodyguard model of your choice in that unit is destroyed.</characteristic>
</characteristics>
</profile>
<profile id="72fe-bca8-a252-eeb2" name="Berserker Frenzy" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">If this model is destroyed by a melee attack, if it has not fought this phase, do not remove it from play. It can fight after the attacking model’s unit has finished making its attacks, and is then removed from play.</characteristic>
</characteristics>
</profile>
<profile id="3b96-842a-f4c2-2859" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="dbdd-7b38-8b6c-6969" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
- KHORNE BERSERKERS</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ea8b-a883-ceda-0d63" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
<infoLink id="9f67-5396-f4b0-e6e4" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="f9e8-d77c-2712-5cbe" targetId="e68b-b42f-6f7c-4670"/>
</infoLinks>
<categoryLinks>
<categoryLink id="535a-a5e7-fb00-c650" name="Faction: World Eaters" hidden="false" targetId="bd1d-c1a5-6ca2-c791" primary="false"/>
<categoryLink id="072d-ed86-3bb7-096e" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink id="9ca0-7174-4c2d-3c4a" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="4088-f024-b150-4b15" name="New CategoryLink" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="df9b-69ff-4037-d608" name="Grenades" hidden="false" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink id="6c51-fd33-9099-3fa9" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="0ea7-ee36-9d78-e0d1" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="99fe-4eeb-2710-c777" name="Khârn the Betrayer" hidden="false" targetId="096b-6376-97e0-b82f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fd97-20ca-0273-58e5" name="Khârn's plasma pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99e5-0bf8-1261-2d3e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5370-287d-ad64-485d" type="max"/>
</constraints>
<profiles>
<profile id="dec7-e785-39a9-fed1" name="Khârn's plasma pistol" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<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">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="34fa-9245-0f2b-d82e" name="Pistol" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee6b-763b-5885-19da" name="Gorechild" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="16af-58ea-a2d6-dec1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbe0-399e-ffd8-28eb" type="max"/>
</constraints>
<profiles>
<profile id="3502-ed85-d1bb-0bb8" name="Gorechild" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">8</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">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3578-501d-c196-f54d" name="Warlord" hidden="false" collective="false" import="true" targetId="9754-481c-c292-a1f9" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="100"/>
</costs>
</selectionEntry>
<selectionEntry id="3b15-b424-2059-71fa" name="Lord Invocatus" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="31dd-b048-15c0-e404" type="max"/>
</constraints>
<profiles>
<profile id="352d-93b6-7b8e-95d3" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="38d4-2193-b71b-9cca" name="Counter-attacks" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, that unit is eligible to shoot and declare a charge in a turn in which it Fell Back.</characteristic>
</characteristics>
</profile>
<profile id="de14-2f26-263d-2047" name="Road of Eight Bloody Steps" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the battle, before any moves are made using the Scouts ability, you can select up to two friendly WORLD EATERS INFANTRY units within 6" of this model. Until the end of the battle, all models in the selected units have the Scouts 6" ability.</characteristic>
</characteristics>
</profile>
<profile id="06e3-9b06-7daf-0eb6" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
- EIGHTBOUND
- EXALTED EIGHTBOUND
- KHORNE BERSERKERS</characteristic>
</characteristics>
</profile>
<profile id="5449-4860-4bd5-c42a" name="Lord Invocatus" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</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">8</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d3fd-5763-890d-89f4" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
<infoLink id="d798-42fb-6dde-9ada" name="Scouts" hidden="false" targetId="ada6-bac1-ffe0-d6f7" type="rule">
<modifiers>
<modifier type="append" field="name" value="6""/>
</modifiers>
</infoLink>
<infoLink id="daaa-818f-237c-0c85" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="5894-1c7e-9336-2c96" targetId="e68b-b42f-6f7c-4670"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7ba8-53d1-9ec0-d5e5" name="Faction: World Eaters" hidden="false" targetId="bd1d-c1a5-6ca2-c791" primary="false"/>
<categoryLink id="8fc8-d292-94b4-1efc" name="Mounted" hidden="false" targetId="14a0-40c9-2748-ae6e" primary="false"/>
<categoryLink id="68a0-7de8-a111-d2b0" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="3ae4-a2f4-b769-3496" name="Epic Hero" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="488b-fa3a-992c-aae6" name="Grenades" hidden="false" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink id="1664-af05-f9f8-332e" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="6052-2511-5f55-e244" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="980b-3add-4ec0-e085" name="Lord Invocatus" hidden="false" targetId="59a2-5bf7-970b-4720" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e702-66b4-58f7-d28a" name="Bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ded7-e47c-4bdd-99fd" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7667-9f56-bd46-5f3f" type="max"/>
</constraints>
<profiles>
<profile id="2ff9-bedf-f94e-fc5a" name="Bolt pistol" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<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">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ea96-cd69-86ad-ea9c" name="Pistol" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9513-0551-c14b-aa72" name="Coward's Bane" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7912-ca30-896d-56a9" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c650-785a-d24c-cded" type="max"/>
</constraints>
<profiles>
<profile id="2202-3d94-7e68-b4ed" name="Coward's Bane" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<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">6</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">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7833-a78c-21e7-7b47" name="Devastating Wounds" hidden="false" targetId="be1e-ac8e-1e2c-3528" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ce5b-231f-75d2-7b53" name="Juggernaught's bladed horn" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ad9-e1e8-e885-49a2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7cfa-cd13-5241-b234" type="max"/>
</constraints>
<profiles>
<profile id="db5a-fbd0-f818-56ce" name="Juggernaught's bladed horn" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</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">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Extra Attacks, Lance</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="60fe-149a-56b2-a83e" name="Extra Attacks" hidden="false" targetId="115b-79dc-f723-d761" type="rule"/>
<infoLink id="f26f-26bd-cbff-6668" name="Lance" hidden="false" targetId="2ebc-abdf-8129-6c57" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d7bf-d418-a2ae-8b08" name="Warlord" hidden="false" collective="false" import="true" targetId="9754-481c-c292-a1f9" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="140"/>
</costs>
</selectionEntry>
<selectionEntry id="40c5-9ebd-6d42-2855" name="World Eaters Daemon Prince" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="528a-fb5a-e60d-ca62" type="max"/>
</constraints>
<profiles>
<profile id="dcc5-fc35-0f80-4c3f" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="cc39-46f4-3101-c4f0" name="Infernal Fortitude (Aura)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly WORLD EATERS INFANTRY unit is within 6" of this model, models in that unit have a 5+ invulnerable save, unless they already have an invulnerable save, in which case they have a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="9fd3-61f8-95ae-118a" name="Devastating Assault" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model makes a Charge move, until the end of the turn, its hellforged weapons have the [DEVASTATING WOUNDS] ability.</characteristic>
</characteristics>
</profile>
<profile id="e5a2-5edd-5acf-cada" name="World Eaters Daemon Prince" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</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>
</profiles>
<infoLinks>
<infoLink id="7f52-a2fa-bd62-8742" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D3"/>
</modifiers>
</infoLink>
<infoLink id="bfd2-905b-1aae-c9b9" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="fe1b-14fd-b42f-2bbf" targetId="e68b-b42f-6f7c-4670"/>
</infoLinks>
<categoryLinks>
<categoryLink id="47a1-1fe2-67b6-fa15" name="Faction: World Eaters" hidden="false" targetId="bd1d-c1a5-6ca2-c791" primary="false"/>
<categoryLink id="b7c5-01bc-d050-0fbf" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="c674-6a43-9656-8b8e" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="5c0a-f9b0-a700-013e" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="d7f0-f2cf-24dd-801e" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="c198-b03e-f998-a7ad" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="2458-cd4c-9edb-7216" name="Daemon Prince" hidden="false" targetId="4f09-0141-6c70-6c5a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f132-71e1-81e2-5074" name="Infernal cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2f5-2e46-c6e5-9032" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2cab-9713-2eab-4235" type="max"/>
</constraints>
<profiles>
<profile id="2bf6-041e-92d4-6556" name="Infernal cannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</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">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3e4b-1a3a-8473-578c" name="Hellforged weapons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="69dc-d1e8-1869-ef54" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="636e-d38a-fd41-8d16" type="max"/>
</constraints>
<profiles>
<profile id="d413-1b95-3ce2-4ad0" name="Hellforged weapons - strike" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<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">10</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 id="f0d9-8a72-8332-d447" name="Hellforged weapons - sweep" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<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">8</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>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e761-56b7-0133-cb24" name="Warlord" hidden="false" collective="false" import="true" targetId="9754-481c-c292-a1f9" type="selectionEntry"/>
<entryLink id="5d2a-3072-b1d3-7563" name="Enhancements" hidden="false" collective="false" import="true" targetId="7b6d-6d90-0ffe-b45b" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="200"/>
</costs>
</selectionEntry>
<selectionEntry id="0294-61a4-c6ed-b2e8" name="World Eaters Daemon Prince with wings" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f2c7-1bdf-e404-03af" type="max"/>
</constraints>
<profiles>
<profile id="7454-7044-5a27-f927" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="ef20-bc48-20c9-6af6" name="Bloodied Terror" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, each enemy unit within Engagement Range of this model must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
<profile id="8d55-b620-1f13-577b" name="Oath to Khorne" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the battle, select one unit from your opponent’s army to be this model’s sworn foe. Each time this model makes an attack that targets that sworn foe, you can re-roll the Hit roll and you can re-roll the Wound roll. If, at the end of the battle, that sworn foe has not been destroyed, this model is destroyed.</characteristic>
</characteristics>
</profile>
<profile id="d5e3-08eb-fa8d-cfda" name="World Eaters Daemon Prince with wings" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</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>
<infoLinks>
<infoLink id="de25-ea39-08be-035d" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D3"/>
</modifiers>
</infoLink>
<infoLink id="a436-293f-75c6-65dc" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="0fcf-ded4-16e7-28a2" name="Relentless Rage" hidden="false" targetId="ba63-2b7b-ad97-0e92" type="profile"/>
<infoLink name="Blessings of Khorne" hidden="false" type="rule" id="41de-78e-b9aa-66f1" targetId="e68b-b42f-6f7c-4670"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7685-1259-35ed-3657" name="Faction: World Eaters" hidden="false" targetId="bd1d-c1a5-6ca2-c791" primary="false"/>
<categoryLink id="2080-caa6-6f3f-08b4" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="3434-8e1f-02b6-e249" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="aa81-2be0-25b7-9e4e" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="71a1-84ba-0fda-aaf2" name="Khorne" hidden="false" targetId="4bd-5ee0-f179-2fc5" primary="false"/>
<categoryLink id="22e9-e6bf-9c55-8a2e" name="Daemon" hidden="false" targetId="9c0e-7e25-4580-e439" primary="false"/>
<categoryLink id="9fe6-d5db-e73e-7029" name="Daemon Prince" hidden="false" targetId="4f09-0141-6c70-6c5a" primary="false"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="2c87-51a2-801d-5eb9" primary="false" name="Fly"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4755-fc43-f6a4-8c1f" name="Infernal cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5932-8f1f-5fbe-5808" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffc9-d239-34e4-b2a1" type="max"/>
</constraints>
<profiles>
<profile id="0b04-ec38-bb4e-7439" name="Infernal cannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</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">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3f51-baf4-2e6a-21f2" name="Hellforged weapons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b293-5067-9420-b259" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbdd-ab5e-9f8f-6a61" type="max"/>
</constraints>
<profiles>
<profile id="06ab-c72c-416a-7058" name="Hellforged weapons - strike" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<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">10</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 id="dbe0-61f3-9be9-1cad" name="Hellforged weapons - sweep" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<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">8</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>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c28b-ad55-0eb6-731d" name="Warlord" hidden="false" collective="false" import="true" targetId="9754-481c-c292-a1f9" type="selectionEntry"/>
<entryLink id="341d-3145-c33d-f32e" name="Enhancements" hidden="false" collective="false" import="true" targetId="7b6d-6d90-0ffe-b45b" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="195"/>
</costs>
</selectionEntry>
<selectionEntry id="ec72-f024-4283-0558" name="World Eaters Lord on Juggernaut" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4da9-da84-1c07-3ffc" type="max"/>
</constraints>
<profiles>
<profile id="b991-fcac-8127-89f9" name="Aggressive Advance" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, you can re-roll any or all of the following rolls made for that unit: Advance rolls; Charge rolls; Blood Surge rolls (see Khorne Berzerkers).</characteristic>
</characteristics>
</profile>
<profile id="4bcb-02c4-0b6c-f6b9" name="Bloody Stampede" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model’s unit ends a Charge move, select one enemy unit within Engagement Range of this model and roll one D6: on a 2-3, that enemy unit suffers 1 mortal wound; on a 4-5, that enemy unit suffers D3 mortal wounds; on a 6, that enemy unit suffers D3+3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="b8ca-cc7b-60ae-7c4b" name="World Eaters Lord on Juggernaut" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">10"</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">7</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
<profile id="5566-3e94-2fd4-8f61" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="2714-1342-291d-9505" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
- EIGHTBOUND
- EXALTED EIGHTBOUND
- KHORNE BERSERKERS</characteristic>