-
Notifications
You must be signed in to change notification settings - Fork 20
/
Battlefleet_Gothic.gst
3135 lines (3114 loc) · 240 KB
/
Battlefleet_Gothic.gst
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"?>
<gameSystem id="de5d6c5f-ae7b-4dd1-841e-5f1193fb5176" name="Battlefleet Gothic" revision="46" battleScribeVersion="2.03" authorName="BSData" authorContact="@BSData @Mont_Fox dndtonight.com" authorUrl="https://github.com/BSData/battlefleetgothic#battlefleet-gothic" xmlns="http://www.battlescribe.net/schema/gameSystemSchema">
<readme>Join us on the battlefleet gothic reddit to discuss more gothic.
Bug report : https://tinyurl.com/gothicbug</readme>
<publications>
<publication id="5766-7751-d146-0800" name="2010 Compendium"/>
<publication id="31db-354b-7439-4995" name="Battlefleet Gothic Magazine 14"/>
<publication id="11f0-17d1-e4d2-1018" name="BFG Rulebook"/>
<publication id="1bc8-5968-21c3-0f27" name="BFG Rulebook - Armada"/>
<publication id="b161-6b4c-e770-9ab2" name="BFG Rulebook - Armada + 2010 FAQ"/>
<publication id="9670-79b6-b335-ed60" name="Additional Ships Compendium 1.4 (fan compiled)">
<comment>it is preferred to cite the origional source, but to maintain links this will be left here. </comment>
</publication>
<publication id="c8aa-777a-ddc3-1c0a" name="Fanatic Magazine Issue 42"/>
<publication id="b6b0-a261-40b3-6563" name="Fanatic Magazine issue 60"/>
<publication id="c725-9c27-cf26-b44b" name="Fanatic Magazine Issue 62"/>
<publication id="d256-2988-72a8-df2f" name="Fanatic Magazine Issue 96 - Book of Nemesis"/>
<publication id="137d-dbad-5653-19f2" name="Unofficial"/>
<publication id="0bc0-eb58-eacf-d1b0" name="1 Note">
<comment>Note: The main sources for gothic are to be, BFG Rulebook, BFG Rulebook - Armada, and the 2010 compendium.
The additional ships compendium cites it's sources so site those instead of the additioanl ships document. </comment>
</publication>
</publications>
<costTypes>
<costType id="points" name="pts" defaultCostLimit="0.0" hidden="false"/>
</costTypes>
<profileTypes>
<profileType id="556e697423232344415441232323" name="Unit">
<characteristicTypes>
<characteristicType id="5479706523232344415441232323" name="Type"/>
<characteristicType id="4869747323232344415441232323" name="Hits"/>
<characteristicType id="537065656423232344415441232323" name="Speed"/>
<characteristicType id="5475726e7323232344415441232323" name="Turns"/>
<characteristicType id="536869656c647323232344415441232323" name="Shields"/>
<characteristicType id="41726d6f757223232344415441232323" name="Armour"/>
<characteristicType id="5475727265747323232344415441232323" name="Turrets"/>
</characteristicTypes>
</profileType>
<profileType id="436f6d6d616e64657223232344415441232323" name="Commander">
<characteristicTypes>
<characteristicType id="4c65616465727368697023232344415441232323" name="Leadership"/>
<characteristicType id="52652d726f6c6c7323232344415441232323" name="Re-rolls"/>
<characteristicType id="50672e23232344415441232323" name="Pg."/>
</characteristicTypes>
</profileType>
<profileType id="5570677261646523232344415441232323" name="Upgrade">
<characteristicTypes>
<characteristicType id="4465736372697074696f6e23232344415441232323" name="Description"/>
<characteristicType id="50672e23232344415441232323" name="Pg."/>
</characteristicTypes>
</profileType>
<profileType id="41726d616d656e7423232344415441232323" name="Armament">
<characteristicTypes>
<characteristicType id="52616e67652f537065656423232344415441232323" name="Range/Speed"/>
<characteristicType id="46697265706f7765722f53747223232344415441232323" name="Firepower/Str"/>
<characteristicType id="466972652041726323232344415441232323" name="Fire Arc"/>
</characteristicTypes>
</profileType>
<profileType id="5a49-6569-78e9-a35c" name="Special Rule">
<characteristicTypes>
<characteristicType id="fe13-6bab-c5cb-4f1d" name="Effects"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="466c65657420436f6d6d616e6465727323232344415441232323" name="Fleet Commander" publicationId="b161-6b4c-e770-9ab2" hidden="false"/>
<categoryEntry id="4361706974616c20536869707323232344415441232323" name="Battleship" publicationId="b161-6b4c-e770-9ab2" hidden="false">
<infoLinks>
<infoLink id="4060-83a5-ec70-4915" name="DAMAGE" hidden="false" targetId="b75c-180f-abe0-73bd" type="profile"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="4573636f72747323232344415441232323" name="Escort" publicationId="b161-6b4c-e770-9ab2" hidden="false"/>
<categoryEntry id="5370656369616c23232344415441232323" name="Special" publicationId="b161-6b4c-e770-9ab2" hidden="false">
<infoLinks>
<infoLink id="8694-169f-3fb8-a107" name="*DAMAGE" hidden="false" targetId="b75c-180f-abe0-73bd" type="profile"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="1042-e458-4e02-a537" name="Cruiser" publicationId="b161-6b4c-e770-9ab2" hidden="false">
<comment>cruisers are cruisers and CV's to differentiate them from battle cruisers which are both cruisers and battlecruisers. They can't count for themselves</comment>
<infoLinks>
<infoLink id="f19d-82a9-3db2-d412" name="DAMAGE" hidden="false" targetId="b75c-180f-abe0-73bd" type="profile"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="46e2-c9eb-27e7-172a" name="Grand Cruiser" publicationId="b161-6b4c-e770-9ab2" hidden="false">
<comment>Grand Cruisers are not cruisers. They do not count towards battleship or other grand cruiser purchases</comment>
<infoLinks>
<infoLink id="2b7e-fc5f-8d53-158f" name="DAMAGE" hidden="false" targetId="b75c-180f-abe0-73bd" type="profile"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="cf79-82ee-ebe9-7ea3" name="Heavy Cruiser" publicationId="b161-6b4c-e770-9ab2" hidden="false">
<comment>Heavy Cruisers which are both cruisers and battlecruisers, but they can't count for themselves</comment>
<infoLinks>
<infoLink id="5557-a0ad-2d97-bf30" name="*DAMAGE" hidden="false" targetId="b75c-180f-abe0-73bd" type="profile"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="e70d-1bf2-7ea2-276a" name="Ordnance" publicationId="b161-6b4c-e770-9ab2" hidden="false"/>
<categoryEntry id="90ac-0bee-0c90-be27" name="Orbital Defence" publicationId="11f0-17d1-e4d2-1018" page="141" hidden="false"/>
<categoryEntry id="9624-17a2-bfd7-6420" name="Reserves" hidden="false">
<comment>It looks like to reserves to work conditions will need to be made for ships to change from crusier to reserves when they are available as reserves in order for them to validate meeting the reserves requirement. </comment>
</categoryEntry>
<categoryEntry id="e0c6-bde4-7055-1e6e" name="CV" hidden="false">
<comment>This is for force validataion on the imperium and chaos lists. to handle heavy and battle cruisers</comment>
</categoryEntry>
<categoryEntry id="b041-ef69-0039-d535" name="Battlecruiser" hidden="false">
<comment>Battle cruisers which are both cruisers and battlecruisers, but they can't count for themselves</comment>
<infoLinks>
<infoLink id="44cc-a911-6cff-b47a" name="*DAMAGE" hidden="false" targetId="b75c-180f-abe0-73bd" type="profile"/>
</infoLinks>
</categoryEntry>
</categoryEntries>
<forceEntries>
<forceEntry id="7529-da04-0225-31de" name="Unbound" publicationId="137d-dbad-5653-19f2" hidden="false">
<categoryLinks>
<categoryLink id="9185-a0b3-9892-66a6" name="Battlecruisers & Heavy Cruisers" hidden="false" targetId="cf79-82ee-ebe9-7ea3" primary="false"/>
<categoryLink id="a7b3-1f91-5493-87fb" name="Battleships" hidden="false" targetId="4361706974616c20536869707323232344415441232323" primary="false"/>
<categoryLink id="44c6-d41b-951d-0c4f" name="Cruisers" hidden="false" targetId="1042-e458-4e02-a537" primary="false"/>
<categoryLink id="d5ed-0533-70c2-ded8" name="Escorts" hidden="false" targetId="4573636f72747323232344415441232323" primary="false"/>
<categoryLink id="9352-717b-c2ad-3d4c" name="Fleet Commanders" hidden="false" targetId="466c65657420436f6d6d616e6465727323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e01-efba-bdb9-308b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4d0e-8025-f85c-3889" name="Grand Cruisers" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="false"/>
<categoryLink id="359d-1511-f4cf-ed70" name="Orbital Defences" hidden="false" targetId="90ac-0bee-0c90-be27" primary="false"/>
<categoryLink id="3198-7071-7959-abde" name="Ordnance" hidden="false" targetId="e70d-1bf2-7ea2-276a" primary="false"/>
<categoryLink id="2d62-743c-2f16-fcef" name="Special" hidden="false" targetId="5370656369616c23232344415441232323" primary="false"/>
<categoryLink id="1cf0-db9c-15dc-cef6" name="Reserves" hidden="false" targetId="9624-17a2-bfd7-6420" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="9371-fa4d-d130-e0bd" name="1 Note" hidden="true" collective="false" import="false" type="upgrade">
<comment>Nothing goes here or it will be shared across every fleet list.
</comment>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntries>
<selectionEntry id="3114-6f37-55fa-024d" name="Acheron Class Heavy Cruiser" publicationId="11f0-17d1-e4d2-1018" page="122" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdc1-e60c-6456-c57a" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="3165-ed3d-0db4-ef6b" name="Acheron Profile" publicationId="11f0-17d1-e4d2-1018" page="122" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">8</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="e724-82c9-1f89-1e3a" name="Acheron Port Lance" page="" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="bacb-705e-a0da-b4d3" name="Acheron Starboard Lance Battery" page="" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="5d6e-44f3-22f1-b638" name="Acheron Dorsal Lance Battery" page="" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="b336-34e3-908b-65be" name="Acheron Prow Weapons Battery" page="" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9397-6b1a-5630-44e0" name="New CategoryLink" hidden="false" targetId="cf79-82ee-ebe9-7ea3" primary="true"/>
<categoryLink id="4fb3-9902-6241-b795" name="Cruisers" hidden="false" targetId="1042-e458-4e02-a537" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e43c-7aae-c3b5-353b" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7ecf-1d59-fc1a-10ff" name="Desolator Class Battleship" publicationId="11f0-17d1-e4d2-1018" page="118" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdc1-e60c-6456-c57a" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="1899-7881-3f57-9944" name="Desolator Profile" publicationId="11f0-17d1-e4d2-1018" page="118" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Battleship</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">12</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">4</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">4</characteristic>
</characteristics>
</profile>
<profile id="5ea2-e35f-8501-b585" name="Desolator Port Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="33a5-aa67-fe07-74d1" name="Desolator Starboard Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="851d-423b-2b1e-3dcf" name="Desolator Dorsal Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="ba98-4683-ddd7-7ee5" name="Desolator Prow Torpedos" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">9</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Front</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6f6a-fab9-e900-1aa9" name="Torpedoes" hidden="false" targetId="8103-25d2-5412-2542" type="rule"/>
<infoLink id="4c71-8052-7203-e213" name="May not use the "come to new heading" special order" hidden="false" targetId="b1a1-aead-ea5a-d8d3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f9cb-16c6-9867-9ff6" hidden="false" targetId="4361706974616c20536869707323232344415441232323" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a7fe-9e4e-0e85-47cb" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="300.0"/>
</costs>
</selectionEntry>
<selectionEntry id="48f8-b2a8-d4ce-4888" name="Despoiler Class Battleship" publicationId="11f0-17d1-e4d2-1018" page="117" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdc1-e60c-6456-c57a" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="ef77-d947-5997-b255" name="Despoiler Profile" publicationId="11f0-17d1-e4d2-1018" page="117" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Battleship</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">12</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">4</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">4</characteristic>
</characteristics>
</profile>
<profile id="0179-f42e-a45f-a74b" name="Despoiler Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="e85a-3bac-57f4-298c" name="Despoiler Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="5b9b-4ad8-4c3f-812e" name="Despoiler Dorsal Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">3</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f9dc-8b89-9538-ecea" name="May not use the "come to new heading" special order" hidden="false" targetId="b1a1-aead-ea5a-d8d3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ad8c-6f4d-6292-9456" hidden="false" targetId="4361706974616c20536869707323232344415441232323" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7792-659f-3e38-a269" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400.0"/>
</costs>
</selectionEntry>
<selectionEntry id="05d4-f556-2999-f12d" name="Executor Class Grand Cruiser" publicationId="1bc8-5968-21c3-0f27" page="39" hidden="true" collective="false" import="true" type="model">
<profiles>
<profile id="16ab-2405-afa7-a25c" name="Executor Profile" publicationId="1bc8-5968-21c3-0f27" page="39" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Grand Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">10</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">3</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="d590-1ee2-03d4-90d7" name="Executor 1st Port Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="18bc-eaaa-3f08-ba65" name="Executor 2nd Port Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="b31d-fb7a-7e26-f352" name="Executor 1st Starboard Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="0fe4-71bc-ff3e-ea64" name="Executor 2st Starboard Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="65c9-599e-f524-3be8" name="New CategoryLink" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a804-3f90-68ef-1b56" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="210.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5ab1-9f2a-0485-39db" name="Hades Class Heavy Cruiser" publicationId="11f0-17d1-e4d2-1018" page="121" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdc1-e60c-6456-c57a" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="1538-6bb3-a468-160e" name="Hades Profile" publicationId="11f0-17d1-e4d2-1018" page="121" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">8</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">2</characteristic>
</characteristics>
</profile>
<profile id="d0f1-78ac-a098-e5c0" name="Hades Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">10</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="7a51-e36e-a63f-6e60" name="Hades Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">10</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="1248-58c8-689c-dd07" name="Hades Dorsal Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="aefd-f0ff-68b8-99ed" name="Hades Prow Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Front</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="48dd-7ecc-c76a-064b" name="New CategoryLink" hidden="false" targetId="cf79-82ee-ebe9-7ea3" primary="true"/>
<categoryLink id="e91c-f824-75f6-51c9" name="Cruisers" hidden="false" targetId="1042-e458-4e02-a537" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="1d19-7130-7fe9-fe5f" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="200.0"/>
</costs>
</selectionEntry>
<selectionEntry id="236b-8abc-b681-f47b" name="Repulsive Class Grand Cruiser" publicationId="11f0-17d1-e4d2-1018" page="119" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdc1-e60c-6456-c57a" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="e47f-3f54-c8fd-d5b0" name="Repulsive Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">14</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="153d-5c85-501f-e981" name="Repulsive Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">14</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="2297-8149-b9aa-98a1" name="Repulsive Prow Torpedos" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Front</characteristic>
</characteristics>
</profile>
<profile id="9e4e-137a-115b-6b4d" name="Repulsive Profile" publicationId="11f0-17d1-e4d2-1018" page="119" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<modifiers>
<modifier type="increment" field="536869656c647323232344415441232323" value="1">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a2bd-54c3-8943-f44a" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">10</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">14</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="a6cc-d212-f021-ad48" name="Chaos Space Marines Boarding Torpedos" hidden="false">
<description>Chaos Space Marine vessels may fire boarding torpedos instead of ordinary torpedos, as detailed in the Ordnance rules in Battlefleet Gothic. Remember that as these are Space Marines, they will have a +1 bonus to their hit and run attacks if they hit an enemy ship. There are no specific rules for drop pods - they have been taken into account with the Space Marines' special rules for planetary assaults.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="a6fe-869f-0508-3139" name="Torpedoes" hidden="false" targetId="8103-25d2-5412-2542" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d97c-ef88-673d-deca" name="New CategoryLink" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a2bd-54c3-8943-f44a" name="Extra Shield" publicationId="5766-7751-d146-0800" page="23" hidden="false" collective="false" import="true" targetId="6e59-320c-8ea6-e4e6" type="selectionEntry">
<profiles>
<profile id="ad17-31c9-3e7b-de02" name="Extra Shield" hidden="false" typeId="5a49-6569-78e9-a35c" typeName="Special Rule">
<characteristics>
<characteristic name="Effects" typeId="fe13-6bab-c5cb-4f1d">The Chaos Repulsive Grand Cruiser can be modelled on a large base. If so mounted, it may have a third shield for +15pts. It must be modelled on a large base to have this this refit available for the cost indicated. This is not a normal refit and can be used in one-off games or in addition to any other refits earned normally in the course of a campaign.</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="63e1-46b9-fdee-5acc" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="230.0"/>
</costs>
</selectionEntry>
<selectionEntry id="74b8-8c23-fc12-b300" name="Retaliator Class Grand Cruiser" publicationId="b161-6b4c-e770-9ab2" page="38" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdc1-e60c-6456-c57a" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c364-5cd8-c328-8b65" name="Retaliator Profile" publicationId="1bc8-5968-21c3-0f27" page="38" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Grand cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">10</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">3</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="a44d-ee96-932d-059b" name="Retaliator Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="b5b8-9e2a-1fcf-d9d0" name="Retaliator Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="ca6d-1a49-b61e-1b48" name="RetaliatorPort Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="cb65-f49b-7a94-41cb" name="RetaliatorStarboard Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ee7f-83a4-2ca8-47c9" name="New CategoryLink" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2076-d894-063c-60ff" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="260.0"/>
</costs>
</selectionEntry>
<selectionEntry id="da54-1698-df9e-8979" name="Styx Class Heavy Cruiser" publicationId="11f0-17d1-e4d2-1018" page="120" hidden="true" collective="false" import="true" type="model">
<comment>points updated in 2010 FAQ</comment>
<profiles>
<profile id="504d-e1fd-de85-2bf6" name="Styx Profile" publicationId="11f0-17d1-e4d2-1018" page="120" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">8</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="8b8f-39a8-e03a-4e6c" name="Styx Dorsal Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="5704-818e-369f-aa56" name="Styx Prow Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="afcf-bb23-afc3-2612" name="Styx Port Launch Bays" hidden="true" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Swiftdeaths: 30cm Doomfires: 20cm Dreadclaws: 30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">3 Squadrons</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">-</characteristic>
</characteristics>
</profile>
<profile id="0102-3c82-76c6-0bf2" name="Styx Starboard Launch Bays" hidden="true" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Swiftdeaths: 30cm Doomfires: 20cm Dreadclaws: 30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">3 Squadrons</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">-</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5844-c1a8-3898-4b8c" name="New CategoryLink" hidden="false" targetId="cf79-82ee-ebe9-7ea3" primary="true"/>
<categoryLink id="26ea-22e5-3d20-4b18" name="Cruisers" hidden="false" targetId="1042-e458-4e02-a537" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="febc-273d-6411-9805" name="Chaos Capital Ship Options" hidden="true" collective="false" import="true" targetId="01b5-5904-9e02-fb87" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="244d-fb58-2747-cdfb" name="Chaos Ordnance" hidden="true" collective="false" import="true" targetId="2d3e-6486-b943-7e81" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2d2b-abee-2a05-8e25" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="260.0"/>
</costs>
</selectionEntry>
<selectionEntry id="58eb-48b5-7e42-8bc7" name="Vengeance Class Grand Cruiser" publicationId="1bc8-5968-21c3-0f27" page="14" hidden="true" collective="false" import="true" type="model">
<profiles>
<profile id="41ef-f4f6-9d66-f030" name="Vengance Profile" publicationId="1bc8-5968-21c3-0f27" page="14" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Grand Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">10</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">3</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="faa9-034a-3195-5568" name="Vengance Port Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="8fa1-ee01-2d93-0f51" name="Vengance Starboard Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="e7be-ee0c-6187-7d28" name="Vengance Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">10</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="85ae-9e73-5225-d4e9" name="Vengance Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">10</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="1aea-34da-27a6-5c56" name="Armored Prow" hidden="false" typeId="5a49-6569-78e9-a35c" typeName="Special Rule">
<characteristics>
<characteristic name="Effects" typeId="fe13-6bab-c5cb-4f1d">All Chaos Vengeance grand cruiser variants listed in Armada on pp.38-39 completely ignore prow critical damage, regardless of the cause. If any critical damage rolled against the table results in a Prow Armament Damaged critical hit, it is assumed the critical damage did not take place, and it does not move up to the next higher critical damage. If the critical damage is caused by the ship taking a hit, the hit itself still counts normally.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a799-fab9-46ca-2e50" name="New CategoryLink" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c4da-cdf2-005b-ac1f" name="Chaos Capital Ship Options" hidden="true" collective="false" import="true" targetId="01b5-5904-9e02-fb87" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8da8-abd4-86d3-774d" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="230.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e59-320c-8ea6-e4e6" name="Extra Shield" publicationId="5766-7751-d146-0800" 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="6a3e-9e2f-c58b-adc4" type="max"/>
</constraints>
<profiles>
<profile id="1e74-0233-0038-5dc0" name="Advanced Shielding" hidden="false" typeId="5a49-6569-78e9-a35c" typeName="Special Rule">
<characteristics>
<characteristic name="Effects" typeId="fe13-6bab-c5cb-4f1d">Extra shield</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3dc9-0fe5-4b33-660e" name="Extra Turret" 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="3ea7-0a25-646f-24cc" type="max"/>
</constraints>
<profiles>
<profile id="f9d8-0d80-cb14-1d71" name="Advanced Target Control" hidden="false" typeId="5a49-6569-78e9-a35c" typeName="Special Rule">
<characteristics>
<characteristic name="Effects" typeId="fe13-6bab-c5cb-4f1d">Extra Turret</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="88e3-93c2-4982-0cb1" name="Space Marine Battle Barge" publicationId="1bc8-5968-21c3-0f27" page="22" hidden="true" collective="false" import="true" type="model">
<profiles>
<profile id="07c4-1d13-8ba0-c2c5" name="Battle Barge Profile" publicationId="1bc8-5968-21c3-0f27" page="22" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Battleship</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">12</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">3</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="87d8-20c9-22dd-3286" name="Battle Barge Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">8</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="e8be-0d75-7d6f-f4dc" name="Battle Barge Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">60cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">8</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="9e12-2e39-421c-8b2b" name="Battle Barge Prow Torpedos" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Speed: 30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Front</characteristic>
</characteristics>
</profile>
<profile id="d6e3-3068-7abe-b956" name="Battle Barge Dorsal Bombardment Cannon" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">8</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5b09-17f7-9908-81be" name="May not use the "come to new heading" special order" hidden="false" targetId="b1a1-aead-ea5a-d8d3" type="rule"/>
<infoLink id="54fb-360c-b126-af8d" name="Torpedoes" hidden="false" targetId="8103-25d2-5412-2542" type="rule"/>
<infoLink id="ee84-443b-35d6-c0eb" name="Bombardment Cannon" hidden="false" targetId="698d-cccb-0d27-f1b1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fbd4-82ba-dbc7-4f8f" name="New CategoryLink" hidden="false" targetId="4361706974616c20536869707323232344415441232323" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="5bdb-4008-3b07-7ab1" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="425.0"/>
</costs>
</selectionEntry>
<selectionEntry id="15d2-1699-80d3-3c45" name="Space Marine Strike Cruiser" publicationId="1bc8-5968-21c3-0f27" page="23" hidden="true" collective="false" import="true" type="model">
<profiles>
<profile id="ec97-0741-cd8d-4569" name="Strike Cruiser Profile" publicationId="1bc8-5968-21c3-0f27" page="23" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">6</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">2</characteristic>
</characteristics>
</profile>
<profile id="4f8b-ee5a-b8c9-f0c8" name="Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="6f2c-6057-8d74-86aa" name="Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="dfc8-3c5b-e341-05e9" name="Prow Bombardment Cannon" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">3</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="50a9-1cde-0c71-0f8c" name="Prow Launch Bays" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Thunderhawks: 20cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2 Squadrons</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9241-5fd5-1262-d2e7" name="Bombardment Cannon" hidden="false" targetId="698d-cccb-0d27-f1b1" type="profile"/>
<infoLink id="e5ba-3e5f-bac5-d6ef" name="Bombardment Cannon" hidden="false" targetId="698d-cccb-0d27-f1b1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5c7a-de91-5184-e2ed" name="New CategoryLink" hidden="false" targetId="1042-e458-4e02-a537" primary="true"/>
<categoryLink id="1ea5-1274-4adb-522d" name="CV" hidden="false" targetId="e0c6-bde4-7055-1e6e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="01ce-35ca-d5a1-bd67" name="Chaos Capital Ship Options" hidden="true" collective="false" import="true" targetId="01b5-5904-9e02-fb87" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="cc4e-e3bb-828b-070a" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="145.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5da5-68f9-862c-7a0b" name="Furious Class Grand Cruiser" publicationId="9670-79b6-b335-ed60" page="15" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af48-9fe4-e367-95e4" type="max"/>
</constraints>
<profiles>
<profile id="8ccb-8120-cc84-5629" name="Furious Profile" publicationId="9670-79b6-b335-ed60" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Grand Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">10</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+ Front/ 5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">3</characteristic>
</characteristics>
</profile>
<profile id="6940-4890-8afd-a0ba" name="Furious Port Weapons battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">12</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left</characteristic>
</characteristics>
</profile>
<profile id="6727-871c-cd63-cc8e" name="Furious Dorsal Lance Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="5570-ec7e-02fb-7da9" name="Furious Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">12</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Right</characteristic>
</characteristics>
</profile>
<profile id="b7d1-b91e-ce37-4c71" name="Furious Prow Torpedos" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="466972652041726323232344415441232323">Front</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a0ea-3af7-cf21-21cc" name="Torpedoes" hidden="false" targetId="8103-25d2-5412-2542" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8648-42b9-1dee-c7c6" name="New CategoryLink" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="9276-da26-aada-d2f9" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="265.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5818-1ad2-67a6-ede8" name="Space Marine Crew" 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="539c-ee6a-940d-4db2" type="max"/>
</constraints>
<profiles>
<profile id="48eb-45b2-f1e7-5954" name="Space Marine Crew" hidden="false" typeId="5a49-6569-78e9-a35c" typeName="Special Rule">
<characteristics>
<characteristic name="Effects" typeId="fe13-6bab-c5cb-4f1d">BOARDING ACTIONS AND HIT & RUN ATTACKS
Space Marine ships add +2 to their D6 roll when they fight in a boarding action and +1 when they make any hit and run attack.
Enemy hit and run attacks against a Space Marine ship deduct 1 from their dice rolls (and so will fail on a roll of 1 or 2 before modification).
BOARDING TORPEDOES
Space Marine vessels may fire boarding torpedoes instead of ordinary torpedoes, as detailed in the Ordnance rules in Battlefleet Gothic. Remember that as these are Space Marines, they will have a +1 bonus to their hit and run attacks if they hit an enemy ship.
PLANETARY ASSAULTS AND EXTERMINATUS
In a Planetary Assault scenario, Space Marine strike cruisers and battle barges earn 2 Assault points for every turn they spend landing troops or bombarding the planet, rather than 1 point as is normal. In an Exterminatus scenario, a battle barge can be used as an Exterminator, unchanged from the following data sheet (battle barges are equipped with virus bombs and cyclotronic warheads as standard). In addition, once a battle barge is in position to exterminate the planet, you need to roll a 3+ to do so rather than a 4+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="75d0-9ec2-c137-894e" name="Long Serpent Battle Cruiser" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set-primary" field="category" value="9624-17a2-bfd7-6420">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="824f9aff-29ca-4220-81ce-60725a6011c5" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="9c93-66a3-68bb-7905" name="Long Serpent Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5479706523232344415441232323">Battle Cruiser</characteristic>
<characteristic name="Hits" typeId="4869747323232344415441232323">8</characteristic>
<characteristic name="Speed" typeId="537065656423232344415441232323">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+Front/5+</characteristic>
<characteristic name="Turrets" typeId="5475727265747323232344415441232323">2</characteristic>
</characteristics>
</profile>
<profile id="649a-204f-03e8-6472" name="1st Port Weapons Batteries" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">