forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Kharadron Overlords - Data.cat
5512 lines (5503 loc) · 412 KB
/
Order - Kharadron Overlords - Data.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="3981-271d-5871-845b" name="Order - Kharadron Overlords - Data" revision="53" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="e23c-3deb-pubN65537" name="Order Battletome: Kharadron Overlords"/>
<publication id="e23c-3deb-pubN66862" name="Order Official FAQs and errata, Version 1.4"/>
<publication id="e23c-3deb-pubN72781" name="Battletome: Stormcast Eternals '17"/>
<publication id="9f8c-de34-da67-5e71" name="Aether War"/>
<publication id="bc3a-23b8-f1a0-4cb7" name="Battalion: Kharadron Overlords Errata, August 2021"/>
</publications>
<profileTypes>
<profileType id="c2be-a0b1-e9a8-572a" name="Skyvessel Wound Track">
<characteristicTypes>
<characteristicType id="6158-1d51-00a9-21f2" name="Move"/>
<characteristicType id="c371-0867-82a5-a591" name="Boarding Weapons"/>
<characteristicType id="b29b-9a5c-1505-5e90" name="Bomb Racks"/>
</characteristicTypes>
</profileType>
<profileType id="011e-0bf8-5310-7fc6" name="1) Artycle">
<characteristicTypes>
<characteristicType id="f6f3-7ccb-f03b-76de" name="Details"/>
</characteristicTypes>
</profileType>
<profileType id="302d-acaa-ec63-d964" name="2) Amendment">
<characteristicTypes>
<characteristicType id="b7b8-2932-5eae-1dd0" name="Details"/>
</characteristicTypes>
</profileType>
<profileType id="6bee-9bbf-1847-2f14" name="3) Footnote">
<characteristicTypes>
<characteristicType id="928f-ca19-9ee0-38c3" name="Details"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="b333-6574-f906-f46f" name="AETHER-KHEMIST" hidden="false"/>
<categoryEntry id="24bc-680f-3625-03e9" name="AETHERIC NAVIGATOR" hidden="false"/>
<categoryEntry id="e6f3-dc2f-7346-2973" name="ARKANAUT ADMIRAL" hidden="false"/>
<categoryEntry id="df39-9597-407d-5aa7" name="ARKANAUT COMPANY" hidden="false"/>
<categoryEntry id="1b4b-b583-dbea-2b17" name="ARKANAUT FRIGATE" hidden="false"/>
<categoryEntry id="5cdc-29a9-bfa7-c7c0" name="ARKANAUT IRONCLAD" hidden="false"/>
<categoryEntry id="945b-2f5e-58f0-75e2" name="DUARDIN" hidden="false"/>
<categoryEntry id="456d-7017-4f43-6a76" name="ENDRINMASTER" hidden="false"/>
<categoryEntry id="d529-dab0-31ad-8178" name="ENDRINRIGGERS" hidden="false"/>
<categoryEntry id="c1ae-4be7-121f-de8d" name="GRUNDSTOK GUNHAULER" hidden="false"/>
<categoryEntry id="6315-c897-9ed5-62c2" name="GRUNDSTOK THUNDERERS" hidden="false"/>
<categoryEntry id="64d6-9d21-4025-fb64" name="BROKK GRUNGSSON" hidden="false"/>
<categoryEntry id="d9cc-d9d1-4f5c-bd28" name="SKYFARER" hidden="false"/>
<categoryEntry id="5528-5663-ecec-7274" name="SKYVESSEL" hidden="false"/>
<categoryEntry id="fb50-53e4-6181-5102" name="SKYWARDENS" hidden="false"/>
<categoryEntry id="a92c-7f5c-f4b1-c5a5" name="KNIGHT-VENATOR" hidden="false"/>
<categoryEntry id="3e42-aa53-94bc-8757" name="PROSECUTORS" hidden="false"/>
<categoryEntry id="7c69-4225-cf08-7991" name="CELESTIAL" hidden="false"/>
<categoryEntry id="2308-7db2-829e-94b3" name="HUMAN" hidden="false"/>
<categoryEntry id="3aa2-d06a-216a-8cef" name="BJORGEN THUNDRIK" hidden="false"/>
<categoryEntry id="f833-5751-c9cf-ee23" name="THUNDRIK'S PROFITEERS" hidden="false"/>
<categoryEntry id="2745-024c-7e44-960f" name="MARINE" hidden="false"/>
<categoryEntry id="107f-d5e2-65ef-2764" name="BARAK-NAR" hidden="false"/>
<categoryEntry id="7469-c7bb-611a-c443" name="BARAK-MHORNAR" hidden="false"/>
<categoryEntry id="fdc4-053a-6279-bc9e" name="Coalition: KO" hidden="false">
<modifiers>
<modifier type="increment" field="a4fb-5503-aeb5-d6f3" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a4fb-5503-aeb5-d6f3" type="max"/>
</constraints>
</categoryEntry>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="129e-f84a-5017-ca90" name="Aether-Khemist" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="fdc4-053a-6279-bc9e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b11-d94b-f5bc-520f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="2e83-3b67-430d-36db" name="Aether-Khemist" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="set" field="cd0e-fea6-411f-904d" value="7">
<conditions>
<condition field="selections" scope="129e-f84a-5017-ca90" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6d85-071d-829a-0a0a" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="9047-8912-877b-71e6" name="Aetheric Augmentation" hidden="true" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="129e-f84a-5017-ca90" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6245-ac15-23ce-eec8" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can pick 2 friendly SKYFARERS units wholly within 12" of this model. Until your next hero phase, you can re-roll wound rolls of 1 for attacks made by those units. This ability cannot be used by an AETHER-KHEMIST that is part of a garrison, or on a friendly unit that is part of a garrison.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c48b-2dd7-a4b8-6084" name="Aetheric Augmentation" hidden="false" targetId="663f-9447-ec21-cf8f" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="129e-f84a-5017-ca90" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6245-ac15-23ce-eec8" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink id="2674-41bd-dd5e-5d05" name="Atmospheric Isolation" hidden="false" targetId="19ed-5fb4-c4e2-ff7f" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6ea5-d34e-5118-29e7" name="New CategoryLink" hidden="false" targetId="b333-6574-f906-f46f" primary="false"/>
<categoryLink id="f7ae-5e9d-cbd9-0129" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="3adf-e9b7-e02c-e651" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="495e-abaf-1a17-6a92" name="New CategoryLink" hidden="false" targetId="d9cc-d9d1-4f5c-bd28" primary="false"/>
<categoryLink id="9c99-7eeb-52be-0a28" name="New CategoryLink" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false"/>
<categoryLink id="6fc7-fec7-c99a-6e20" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="6182-6723-dc7e-9228" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="c619-363e-f90b-7387" name="MARINE" hidden="false" targetId="2745-024c-7e44-960f" primary="false"/>
<categoryLink id="aae6-d52a-fa65-3d67" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="cae7-050e-a81e-c232" name="Heavy Instruments" 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="048d-6e7f-c7cd-8e08" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6bb-ca09-33c1-f04b" type="min"/>
</constraints>
<infoLinks>
<infoLink id="85cd-73a8-cdec-66ab" name="Heavy Instruments" hidden="false" targetId="ebf3-1b11-b294-2d63" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ba00-2f3f-a2c2-5ebd" name="Atmospheric Anatomiser" 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="1c33-8e4e-3246-58e7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e498-a867-6ec7-190e" type="min"/>
</constraints>
<infoLinks>
<infoLink id="5a9e-9879-2d3e-3fd1" name="Atmospheric Anatomiser" hidden="false" targetId="694c-8767-6019-7412" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4c10-b857-3409-5479" name="General" hidden="false" collective="false" import="true" targetId="b341-0885-3f1c-7d8a" type="selectionEntry">
<categoryLinks>
<categoryLink id="005d-4b6d-3aed-4e17" name="6_under_wounds" hidden="false" targetId="e4e2-6076-dafa-ec2c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c9dc-c1c7-4c3c-9360" name="Artefacts of Power" hidden="false" collective="false" import="true" targetId="8fdb-e603-9c1c-fd57" type="selectionEntryGroup"/>
<entryLink id="55e9-8a04-963a-ae64" name="Command Traits" hidden="false" collective="false" import="true" targetId="b698-a92e-00ae-4631" type="selectionEntryGroup"/>
<entryLink id="1b20-cc29-018e-a043" name="General's Adjutant" hidden="false" collective="false" import="true" targetId="65e4-9e34-5cf6-2bec" type="selectionEntry"/>
<entryLink id="f9d1-7b0f-22f0-09e8" name="Battalions" hidden="false" collective="false" import="true" targetId="ff18-f62e-a289-717c" type="selectionEntryGroup"/>
<entryLink id="b09a-8bd4-f6b5-e61f" name="Spell Lores" hidden="true" collective="false" import="true" targetId="b094-0ec4-692a-78ec" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9918-5a46-2468-35e2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b43f-b8e7-a27d-caf2" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="90.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b341-0885-3f1c-7d8a" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6577-dc9b-1ef5-9efc" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ddc9-7483-703e-9bdb" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="d6c2-1bc6-1933-ca81" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="68fb-1a1e-6c58-b1f5" name="Aetheric Navigator" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="fdc4-053a-6279-bc9e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8b11-d94b-f5bc-520f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c9a1-bd1d-0517-80bb" name="Aetheric Navigator" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="set" field="cd0e-fea6-411f-904d" value="7">
<conditions>
<condition field="selections" scope="68fb-1a1e-6c58-b1f5" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="048f-bd4c-a9be-eb80" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="191c-9392-271f-ff17" name="Aethersight" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">An Aetheric Navigator can attempt to dispel 1 endless spell at the start of your hero phase and attempt to unbind 1 spell in the enemy hero phase, in the same manner as a WIZARD.</characteristic>
</characteristics>
</profile>
<profile id="13b3-1cf2-4e73-9a55" name="Aetherstorm" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can pick 1 enemy unit within 36" of this model that is visible to them and can fly, and roll a dice. On a 1-2 nothing happens. On a 3-5 halve the Move characteristic of that unit until your next hero phase. On a 6, halve the Move characteristic of that unit until your next hero phase, and that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="e76a-dc9b-9ebb-b510" name="Read the Winds" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll run and charge rolls for friendly SKYVESSELS that are visible to a friendly AETHERIC NAVIGATOR that has not attempted to use the Aetherstorm ability in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ab2e-7675-b505-531b" name="New CategoryLink" hidden="false" targetId="24bc-680f-3625-03e9" primary="false"/>
<categoryLink id="8391-65eb-dfec-67da" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="f799-88e1-a8d2-8227" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="928d-381a-1bdd-b85e" name="New CategoryLink" hidden="false" targetId="d9cc-d9d1-4f5c-bd28" primary="false"/>
<categoryLink id="d054-e663-1833-6d5d" name="New CategoryLink" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false"/>
<categoryLink id="239a-7c04-37bb-59e9" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="4b2a-1ddb-f935-9a5e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="102c-6c49-e9eb-1fa6" name="MARINE" hidden="false" targetId="2745-024c-7e44-960f" primary="false"/>
<categoryLink id="0692-bd0f-ecf7-ca17" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="de07-5113-d273-1d3e" name="Ranging Pistol" 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="a49d-1881-aaa6-59c6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b19c-c6c7-a0af-aca5" type="min"/>
</constraints>
<profiles>
<profile id="14b4-f77a-fbbc-dbc9" name="Ranging Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">15"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c615-9079-1cba-0ff8" name="Zephyrscope" 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="079d-b0e5-7b61-b342" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c4ae-1a26-31de-db07" type="min"/>
</constraints>
<profiles>
<profile id="dee4-4289-0e58-f890" name="Zephyrscope" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d9cb-92d3-5ae3-53d7" name="General" hidden="false" collective="false" import="true" targetId="b341-0885-3f1c-7d8a" type="selectionEntry">
<modifiers>
<modifier type="remove" field="category" value="e4e2-6076-dafa-ec2c">
<conditions>
<condition field="selections" scope="68fb-1a1e-6c58-b1f5" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="048f-bd4c-a9be-eb80" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9bc3-b431-0bed-49bf" name="6_under_wounds" hidden="false" targetId="e4e2-6076-dafa-ec2c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="82c9-f6fe-0ded-947d" name="Artefacts of Power" hidden="false" collective="false" import="true" targetId="8fdb-e603-9c1c-fd57" type="selectionEntryGroup"/>
<entryLink id="7f64-9157-4a56-762e" name="Command Traits" hidden="false" collective="false" import="true" targetId="b698-a92e-00ae-4631" type="selectionEntryGroup"/>
<entryLink id="dcd7-d66a-d63a-3032" name="General's Adjutant" hidden="false" collective="false" import="true" targetId="65e4-9e34-5cf6-2bec" type="selectionEntry"/>
<entryLink id="c988-506c-8520-eb3b" name="Battalions" hidden="false" collective="false" import="true" targetId="ff18-f62e-a289-717c" type="selectionEntryGroup"/>
<entryLink id="91f2-33aa-f934-b932" name="Spell Lores" hidden="true" collective="false" import="true" targetId="b094-0ec4-692a-78ec" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9918-5a46-2468-35e2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8e84-b7c4-bc76-fc2e" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="95.0"/>
</costs>
</selectionEntry>
<selectionEntry id="44ad-2801-441f-6b44" name="Arkanaut Admiral" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="fdc4-053a-6279-bc9e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b11-d94b-f5bc-520f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="70d5-4a18-40c2-2c83" name="Arkanaut Admiral" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<modifiers>
<modifier type="set" field="cd0e-fea6-411f-904d" value="8">
<conditions>
<condition field="selections" scope="44ad-2801-441f-6b44" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="29a3-e9a6-b053-38c5" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="9dbb-f5be-9761-26d6" name="If You Want A Job Done…" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll hit and wound rolls of 1 for attacks made with a melee weapon by this model that target a HERO or MONSTER.</characteristic>
</characteristics>
</profile>
<profile id="1b25-8639-3f13-473e" name="Master of the Skies" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your shooting phase. If you do, pick 1 friendly SKYVESSEL that has a model with this command ability in its garrison. That SKYVESSEL can shoot in that phase even if it ran earlier in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="f720-3b06-6e15-d83f" name="Protect the Admiral!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Do not take battleshock tests for friendly KHARADRON OVERLORDS units while they are wholly within 12" of this model.
In addition, roll a dice before you allocate a wound or mortal wound to a friendly ARKANAUT ADMIRAL while it is within 3" of any friendly SKYFARER units with 5 or more models. On a 5+, you must allocate that wound or mortal wound to a friendly SKYFARERS unit with 5 or more models that is within 3" of that ARKANAUT ADMIRAL, instead of to that ARKANAUT ADMIRAL.</characteristic>
</characteristics>
</profile>
<profile id="3a00-a96f-d28e-dc0c" name="Up And At Them!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your charge phase. If you do so, pick 1 friendly SKYFARERS unit that is wholly within 12" of a friendly model with this command ability. You can re-roll charge rolls for that unit in that phase.</characteristic>
</characteristics>
</profile>
<profile id="7b2c-016d-b035-bbfb" name="Repel Boarders!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your combat phase. If you do so, pick 1 friendly SKYVESSEL that has a model with this command ability in its garrison. Add 1 to hit rolls for attacks made by that SKYVESSEL and any models in its garrison in that phase.</characteristic>
</characteristics>
</profile>
<profile id="cab7-c88d-a372-716c" name="On My Mark, Fire!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your shooting phase. If you do so, pick 1 friendly SKYVESSEL that has a model with this command ability in its garrison. You can re-roll hit rolls of 1 for attacks made by that SKYVESSEL in that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="de1a-3d9f-17ac-c8b9" name="New CategoryLink" hidden="false" targetId="e6f3-dc2f-7346-2973" primary="false"/>
<categoryLink id="cf93-24f8-be45-c8a4" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="ac91-18a0-c5bc-9928" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="bdb1-720a-451f-176a" name="New CategoryLink" hidden="false" targetId="d9cc-d9d1-4f5c-bd28" primary="false"/>
<categoryLink id="b0e1-77b5-5f65-0513" name="New CategoryLink" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false"/>
<categoryLink id="29b2-17fa-7f12-5bcd" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="bc36-d7ed-c5b3-6c8d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6e32-bc29-0f1d-1652" name="MARINE" hidden="false" targetId="2745-024c-7e44-960f" primary="false"/>
<categoryLink id="806e-6e18-f504-2048" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="06bc-bd64-8f1e-18c0" name="Skalfhammer" 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="d30d-7a9f-ba41-4fc6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc4d-c9ff-b847-6c88" type="min"/>
</constraints>
<profiles>
<profile id="200f-ab15-5d88-217f" name="Skalfhammer" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2166-041e-1327-220b" name="Volley Pistol" 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="f2f4-0651-a141-73e7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62d1-9773-54dc-5901" type="min"/>
</constraints>
<profiles>
<profile id="de41-bd37-8e99-b680" name="Volley Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">9"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="82fc-0228-67ae-dae5" name="General" hidden="false" collective="false" import="true" targetId="b341-0885-3f1c-7d8a" type="selectionEntry">
<modifiers>
<modifier type="remove" field="category" value="e4e2-6076-dafa-ec2c">
<conditions>
<condition field="selections" scope="44ad-2801-441f-6b44" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="29a3-e9a6-b053-38c5" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8c1b-8b30-ba7b-d9f8" name="6_under_wounds" hidden="false" targetId="e4e2-6076-dafa-ec2c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="41dd-f576-6e4d-1a95" name="Artefacts of Power" hidden="false" collective="false" import="true" targetId="8fdb-e603-9c1c-fd57" type="selectionEntryGroup"/>
<entryLink id="f16e-5ca1-1dd3-2497" name="Command Traits" hidden="false" collective="false" import="true" targetId="b698-a92e-00ae-4631" type="selectionEntryGroup"/>
<entryLink id="1264-b3a5-4f18-a666" name="General's Adjutant" hidden="false" collective="false" import="true" targetId="65e4-9e34-5cf6-2bec" type="selectionEntry"/>
<entryLink id="9729-fd39-29b2-b4fc" name="Battalions" hidden="false" collective="false" import="true" targetId="ff18-f62e-a289-717c" type="selectionEntryGroup"/>
<entryLink id="2770-ccef-d66e-6d09" name="Spell Lores" hidden="true" collective="false" import="true" targetId="b094-0ec4-692a-78ec" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9918-5a46-2468-35e2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="fefc-c17a-2d05-1209" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="125.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7d60-6000-c3d0-0a22" name="Arkanaut Company" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="fdc4-053a-6279-bc9e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b11-d94b-f5bc-520f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c30c-2c71-2392-bb49" name="Arkanaut Company" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="682c-91c4-0500-2e9a" name="Glory-seekers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll battleshock tests for this unit while it is wholly within 9" of an objective, and add 1 to hit rolls for attacks made by this unit while it is wholly within 9" of an objective. This ability cannot be used if this unit is part of a garrison.</characteristic>
</characteristics>
</profile>
<profile id="fb50-090a-57d2-f197" name="Company Captain" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">One model in this unit can be a Company Captain. That model is armed with an Aetherflare Pistol or Volley Pistol instead of a Privateer Pistol.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c15d-c211-1200-abff" name="New CategoryLink" hidden="false" targetId="df39-9597-407d-5aa7" primary="false"/>
<categoryLink id="44d0-6214-ca50-3140" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="9129-fa61-be43-f129" name="New CategoryLink" hidden="false" targetId="d9cc-d9d1-4f5c-bd28" primary="false"/>
<categoryLink id="55be-c8ab-da52-b9a1" name="New CategoryLink" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false"/>
<categoryLink id="f466-75d4-89ab-4a71" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="763a-680c-c6bb-71cb" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink id="a1d7-fc68-eaf6-295b" name="MARINE" hidden="false" targetId="2745-024c-7e44-960f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9a6d-82f3-49dc-e1c8" name="10 Arkanaut Company" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="20 Arkanaut Company">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="30 Arkanaut Company">
<conditions>
<condition field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="87bf-5dc4-0cbd-a44c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="48e2-f145-c62f-5167" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="177d-058a-e5aa-aa51" name="Weapon Options" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="0aab-3599-caa3-cf5b" value="10.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="fa21-2c7b-06d6-1ed9" value="10.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0aab-3599-caa3-cf5b" type="max"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fa21-2c7b-06d6-1ed9" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="4645-e002-1a18-4aa2" name="Privateer Pistol and Arkanaut Cutter" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d744-014f-4240-0623" name="Arkanaut Cutter" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="223c-e2e6-1661-e317" name="Privateer Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">9"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="8a1d-0495-762e-f361" name="Special Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="41cf-63c0-6104-58c2" value="3.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="41cf-63c0-6104-58c2" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5d70-ea92-f152-cf9d" name="Light Skyhook" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="042e-feaf-ce65-6a58" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="042e-feaf-ce65-6a58" type="max"/>
</constraints>
<profiles>
<profile id="9682-14be-160a-c874" name="Light Skyhook" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">18"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e5c-27de-5cb8-6d53" name="Aethermatic Volley Gun & Gun Butt" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="cea0-925a-22d2-a702" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="cea0-925a-22d2-a702" type="max"/>
</constraints>
<infoLinks>
<infoLink id="986c-18be-7c66-0e97" name="Gun Butt" hidden="false" targetId="1237-93a8-9a08-68eb" type="profile"/>
<infoLink id="e373-5d06-a898-d0ef" name="Aethermatic Volley Gun" hidden="false" targetId="32c3-b317-f5fc-c3ee" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8cd5-c48f-ccf5-ae6d" name="Skypike" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="a7c4-d104-6a4b-270c" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a7c4-d104-6a4b-270c" type="max"/>
</constraints>
<profiles>
<profile id="141d-8e09-9aee-5c11" name="Skypike" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
<selectionEntryGroup id="1257-4fa4-2691-7c7a" name="Weapon Options (Company Captain)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8ec2-2114-5c7e-c989" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="50e3-df50-37c5-06ba" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="3d99-3070-6884-dbcb" name="Aetherflare Pistol" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="fcb2-213e-4950-9718" name="Aetherflare Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">9"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eaf3-4691-17ef-f187" name="Volley Pistol" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="648e-d803-8083-c507" name="Volley Pistol" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">9"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5bbc-67be-7315-582c" name="Honoured Retinue" hidden="false" collective="false" import="true" targetId="cb24-5c4a-8232-6c5b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="28c2-0ddb-ef15-443e" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2.0"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</entryLink>
<entryLink id="a6c2-29cb-e989-731d" name="Battalions" hidden="false" collective="false" import="true" targetId="ff18-f62e-a289-717c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="75d5-622e-f185-7ce2" name="Arkanaut Frigate" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c05e-8228-e024-fc54" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="fdc4-053a-6279-bc9e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b11-d94b-f5bc-520f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="ad67-9539-4010-4b55" name="Arkanaut Frigate" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">14</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="4d7e-5fbf-f376-1c8c" name="Flying Transport (Frigate)" publicationId="bc3a-23b8-f1a0-4cb7" page="1" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This model can fly, and can be garrisoned by up to 15 friendly MARINE models even though it is not a terrain feature. If this unit is in a warscroll battalion, other units in the same battalion that can garrison this unit can be set up as this unit’s garrison when this unit is set up.
Halve this model’s Move characteristic and it cannot Fly High if there are 11 or more models in its garrison. Units cannot join or leave this model’s garrison if it has made a move or flown high in the same phase (they can join or leave before it does so). Models in the garrison are not counted towards gaining control of an objective.
An attack made by a weapon that is in range of this model can target either this model or a unit in its garrison. If this model is destroyed, before it is removed from play, roll 1 dice for each model in its garrison. On a 1, that model is slain. Set up any surviving models wholly within 3" of this model and more than 3" from any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="377f-4603-247d-5347" name="Disengage" hidden="false" targetId="e557-841e-f594-c1a0" type="profile"/>
<infoLink id="b853-5496-c3db-0fb7" name="Fly High" hidden="false" targetId="44dc-f03a-55ea-c1ba" type="profile"/>
<infoLink id="c5cc-1ad4-bbf5-f445" name="Bomb Racks" hidden="false" targetId="4694-70b9-900d-96ff" type="profile"/>
<infoLink id="9c94-ae72-19ba-d86d" name="Aetheric Navigator and Endrinrigger" hidden="false" targetId="0d90-036d-60f8-b510" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0f6d-7bf9-21f8-7b70" name="New CategoryLink" hidden="false" targetId="1b4b-b583-dbea-2b17" primary="false"/>
<categoryLink id="8a51-c055-86a3-f2dc" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="5ea1-77ca-f0ce-4102" name="New CategoryLink" hidden="false" targetId="5528-5663-ecec-7274" primary="false"/>
<categoryLink id="31f5-2586-618f-99e3" name="New CategoryLink" hidden="false" targetId="880e-1e33-b965-71ec" primary="false"/>
<categoryLink id="095c-68c0-3184-9728" name="New CategoryLink" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false"/>
<categoryLink id="809e-d2e1-9731-577f" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="468a-9279-9118-14cb" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="46ad-1179-7880-f684" name="Aethershot Carbines" 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="01e1-6c77-0ab6-d379" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c816-8ec7-959a-ca0a" type="min"/>
</constraints>
<profiles>
<profile id="229d-6566-3d15-a1a7" name="Aethershot Carbines" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="58c4-7f91-80a6-9ffc" name="Wound Track" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="98cd-1c77-7cb2-3fb2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b375-043f-4da2-3ab5" type="min"/>
</constraints>
<profiles>
<profile id="6b82-5174-80fb-dff2" name="13+" hidden="false" typeId="c2be-a0b1-e9a8-572a" typeName="Skyvessel Wound Track">
<characteristics>
<characteristic name="Move" typeId="6158-1d51-00a9-21f2">4"</characteristic>
<characteristic name="Boarding Weapons" typeId="c371-0867-82a5-a591">2</characteristic>
<characteristic name="Bomb Racks" typeId="b29b-9a5c-1505-5e90">-1</characteristic>
</characteristics>
</profile>
<profile id="da65-179d-3fec-acce" name="00-03" hidden="false" typeId="c2be-a0b1-e9a8-572a" typeName="Skyvessel Wound Track">
<characteristics>
<characteristic name="Move" typeId="6158-1d51-00a9-21f2">12", Disengage, Fly High</characteristic>
<characteristic name="Boarding Weapons" typeId="c371-0867-82a5-a591">6</characteristic>
<characteristic name="Bomb Racks" typeId="b29b-9a5c-1505-5e90">+1</characteristic>
</characteristics>
</profile>
<profile id="6acf-5742-ac91-785c" name="07-09" hidden="false" typeId="c2be-a0b1-e9a8-572a" typeName="Skyvessel Wound Track">
<characteristics>
<characteristic name="Move" typeId="6158-1d51-00a9-21f2">8", Disengage</characteristic>
<characteristic name="Boarding Weapons" typeId="c371-0867-82a5-a591">4</characteristic>
<characteristic name="Bomb Racks" typeId="b29b-9a5c-1505-5e90">0</characteristic>
</characteristics>
</profile>
<profile id="4f57-f0ce-30ff-17f3" name="04-06" hidden="false" typeId="c2be-a0b1-e9a8-572a" typeName="Skyvessel Wound Track">
<characteristics>
<characteristic name="Move" typeId="6158-1d51-00a9-21f2">10", Disengage, Fly High</characteristic>
<characteristic name="Boarding Weapons" typeId="c371-0867-82a5-a591">5</characteristic>
<characteristic name="Bomb Racks" typeId="b29b-9a5c-1505-5e90">0</characteristic>
</characteristics>
</profile>
<profile id="5b7f-0722-6b71-208d" name="10-12" hidden="false" typeId="c2be-a0b1-e9a8-572a" typeName="Skyvessel Wound Track">
<characteristics>
<characteristic name="Move" typeId="6158-1d51-00a9-21f2">6"</characteristic>
<characteristic name="Boarding Weapons" typeId="c371-0867-82a5-a591">3</characteristic>
<characteristic name="Bomb Racks" typeId="b29b-9a5c-1505-5e90">-1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ead0-37a9-6c1c-52d3" name="Boarding Weapons" 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="9445-51d0-334e-af9c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14b0-56ab-f221-1c5c" type="min"/>
</constraints>
<infoLinks>
<infoLink id="ba4d-a1d4-e5f3-96ce" name="Boarding Weapons" hidden="false" targetId="9af5-3294-a7d1-26e5" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="d3bf-196d-9aa4-a6ab" name="Weapon Options" hidden="false" collective="true" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ff1e-2a19-36bf-2a4a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5a8d-e7d3-c97b-7cb9" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="85da-e8e0-6e58-b058" name="Heavy Sky Cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bfe7-b255-b907-2d14" name="Heavy Sky Cannon: Shell" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">30"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
<profile id="f6d8-9b57-2364-2ca4" name="Heavy Sky Cannon: Shrapnel" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">24"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="8929-a22e-bdcc-4fd9" name="Heavy Sky Cannon" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Before attacking with a Heavy Sky Cannon, choose either the Shrapnel or Shell missile weapon characteristics for that shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f688-b90e-0e6b-6f91" name="Heavy Skyhook" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0b88-0d3d-9fc8-501c" name="Heavy Skyhook" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">24"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
<profile id="5a15-d584-9be0-f377" name="Heavy Skyhook" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 2 to the charge rolls for this model if it is armed with a Heavy Skyhook.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9a1e-b952-45c3-0509" name="Great Endrinwork Artefacts" hidden="false" collective="false" import="true" targetId="7e22-5209-21db-ff49" type="selectionEntryGroup"/>
<entryLink id="1e79-577b-5381-c0c4" name="Battalions" hidden="false" collective="false" import="true" targetId="ff18-f62e-a289-717c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="250.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fc3c-8879-dd3f-9e53" name="Arkanaut Ironclad" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="fdc4-053a-6279-bc9e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b11-d94b-f5bc-520f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="6675-ede3-c683-9333" name="Arkanaut Ironclad" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">18</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="a2d7-4ff9-9b80-d20a" name="Flying Transport (Ironclad)" publicationId="bc3a-23b8-f1a0-4cb7" page="1" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This model can fly, and can be garrisoned by up to 25 friendly MARINE models even though it is not a terrain feature. If this unit is in a warscroll battalion, other units in the same battalion that can garrison this unit can be set up as this unit’s garrison when this unit is set up.
Halve this model’s Move characteristic and it cannot Fly High if there are 16 or more models in its garrison. Units cannot join or leave this model’s garrison if it has made a move or flown high in the same phase (they can join or leave before it does so). Models in the garrison are not counted towards gaining control of an objective.
An attack made by a weapon that is in range of this model can target either this model or a unit in its garrison. If this model is destroyed, before it is removed from play, roll 1 dice for each model in its garrison. On a 1, that model is slain. Set up any surviving models wholly within 3" of this model and more than 3" from any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c4e4-6b7e-9e9d-b116" name="Fly High" hidden="false" targetId="44dc-f03a-55ea-c1ba" type="profile"/>
<infoLink id="0536-e4e1-6280-0994" name="Disengage" hidden="false" targetId="e557-841e-f594-c1a0" type="profile"/>
<infoLink id="773c-f3dc-e29f-9c91" name="Bomb Racks" hidden="false" targetId="4694-70b9-900d-96ff" type="profile"/>
<infoLink id="437d-08fb-4904-6f62" name="Aetheric Navigator and Endrinrigger" hidden="false" targetId="0d90-036d-60f8-b510" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0a40-4601-b19f-3c79" name="New CategoryLink" hidden="false" targetId="5cdc-29a9-bfa7-c7c0" primary="false"/>
<categoryLink id="fe42-da02-241a-f4c2" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="06cd-ffcf-79bb-4d58" name="New CategoryLink" hidden="false" targetId="5528-5663-ecec-7274" primary="false"/>
<categoryLink id="5a77-0633-6c1c-a95d" name="New CategoryLink" hidden="false" targetId="880e-1e33-b965-71ec" primary="false"/>
<categoryLink id="c2d6-efe9-a2cd-719f" name="New CategoryLink" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false"/>
<categoryLink id="6720-1f9e-3f71-1f6f" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="7210-e2db-8a71-e4fc" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>