forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Dark Mechanicum.cat
1801 lines (1801 loc) · 140 KB
/
Chaos - Dark Mechanicum.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="39fd-b7cd-5074-6d2e" name="Chaos - Dark Mechanicus" revision="7" 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">
<categoryEntries>
<categoryEntry id="2663-fe63-14ce-fd31" name="Questor Traitoris" hidden="false"/>
<categoryEntry id="9961-3cf9-80ea-065c" name="Dark Mechanicus" hidden="false"/>
<categoryEntry id="6436-2254-f4e4-af66" name="Warpsmith" hidden="false"/>
<categoryEntry id="6247-e1f1-8420-fc5b" name="Khorne" hidden="false"/>
<categoryEntry id="079d-5749-8b4c-ef4c" name="Slaanesh" hidden="false"/>
<categoryEntry id="3343-7d37-ef4f-235a" name="Tzeentch" hidden="false"/>
<categoryEntry id="c4a4-a17d-75c7-de2d" name="Nurgle" hidden="false"/>
<categoryEntry id="77dd-b608-84a5-808e" name="Heretic Astartes" hidden="false"/>
<categoryEntry id="947f-d198-99ba-ff22" name="Chaos Hellwright" hidden="false"/>
<categoryEntry id="8c92-7a8c-bbda-611f" name="Chaos Hellwright on Dark Abeyant" hidden="false"/>
<categoryEntry id="f67c-8c7e-b35e-931c" name="Renegade Knight Acheron" hidden="false"/>
<categoryEntry id="e2c5-87ee-d0ae-d00e" name="Renegade Knight Lancer" hidden="false"/>
<categoryEntry id="1fcb-dbcf-18a3-d7bb" name="Renegade Knight Atropos" hidden="false"/>
<categoryEntry id="ea87-9a79-c2ae-2dd1" name="Renegade Knight Castigator" hidden="false"/>
<categoryEntry id="c5be-f081-841b-c50f" name="Renegade Knight Magaera" hidden="false"/>
<categoryEntry id="38cb-2f1a-c00f-6af0" name="Renegade Knight Porphyrion" hidden="false"/>
<categoryEntry id="8692-ce0c-76f8-8da8" name="Renegade Knight Styrix" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="6985-1c48-b12c-209d" name="Chaos Hellwright" hidden="false" collective="false" import="true" targetId="36ad-176f-7ef4-9f8f" type="selectionEntry"/>
<entryLink id="72c6-93ac-3ac9-5667" name="Chaos Hellwright on Dark Abeyant" hidden="false" collective="false" import="true" targetId="3d00-1696-b415-eee3" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="be75-0c89-4566-f22a" name="Renegade Knight" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="28fd-7571-81ad-03df" name="Renegade Knight" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="d7e2-b757-94ae-49a1" name="Renegade Knight" 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">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">BS</characteristic>
</characteristics>
</profile>
<profile id="861a-ceb2-8279-b8be" name="Renegade Knight1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">13-24+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
<profile id="b475-c0ab-411b-0655" name="Renegade Knight2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-12</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">9"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="6392-0404-5e0a-0e3e" name="Renegade Knight3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f213-a502-6d11-afc7" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="5dda-a56a-ce32-4d3c" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="88b2-9504-7f14-1dab" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="ba9d-10c5-877d-2b6e" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="aa75-97be-386f-4bc4" name="New CategoryLink" hidden="false" targetId="2663-fe63-14ce-fd31" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d4a9-890c-3d3e-9ac5" name="Titanic feet" 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="b4bd-3f0b-2682-f959" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aaa2-3901-fea9-290f" type="min"/>
</constraints>
<profiles>
<profile id="debb-7bcd-4200-9ada" name="Titanic feet" 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=" 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="36b3-9e5d-5509-bac4" name="Heavy stubber or meltagun" hidden="false" collective="false" import="true" defaultSelectionEntryId="6fa5-e017-c96d-b420">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ca2-547e-b5f2-4efa" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a388-2772-7449-a88b" type="min"/>
</constraints>
<entryLinks>
<entryLink id="6fa5-e017-c96d-b420" name="New EntryLink" hidden="false" collective="false" import="true" targetId="cfa3-5fcd-af10-5520" type="selectionEntry"/>
<entryLink id="531f-eb92-c8f2-04df" name="New EntryLink" hidden="false" collective="false" import="true" targetId="efc8-c51d-5b02-a3a2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8fc9-5af1-185d-72f4" name="Reaper chainsword and options" hidden="false" collective="false" import="true" defaultSelectionEntryId="aa38-24e2-4d60-852f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0ac8-7c7c-03c5-c54c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e502-13c5-daf5-3bcd" type="min"/>
</constraints>
<entryLinks>
<entryLink id="aa38-24e2-4d60-852f" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a37d-3bc1-1d6b-1706" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ab51-d6bf-7483-4c32" type="max"/>
</constraints>
</entryLink>
<entryLink id="fad4-4af1-83f6-a1ad" name="New EntryLink" hidden="false" collective="false" import="true" targetId="ce64-02dc-c18f-3412" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="47bc-bd5f-3aab-a31f" name="Thunderstrike gauntlet and options" hidden="false" collective="false" import="true" defaultSelectionEntryId="4108-8697-786a-31f9">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d9a3-fb32-077e-24b8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0ee1-d313-a206-2fd5" type="min"/>
</constraints>
<entryLinks>
<entryLink id="4108-8697-786a-31f9" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5854-21d1-1a2d-d4fc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="138a-9c5a-1e20-e9f7" type="max"/>
</constraints>
</entryLink>
<entryLink id="f42a-963e-a452-9f23" name="New EntryLink" hidden="false" collective="false" import="true" targetId="ce64-02dc-c18f-3412" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4f51-ad0c-eb00-41fd" name="Carapace Weapons" hidden="false" collective="false" import="true" targetId="64b8-a52e-15a1-962a" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="25.0"/>
<cost name="pts" typeId="points" value="285.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a37d-3bc1-1d6b-1706" name="Reaper chainsword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bd32-967d-638b-3549" name="Reaper chainsword" 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">-3</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=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="30.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5854-21d1-1a2d-d4fc" name="Thunderstrike gauntlet" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0a38-245c-c75c-c1a8" name="Thunderstrike gauntlet" 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">Subtract 1 from hit rolls for attacks made with this weapon. If you slay a vehicle or Monster with a thunderstrike gauntlet, select an enemy unit within 9" and roll a D6: on a 4+ that unit suffers D3 mortal wounds as the dead body or debris is thrown at it.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="35.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a305-be8c-917a-7884" name="Hekaton siege claw" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ecb7-cf5e-bcc2-701e" name="Hekaton 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">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">Subtract 1 from hit rolls for attacks made with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="fa99-9a7f-018e-4ac4" name="Twin rad cleanser" hidden="false" collective="false" import="true" targetId="674b-2a99-0d7b-534e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1358-f57a-2caf-b0a2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7624-044d-4f23-7cbd" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="30.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e322-2ffa-27e7-c6d4" name="Tempest warblade" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b2a2-a7a4-7d1f-27d3" name="Tempest warblade" 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">+6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">5</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">If any result of a 6 is rolled on any wound roll with this weapon against a MONSTER or VEHICLE, then an additional D3 mortal wounds are also inflicted on the enemy unit.</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="4e07-76d8-c5b1-aa70" name="Reaper chainfist" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7896-1bfd-eb9e-301d" name="Reaper 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">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When attacking with this weapon, subtract 1 from the hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="812d-3e05-8f38-1dc0" name="Twin heavy bolter" hidden="false" collective="false" import="true" targetId="09d8-7790-ed3f-4d6d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6403-f220-b72a-636c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bca2-1797-28cd-327d" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="15ec-607f-8a15-9453" name="Cerastus shock lance" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="299a-f591-9e32-85bd" name="Cerastus shock lance" 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">+6</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">You may re-roll failed hit rolls with this weapon if the Renegade Knight Lancer has successfully charged in your Charge phase.</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="1e9f-db20-fcef-d938" name="Hellburner chieorovile" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="661e-1fb2-e696-bdbc" name="Hellburner chieorovile" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">45"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 5</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">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time you make a wound roll of 6+ for this weapon, the weapon scores an additional automatic hit at the weapon's normal profile which is resolved after the initial attacks for the weapon ont he same unit. These additional hits do not themselves generate more additional hits.</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="6405-dd3b-a0d0-333e" name="Graviton crusher" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ab7d-1bdd-ab28-7718" name="Graviton crusher" 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">heavy D3</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">If the target unit's armour save is 3+ or better, the damage of this weapon's attacks increases to 3.</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="674b-2a99-0d7b-534e" name="Twin rad cleanser" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a654-25fb-511f-7b93" name="Twin rad cleanser" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">9"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">*</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon hits automatically, and it always wounds on a 3+, except against Titanic and Vehicle units against which it always wounds on a 6+.</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="c5e3-0e2b-e707-4697" name="Twin magna lascannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4afe-d6ec-310c-dc18" name="Twin magma lascannon" 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 2D3</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">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon may not be used to make Overwatch attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="100.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="5427-4147-1a10-4d30" name="Ironstorm missile pod" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b20c-63a3-1a32-4103" name="Ironstorm Missile Pod" 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 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 can target units that are not visible to the bearer.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="16.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="e4d2-f467-8838-89eb" name="Helios defence missiles" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="24db-ac7c-bcd4-0273" name="Helios defence missiles" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">60"</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">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Add 1 to all hit rolls made against targets that can Fly. Subtract 1 from all hit rolls against all other targets.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="45.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="71d1-47ba-a904-6baa" name="Lightning cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="18af-330a-77bd-bf9e" name="Lightning 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 6</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">D3</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 and Damage 3 instead of D3.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="70.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="3db7-9e03-af78-f5fe" name="Ectoplasma fusil" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4a01-aec8-dc59-131e" name="Ectoplasma fusil" 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">Rapid Fire 2</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">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="20.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="de4c-2e69-bae5-256f" name="Atropos lascutter" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0c77-e02f-891d-57b4" name="Atropos lascutter (shooting)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">9"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">12</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">If an attack with this weapon slays an enemy VEHICLE or MONSTER unit in the Shooting phase, you may immediately make another attack against a separate target unit within range. This bonus attack does not generate further attacks.</characteristic>
</characteristics>
</profile>
<profile id="e032-33b8-e670-2e04" name="Atropos lascutter (melee)" 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">14</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">You may re-roll failed hit and wound rolls for this weapon against targets with the MONSTER, BUILDING, or VEHICLE keyword.</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="7bd6-8dbc-f30d-962c" name="Graviton singularity cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3291-9f5f-c3ac-6e6e" name="Graviton singularity 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">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Roll a D6 each time before this weapon is fired. On a roll of 1, the bearer suffers a mortal wound and the weapon fires normally (if the bearer survives this). On a roll of 2-5, the attack is carried out normally using its listed profile. On a roll of 6, the weapon's attacks are instead carried out at Strength 16, AP-4, Damage 6 instead of its normal profile.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="70.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="0868-897b-b283-300f" name="Castigator bolt cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7f35-cb9c-2d84-cd05" name="Castigator bolt 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 14</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="50.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="bf62-0525-c30f-35b7" name="Shock blast" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="60a6-04fc-48e4-ea65" name="Shock blast" 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">Heavy 6</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">D3</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="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2bdf-19d0-4cf9-4ee1" name="Acheron flame cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="fb2a-a723-616c-8820" name="Archeron flame cannon" 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">Heavy 2D6</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">This weapon automatically hits its target.</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="92d3-1e38-f536-520c" name="Renegade Knight Acheron" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9270-13a0-6663-7145" name="Renegade Knight Acheron" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">27</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="2d41-7ac5-009a-dbd9" name="Renegade Knight Acheron" 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">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">BS</characteristic>
</characteristics>
</profile>
<profile id="b9c9-cfb2-fbe1-20ef" name="Renegade Knight Acheron 2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-14</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="5023-e3d8-eb2d-8819" name="Renegade Knight Acheron 3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5+</characteristic>
</characteristics>
</profile>
<profile id="23d7-4fb0-3a56-f2a7" name="Renegade Knight Acheron 1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">15-27+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">14"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7c54-00bb-aefc-f1b1" name="Infernal Autosimulacra" hidden="false" targetId="aacf-4749-0487-6949" type="profile"/>
<infoLink id="a304-723e-813c-f44c" name="Infernal Knight Titan" hidden="false" targetId="90be-819c-d4e7-d65a" type="profile"/>
<infoLink id="e1e6-cd1f-5b05-df31" name="Ion shield" hidden="false" targetId="977d-25bc-3918-a164" type="profile"/>
<infoLink id="9b72-09d7-a74b-e608" name="Flank Speed" hidden="false" targetId="515b-18d5-06ec-62d7" type="profile"/>
<infoLink id="a826-e627-34a0-dcad" name="Explodes (Knight)" hidden="false" targetId="46a6-02b3-66cb-71f7" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b679-b01b-4866-4631" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="b762-a376-0ecc-1dcc" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="74d8-be80-018a-b862" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="d28f-da88-7087-0ac3" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="c996-c5f4-9e0e-76b8" name="New CategoryLink" hidden="false" targetId="9961-3cf9-80ea-065c" primary="false"/>
<categoryLink id="7b1f-860f-efb8-dfdf" name="New CategoryLink" hidden="false" targetId="f67c-8c7e-b35e-931c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f2be-55c2-b365-6a30" name="Acheron flame cannon" hidden="false" collective="false" import="true" targetId="2bdf-19d0-4cf9-4ee1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ac0-60f1-719d-8561" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0fae-7d5b-26b7-5274" type="min"/>
</constraints>
</entryLink>
<entryLink id="8d67-a47e-4117-dc28" name="Reaper chainfist" hidden="false" collective="false" import="true" targetId="4e07-76d8-c5b1-aa70" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49da-8169-96eb-b7cb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68e6-d1d0-1ed4-5e73" type="min"/>
</constraints>
</entryLink>
<entryLink id="4551-1af4-d6b4-a343" name="Titanic feet" hidden="false" collective="false" import="true" targetId="3542-3016-1558-ae32" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="25.0"/>
<cost name="pts" typeId="points" value="358.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="acfc-87f8-2dac-8c5d" name="Renegade Knight Lancer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="27e1-82ef-7fb4-2cdd" name="Renegade Knight Lancer" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">27</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="fcdf-6498-2523-a5bf" name="Renegade Knight Lancer" 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">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">BS</characteristic>
</characteristics>
</profile>
<profile id="dd87-82e9-8f9b-e4c7" name="Renegade Knight Lancer1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">15-27+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">14"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
<profile id="9919-9700-23d3-1c4a" name="Renegade Knight Lancer2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-14</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="e14e-d319-1f3d-56dd" name="Renegade Knight Lancer3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8056-0133-d7ac-1166" name="Infernal Autosimulacra" hidden="false" targetId="aacf-4749-0487-6949" type="profile"/>
<infoLink id="7684-4b7b-6ac4-7185" name="Infernal Knight Titan" hidden="false" targetId="90be-819c-d4e7-d65a" type="profile"/>
<infoLink id="d0fc-50e5-aed6-844b" name="Ion Gauntlet Shield" hidden="false" targetId="6b5e-cf62-c355-ce4f" type="profile"/>
<infoLink id="2461-6ff3-7e58-bf30" name="Flank Speed" hidden="false" targetId="515b-18d5-06ec-62d7" type="profile"/>
<infoLink id="da97-6ecf-0c7c-0e4b" name="Explodes (Knight)" hidden="false" targetId="46a6-02b3-66cb-71f7" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8055-ee21-fe26-5c19" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="1f0b-6283-78e6-01b0" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="b1b5-1ae7-890c-6673" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="d2de-cbce-0dd1-4962" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="d826-5a7f-dbc9-674b" name="New CategoryLink" hidden="false" targetId="9961-3cf9-80ea-065c" primary="false"/>
<categoryLink id="4c5a-c44c-d95a-4a28" name="New CategoryLink" hidden="false" targetId="e2c5-87ee-d0ae-d00e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e87f-309c-4eec-1a38" name="Cerastus shock lance" hidden="false" collective="false" import="true" targetId="15ec-607f-8a15-9453" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f27-8e3c-867a-f449" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f7ff-ed26-8217-fa76" type="min"/>
</constraints>
</entryLink>
<entryLink id="2cf5-5ce1-1c17-e4e9" name="Shock blast" hidden="false" collective="false" import="true" targetId="bf62-0525-c30f-35b7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf60-80f1-769a-d398" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e42-904b-848e-9ed0" type="min"/>
</constraints>
</entryLink>
<entryLink id="6764-23bc-a26d-1d18" name="Titanic feet" hidden="false" collective="false" import="true" targetId="3542-3016-1558-ae32" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="24.0"/>
<cost name="pts" typeId="points" value="360.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7298-33a5-8120-0221" name="Renegade Knight Castigator" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="cdd6-f2f9-614d-b7cd" name="Renegade Knight Castigator" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">27</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="4f1e-f47d-f202-56a1" name="Renegade Knight Castigator" 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">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">BS</characteristic>
</characteristics>
</profile>
<profile id="b7f0-d5d6-ac3b-34ac" name="Renegade Knight Castigator1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">15-27+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">14"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
<profile id="f924-71d0-6c83-de2f" name="Renegade Knight Castigator2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-14</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="0f57-3e53-9636-c0d3" name="Renegade Knight Castigator3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="35ae-cf6f-5967-d04f" name="Infernal Autosimulacra" hidden="false" targetId="aacf-4749-0487-6949" type="profile"/>
<infoLink id="2a58-89a4-419c-0135" name="Infernal Knight Titan" hidden="false" targetId="90be-819c-d4e7-d65a" type="profile"/>
<infoLink id="46cf-0106-c1ad-235f" name="Ion shield" hidden="false" targetId="977d-25bc-3918-a164" type="profile"/>
<infoLink id="7f42-40f1-8fc3-17c6" name="Flank Speed" hidden="false" targetId="515b-18d5-06ec-62d7" type="profile"/>
<infoLink id="d333-935c-5c55-7d05" name="Explodes (Knight)" hidden="false" targetId="46a6-02b3-66cb-71f7" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c6a9-1e94-7e13-22c0" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="1ba2-7a6d-1528-0377" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="7d8d-0c0a-842c-6c53" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="bdbc-7b6f-e525-b392" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="a6b1-18b4-c260-093a" name="New CategoryLink" hidden="false" targetId="9961-3cf9-80ea-065c" primary="false"/>
<categoryLink id="55f0-c34c-3485-5945" name="New CategoryLink" hidden="false" targetId="ea87-9a79-c2ae-2dd1" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="df2a-3f9d-a7d0-7a56" name="Castigator bolt cannon" hidden="false" collective="false" import="true" targetId="0868-897b-b283-300f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bbdd-813f-94cd-7d24" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="66ab-dedf-2f5d-e01e" type="min"/>
</constraints>
</entryLink>
<entryLink id="def6-e709-44a5-5eb1" name="Tempest warblade" hidden="false" collective="false" import="true" targetId="e322-2ffa-27e7-c6d4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="165e-6f7a-e529-fcad" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e2e-eb90-80d6-a49e" type="min"/>
</constraints>
</entryLink>
<entryLink id="bcda-44e4-e58f-0d9d" name="Titanic feet" hidden="false" collective="false" import="true" targetId="3542-3016-1558-ae32" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="25.0"/>
<cost name="pts" typeId="points" value="350.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cfa7-5682-a816-71aa" name="Renegade Knight Atropos" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c50a-fc9d-9879-c0a2" name="Renegade Knight Atropos" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">27</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="7389-fea4-189f-38ec" name="Renegade Knight Atropos" 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">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">BS</characteristic>
</characteristics>
</profile>
<profile id="52b7-0424-5a55-f9f2" name="Renegade Knight Atropos1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">15-27+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">14"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
<profile id="cab5-5b2f-95d9-93e8" name="Renegade Knight Atropos2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-14</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="2d86-c544-0ff7-84e0" name="Renegade Knight Atropos3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5+</characteristic>
</characteristics>
</profile>
<profile id="897a-a07e-5d7d-530d" name="Macro-extinction Protocols" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You may add 1 to your hit rolls with this model when making Shooting attacks against targets with the Titanic keyword.</characteristic>
</characteristics>
</profile>
<profile id="eb37-50c5-8eb8-9e0c" name="Ancient Evil" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">All enemy units subtract 1 from their Leadership characteristic when within 6" of a Renegade Knight Atropos.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0320-65f1-aaca-6211" name="Infernal Autosimulacra" hidden="false" targetId="aacf-4749-0487-6949" type="profile"/>
<infoLink id="4439-aa00-f055-8be8" name="Infernal Knight Titan" hidden="false" targetId="90be-819c-d4e7-d65a" type="profile"/>
<infoLink id="ad45-09e5-dbbb-56f4" name="Flank Speed" hidden="false" targetId="515b-18d5-06ec-62d7" type="profile"/>
<infoLink id="f16f-4781-d636-5b84" name="Infernal Veil" hidden="false" targetId="6992-df69-b9bb-ea8d" type="profile"/>
<infoLink id="9a62-e0be-10b4-0c86" name="Explodes (Unstable Reactor)" hidden="false" targetId="500f-6dae-cf8c-81af" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="482b-ddae-783f-87f5" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="40f8-3540-55aa-c92a" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="a0c4-07ee-9da5-8626" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="dd89-d843-fe7d-546d" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="d5b1-eb12-94ec-efd8" name="New CategoryLink" hidden="false" targetId="9961-3cf9-80ea-065c" primary="false"/>
<categoryLink id="07f8-fe73-e30a-5ceb" name="New CategoryLink" hidden="false" targetId="1fcb-dbcf-18a3-d7bb" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8ca0-c68d-3ab4-d233" name="Atropos lascutter" hidden="false" collective="false" import="true" targetId="de4c-2e69-bae5-256f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e7e2-310e-7594-78d1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63a8-d1d0-2a6c-132f" type="min"/>
</constraints>
</entryLink>
<entryLink id="4e01-0063-ccb9-b7c3" name="Graviton singularity cannon" hidden="false" collective="false" import="true" targetId="7bd6-8dbc-f30d-962c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a89-e53e-6450-31f3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bcd2-f910-68bd-a724" type="min"/>
</constraints>
</entryLink>
<entryLink id="3ea7-0bf0-d413-648d" name="Titanic feet" hidden="false" collective="false" import="true" targetId="3542-3016-1558-ae32" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="29.0"/>
<cost name="pts" typeId="points" value="405.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f140-7a44-d508-5b7e" name="Renegade Knight Magaera" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="7bad-2419-6200-c83f" name="Renegade Knight Magaera" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="f194-6516-7f69-25f1" name="Renegade Knight Magaera" 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">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">BS</characteristic>
</characteristics>
</profile>
<profile id="9062-2679-2c52-7f42" name="Renegade Knight Magaera1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">13-24+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
<profile id="c805-92f6-0acc-b2f5" name="Renegade Knight Magaera2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-12</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">9"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="3893-d068-d371-ef16" name="Renegade Knight Magaera3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="899e-107e-e577-fb1a" name="Infernal Autosimulacra" hidden="false" targetId="aacf-4749-0487-6949" type="profile"/>
<infoLink id="1e8e-d016-3e8b-d625" name="Infernal Knight Titan" hidden="false" targetId="90be-819c-d4e7-d65a" type="profile"/>
<infoLink id="12e4-2ec1-eb4b-e8f3" name="Infernal Veil" hidden="false" targetId="6992-df69-b9bb-ea8d" type="profile"/>
<infoLink id="ec6f-506b-cd33-18ea" name="Empyreal Preysight" hidden="false" targetId="9159-5022-cf53-6052" type="profile"/>
<infoLink id="9014-472d-4538-40dc" name="Explodes (Unstable Reactor)" hidden="false" targetId="500f-6dae-cf8c-81af" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5b59-eb3b-a743-974a" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="bc2f-d220-8a12-8fa8" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="2859-9bde-d0c2-16eb" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="4fc5-a984-1b95-06cc" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="c652-3c42-51d1-1e82" name="New CategoryLink" hidden="false" targetId="9961-3cf9-80ea-065c" primary="false"/>
<categoryLink id="c66e-4cf6-4928-7a59" name="New CategoryLink" hidden="false" targetId="c5be-f081-841b-c50f" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8526-2e62-c2a3-cc7f" name="Reaper chainsword or hekaton siege claw" hidden="false" collective="false" import="true" defaultSelectionEntryId="3474-754a-9cea-e7b1">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b418-a266-fa16-557f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b293-4bff-db14-b988" type="min"/>
</constraints>
<entryLinks>
<entryLink id="3474-754a-9cea-e7b1" name="Reaper chainsword" hidden="false" collective="false" import="true" targetId="a37d-3bc1-1d6b-1706" type="selectionEntry"/>
<entryLink id="3402-59ea-06ce-5f9a" name="Hekaton siege claw" hidden="false" collective="false" import="true" targetId="a305-be8c-917a-7884" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="14a7-82dc-7a8b-2cbe" name="Lightning cannon" hidden="false" collective="false" import="true" targetId="71d1-47ba-a904-6baa" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8bb8-3494-8bd6-c330" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c36-38d4-e096-92f5" type="min"/>
</constraints>
</entryLink>
<entryLink id="c842-3dd7-a179-5f3d" name="Ectoplasma fusil" hidden="false" collective="false" import="true" targetId="3db7-9e03-af78-f5fe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="472f-e085-fd3a-e643" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7402-1b1a-c16b-365a" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="28.0"/>
<cost name="pts" typeId="points" value="380.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f958-1af0-8344-b277" name="Renegade Knight Porphyrion" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="a29b-a093-b017-26d5" name="Renegade Knight Porphyrion" 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">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">9</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">30</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="ecfe-3970-5945-9c9f" name="Renegade Knight Porphyrion" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>