-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathInquisition.cat
More file actions
1074 lines (1064 loc) · 80.4 KB
/
Inquisition.cat
File metadata and controls
1074 lines (1064 loc) · 80.4 KB
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="0594-e1e9-64d5-a683" name="Inquisition" revision="5" battleScribeVersion="2.03" authorName="Tomakokamikaze" authorContact="@Tomakokamikaze @Mont_Fox Dndtonight.com" authorUrl="http://battlescribedata.appspot.com/#/repo/battlefleetgothic" library="false" gameSystemId="de5d6c5f-ae7b-4dd1-841e-5f1193fb5176" gameSystemRevision="44" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<publications>
<publication id="ffc39854--pubN65585" name="BFG Ships of Mars"/>
</publications>
<forceEntries>
<forceEntry id="278c-51b5-3260-c524" name="Emperor's Inquisition Fleet List" publicationId="5766-7751-d146-0800" page="51" hidden="false">
<categoryLinks>
<categoryLink id="e9c1-ace5-a67e-c269" name="Fleet Commander" hidden="false" targetId="466c65657420436f6d6d616e6465727323232344415441232323" primary="false"/>
<categoryLink id="3768-a666-1871-3637" name="Battleship" hidden="false" targetId="4361706974616c20536869707323232344415441232323" primary="false"/>
<categoryLink id="2d5c-77f4-14d4-ddb4" name="Escort" hidden="false" targetId="4573636f72747323232344415441232323" primary="false"/>
<categoryLink id="02f9-9d96-53c3-eab9" name="Special" hidden="false" targetId="5370656369616c23232344415441232323" primary="false"/>
<categoryLink id="c0c7-db0f-338b-c684" name="Cruiser" hidden="false" targetId="1042-e458-4e02-a537" primary="false"/>
<categoryLink id="e607-8393-2a80-9b20" name="Grand Cruiser" hidden="false" targetId="46e2-c9eb-27e7-172a" primary="false"/>
<categoryLink id="800b-b475-1169-20be" name="Heavy Cruiser" hidden="false" targetId="cf79-82ee-ebe9-7ea3" primary="false"/>
<categoryLink id="1c52-52f6-31ff-428b" name="Orbital Defence" hidden="false" targetId="90ac-0bee-0c90-be27" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="516b0b06-c831-4e9f-96b8-7930234c85a1" name="Escort Squadron" page="0" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="516b0b06-c831-4e9f-96b8-7930234c85a1-4573636f72747323232344415441232323" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="18b9ea8c-d239-470d-a091-bd4d39c3ce74" name="+1 Turret" page="0" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="points" value="5">
<repeats>
<repeat field="selections" scope="516b0b06-c831-4e9f-96b8-7930234c85a1" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="de8c-89b1-c27e-4227" name="Escorts" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c25-ef5f-0953-1ffc" type="max"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dffa-64d0-c17e-a8d9" type="min"/>
</constraints>
<rules>
<rule id="e967-488e-cced-6628" name="Escorts" publicationId="5766-7751-d146-0800" page="51" hidden="false">
<description>Imperial, Space Marine or Adeptus Mechanicus fleet lists, as appropriate, in any mix desired following the normal rules and restrictions for those fleet lists. For example, if an Inquisitor and his cruiser are leading an Imperial Navy fleet, only Imperial Navy escorts may be taken</description>
</rule>
</rules>
<entryLinks>
<entryLink id="776b-412f-475a-4f51" name="Cobra Destroyer" hidden="false" collective="false" import="true" targetId="042b-3669-8215-bf20" type="selectionEntry"/>
<entryLink id="a9f5-389e-4d31-9f8b" name="Falchion Frigate" hidden="false" collective="false" import="true" targetId="7095-447c-65a6-0032" type="selectionEntry"/>
<entryLink id="9385-6bd5-635f-ab61" name="Firestorm Frigate" hidden="false" collective="false" import="true" targetId="29f2-2dc1-eff2-3101" type="selectionEntry"/>
<entryLink id="2906-6cb8-0451-28f5" name="Gladius Frigate" hidden="false" collective="false" import="true" targetId="7fba-98fc-ee7f-8daf" type="selectionEntry"/>
<entryLink id="f423-be07-ffd0-27f4" name="Hunter Destroyer" hidden="false" collective="false" import="true" targetId="8632-2465-51e5-b7af" type="selectionEntry"/>
<entryLink id="8c9e-7d51-e9b2-f09e" name="Nova Frigate" hidden="false" collective="false" import="true" targetId="fea6-6864-64f7-bd50" type="selectionEntry"/>
<entryLink id="8a24-e6eb-d6e7-1b19" name="Sword Frigate" hidden="false" collective="false" import="true" targetId="1f7c-8c41-a7e8-40ad" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e7a0-1572-d74b-4bc0" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e8cf-e35d-7c01-a3e3" name="Grey Knights Battlebarge" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7ef0-4ea9-c5be-a5b7" type="max"/>
</constraints>
<profiles>
<profile id="8fe3-6dad-dad6-eceb" name="Grey Knights Battlebarge Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Battleship</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">12</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">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="5.475727265747323e+33">3</characteristic>
</characteristics>
</profile>
<profile id="b6c6-69b1-7713-182f" name="Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">12</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left</characteristic>
</characteristics>
</profile>
<profile id="2f72-ab05-9460-80e9" name="Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">45 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">12</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Right</characteristic>
</characteristics>
</profile>
<profile id="1171-8251-655a-f200" name="Prow Launch Bays" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Thunderhawk: 20cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">3 Squadrons</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">-</characteristic>
</characteristics>
</profile>
<profile id="b3eb-409d-e37a-7e23" name="Prow Torpedoes" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
<profile id="6a5a-29d8-b98d-e25b" name="Dorsal Bombardment Cannon" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">8</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="06b1-12b6-75ae-cc54" name="May not use the "come to new heading" special order" hidden="false"/>
<rule id="86ed-eea5-3d9e-0900" name="Grey Knights Battlebarge" hidden="false">
<description>Grey Knights vessels do not have access to Thunderhawk Annihilators, even when used with a Space Marine Crusade fleet list. Grey Knights are fearsome warriors even among other Space Marines; they may re-roll any boarding action result (the second roll stands).</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="ec0e-ea42-092b-07ac" hidden="false" targetId="4361706974616c20536869707323232344415441232323" primary="true" name="Battleship"/>
</categoryLinks>
<entryLinks>
<entryLink id="fd7a-329c-a6dc-1e7b" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="440"/>
</costs>
</selectionEntry>
<selectionEntry id="3528-d35b-78b5-69ee" name="Grey Knights Strike Cruiser" publicationId="5766-7751-d146-0800" page="50" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="bd16-9280-9f5b-7867" value="1">
<repeats>
<repeat field="points" scope="force" value="500" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" repeats="1" roundUp="false"/>
</repeats>
<conditions>
<condition field="points" scope="force" value="499" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd16-9280-9f5b-7867" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbcd-0d20-778c-193c" type="min"/>
</constraints>
<profiles>
<profile id="650a-e634-f415-889c" name="Grey Knights Strike Cruiser Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Cruiser</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">6</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">2</characteristic>
</characteristics>
</profile>
<profile id="8691-4615-39c0-beeb" name="Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left</characteristic>
</characteristics>
</profile>
<profile id="5801-4443-d080-cb10" name="Starboard Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Right</characteristic>
</characteristics>
</profile>
<profile id="4108-cce5-6a34-0307" name="Prow Bombardment cannon" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">3</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/front/right</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="677b-bb2f-5f39-a2e5" name="Grey Knights Strike Cruiser" hidden="false">
<description>Grey Knights strike cruisers roll +5D6 when on All Ahead Full special orders. Grey Knights vessels do not have access to Thunderhawk Annihilators, even when used with a Space Marine Crusade fleet list. Grey Knights are fearsome warriors even among other Space Marines; they may re-roll any boarding action result (the second roll stands).</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="9f7a-b5c3-3c1e-2897" name="Cruiser" hidden="false" targetId="1042-e458-4e02-a537" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1d71-7dfa-8b84-1caf" name="Prow Armament Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ca2c-d9ce-894a-b2f7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b1b7-50cf-d9d6-a986" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4dd3-8918-9ec1-bc4f" name="Launch Bay" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5d4a-794d-aef7-f3f8" type="max"/>
</constraints>
<profiles>
<profile id="7165-b083-3a20-b706" name="Launch Bay" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Thunderhawk: 20cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2 Squadrons</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2bf6-f97f-8feb-4057" name="Torpedoes" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b9fe-65a5-05b0-707b" type="max"/>
</constraints>
<profiles>
<profile id="8b1a-6b00-9414-0ffc" name="Torpedoes" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">6</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a308-60a5-d2cf-f25f" name="Bombardment Cannon" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="52c1-c311-4738-dbe1" type="max"/>
</constraints>
<profiles>
<profile id="3859-57fc-629f-29d8" name="Bombardment Cannon" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30 cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">5</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2335-68b6-0c6b-00ea" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="165"/>
</costs>
</selectionEntry>
<selectionEntry id="49ef-6bd9-2c1b-8e54" name="Inquisition Blackship" publicationId="5766-7751-d146-0800" page="48" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e844-a440-d59d-4c72" type="max"/>
</constraints>
<profiles>
<profile id="a14a-ac58-b4ab-d2d3" name="Blackship Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Battleship</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">12</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">20cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">5</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+Prow/ 5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">5</characteristic>
</characteristics>
</profile>
<profile id="7a6c-311d-0bd7-29c7" name="Blackship Dorsal Lance Batteries" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="6175-4db3-70de-6a63" name="Blackship Port Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">10</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left</characteristic>
</characteristics>
</profile>
<profile id="f802-11cc-5150-1ed9" name="Blackship Starboard Weappons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">10</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Right</characteristic>
</characteristics>
</profile>
<profile id="54cf-c9df-69cb-71d9" name="Blackship 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="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="4d55-709b-a70d-5de8" name="Inquisition Blackship" hidden="false">
<description>They will never attempt to board an enemy vessel, but their embarked Adepta Sororitas Mission and platoons of Inquisitorial Storm Troopers adds +2 to their roll when defending against a boarding action. Hit and run attacks of any type suffer a -1 modifier. Even when used in fleets with Space Marines, they are not crewed by Space Marines and do not get additional Space Marine benefits.</description>
</rule>
<rule id="8668-14e3-1a93-eef3" name="May not use the "come to new heading" special order" hidden="false"/>
<rule id="928f-9e7a-8db1-6b87" name="Gellar Field" hidden="false">
<description>The ship is sheathed in an especially powerful Gellar Field to shield the presence of its cargo of untrained psykers from the ravages of the warp. If the ship takes a Shields Collapsed critical hit, roll a D6. On a 4+, the Gellar Field is also damaged and must be repaired before the ship departs the table or disengages, or the ship counts as being destroyed! The Gellar Field is repaired normally as would be any other repairable critical damage, though this does not repair the Shields Collapsed critical.</description>
</rule>
<rule id="0a5d-3f2b-3d2d-0839" name="Special Objective" hidden="false">
<description>hese vessels are especially rare and fulfill one of the most important missions in all the Imperium. They are as carefully protected by Imperial forces as they are prized by the Emperor’s enemies, and it is not uncommon that they in and of themselves will be the object of a battle. This vessel counts as 500 victory points if destroyed. However, it provides the owning player +3 Renown if it survives the battle (+2 Renown if crippled).</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="f4c5-388a-bb80-ff9e" hidden="false" targetId="5370656369616c23232344415441232323" primary="true" name="Special"/>
</categoryLinks>
<entryLinks>
<entryLink id="06a7-8d96-4007-1a32" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="300"/>
</costs>
</selectionEntry>
<selectionEntry id="65ed-c4a4-ad28-0300" name="Inquisitor Lord" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="383b-4b16-597d-9ee8" type="max"/>
</constraints>
<profiles>
<profile id="e788-fd8f-00ea-601b" name="Inquisitor Lord" publicationId="5766-7751-d146-0800" hidden="false" typeId="436f6d6d616e64657223232344415441232323" typeName="Commander">
<characteristics>
<characteristic name="Leadership" typeId="4c65616465727368697023232344415441232323">Ldr 9</characteristic>
<characteristic name="Re-rolls" typeId="52652d726f6c6c7323232344415441232323">An Inquisitor Lord gets one re-roll, which may be
used for any ship in the fleet.</characteristic>
<characteristic name="Pg." typeId="50672e23232344415441232323">51</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="97fa-599c-f6ed-8213" hidden="false" targetId="466c65657420436f6d6d616e6465727323232344415441232323" primary="true" name="Fleet Commander"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="93b0-684d-4457-688f" name="Additional Re-Roll" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="74cb-6ba2-c620-86be" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="25"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a3c2-d283-bce3-ac5c" name="Ordo" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c235-59db-4a25-6564" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5399-3b2f-dc4c-4115" name="Ordo Xenos" page="0" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="438e-9d8e-d3eb-35ca" name="Select Refit" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3e67-e0de-d03a-1dfd" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="af10-b8db-6474-46b5" name="Ordo Hereticus" page="0" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="points" value="25"/>
</costs>
</selectionEntry>
<selectionEntry id="3b82-07d8-5b8c-6da2" name="Ordo Malleus" page="0" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="5884-c6d4-9fcf-c39b" name="Grey Knights Terminator Boarding Party" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7d10-e236-586f-2b59" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="50"/>
</costs>
</selectionEntry>
<selectionEntry id="375d-f578-9c79-0a7b" name="Grey Knights Honour Guard" page="0" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="points" value="10"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="25"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="75"/>
</costs>
</selectionEntry>
<selectionEntry id="d0a9-0752-5347-271a" name="Inquisitorial Cruiser" publicationId="5766-7751-d146-0800" page="50" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="271a-1a44-ad48-493d" type="max"/>
</constraints>
<profiles>
<profile id="7771-379b-0861-8836" name="Inquisitorial Cruiser Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Cruiser</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">8</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">45°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">2</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">6+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">2</characteristic>
</characteristics>
</profile>
<profile id="9216-fc53-7f4c-b226" name="Inquisitorial Cruiser 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="4.669726520417263e+35">Left</characteristic>
</characteristics>
</profile>
<profile id="4870-8139-e1ef-4a79" name="Inquisitorial Cruiser 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="4.669726520417263e+35">Right</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="6c2e-8182-abe7-6d7e" name="Inquisitorial Cruiser" hidden="false">
<description>In addition to the profile listed above, Inquisitorial cruisers follow special rules specific to the Ordo they serve under.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="4045-55ff-0571-6436" name="Cruiser" hidden="false" targetId="1042-e458-4e02-a537" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1fc9-e4c8-8862-2d68" name="Prow Weapons Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd74-48ef-00f3-9436" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cf6-267c-9265-a9cb" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="49f3-0b80-f993-3522" name="Prow Launch Bay" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1eeb-fcf9-ad9d-a6bd" type="max"/>
</constraints>
<profiles>
<profile id="da07-630f-14ff-fe57" name="Prow Launch Bay" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">Thunderhawks: 20cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">-</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="3dae-0d3d-2c63-b089" name="Prow Launch Bay" hidden="false">
<description>Inquisitorial cruisers do not have access to Thunderhawk Annihilators, even if included in a Space marine Crusade Fleet.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="48a2-6909-d7ed-4a28" name="Prow Torpedo Tubes" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eba4-46ea-b06b-5161" type="max"/>
</constraints>
<profiles>
<profile id="9bad-7d7d-bfb3-b0da" name="Prow Torpedo Tubes" 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="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="1d8f-4d02-1ac3-faac" name="Prow Torpedo Tubes" hidden="false">
<description>Torpedo tubes may fire normal or boarding torpedoes. If this option is taken, the ship does not have to be modified to serve as an Exterminatus vessel in the same manner as Space Marine battle barges, as they are always equipped with virus bombs and cyclotronic warheads as standard. As such, when in position to exterminate a planet, it may do so on a roll of 3+ instead of 4+.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="44c7-d10c-3176-a6e8" name="Dorsal Weapons Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="69b7-e605-9abb-6f0c" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0575-5087-f5a0-5453" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="0143-673b-8b8b-359f" name="Dorsal Bombardment Cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d7d6-0992-da94-0a0d" type="max"/>
</constraints>
<profiles>
<profile id="04fb-f052-38bd-8206" name="Inquisitorial Cruiser Dorsal Bombardment Cannon" 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="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6f3a-d526-c5c5-91c5" name="Dorsal Lance Battery" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d0a-159b-d1b5-0833" type="max"/>
</constraints>
<profiles>
<profile id="2e54-31dd-6eb8-13a1" name="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="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="15"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ee53-8722-f080-0a3c" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="270"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c2c4-bd43-3b8b-74ad" name="Sword Frigate" hidden="false" collective="false" import="true" targetId="1f7c-8c41-a7e8-40ad" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="16fe-e76a-bbaf-28f8" name="Nova Frigate" hidden="false" collective="false" import="true" targetId="fea6-6864-64f7-bd50" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f04a-a8a6-3b06-e00f" name="Hunter Destroyer" hidden="false" collective="false" import="true" targetId="8632-2465-51e5-b7af" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a3ca-5e07-1760-f5d9" name="Gladius Frigate" hidden="false" collective="false" import="true" targetId="7fba-98fc-ee7f-8daf" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="77d0-db22-0455-a440" name="Firestorm Frigate" hidden="false" collective="false" import="true" targetId="29f2-2dc1-eff2-3101" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a275-2b3a-e1b3-0b12" name="Cobra Destroyer" hidden="false" collective="false" import="true" targetId="042b-3669-8215-bf20" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="711f-2fe2-58f8-acdd" name="Falchion Frigate" hidden="false" collective="false" import="true" targetId="7095-447c-65a6-0032" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="278c-51b5-3260-c524" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="042b-3669-8215-bf20" name="Cobra Destroyer" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="73b7-acb5-41b6-7dd3" type="max"/>
</constraints>
<profiles>
<profile id="73f1-0c41-a9d5-a76e" name="Cobra Class Destroyer" publicationId="11f0-17d1-e4d2-1018" page="114" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">1</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">30</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">4+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8759-3037-f146-024b" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="38f2-c191-bbb8-236a" name="Prow Torpedos" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d07c-7df4-0ccf-4e30" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e3a4-646e-670e-cc9d" type="max"/>
</constraints>
<profiles>
<profile id="1154-8f3d-d52a-846b" name="Cobra Prow Torpedos" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="6379-8c6d-9b50-bf73" name="Famous Ships" hidden="false" collective="false" import="true" defaultSelectionEntryId="af6f-adfc-f34a-4db7">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a31f-3417-fdb8-464d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7cf8-5ff4-76fe-4286" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="af6f-adfc-f34a-4db7" name="As Standard" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c9ba-1bfa-01dd-7ac3" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="d2e3-de08-44c4-9a8a" name="Weapons Battery" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b30d-3a74-d358-0429" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8667-6c6e-6748-7ddb" type="max"/>
</constraints>
<profiles>
<profile id="527a-e0f8-69d9-b637" name="Cobra Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">1</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/right/front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a36-7044-b804-f087" name="24th Destroyer Squadron 'Widowmaker'" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a57e-362b-e471-f246" type="max"/>
</constraints>
<rules>
<rule id="f412-2808-0ddc-ee1a" name="Long Range Detection Gear" hidden="false">
<description>Doubles the Leadership bonus from enemy contacts (enemies on special orders) from +1 to +2.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d19b-6ce1-a25d-d1f4" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="30"/>
</costs>
</selectionEntry>
<selectionEntry id="7095-447c-65a6-0032" name="Falchion Frigate" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9c55-82d4-d68f-2e7b" type="max"/>
</constraints>
<profiles>
<profile id="bd73-20a4-33ac-c1bf" name="Falchion Class Escort" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">1</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">25cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">1</characteristic>
</characteristics>
</profile>
<profile id="6e12-eb02-2ff7-b8b2" name="Falchion Prow Weapons Battery" 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="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="6114-0310-ad92-e4d7" name="Falchion Prow Torpedoes" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">1</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a6e3-d799-26bf-b18c" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<entryLinks>
<entryLink id="ed0a-bd68-4a28-f791" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
<selectionEntry id="29f2-2dc1-eff2-3101" name="Firestorm Frigate" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b536-742f-16e7-a911" type="max"/>
</constraints>
<profiles>
<profile id="0e85-134d-3b43-031a" name="Firestorm Class Frigate" publicationId="11f0-17d1-e4d2-1018" page="113" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort/1</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">☐</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">25</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">2</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="de79-ad17-502f-51ed" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9cba-8112-a3d5-1357" name="Prow Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fd25-fa5b-75d2-568a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4645-ef95-78f5-a8e9" type="max"/>
</constraints>
<profiles>
<profile id="0e0a-447a-c30d-af6f" name="Prow Lance" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">1</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7d37-736d-5798-ee4b" name="Weapons Battery (30/2)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f68b-68c7-dbe7-3265" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c2b4-fa49-5508-cc5e" type="max"/>
</constraints>
<profiles>
<profile id="bfaa-e8ad-8de4-b935" name="Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/right/front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="6a5c-7f4e-2aef-ad00" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="40"/>
</costs>
</selectionEntry>
<selectionEntry id="7fba-98fc-ee7f-8daf" name="Gladius Frigate" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5bfd-bc5e-e8a4-8e0d" type="max"/>
</constraints>
<profiles>
<profile id="be43-b08f-72ac-8e9f" name="Gladius Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">1</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">30cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">1</characteristic>
</characteristics>
</profile>
<profile id="f0f9-1694-6287-c2c9" name="Gladius 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="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9f42-99d3-6a80-6a58" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<entryLinks>
<entryLink id="db2b-e23f-4eb0-3ff7" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="40"/>
</costs>
</selectionEntry>
<selectionEntry id="8632-2465-51e5-b7af" name="Hunter Destroyer" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b836-57ec-1ed5-67a7" type="max"/>
</constraints>
<profiles>
<profile id="ef6c-796a-df77-5d73" name="Hunter Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">1</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">35cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">1</characteristic>
</characteristics>
</profile>
<profile id="5969-8bcf-b8b6-6442" name="Hunter Torpedoes" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Front</characteristic>
</characteristics>
</profile>
<profile id="c0a5-e5b1-baea-ad7c" name="Hunter Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">1</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1bfd-83b1-a26d-2007" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<entryLinks>
<entryLink id="0863-8347-6d19-1990" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
<selectionEntry id="1f7c-8c41-a7e8-40ad" name="Sword Frigate" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d853-40fb-0596-a154" type="max"/>
</constraints>
<profiles>
<profile id="5257-6a01-c181-c839" name="Sword Class Frigate" publicationId="11f0-17d1-e4d2-1018" page="113" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort/1</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">☐</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">25</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">2</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="40c7-bfef-df79-dc51" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="80e0-aaf7-998d-26a7" name="Weapons Battery (30/4)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dd40-35ed-4257-fb7e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="73f3-5290-8c35-8b45" type="max"/>
</constraints>
<profiles>
<profile id="e32a-ed6d-26a3-4090" name="Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">4</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/right/front</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="dba3-a3e7-265c-addb" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="35"/>
</costs>
</selectionEntry>
<selectionEntry id="fea6-6864-64f7-bd50" name="Nova Frigate" page="0" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="6" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bdc4-a29e-aa43-2f99" type="max"/>
</constraints>
<profiles>
<profile id="aeab-5d34-ce0e-394b" name="Nova Profile" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Type" typeId="5.479706523232345e+27">Escort</characteristic>
<characteristic name="Hits" typeId="4.869747323232344e+27">1</characteristic>
<characteristic name="Speed" typeId="5.370656564232324e+29">35cm</characteristic>
<characteristic name="Turns" typeId="5475726e7323232344415441232323">90°</characteristic>
<characteristic name="Shields" typeId="536869656c647323232344415441232323">1</characteristic>
<characteristic name="Armour" typeId="41726d6f757223232344415441232323">5+</characteristic>
<characteristic name="Turrets" typeId="5.475727265747323e+33">1</characteristic>
</characteristics>
</profile>
<profile id="8816-0218-0069-9cdd" name="Nova Lance" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">1</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
<profile id="5729-2021-d278-1797" name="Nova Weapons Battery" hidden="false" typeId="41726d616d656e7423232344415441232323" typeName="Armament">
<characteristics>
<characteristic name="Range/Speed" typeId="52616e67652f537065656423232344415441232323">30cm</characteristic>
<characteristic name="Firepower/Str" typeId="46697265706f7765722f53747223232344415441232323">2</characteristic>
<characteristic name="Fire Arc" typeId="4.669726520417263e+35">Left/Front/Right</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4bfa-30ce-a6cc-861e" hidden="false" targetId="4573636f72747323232344415441232323" primary="true" name="Escort"/>
</categoryLinks>
<entryLinks>
<entryLink id="60d1-2740-7125-78bd" name="Leadership" hidden="false" collective="false" import="true" targetId="72b9-2803-264f-57f0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="45"/>
</costs>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup id="5e54-af60-5851-fa90" name="Ordnance" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e75-d199-f283-21db" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5fb1-93ff-11d7-232c" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6137-54a8-a799-d802" name="Swiftdeath Fighters, Doomfire Bombers & Dreadclaw Assault Craft" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="b7fe-b1d2-1039-2bb3" name="Swiftdeath Fighters, Doomfire Bombers & Dreadclaw Assault Craft" hidden="false">
<description>Ships with launch bays can have a mixture of Swiftdeath Fighters, Doomfire Bombers and Dreadclaw Assault Craft. Ships with torpedo tubes are armed with normal and boarding torpedoes.</description>
</rule>
<rule id="2847-d521-7d7b-dc3c" name="Fighter's Rules" publicationId="11f0-17d1-e4d2-1018" page="29" hidden="false">