forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - FW Heretic Astartes.cat
6672 lines (6669 loc) · 533 KB
/
Chaos - FW Heretic Astartes.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="2128-f196-8f1c-b352" name="Chaos - FW Heretic Astartes" revision="44" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://discord.gg/KqPVhds" library="true" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="2128-f196-pubN106623" name="Index: Chaos"/>
</publications>
<profileTypes>
<profileType id="cfcb-6416-94fb-4744" name="Wound Track, Drop Pod">
<characteristicTypes>
<characteristicType id="b283-e6e6-00d3-3ea7" name="Remaining W"/>
<characteristicType id="e789-192c-3e0e-9b28" name="S"/>
<characteristicType id="c756-3519-dd11-489c" name="A"/>
</characteristicTypes>
</profileType>
<profileType id="7ee9-2938-dd45-dff3" name="Wound Track, Titan">
<characteristicTypes>
<characteristicType id="dcd0-e4cc-6e98-555c" name="Remaining W"/>
<characteristicType id="479c-75d6-7083-e399" name="M"/>
<characteristicType id="0307-df7d-732c-e3f2" name="WS"/>
<characteristicType id="f87a-9875-1aca-9ad0" name="BS"/>
<characteristicType id="c9d0-4691-9a37-0e2a" name="Void Shield"/>
</characteristicTypes>
</profileType>
<profileType id="150a-3fd2-81c5-cb57" name="Wound Track, Sokar">
<characteristicTypes>
<characteristicType id="7189-005e-8262-c409" name="Remaining W"/>
<characteristicType id="9ba6-0815-af4a-9801" name="M"/>
<characteristicType id="8788-a911-c224-2c7c" name="BS"/>
<characteristicType id="da42-9f53-1497-e4cc" name="A"/>
<characteristicType id="56d3-8d71-a15d-6eda" name="Void Shield"/>
</characteristicTypes>
</profileType>
<profileType id="84ed-ecf3-5d8d-c067" name="Wound Track, Xiphon">
<characteristicTypes>
<characteristicType id="f1a2-a557-506a-4de1" name="Remaining W"/>
<characteristicType id="7d24-f0bb-c95d-060b" name="M"/>
<characteristicType id="eabe-dfc3-210d-f528" name="BS"/>
</characteristicTypes>
</profileType>
<profileType id="24bd-9b25-01b9-29f1" name="Wound Track, Plague Hulk">
<characteristicTypes>
<characteristicType id="6845-16be-2026-3013" name="Remaining Wounds"/>
<characteristicType id="f56b-33b7-96c6-b8f7" name="M"/>
<characteristicType id="c1b5-0933-fab2-b9ae" name="BS"/>
<characteristicType id="b9e9-8881-170b-cc6d" name="A"/>
</characteristicTypes>
</profileType>
<profileType id="5927-38b7-bf4d-c376" name="Gift of Contagion table">
<characteristicTypes>
<characteristicType id="88f4-4940-bda2-4a26" name="D3 Roll"/>
<characteristicType id="e9e4-c15a-8752-5258" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="37db-2713-c0e0-df20" name="Daemon" hidden="false"/>
<categoryEntry id="1c96-d14c-b0c7-53e3" name="Daemon Engine" hidden="false"/>
<categoryEntry id="5c4c-f549-6ee9-2f4b" name="Faction: Heretic Astartes" hidden="false"/>
<categoryEntry id="fe84-0aa8-259f-b94d" name="Khorne" hidden="false"/>
<categoryEntry id="18b2-6128-9587-345e" name="Nurgle" hidden="false"/>
<categoryEntry id="87d3-e3bf-b880-f282" name="Slaanesh" hidden="false"/>
<categoryEntry id="1819-7099-80af-2266" name="Tzeentch" hidden="false"/>
<categoryEntry id="f379-3f19-8545-bfc1" name="Hellforged" hidden="false"/>
<categoryEntry id="2be6-f5e4-9b7a-c2f7" name="Dreadnought" hidden="false"/>
<categoryEntry id="da71-24bc-f947-62e0" name="Land Raider" hidden="false"/>
<categoryEntry id="e57b-edf9-7e04-f1d0" name="Drop Pod" hidden="false"/>
<categoryEntry id="c6c5-7ba3-ae32-8fc0" name="Eyrine Cults" hidden="false"/>
<categoryEntry id="fd04-cdfb-5c5f-a435" name="Faction: Skulltakers" hidden="false"/>
<categoryEntry id="8f0d-f52f-7f53-1bbc" name="Terminator" hidden="false"/>
<categoryEntry id="8308-6393-0ce1-4bf9" name="Faction: Death Guard" hidden="false"/>
<categoryEntry id="f492-b358-f897-1478" name="Faction: The Tainted" hidden="false"/>
<categoryEntry id="bb6e-39d6-3917-7d82" name="Faction: The Faithless" hidden="false"/>
<categoryEntry id="e1e4-9f90-27df-dc31" name="Faction: Alpha Legion" hidden="false"/>
<categoryEntry id="9961-3cf9-80ea-065c" name="Faction: Dark Mechanicus" hidden="false"/>
<categoryEntry id="6436-2254-f4e4-af66" name="Warpsmith" hidden="false"/>
<categoryEntry id="1220-2c46-baf6-0616" name="Faction: World Eaters" hidden="false"/>
<categoryEntry id="8005-9fea-4a32-1869" name="Vindicator" hidden="false"/>
<categoryEntry id="4ba2-cae3-d215-570d" name="Hellforged Rapier Crew" hidden="false"/>
<categoryEntry id="9bd7-a724-a37d-f280" name="Hellforged Rapier Battery" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="c0e9-256f-10ed-ca29" name="ALL ENTRIES HAVE BEEN MERGED INTO THE MAIN CHAOS CATALOGUES" hidden="false" collective="false" import="false" type="upgrade">
<categoryLinks>
<categoryLink id="e5da-7794-6c21-22d3" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b6f2-0b29-843f-658d" name="THIS CATALOGUE WILL BE HIDDEN IN THE NEXT RELEASE" hidden="false" collective="false" import="false" type="upgrade">
<categoryLinks>
<categoryLink id="2e86-1762-a279-b012" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="955b-58e2-e418-f30d" name="ALL ENTRIES HAVE BEEN MERGED INTO THE MAIN CHAOS CATALOGUES" hidden="false" collective="false" import="false" type="upgrade">
<categoryLinks>
<categoryLink id="1a53-0df9-d43f-b305" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="641e-78e1-7d14-0fed" name="THIS CATALOGUE WILL BE HIDDEN IN THE NEXT RELEASE" hidden="false" collective="false" import="false" type="upgrade">
<categoryLinks>
<categoryLink id="108b-6a7f-1d0f-ce7c" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntries>
<selectionEntry id="41e5-6a66-73db-29e5" name="Greater Brass Scorpion of Khorne" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="5a2d-9fd9-d3db-5225" name="Greater Brass Scorpion" 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">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">*</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">20</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</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="2ba2-5751-71a3-ef9c" name="Greater Brass Scorpion" 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">S</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="e616-0366-7cfa-8a74" name="Greater Brass Scorpion1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">11-20+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">10</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">8</characteristic>
</characteristics>
</profile>
<profile id="43aa-5028-817d-8c02" name="Greater Brass Scorpion2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">4-10</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">8</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">6</characteristic>
</characteristics>
</profile>
<profile id="2b15-e159-cd37-2095" name="Greater Brass Scorpion3" 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">8"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4</characteristic>
</characteristics>
</profile>
<profile id="b716-9a5e-f5e5-0b50" name="Titanic Daemon Engine" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">A Greater Brass Scorpion of Khorne can shoot if there are enemy models within 1" of it, as long as all of the enemy models have the Infantry keyword. In this case, it can shoot the enemy unit that is within 1" of it or any other visible enemy unit that is within range and more than 1" away from any friendly models. In addition, the Greater Brass Scorpion of Khorne can move and fire Heavy weapons wihtout suffering the penalty to its hit rolls. Finally, the Greater Brass Scorpion of Khorne only gains a bonus to its save in cover if at least half of the model is obscured from the bearer.</characteristic>
</characteristics>
</profile>
<profile id="dc4e-3e73-1687-873c" name="Frenzied Charge" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When the Greater Brass Scorpion of Khorne makes a charge move, roll 3D6 and add the results together to determine the maximum distance up to which it may charge.</characteristic>
</characteristics>
</profile>
<profile id="9e6f-7b24-f042-fcdd" name="Runes of the Blood God" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When a Psyker attempts to manifest a psychic power that inflicts mortal wounds on the Greater Brass Scorpion of Khorne, the Psyker suffers Perils of the Warp on any roll of a double, not just double 1 or double 6 as would normally be the case. Furthermore, this model cannot be targeted by psychic powers manifested by friendly PSYKERS.</characteristic>
</characteristics>
</profile>
<profile id="a173-6c13-a4cc-a434" name="Doomsday Reactor" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a D6 before removing the model from the battlefield; on a 4+ it explodes and each unit within 2D6" suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cc23-2d4f-7117-0b3d" name="Infernal Regeneration" hidden="false" targetId="c4c3-dbe0-1fac-32ec" type="profile"/>
<infoLink id="e45e-b5b0-43ec-3647" name="Daemon Engine" hidden="false" targetId="3058-5172-2acd-9223" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="95ff-dd50-eaae-7605" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="fd02-1357-0a3b-e724" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="ce5e-f19c-f4b4-8956" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="1cc0-21c0-0e47-16c1" name="New CategoryLink" hidden="false" targetId="37db-2713-c0e0-df20" primary="false"/>
<categoryLink id="6654-fee4-4344-e5b0" name="New CategoryLink" hidden="false" targetId="1c96-d14c-b0c7-53e3" primary="false"/>
<categoryLink id="56a9-ae1f-91aa-d0d8" name="New CategoryLink" hidden="false" targetId="5c4c-f549-6ee9-2f4b" primary="false"/>
<categoryLink id="67c6-43a4-9c61-75e9" name="New CategoryLink" hidden="false" targetId="fe84-0aa8-259f-b94d" primary="false"/>
<categoryLink id="fd61-25c3-aada-5c80" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="707c-403f-d923-a3bc" name="Hellcrusher 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="67c5-8e61-bbd4-0f40" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3ee0-f77e-c303-9351" type="min"/>
</constraints>
<profiles>
<profile id="fa26-9a01-a770-4ac4" name="Hellcrusher 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">+4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</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>
<selectionEntry id="a44a-43a5-ebe8-8915" name="Scorpion Cannon" 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="aafb-fc7c-6550-91a4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67b9-a8f5-6dc6-b2af" type="min"/>
</constraints>
<profiles>
<profile id="c164-6a6d-8d33-b015" name="Scorpion Cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 10</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</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>
<selectionEntry id="fb46-ef99-0753-56b9" name="Twin hellmaw blasters" 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="81ed-d859-4ac9-0b2b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08ca-863d-95ca-2227" type="min"/>
</constraints>
<profiles>
<profile id="63b1-db8a-a3f9-5549" name="Twin hellmaw blasters" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 2D6</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its target.</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>
<selectionEntry id="f226-f2e8-87f6-eddc" name="Soulshatter bombard" 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="a1a5-1387-0b3d-a0f5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a26-a0d6-9bea-bf80" type="min"/>
</constraints>
<profiles>
<profile id="1c0f-9ee0-af9b-0231" name="Soulshatter bombard" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">12</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">Against Vehicle, Building, and Monster units, this weapon's attacks are Damage 2D6 rather than D6.</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>
<entryLinks>
<entryLink id="f8c2-57d6-3960-0d36" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="18a1-2cbe-c823-234b" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="550.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="32.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3ffd-e386-5370-dbb4" name="Greater Blight Drone" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="8e57-4502-70fd-1d7d" name="Greater Blight Drone" 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">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">*</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">12</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="be49-27a4-091f-d85c" name="Greater Blight Drone" 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">S</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="fea8-3813-b4d4-2148" name="Greater Blight Drone1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">8-12+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">14"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">6</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="6cfa-5d2c-e4b0-1a7b" name="Greater Blight Drone2" 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">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="8b90-4b20-5d40-03fd" name="Greater Blight Drone3" 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">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
<profile id="c85b-4560-9970-84bd" name="Putrid Explosion" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If a Greater Blight Drone is reduced to 0 wounds, roll a D6 before removing the model from the battlefield, on a 4+ it explodes, and each unit withint 7" suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="57b6-2312-cad3-9f0d" name="Carrion Haunter" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the start of the first battle round but before the turn begins, you can move this unit up to 9". It cannot end this move within 9" of any enemy units. If both players have units that can do this, the player who is taking the first turn moves their units first.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f9a7-1bbb-f0c7-e0ef" name="Daemon Engine" hidden="false" targetId="3058-5172-2acd-9223" type="profile"/>
<infoLink id="aa2e-ee58-afb5-41c4" name="Infernal Regeneration" hidden="false" targetId="c4c3-dbe0-1fac-32ec" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="01fc-2a46-b80a-1881" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="e3e2-5386-eb90-c4ad" name="New CategoryLink" hidden="false" targetId="37db-2713-c0e0-df20" primary="false"/>
<categoryLink id="719b-6038-972c-08a6" name="New CategoryLink" hidden="false" targetId="1c96-d14c-b0c7-53e3" primary="false"/>
<categoryLink id="ca96-0a40-c22b-95dc" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="4133-f4ad-6bf5-ff37" name="New CategoryLink" hidden="false" targetId="5c4c-f549-6ee9-2f4b" primary="false"/>
<categoryLink id="3c95-f907-aa61-e4ae" name="New CategoryLink" hidden="false" targetId="18b2-6128-9587-345e" primary="false"/>
<categoryLink id="fd29-bdac-18ab-c420" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="c778-8241-2d6b-751d" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8039-b3cb-21df-16f7" name="Bile maw" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e7d4-7357-4d6a-a34b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="564b-10d1-030b-473b" type="min"/>
</constraints>
<profiles>
<profile id="514a-7ec6-cbd6-d5ed" name="Bile maw" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">You can re-roll any wound rolls of 1 when attacking with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="18.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="a5d5-7181-6967-d120" name="Plague probe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4b52-2153-7cb8-049b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7eb2-af18-9fcc-2e9a" type="min"/>
</constraints>
<profiles>
<profile id="f431-2d19-2885-8413" name="Plague probe" 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">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">You can re-roll wound rolls of 1 when attacking with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="25.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="b6e8-ae76-33a8-c29e" name="Blightreaper cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="346a-9b12-521f-85cb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="da65-c68e-493f-0bd5" type="min"/>
</constraints>
<profiles>
<profile id="0d7f-ab10-7c2f-d281" name="Blightreaper cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 4</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">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time you make a wound roll of 6+ for this weapon, that hit is resolved with an AP of -3 instead of -1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="18.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="ee26-ea41-cf6d-dec8" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="c97e-eb29-bf7c-27cf" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="170.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="5017-7367-84ad-4f2d" name="Blood Slaughterer of Khorne" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c4be-7208-314c-e970" name="Blood Slaughterer of Khorne" 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">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">*</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">10</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="2e36-540b-0dee-92c9" name="Blood Slaughterer of Khorne" 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">S</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="52e8-7e60-b384-2738" name="Blood Slaughterer of Khorne1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-10+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">8</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">6</characteristic>
</characteristics>
</profile>
<profile id="92a6-fdc0-ee2a-520b" name="Blood Slaughterer of Khorne2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">4-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">8"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">7</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5</characteristic>
</characteristics>
</profile>
<profile id="5b68-6de6-8ee1-6d13" name="Blood Slaughterer of Khorne3" 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">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">6</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4</characteristic>
</characteristics>
</profile>
<profile id="e764-6f86-79de-8739" name="Bloody Rampage" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the start of every Fight phase where this model is within 1" of any enemy Infantry units, it gains +2 to its current Attacks characteristic for the duration of the phase.</characteristic>
</characteristics>
</profile>
<profile id="dcc8-bbdc-671d-c036" name="Scuttling Gait" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When this model Advances, add 6" to its Move characteristic instead of rolling a dice.</characteristic>
</characteristics>
</profile>
<profile id="3a80-1036-5686-ae1a" name="Blind Fury" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model may not Fall Back if within 1" of any enemy Infantry units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4a86-ae6e-84c2-7ae3" name="Daemon Engine" hidden="false" targetId="3058-5172-2acd-9223" type="profile"/>
<infoLink id="aa18-bd57-81a0-c2db" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="588f-3102-a29c-0417" name="Infernal Regeneration" hidden="false" targetId="c4c3-dbe0-1fac-32ec" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="356c-1080-d984-32ab" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="29aa-28dc-80db-08ab" name="New CategoryLink" hidden="false" targetId="37db-2713-c0e0-df20" primary="false"/>
<categoryLink id="2a49-6810-13e2-abbb" name="New CategoryLink" hidden="false" targetId="1c96-d14c-b0c7-53e3" primary="false"/>
<categoryLink id="499e-746b-8710-7c90" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="65dd-ef63-6669-dd07" name="New CategoryLink" hidden="false" targetId="5c4c-f549-6ee9-2f4b" primary="false"/>
<categoryLink id="59a1-8f5e-399a-7a9a" name="New CategoryLink" hidden="false" targetId="fe84-0aa8-259f-b94d" primary="false"/>
<categoryLink id="aad2-6375-92a3-737e" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="26d0-a39e-91c6-2689" name="Slaughter blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0ff1-aaff-e01f-89f7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6f9a-70f8-061a-965f" type="min"/>
</constraints>
<profiles>
<profile id="d92c-1093-fba2-d869" name="Slaughter blade" 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">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">A model equipped with two slaughter blades may make 1 additional attack with the weapon each time it fights. </characteristic>
</characteristics>
</profile>
</profiles>
<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>
<selectionEntryGroups>
<selectionEntryGroup id="b77b-c03f-2eb3-604c" name="Impaler harpoon options" hidden="false" collective="false" import="true" defaultSelectionEntryId="eafc-76d1-71c0-082e">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c4b9-90f4-48ca-8178" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a946-5086-7fb4-36ff" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="1d1f-67eb-9b29-53ed" name="Slaughter blade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="eb93-5b51-07f7-c176" name="Slaughter blade" 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">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">A model equipped with two slaughter blades may make 1 additional attack with the weapon each time it fights. </characteristic>
</characteristics>
</profile>
</profiles>
<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="eafc-76d1-71c0-082e" name="Impaler harpoon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="43a0-83c7-90b8-81a0" name="Impaler harpoon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If the bearer charges a Vehicle or Monster unit it has previously successfully hit with this weapon in the Shooting phase of the same turn, add +2 to their charge rolls.</characteristic>
</characteristics>
</profile>
</profiles>
<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="499c-61e6-ac09-fbd1" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="a0d7-b474-7896-5f94" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="165.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="19d7-59fa-6050-caf8" name="Chaos Decimator" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="516c-48a1-fc12-9e76" name="Chaos Decimator" page="" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="increment" field="13fc-b29b-31f2-ab9f" value="1">
<conditions>
<condition field="selections" scope="19d7-59fa-6050-caf8" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="00b4-0252-e233-0981" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</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">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">8</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7451-a4ef-f298-2364" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="66b0-31ef-ede4-c205" name="Daemon Engine" hidden="false" targetId="3058-5172-2acd-9223" type="profile"/>
<infoLink id="c3e4-2756-4560-ec66" name="Infernal Regeneration" hidden="false" targetId="c4c3-dbe0-1fac-32ec" type="profile"/>
<infoLink id="af22-cbbb-e512-36be" name="Dark Fury" hidden="false" targetId="b1a6-697e-dc2d-e949" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="19d7-59fa-6050-caf8" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="00b4-0252-e233-0981" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="b2aa-ba7b-1955-3954" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8311-b8a7-781a-b382" name="New CategoryLink" hidden="false" targetId="37db-2713-c0e0-df20" primary="false"/>
<categoryLink id="85d3-d884-17ac-26ad" name="New CategoryLink" hidden="false" targetId="1c96-d14c-b0c7-53e3" primary="false"/>
<categoryLink id="94fb-281a-0117-9e53" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="d173-d6e0-c1cf-f899" name="New CategoryLink" hidden="false" targetId="5c4c-f549-6ee9-2f4b" primary="false"/>
<categoryLink id="e7f5-b290-2b96-4515" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1878-d8fd-c326-2133" name="Decimator Siege claw options" hidden="false" collective="false" import="true" defaultSelectionEntryId="00b4-0252-e233-0981">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0c72-9042-0919-7f82" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3dea-e917-d5be-efec" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="00b4-0252-e233-0981" name="Decimator siege claw with hellflamer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2a71-6d0e-6181-7629" type="max"/>
</constraints>
<profiles>
<profile id="8557-25a5-d0df-209b" name="Decimator siege claw" 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">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="69fe-3aec-5659-254e" name="Hellflamer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="47.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="db63-6882-5080-cfc7" name="Soulburner petard" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="944c-d9ae-f228-d4c0" type="max"/>
</constraints>
<profiles>
<profile id="6fad-67eb-c173-84f2" name="Soulburner petard" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 2D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each successful hit roll made with this weapon inflicts a mortal wound instead of the normal damage. If any hit roll made in a given phase results in a score of a '1', then the firing unit suffers 1 mortal wound. This effect can only occur once per phase regardless of how many results of 1 are rolled.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="60.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="0e5d-7d41-71d8-03c0" name="Decimator storm laser" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e193-7db7-d6a7-8c18" type="max"/>
</constraints>
<profiles>
<profile id="6d27-b306-8bfa-e03f" name="Decimator storm laser" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 5</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="25.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="822e-208a-f687-94e4" name="Butcher cannon" hidden="false" collective="false" import="true" targetId="1ff2-93b7-9431-5e97" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="66a5-b307-a87f-a7ac" type="max"/>
</constraints>
</entryLink>
<entryLink id="34b6-1c0e-0220-dc1e" name="C-beam cannon" hidden="false" collective="false" import="true" targetId="7a66-5266-7d58-8346" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="109a-b8c6-edd1-edb0" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2c0c-27be-26a3-ab22" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="49f1-24e4-0790-7d99" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="90.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="dea5-3c5a-b066-f76a" name="Kytan Ravager" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="0e3d-98e7-12b5-8c0d" name="Kytan Ravager" 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">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">*</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">22</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</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="96ad-ea48-d30a-cf9c" name="Kytan Ravager" 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">S</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="3ead-b641-a8ee-0c6d" name="Kytan Ravager1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">11-22+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">10</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5</characteristic>
</characteristics>
</profile>
<profile id="0b12-2bfd-cb8b-f2ac" name="Kytan Ravager2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">5-10</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">8</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4</characteristic>
</characteristics>
</profile>
<profile id="ed63-e5d8-e91d-b388" name="Kytan Ravager3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-4</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">8"</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="dda0-7fb2-c158-1ad6" name="Titanic Daemon Engine" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">A Kytan Ravager can shoot if there are enemy models within 1" of it, as long as all of the enemy models have the Infantry keyword. In this case, it can shoot the enemy unit that is within 1" of it or any other visible enemy unit that is within range and more than 1" away from any friendly models. In addition, the Kytan Ravager can move and fire Heavy weapons wihtout suffering the penalty to its hit rolls. Finally, the Kytan Ravager only gains a bonus to its save in cover if at least half of the model is obscured from the bearer.</characteristic>
</characteristics>
</profile>
<profile id="ea9b-8004-f3aa-2e36" name="Battle Walker" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When making advance rolls for this model, roll 2D6 to determine the maximum distance it may move.</characteristic>
</characteristics>
</profile>
<profile id="59a0-7d19-6b79-85dc" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a D6 before removing it from the battlefield; On a 6 it explodes, and each unit within 6" suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cdeb-8248-dbc8-63f4" name="Infernal Regeneration" hidden="false" targetId="c4c3-dbe0-1fac-32ec" type="profile"/>
<infoLink id="09b1-ce04-1a9c-7389" name="Daemon Engine" hidden="false" targetId="3058-5172-2acd-9223" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9c68-0fd6-cd01-007b" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="d074-da8f-89f3-bc92" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="9fb0-0ff3-a7b0-2f21" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="6518-32a6-4407-2552" name="New CategoryLink" hidden="false" targetId="37db-2713-c0e0-df20" primary="false"/>
<categoryLink id="b09d-a758-05df-bb7d" name="New CategoryLink" hidden="false" targetId="1c96-d14c-b0c7-53e3" primary="false"/>
<categoryLink id="cbf4-47c5-9aef-4954" name="New CategoryLink" hidden="false" targetId="5c4c-f549-6ee9-2f4b" primary="false"/>
<categoryLink id="4a0e-1d90-0549-f11b" name="New CategoryLink" hidden="false" targetId="fe84-0aa8-259f-b94d" primary="false"/>
<categoryLink id="b78e-0091-cb4b-16fe" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fcf3-923e-e8ab-0754" name="Kytan gatling cannon" 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="bd76-4454-6c2a-03f5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29ba-a455-5de5-705a" type="min"/>
</constraints>
<profiles>
<profile id="eff3-4fa3-041c-aa24" name="Kytan gatling cannon" 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 8</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</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="80.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="12df-935b-a3c3-0cb8" name="Great cleaver of Khorne" 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="ac4e-c29d-7c80-8d0c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="416b-e2fd-de6c-8237" type="min"/>
</constraints>
<profiles>
<profile id="1e7f-da2d-48b7-154a" name="Great cleaver of Khorne (Smash)" 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">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="d3a7-30af-900a-0af0" name="Great cleaver of Khorne (slash)" 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">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Make 3 hit rolls for each attack made with this weapon, instead of 1.</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>
<entryLinks>
<entryLink id="9728-5c96-78fb-4c3e" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="a6fb-0fbf-58f3-575d" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="330.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="25.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1ff2-93b7-9431-5e97" name="Butcher cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ee43-3e5d-0831-f58a" name="Butcher cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 4</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If a unit has any models slain by this weapon in the Shooting phase, the unit must subtract 2 from its Leadership for the rest of the turn. This modifier is not cumulative.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="25.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="7a66-5266-7d58-8346" name="C-beam cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1f3d-97fa-d4fb-53d2" name="C-beam cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">72"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon may not be fired on any turn in which the model carrying it has moved. In addition, for each 24" between the bearer and the target, increase the S by +2 and the Damage by +D3. If a model is removed from play as a casualty due to wounds caused by this weapon, then the target unit suffers 2D6 additional hits at S6, AP0, causing 1 Damage. These additional hits do not trigger further hits themselves. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="30.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="2a58-6abe-0fb2-8aa0" name="Hellflamer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6aa0-eab4-e5b0-043e" name="Hellflamer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="17.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="c593-94fc-fbf9-d0df" name="Hellforged Contemptor Dreadnought" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="a064-9557-4929-4fe4" name="Hellforged Contemptor Dreadnought" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="increment" field="13fc-b29b-31f2-ab9f" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="c593-94fc-fbf9-d0df" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7ddb-5720-22f2-7236" type="equalTo"/>
<condition field="selections" scope="c593-94fc-fbf9-d0df" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a52d-b64c-83d6-5c20" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="c593-94fc-fbf9-d0df" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7ddb-5720-22f2-7236" type="equalTo"/>
<condition field="selections" scope="c593-94fc-fbf9-d0df" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a52d-b64c-83d6-5c20" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>