-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kharadron Overlords - Library.cat
2548 lines (2548 loc) · 184 KB
/
Kharadron Overlords - Library.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 library="true" id="7e5e-7934-c23b-c35e" name="Kharadron Overlords - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Aether-Khemist" hidden="false" id="26a7-80ea-22a-21ca" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="efc9-b3dc-d2eb-f059" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Aether-Khemist" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ea06-d0c7-a712-8885">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Aetheric Augmentation" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4fbc-e2c6-df22-b477">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Kharadron Overlords Infantry^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, add 1 to the Rend characteristic of the target’s ranged weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Atmospheric Isolation" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3569-c29-b8ae-54">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, subtract 1 from hit rolls for the target’s combat attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="c7d2-2303-6ffa-5ac9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="296a-cd90-3225-8f80" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="f135-fde5-55b0-5f17" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="d24e-f1ac-3e07-6b57" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="7fdf-9031-9a06-eca7" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="bc87-bb3e-c91f-7b16" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Aether-Khemist" hidden="false" id="64ac-416d-1b4d-60a7">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Heavy Instruments" hidden="false" id="aea6-6e88-5721-4bbb">
<profiles>
<profile name="Heavy Instruments" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1049-9934-de81-c48">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8202-4be4-79d6-1a8d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8cec-e42e-ee46-69ea"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Atmospheric Anatomiser" hidden="false" id="ffdb-4543-6b7a-2560">
<profiles>
<profile name="Atmospheric Anatomiser" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="788-1536-c43-b247">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">8"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="90a7-bc10-9593-2368"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b50d-6548-509a-7200"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bf91-c4cf-ddbf-3877"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f893-a21e-c0d3-ff07"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Drekki Flynt" hidden="false" id="5e57-174f-1a3-fa8e" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="adee-6a3c-79cb-ea02" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Drekki Flynt" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="59ed-6a3d-ec5a-ee3e">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Captain of the Aelsling" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e1b2-4e1b-a4c-37ca">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Arkanaut Frigate** in this unit’s regiment to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target has the **^^Aelsling^^** keyword. Add 1 to the Damage characteristic of the target’s melee weapons for the rest of the battle.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Auxiliary Skyhook" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e154-9045-b907-6ac3">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="She Can Handle It!" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="d128-f45e-424f-381a">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">You can re-roll run rolls and charge rolls for the **^^Aelsling^^** while this unit is within its combat range.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="50d7-d687-c7f1-d70d" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="UNIQUE" hidden="false" id="6514-fb2f-b1c-92c4" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="1408-da54-9aaf-66d8" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="4720-999-765c-889d" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="ba3f-dae-40b6-1152" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="5d17-c016-faa-e559" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="3e02-ca87-2c9f-2069" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="fbf-eb87-42dc-b6ce" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Drekki Flynt" hidden="false" id="e9e9-af7c-158f-21b0">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="The Aethermatic Equaliser Mk. III" hidden="false" id="9a37-1db6-9711-d3c6">
<profiles>
<profile name="The Aethermatic Equaliser Mk. III" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c4e4-5e8c-6d05-886f">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="350a-4cb1-eadc-a739"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f124-8bdf-1096-57ac"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Grunnsson’s Axe" hidden="false" id="dd69-1808-44e4-30d2">
<profiles>
<profile name="Grunnsson’s Axe" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b88d-f09a-9c7b-dd35">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Monster^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8207-2b-7b00-17e1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1af1-d3d8-8d7b-a872"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a6a-3b82-a22c-86ad"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6b78-4172-f4cd-ced7"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Grundstock Gunhauler" hidden="false" id="66fa-6ab8-35c3-beef" publicationId="d4a9-b568-9525-d6ac">
<profiles>
<profile name="Grundstock Gunhauler" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d281-1784-d7c8-fe84">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">10</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Escort Vessel" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a559-a8b-8b98-636c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While any friendly **Arkanaut Ironclads** or **Arkanaut Frigates** are within this unit’s combat range, both this unit and those friendly units have **^^Ward (6+)^^**.</characteristic>
</characteristics>
</profile>
<profile name="Light Bomb Racks" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8ca2-a9b5-3fa8-31cb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit that does not have **^^Fly^^** and that this unit passed across this phase to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll 4 dice. For each 4+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Transport Capacity" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a990-bd6a-dcd6-4d31">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can transport 1 friendly **^^Kharadron Overlords Infantry^^** units with a model count of up to 5 (see Battle Traits).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="ORDER" hidden="false" id="b28d-23a7-7954-4fbe" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="FLY" hidden="false" id="9835-cda6-c458-5ad8" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="7c63-44a0-828f-d65c" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="68-7147-a0bc-a17" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="41db-6e9c-d0d9-b79d" targetId="f7bc-b618-4b5d-2bae" primary="true"/>
<categoryLink name="SKYVESSEL" hidden="false" id="babd-3eca-5188-6f13" targetId="594-e51e-83f-4187" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Grundstock Gunhauler" hidden="false" id="28e9-9b11-6e18-8dd5">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Aethershot Carbines" hidden="false" id="40a3-bbba-4e5e-4ca9">
<profiles>
<profile name="Aethershot Carbines" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="74ff-1f5d-dffd-e33e">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1c36-13ea-691c-d345"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ccc1-badf-da58-6caa"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Boarding Weapons" hidden="false" id="e2a1-3c0c-249f-de65">
<profiles>
<profile name="Boarding Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="54e0-4007-3ac6-9c26">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="305b-8958-80dd-5ca0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7842-2a08-834e-31b9"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f988-3ab2-738e-4e17"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e41a-1b3b-2f03-3db3"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Wargear Options" id="b65e-465d-b483-87ac" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sky Cannon" hidden="false" id="2bd2-ee73-62a3-fb1e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sky Cannon" hidden="false" id="fbb6-f8c8-1546-413e">
<profiles>
<profile name="Sky Cannon" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c121-ccf9-407c-2e36">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">15"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1f7b-3bb0-cd19-e53f"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dc60-9a49-d000-75d2"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1ddd-e65d-ed31-d69e"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Drill Cannon" hidden="false" id="50af-c64d-2199-c1e2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Drill Cannon" hidden="false" id="648e-53c1-ce01-faf3">
<profiles>
<profile name="Drill Cannon" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="f1b4-cc44-8a7b-bbc3">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">15"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">3</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e42d-6569-4e09-99cc"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2f92-8ad-265b-7296"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="99fd-188f-1cc-b6eb"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c7d7-d29e-bf7e-6625"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1856-479a-d52a-e57"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Arkanaut Admiral" hidden="false" id="1b27-b5aa-79ae-4130" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="caa6-519-206-ec7f" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Arkanaut Admiral" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="5ae8-2db1-36d2-e1b3">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="The Admiral's Flagship" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4c95-d6d-85aa-1c1e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle (Army), Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an **Arkanaut Ironclad** or **Arkanaut Frigate** in this unit’s regiment to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the battle, each time the target uses the ‘All-out Attack’ command while this unit is wholly within 12" of it, no command points are spent.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Always Take What You Are Owed" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="a277-8566-55ab-841d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Arkanaut Company** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add D6 to the target’s control score until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="'Bring Every Gun to Bear!'" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="60ad-b5ab-9d19-4716">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle (Army), Your Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **Skyvessel** wholly within 24" of this unit that is not in combat to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Attacks characteristic of the target’s ranged weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="301e-f583-692b-11e9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="29f8-11da-9a76-362f" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="6d8b-2750-dece-523a" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="e96-b134-aa98-3212" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="4de3-73ad-3f3f-9101" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="f56-8c99-8dd8-a38d" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Arkanaut Admiral" hidden="false" id="7fe1-85e5-ea83-78f9">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Masterwork Volley Pistol" hidden="false" id="cda5-8d27-2bd3-a1bf">
<profiles>
<profile name="Masterwork Volley Pistol" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="dc50-bac7-9ac5-d48a">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8bd6-a748-2818-de07"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3aa1-cb20-c442-1db1"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Skalfhammer" hidden="false" id="8817-945e-a75e-bfdb">
<profiles>
<profile name="Skalfhammer" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="28b1-590f-e5de-7f92">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f4d9-94fc-4fb7-8f13"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf34-59a9-bf3c-6d88"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e431-3d8-bdb2-c1b0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="48cb-a2db-96f2-1925"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Brokk Grungsson, Lord-Magnate of Barak-Nar" hidden="false" id="e071-391c-e920-ac59" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a681-dba4-58f3-e7bb" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Brokk Grungsson, Lord-Magnate of Barak-Nar" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8525-c4d3-cafc-8037">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Command the Fleet" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="50ca-f238-a251-11cb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 visible friendly **^^Skyvessels^^** wholly within 24" of this unit that are not in combat to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Each target can use a **^^Run^^** ability and still use **^^Shoot^^** and/or **^^Charge^^** abilities later in the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="First Rule of Grungsson" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ddc0-49a-c70-c5b9">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 2 other friendly **^^Skyfarer^^** units within this unit’s combat range to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Attacks characteristic of the targets’ melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Moustache-mounted Aetherblasters" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="145d-e757-b41f-60ce">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="2cfb-9ff0-9d19-7147" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WARMASTER" hidden="false" id="46f1-2630-e726-a065" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="UNIQUE" hidden="false" id="c7ca-8ce7-3133-c779" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="acb-6af4-c7e0-6d01" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="757f-9755-3af8-6709" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="FLY" hidden="false" id="25f3-e2c1-8c48-1618" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="c228-2ae-135b-f88a" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="ce8a-e1fa-2d2d-6803" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="8299-2d60-4fd8-5482" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="fd20-fc09-1802-e37d" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Brokk Grungsson, Lord-Magnate of Barak-Nar" hidden="false" id="647d-1388-8167-7e5">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Grungsson’s Boast" hidden="false" id="5d53-dade-af1b-df12">
<profiles>
<profile name="Grungsson’s Boast" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="4cf5-69da-2a57-c859">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">18"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3+3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e0cf-53fd-fa98-deaa"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1fa3-da69-5f50-e957"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Magnate’s Charter" hidden="false" id="4a6e-1cf8-20c8-5b79">
<profiles>
<profile name="The Magnate’s Charter" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="46b5-6afd-b76e-20f1">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4d2a-628c-13d3-c450"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="573d-fe93-7623-129f"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Brokk’s Aethermatic Saw" hidden="false" id="656d-7b30-e3c2-f37f">
<profiles>
<profile name="Brokk’s Aethermatic Saw" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5896-62be-a102-8b0d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="543d-2d1c-686f-6dcb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="abab-1b6b-21e4-e587"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1eb6-f847-f29c-7d61"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e6b9-89ac-d20e-f85c"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Aetheric Navigator" hidden="false" id="145-80eb-ca00-b9f" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="91a5-5e55-f917-3c47" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Aetheric Navigator" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="f2d6-b5da-bfa8-7dfa">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="The Admiral's Flagship" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5f71-290e-28e5-824b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Roll 6 dice. For each 1, pick a visible enemy unit within 18" of this unit to be an enemy target. For each 6, pick a visible friendly **^^Skyvessel^^** within 18" of this unit to be a friendly target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Inflict D3 mortal damage on each enemy target. If any damage points are allocated to an enemy target by this ability, halve its Move characteristic until the start of your next turn. Add 3" to the Move characteristic of each friendly target until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
</characteristics>
</profile>
<profile name="'Bring Every Gun to Bear!'" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c509-a91b-bb51-6a53">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit can use **^^Unbind^^** abilities as if it had **^^Wizard (1)^^**.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="8a7d-1dc0-de17-1e1a" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="4d63-510a-8187-ec87" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="e75-9725-9395-4916" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="f8e8-54b9-61fe-fbb6" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="23f1-4e68-c340-6d83" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="1814-f4bb-f859-227" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Aetheric Navigator" hidden="false" id="d12e-707f-93a2-7f80">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ranging Pistol" hidden="false" id="f64d-a45e-c22a-be4b">
<profiles>
<profile name="Ranging Pistol" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c3d-538c-450a-715f">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="abd6-10e8-7f85-6e2c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="316c-2553-89f6-f29f"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Zephyrscope" hidden="false" id="6298-1e12-ad6b-1edb">
<profiles>
<profile name="Zephyrscope" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2402-9ebd-92b8-20f9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b783-b001-abe8-354c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9911-871a-a05b-19ac"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="33c5-3c3b-b53c-1d20"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c07a-c827-77a-3675"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Endrinmaster with Endrinharness" hidden="false" id="3124-cf12-7803-f34b" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="b3bb-ccc2-3123-329e" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Endrinmaster with Endrinharness" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="f0ae-12ce-3bb1-3dff">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="'Aye Aye, Captain!'" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="471b-4473-60ff-b66d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Skyvessel^^** within this unit’s combat range to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, for the rest of the turn:
• The target can use a **^^Retreat^^** or **^^Run^^** ability and still use Shoot abilities later in the turn.
• No mortal damage is inflicted on the target by **^^Retreat^^** abilities.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Endrinmaster" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9954-1ca2-5504-67cb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Skyvessel^^** within this unit’s combat range to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 2+, **Heal (3)** the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="1a61-5a63-6432-e93f" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="72e5-215f-a77e-4216" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="84d2-3eaa-86a6-524b" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="5588-fd7a-e8e9-d424" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="ca8b-a70f-a2eb-ec70" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="a37d-6e66-f55-8022" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Endrinmaster with Endrinharness" hidden="false" id="3722-f505-e69a-f2bf">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Aethermight Hammer" hidden="false" id="a1ae-a774-ae03-55d1">
<profiles>
<profile name="Aethermight Hammer" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2681-19bc-5448-e53c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c456-113-7315-fca8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7308-7d5-d88f-dbe"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f26a-fe58-f8b0-873f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6c31-4b21-f212-63a4"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Codewright" hidden="false" id="bed0-dd91-c45b-71df" publicationId="d4a9-b568-9525-d6ac">
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="cadd-33e6-5b3e-3f13" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Codewright" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8dd-540f-7cb4-ddaf">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Advisory Role" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9351-c3b8-ec28-d313">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 visible friendly **^^Kharadron Overlords^^** units to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice for each target. On a 3+, pick 1 of the following effects to apply to that target for the rest of the turn:
***Seek New Prospects:*** Add 2 to the target’s control score.
***Don’t Argue With the Wind:*** Add 1 to run rolls and charge rolls for the target.
***There’s No Trading With Some People:*** No mortal damage is inflicted on the target by **^^Retreat^^** abilities.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="b157-d37f-60c7-2c2a" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="7c1a-2c76-9456-6bce" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="45e2-7aee-3a1e-df6c" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="2d56-2b55-ab6d-ac26" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="5053-66b-9ffe-7fb6" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="2795-5c59-f970-8ef1" targetId="e13e-4c7c-54fd-908" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Codewright" hidden="false" id="7d56-2678-3e2b-a57d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Battletome" hidden="false" id="40e5-f97b-59ce-fa0b">
<profiles>
<profile name="Battletome" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="d53a-4279-da0e-b59a">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a4d7-55ca-224e-9736"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5464-204f-72fa-366f"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Aethershot Pistol" hidden="false" id="1e38-58a8-b967-de48">
<profiles>
<profile name="Aethershot Pistol" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="f447-41b2-ddfa-a3c9">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9fae-b92c-7c9-3794"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9bfb-dae3-b0c8-a394"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7ae6-8875-670f-c189"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="99f5-54cc-6bc6-6416"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Grundstock Thunderers" hidden="false" id="9f81-a727-f6ab-e7cc" publicationId="d4a9-b568-9525-d6ac">
<profiles>
<profile name="Hold This Position" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="fe2d-101b-5071-72ab">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit has not used a **^^Move^^** ability this turn and was not set up this turn, this unit’s ranged weapons have **Shoot in Combat** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Grundstock Thunderers" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d4f5-bf2a-6be5-2fe7">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">4"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">2</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Grundstock Thunderer" hidden="false" id="b1a8-867d-3ee1-e959" defaultAmount="1,1,1,1,1" collective="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Grundstok Mortar or Aethercannon" hidden="false" id="4a6-ea6-c503-5b7b" defaultAmount="0,0,0,1,1">
<profiles>
<profile name="Grundstok Mortar or Aethercannon" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="1901-f69-e56-5471">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">18"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="2" field="selections" scope="9f81-a727-f6ab-e7cc" shared="true" id="98b-7715-59aa-cbb5" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f792-12e-20b2-f697"/>
</constraints>
<modifiers>
<modifier type="increment" value="2" field="98b-7715-59aa-cbb5">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9f81-a727-f6ab-e7cc" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" value="0" field="f792-12e-20b2-f697">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="9c21-1746-9873-a5b5" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Aethershot Rifle" hidden="false" id="afc4-b807-af54-111">
<profiles>
<profile name="Aethershot Rifle" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="2874-4532-c200-d73d">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">18"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ae3e-751-ed3f-d4e4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="92a4-4a8a-c41b-6eb4"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="8678-2a1-dc95-81f5" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="4a6-ea6-c503-5b7b" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="0" field="ae3e-751-ed3f-d4e4">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="8678-2a1-dc95-81f5" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="4a6-ea6-c503-5b7b" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" value="0" field="92a4-4a8a-c41b-6eb4">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="8678-2a1-dc95-81f5" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="4a6-ea6-c503-5b7b" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heavy Gun Butt" hidden="false" id="bff2-6a52-ca02-f268">
<profiles>
<profile name="Heavy Gun Butt" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3291-d3a3-7399-4331">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">1</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">5+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="765c-63e0-a420-413e-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="765c-63e0-a420-413e-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Aetheric Fumigator or Decksweeper" hidden="false" id="8678-2a1-dc95-81f5" defaultAmount="0,1,1,0,0">
<constraints>
<constraint type="max" value="2" field="selections" scope="9f81-a727-f6ab-e7cc" shared="true" id="e0b4-3537-85c4-6734" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d21-9a3d-2dbd-6cd"/>
</constraints>
<profiles>
<profile name="Aetheric Fumigator or Decksweeper" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c93e-2d1a-44e4-95d4">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">5</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Anti-**^^Infantry^^** (+1 Rend), Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="increment" value="2" field="e0b4-3537-85c4-6734">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9f81-a727-f6ab-e7cc" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" value="0" field="d21-9a3d-2dbd-6cd">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="9c21-1746-9873-a5b5" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="true" id="f594-2680-9a64-944"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="true" id="2b30-fe01-14b8-8702"/>
</constraints>
<modifiers>
<modifier type="increment" value="5" field="f594-2680-9a64-944">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="5" field="2b30-fe01-14b8-8702">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="fc1-74e-3e8a-6a" hidden="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="effd-4e20-d01c-601a" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Champion" hidden="false" id="f3f2-eebb-ad50-593f" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ab6f-f68b-cab4-6af4"/>
<constraint type="max" value="1" field="selections" scope="9f81-a727-f6ab-e7cc" shared="true" id="e6fb-a194-cb0a-aba" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="e6f-933c-3236-9f22" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="9f81-a727-f6ab-e7cc" shared="true" id="e167-c386-f35f-d126"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f748-643a-def1-5b98"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="e167-c386-f35f-d126">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="CHAMPION" hidden="false" id="6549-6aca-5167-1202" targetId="f679-3bcb-d664-9ac3" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="4a9a-793-7764-2dd3" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="10e9-568f-9035-6b7c" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="KHARADRON OVERLORDS" hidden="false" id="fe84-c0e2-37ba-b127" targetId="9c8d-276-b7d2-f1fd" primary="false"/>
<categoryLink name="DUARDIN" hidden="false" id="ba26-bde8-21a3-fb5e" targetId="72e3-7b1b-cb94-4cbd" primary="false"/>
<categoryLink name="SKYFARER" hidden="false" id="d469-20e4-7947-ceff" targetId="e13e-4c7c-54fd-908" primary="false"/>
<categoryLink name="STANDARD BEARER (1/5)" hidden="false" id="2c07-accb-2732-819e" targetId="73c-8e22-9dde-f97" primary="false"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Arkanaut Company" hidden="false" id="a86c-b6ef-d754-bcb7" publicationId="d4a9-b568-9525-d6ac">
<profiles>
<profile name="Glory-seekers" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3698-a64b-7f8c-c9">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls for this unit’s attacks that target an enemy unit contesting an objective.</characteristic>
</characteristics>
</profile>
<profile name="Arkanaut Company" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ed72-931f-515d-f61c">