forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - FW Heretic Astartes.cat
5996 lines (5992 loc) · 454 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="83" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://www.bsdata.net/contact" library="true" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="237" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<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="fe84-0aa8-259f-b94d" name="Faction: Khorne" hidden="false"/>
<categoryEntry id="18b2-6128-9587-345e" name="Faction: Nurgle" 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="Dreadclaw Drop Pod" hidden="false"/>
<categoryEntry id="8005-9fea-4a32-1869" name="Vindicator" hidden="false"/>
<categoryEntry id="4155-883c-fc90-d057" name="Decimator" hidden="false"/>
<categoryEntry id="00a7-ef06-11c8-42b1" name="Contemptor Dreadnought" hidden="false"/>
<categoryEntry id="23b1-90ca-1e8a-d29f" name="Smokescreen" hidden="false"/>
<categoryEntry id="969b-8dcd-f4ee-968f" name="Chaos Deredeo Dreadnought" hidden="false"/>
<categoryEntry id="2953-00d0-47e2-8174" name="Chaos Leviathan Dreadnought" hidden="false"/>
<categoryEntry id="ea5c-26b3-aa78-7253" name="Faction: Heretic Astartes" hidden="false"/>
<categoryEntry id="95ae-effa-c9f2-d11b" name="Faction: Traitoris Astartes" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="41e5-6a66-73db-29e5" name="Greater Brass Scorpion" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="5a2d-9fd9-d3db-5225" name="Greater Brass Scorpion 1 (15+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</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">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">28</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">6</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="dc4e-3e73-1687-873c" name="Frenzied Crawler" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time a charge roll is made for this unit, roll one additional D6 and you can ignore any or all modifiers to that charge roll.</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">Each time this model is selected as the target of a psychic power, or would suffer mortal wounds as a result of a psychic power, roll one D6; on a 4+, this model is unaffected by that psychic power.</characteristic>
</characteristics>
</profile>
<profile id="a173-6c13-a4cc-a434" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When this model is destroyed, roll one D6 before removing it from play; on a 5+ it explodes, and each unit within 2D6" suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="995a-30f5-d4e0-470e" name="Greater Brass Scorpion 2 (8-14 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">6</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="d85c-b168-54bc-06f9" name="Greater Brass Scorpion 3 (1-7 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">6</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2fe9-b20c-800f-12bf" name="Titanic" hidden="false" targetId="cb8d-e3ac-5ec9-e239" 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="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"/>
<categoryLink id="0d32-4249-0d8f-1dda" name="Faction: Heretic Astartes" hidden="false" targetId="ea5c-26b3-aa78-7253" primary="false"/>
</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 - Crush" 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="75c9-0c18-4518-d7e3" name="Hellcrusher claws - Sweep" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, make 3 hit rolls instead of 1.</characteristic>
</characteristics>
</profile>
<profile id="bef3-d1dc-779e-23c3" name="Hellcrusher claws" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">-</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Before selecting targets, select one of the profiles below to make attacks with.</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 15</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</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="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="Hellmaw flame cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81ed-d859-4ac9-0b2b" type="max"/>
<constraint field="selections" scope="parent" value="2.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="Hellmaw flame cannon" 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 D6</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, that attack 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>
</selectionEntries>
<entryLinks>
<entryLink id="1738-a58e-b2be-b336" name="Demolisher cannon" hidden="false" collective="false" import="true" targetId="1f7e-32c4-61af-510f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb40-ee9a-aa16-3ea8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bff0-2bdc-22e0-151f" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="430.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="27.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3ffd-e386-5370-dbb4" name="Greater Blight Drone" publicationId="7573-8d1b-acdf-2de8" page="120" 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">14"</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">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">9</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="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">When this model is destroyed, roll on D6 before removing it from play. On a 4+ it explodes, and each unit (excluding NURGLE units) within 6" suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="4299-d43a-3e30-418e" name="Sickly Resistance" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time this model would lose a wound, roll one D6: on a 5+, that wound is not lost.</characteristic>
</characteristics>
</profile>
</profiles>
<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="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"/>
<categoryLink id="8c99-491e-9210-cede" name="Faction: Heretic Astartes" hidden="false" targetId="ea5c-26b3-aa78-7253" 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">18"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, that attack automatically hits the target and re-roll a wound roll of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<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="a5d5-7181-6967-d120" name="Greater 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="Greater 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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, re-roll a wound roll of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<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="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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, re-roll a wound roll of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<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>
<costs>
<cost name="pts" typeId="points" value="125.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5017-7367-84ad-4f2d" name="Blood Slaughterer" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c4be-7208-314c-e970" name="Blood Slaughterer" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<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">9</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>
<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">Each time this model Advances, do not make an Advance roll. Instead, until the end of the phase, add 6" to the Move characteristic of this model.</characteristic>
</characteristics>
</profile>
<profile id="8314-68de-6bcb-ff28" name="Slaughter Blades" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is equipped with 2 slaughter blades, each time it fights, it makes one additional attack with 1 slaughter blade.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="aa18-bd57-81a0-c2db" name="Explodes (6"/D3)" hidden="false" targetId="d9ff-23ca-93b8-8a41" 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="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"/>
<categoryLink id="60fb-c15d-65be-56cb" name="Faction: Heretic Astartes" hidden="false" targetId="ea5c-26b3-aa78-7253" primary="false"/>
<categoryLink id="30fe-b475-5fed-648f" name="Faction: Traitoris Astartes" hidden="false" targetId="95ae-effa-c9f2-d11b" 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>
<infoLinks>
<infoLink id="f252-8c74-1991-0c07" name="Slaughter blade" hidden="false" targetId="7d17-66d9-dfc7-1523" type="profile"/>
</infoLinks>
<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">
<infoLinks>
<infoLink id="25c3-7f03-e2f1-f8a1" name="Slaughter blade" hidden="false" targetId="7d17-66d9-dfc7-1523" type="profile"/>
</infoLinks>
<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">18"</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">Each time a model (excluding AIRCRAFT models) loses any wounds as a result of an attack made with this weapon but is not destroyed, it is impaled until the start of your next Shooting phase. While a model is impaled, its Move characteristic is halved and each time a charge roll is made for the bearer, if that model's unit is the target of that charge, add 2 to that charge roll.</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>
<costs>
<cost name="pts" typeId="points" value="125.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="19d7-59fa-6050-caf8" name="Decimator" publicationId="7573-8d1b-acdf-2de8" page="116" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9050-debd-981a-aaea" name="Decimator 1 (7+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">9"</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">12</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>
<profile id="7da0-1058-c2c3-f328" name="Decimator 2 (4-6 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</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">N/A</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>
<profile id="dafc-5642-9a69-d7cc" name="Decimator 3 (1-3 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</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">N/A</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 (6"/D3)" hidden="false" targetId="d9ff-23ca-93b8-8a41" type="profile"/>
</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="e7f5-b290-2b96-4515" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="6742-4152-ed0e-5ce5" name="Decimator" hidden="false" targetId="4155-883c-fc90-d057" primary="false"/>
<categoryLink id="baca-3c97-a152-5efa" name="Faction: Heretic Astartes" hidden="false" targetId="ea5c-26b3-aa78-7253" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1878-d8fd-c326-2133" name="Weapon options" hidden="false" collective="false" import="true" defaultSelectionEntryId="cff9-01e6-2e22-1356">
<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 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 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">x2</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="5b56-66e3-30a7-a774" name="Decimator claws" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is equipped with 2 decimator claws, each time it fights, it makes one additional attack with 1 decimator claw.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="74c8-a148-e32a-3495" name="Hellflamer" hidden="false" targetId="b280-a863-de38-889b" type="profile"/>
</infoLinks>
<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="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">1</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 time the bearer shoots, if any unmodified hit rolls of 1 are made for attacks with this weapon, the bearer suffers 1 mortal wound after shooting with this weapon. Each time an attack is made with this weapon, an unmodified wound roll of 2+ inflicts 1 mortal wound on the target and the attack sequence ends.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="10.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="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="Storm laser" 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">Assault 6</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=" 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="9a64-5b6b-df8a-ffe0" name="Decimator conversion beamer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1785-29b7-f2cd-a8dd" type="max"/>
</constraints>
<profiles>
<profile id="ff85-7f3f-781d-c8b0" name="Decimator conversion beamer 1 - short range" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">0-24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</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">Blast</characteristic>
</characteristics>
</profile>
<profile id="5227-8ed6-3d68-662e" name="Decimator conversion beamer 2 - medium range" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24-48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
<profile id="db24-9514-1354-2271" name="Decimator conversion beamer 3 - Long range" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48-72"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</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">4</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<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="cff9-01e6-2e22-1356" name="Decimator butcher cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6418-45a8-367c-4460" name="Decimator 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">7</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=" 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>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="160.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="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 1 (14+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</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">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">26</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</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="c280-7a68-4df7-a19b" name="Kytan Ravager 2 (8-13 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">9"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</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="116d-6129-a8d3-1ab4" name="Kytan Ravager 3 (1-7 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="747a-9954-081b-ac84" name="Titanic" hidden="false" targetId="cb8d-e3ac-5ec9-e239" type="profile"/>
<infoLink id="41fb-c66a-ba65-6eae" name="Explodes (6"/D6)" hidden="false" targetId="9fe4-1feb-4484-1f5c" 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="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"/>
<categoryLink id="4c33-221c-6a96-4c4d" name="Faction: Heretic Astartes" hidden="false" targetId="ea5c-26b3-aa78-7253" primary="false"/>
<categoryLink id="e3dc-6a11-ea6e-d65c" name="Faction: Traitoris Astartes" hidden="false" targetId="95ae-effa-c9f2-d11b" primary="false"/>
</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=" 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="12df-935b-a3c3-0cb8" name="Kytan cleaver" 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="Kytan cleaver - 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="Kytan cleaver - 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">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon profile, make 3 hit rolls instead of 1.</characteristic>
</characteristics>
</profile>
<profile id="fed5-3382-a6d0-d36d" name="Kytan cleaver" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">-</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Before selecting targets, select one of the profiles below to make attacks with.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="400.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="22.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a66-5266-7d58-8346" name="Conversion beam cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1f3d-97fa-d4fb-53d2" name="Conversion beam cannon 1 - Short range" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">0-24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</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">Blast</characteristic>
</characteristics>
</profile>
<profile id="ff09-4eba-3899-a762" name="Conversion beam cannon 3 - Long range" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48-72"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</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">4</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
<profile id="c608-03c6-55b5-6d84" name="Conversion beam cannon 2 - Medium range" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24-48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<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="c593-94fc-fbf9-d0df" name="Chaos Contemptor Dreadnought" publicationId="7573-8d1b-acdf-2de8" page="117" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="2d3b-b544-ad49-fb75" value="-1.0">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c702-d73b-dccf-5617" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="125d-2ddf-f062-cc97" name="Chaos Contemptor Dreadnought" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</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">9</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="3b90-a9c6-cb7d-c885" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When this model is destroyed, roll one D6 before removing it from play. On a 6 it explodes, and each unit within 3" suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="5df5-fcd4-ce97-13b4" name="Relentless Hatred" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time an attack is allocated to this model, subtract 1 from the Damage characteristic of that attack (to a minmum of 1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e93b-0254-4394-1e02" name="Martial Legacy" hidden="false" targetId="012f-5a3e-be7c-2f5a" type="rule"/>
<infoLink id="8391-c97d-faec-5332" name="Hellforged Atomantic Shielding" hidden="false" targetId="743a-fcb6-68b1-dcfc" type="profile">
<modifiers>
<modifier type="set" field="name" value="Atomantic Shielding"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="93a3-da4c-a800-454c" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="8ffd-daa0-e707-5686" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="5f63-16f0-e403-ab84" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="a791-633a-b4dc-a20d" name="New CategoryLink" hidden="false" targetId="2be6-f5e4-9b7a-c2f7" primary="false"/>
<categoryLink id="d4a9-ecae-7078-43b1" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
<categoryLink id="950c-cd5c-0498-9aa3" name="Relic" hidden="false" targetId="e10e-b44e-7eda-41d8" primary="false"/>
<categoryLink id="ba0a-d651-d75f-2a33" name="Contemptor Dreadnought" hidden="false" targetId="00a7-ef06-11c8-42b1" primary="false"/>
<categoryLink id="08eb-b7e5-e2a5-b0f3" name="Faction: Heretic Astartes" hidden="false" targetId="ea5c-26b3-aa78-7253" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b061-fdcf-5cb5-04db" name="Hellforged cyclone missile launcher" 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="cfd6-f071-d169-e5d8" type="max"/>
</constraints>
<profiles>
<profile id="e361-e7b6-6a5d-09da" name="Hellforged cyclone missile launcher - frag missile" 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 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</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">Blast</characteristic>
</characteristics>
</profile>
<profile id="4dc3-d7a9-7a08-1ac3" name="Hellforged cyclone missile launcher" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">-</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Before selecting targets, select one of the profiles below to make attacks with.</characteristic>
</characteristics>
</profile>
<profile id="f397-e2ad-6488-bf46" name="Hellforged cyclone missile launcher - krak missile" 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 2</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">D6</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>
<selectionEntryGroups>
<selectionEntryGroup id="8527-7d76-2e8c-326f" name="Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="0323-0df9-015b-69c1">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fbc0-a11b-1042-8a29" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f7de-0fae-ea08-eba7" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="ad2c-93db-8de7-ff35" name="Hellforged Dreadnought chainfist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbc1-3658-a7f3-a939" type="max"/>
</constraints>
<profiles>
<profile id="4d8a-10f1-b72a-6392" name="Hellforged Dreadnought chainfist" 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">2D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack made with this weapon is allocated to a VEHICLE model, that attack has a Damage characteristic of 6.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="073c-796a-3be8-b3c7" name="Hellforged Dreadnought combat weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e12-1761-822e-f0f1" type="max"/>
</constraints>
<profiles>
<profile id="c68e-2ccf-cf91-f33a" name="Hellforged Dreadnought combat weapon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<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="0323-0df9-015b-69c1" name="Hellforged heavy plasma cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a785-0b1b-7c8c-a3ab" type="max"/>
</constraints>
<profiles>
<profile id="b91e-7811-c96d-3fd7" name="Hellforged heavy plasma cannon - Standard" 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 D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
<profile id="32f2-108e-cce7-84ff" name="Hellforged heavy plasma cannon - Supercharge" 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 D3</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">Blast. Each time an unmodified hit roll of 1 is made for an attack with this weapon profile, the bearer suffers 1 mortal wound after shooting with this weapon.</characteristic>