forked from BSData/aeronautica-imperialis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ork_Air_Waaagh.cat
1688 lines (1686 loc) · 119 KB
/
Ork_Air_Waaagh.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="0743-d0bd-bfee-c92a" name="Ork Air Waaagh!" revision="37" battleScribeVersion="2.03" authorName="BSDevelopers" authorContact="@Water" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="df04-c447-f12b-fae8" gameSystemRevision="22" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="583d-7042-2316-f8b5" name="White Dwarf October 2019"/>
<publication id="22c5-f0a4-5370-5716" name="White Dwarf December 2019"/>
</publications>
<categoryEntries>
<categoryEntry id="9dd3-5cdf-f7b0-eaa1" name="Ork" hidden="true"/>
<categoryEntry id="de1c-371b-0a2e-902d" name="Aux" hidden="true">
<modifiers>
<modifier type="increment" field="45c6-8398-8c34-c48b" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9dd3-5cdf-f7b0-eaa1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="45c6-8398-8c34-c48b" type="max"/>
</constraints>
</categoryEntry>
</categoryEntries>
<selectionEntries>
<selectionEntry id="96a0-75b0-6b4a-645f" name="'Eavy Flak Kannon" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d62c-ae51-b57e-d32f" name="'Eavy Flak Kannon" hidden="false" typeId="f0d7-0c84-fbe0-fc3f" typeName="Ground Asset">
<characteristics>
<characteristic name="Structure" typeId="6308-84d8-bb4b-c0f8">2</characteristic>
<characteristic name="FPR" typeId="0aab-6b79-44c7-f913">2-2-1</characteristic>
<characteristic name="Damage" typeId="ba3d-54b5-9dbe-39ea">4+</characteristic>
<characteristic name="Special" typeId="c3d9-609b-cc54-f9e6">Effective Altitude (4), Ground-to-Air Fire, Extra Damage (6+)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5627-278a-e334-1683" name="Extra Damage (6+)" hidden="false" targetId="2e4d-1b50-12f0-759f" type="profile"/>
<infoLink id="7027-21ad-c9f3-9ae9" name="Effective Altitude (2)" hidden="false" targetId="5bcf-3c73-e59a-e68a" type="profile"/>
<infoLink id="c59e-9f1a-92a5-a2a4" name="Ground-to-Air Fire" hidden="false" targetId="297a-5ea8-7f8e-4621" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e85f-24c2-c56c-79f8" name="Ground Asset" hidden="false" targetId="4ccd-3c3f-80d3-f2fb" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a5a-d4e5-f815-0cf1" name="Big Burna" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6445-b7b9-0e97-3980" type="max"/>
</constraints>
<profiles>
<profile id="e090-3571-3885-914c" name="Big Burna" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">3</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">-</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">2</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-4</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">4+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">3</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">7</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3b57-67f6-fb0f-42be" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="true"/>
<categoryLink id="e001-fe9b-5793-1826" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2ffe-aa1d-21b0-5f8e" name="Toofkraker" 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="a746-3fb9-679f-1cb5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ca68-9b6b-32c7-5490" type="min"/>
</constraints>
<profiles>
<profile id="b14a-4d16-7cd7-e09f" name="Strategic Bomber" hidden="false" typeId="de1e-e160-29f8-7a0c" typeName="Aces">
<characteristics>
<characteristic name="Ability" typeId="65ee-9496-8377-0d24">Once per game, when making a Bombing Run, you may add a +1 modifier to each of the Firepower dice when rolling to hit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="fe73-0f67-b29f-a755" name="Additional Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="e1d1-f3b5-3e68-3565" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="0a5a-d4e5-f815-0cf1" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8d46-35c2-ee18-4cee" type="greaterThan"/>
<condition field="selections" scope="0a5a-d4e5-f815-0cf1" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1812-6abe-f084-4769" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e1d1-f3b5-3e68-3565" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2882-2b18-9521-cda6" name="Pair of Rokkits" hidden="false" collective="false" import="true" targetId="e324-ab13-d146-b6db" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0853-6d04-f719-782c" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="e2cb-d895-519b-d736" name="Pair of Wing Bombs" hidden="false" collective="false" import="true" targetId="7e34-8f72-472e-0520" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba0c-19c6-a396-2231" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="5e07-df07-66e2-a5a6" name="Pair of Big Bombs" hidden="false" collective="false" import="true" targetId="8d46-35c2-ee18-4cee" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b70-2900-3f16-8665" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e420-c722-4da4-5a6a" name="Quad Big Shootas" hidden="false" collective="false" import="true" targetId="f6cb-4ac3-2c7c-ee01" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1dd-9efc-0086-a326" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f928-ead6-dc10-e52f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ce93-bb13-4e3c-12f6" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1cff-62cb-5314-8259" name="Turret Big Shootas" hidden="false" collective="false" import="true" targetId="65d8-6c0b-06df-abc3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0192-27c1-33fc-9b10" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e1c7-ac93-b0a7-3d7f" type="max"/>
</constraints>
</entryLink>
<entryLink id="fcff-d303-68ff-719f" name="Tail Gun" hidden="false" collective="false" import="true" targetId="5e29-c17a-07a1-14b7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f27-ee5b-e9a4-e2b2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c74-770b-d9b5-2a17" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="22.0"/>
</costs>
</selectionEntry>
<selectionEntry id="81bf-c6f6-1b19-575a" name="Dakkajet" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="f142-8ad2-cd30-034f" name="Dakkajet" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<modifiers>
<modifier type="increment" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="81bf-c6f6-1b19-575a" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="81bf-c6f6-1b19-575a" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f00-6d9b-20ec-85c0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="8234-9f67-e172-880a" value="1">
<conditions>
<condition field="selections" scope="81bf-c6f6-1b19-575a" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">2</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">-</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">2</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-5</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">4+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">4</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">8</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="572a-dcc1-1e8e-6f1f" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="true"/>
<categoryLink id="1f1a-f6f1-581f-358d" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f0b1-6538-5850-fe03" name="Additional Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="890d-34e5-8473-bc0b" value="1.0">
<conditions>
<condition field="selections" scope="81bf-c6f6-1b19-575a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1812-6abe-f084-4769" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="890d-34e5-8473-bc0b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7ad9-ff42-5012-1249" name="Pair of Wing Bombs" hidden="false" collective="false" import="true" targetId="7e34-8f72-472e-0520" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="41ca-1c83-e2be-141e" name="Pair of Rokkits" hidden="false" collective="false" import="true" targetId="e324-ab13-d146-b6db" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c9d7-3b0d-3b07-b978" name="Quad Big Shootas" hidden="false" collective="false" import="true" targetId="f6cb-4ac3-2c7c-ee01" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ba4-d38f-5617-4085" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1910-dbb1-dad5-62d1" type="max"/>
</constraints>
</entryLink>
<entryLink id="a05b-49b7-24b4-bcad" name="Aircraft upgrade" hidden="false" collective="false" import="true" targetId="54a6-483f-3fbb-cf60" type="selectionEntryGroup"/>
<entryLink id="bdc3-540a-c180-2afb" name="Crew" hidden="false" collective="false" import="true" targetId="ea21-b91d-7237-b2b0" type="selectionEntryGroup"/>
<entryLink id="cf70-b292-660a-f695" name="Expanded Ace Abilities" hidden="false" collective="false" import="true" targetId="9212-4467-e7a2-ed52" type="selectionEntry"/>
<entryLink id="758f-01bf-f54c-773f" name="Custom Aircraft Upgrades" hidden="false" collective="false" import="true" targetId="fa55-16f8-1abb-3626" type="selectionEntry"/>
<entryLink id="7161-eecd-0e1c-ee7c" name="Campaign Ace Abilities" hidden="false" collective="false" import="true" targetId="005b-c464-c070-94d7" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4d9a-d54a-a578-435f" name="Eavy Bommer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9d86-855c-a981-b266" name="Eavy Bomber" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<modifiers>
<modifier type="decrement" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="4d9a-d54a-a578-435f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f00-6d9b-20ec-85c0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="4d9a-d54a-a578-435f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="8234-9f67-e172-880a" value="1">
<conditions>
<condition field="selections" scope="4d9a-d54a-a578-435f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">6</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">2</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">1</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-3</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">5+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">2</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">4</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="08b5-da9e-f278-7105" name="Aerial Attack" hidden="false" targetId="0d22-4d01-ff7f-b254" type="profile"/>
<infoLink id="51d2-2159-ac4a-b6cb" name="Ground Attack" hidden="false" targetId="434d-a81a-c5e1-5f52" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cf18-c302-25ed-7dc4" name="Bomber" hidden="false" targetId="8cfa-dfb7-e996-3c7d" primary="true"/>
<categoryLink id="ff8c-79c3-101d-0b4d" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2b0a-27f4-b9da-f92c" name="Bombs" 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="5e69-b11b-0f51-dc8b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75f6-e2fa-bfa3-23b1" type="max"/>
</constraints>
<profiles>
<profile id="3d7d-5a84-7012-cf0d" name="Bombs" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Rear</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">4-0-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">2+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">1</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">Ground Attack, Extra Damage (5+)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="beaf-3de8-afe3-a755" name="Ground Attack" hidden="false" targetId="434d-a81a-c5e1-5f52" type="profile"/>
<infoLink id="31c4-4e91-f071-60a2" name="Extra Damage (5+)" hidden="false" targetId="6cd3-39d8-bedc-56e6" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7c1f-0f84-d91b-b536" name="Nose Turret" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4bc7-5667-2257-e422" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eafe-436d-ac1d-7929" type="max"/>
</constraints>
<profiles>
<profile id="78b2-b637-19ce-780f" name="Nose Turret" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Front</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">4-2-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f5fb-8f7a-44b2-2973" name="Port Big Shootas" 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="db1f-2b1e-e040-f0ea" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5d6-a192-a31b-98ac" type="max"/>
</constraints>
<profiles>
<profile id="b6b6-497c-a022-c7da" name="Port Big Shootas" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Left Side, Down</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">6-3-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ace7-9dea-4d03-556f" name="Starboard Big Shootas" 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="47d6-7fd3-b2d1-bc27" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0898-0db1-1caa-bc5b" type="min"/>
</constraints>
<profiles>
<profile id="6592-3e0c-9fdd-7212" name="Starboard Big Shootas" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Right Side, Down</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">6-3-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="487e-908c-dad4-db35" name="Additional Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="decrement" field="d0c8-a783-def9-3dcb" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="4d9a-d54a-a578-435f" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8d46-35c2-ee18-4cee" type="greaterThan"/>
<condition field="selections" scope="4d9a-d54a-a578-435f" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1812-6abe-f084-4769" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0c8-a783-def9-3dcb" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1e73-de23-53a9-ce7c" name="Pair of Rokkits" hidden="false" collective="false" import="true" targetId="e324-ab13-d146-b6db" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2687-d783-332d-9fd5" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="b493-f427-0798-ec06" name="Pair of Wing Bombs" hidden="false" collective="false" import="true" targetId="7e34-8f72-472e-0520" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="38ec-1899-44e8-04fc" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="7fa6-96f8-8632-01f1" name="Pair of Big Bombs" hidden="false" collective="false" import="true" targetId="8d46-35c2-ee18-4cee" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a0c-5a82-9dd0-b99e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cc7f-41f4-e87e-a53e" name="Dorsal Turret" hidden="false" collective="false" import="true" targetId="f918-5f25-5a1b-67d9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eecf-b8bb-2dbc-5e4a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5970-f4a6-69c8-02cc" type="min"/>
</constraints>
</entryLink>
<entryLink id="8ddb-6a39-69e2-c99a" name="Aircraft upgrade" hidden="false" collective="false" import="true" targetId="54a6-483f-3fbb-cf60" type="selectionEntryGroup"/>
<entryLink id="fc09-69c3-0013-2f3f" name="Crew" hidden="false" collective="false" import="true" targetId="ea21-b91d-7237-b2b0" type="selectionEntryGroup"/>
<entryLink id="93b3-3d68-5b28-5e63" name="Expanded Ace Abilities" hidden="false" collective="false" import="true" targetId="9212-4467-e7a2-ed52" type="selectionEntry"/>
<entryLink id="1ce8-ac3e-9d4b-c50b" name="Custom Aircraft Upgrades" hidden="false" collective="false" import="true" targetId="fa55-16f8-1abb-3626" type="selectionEntry"/>
<entryLink id="5582-565a-767f-eeec" name="Campaign Ace Abilities" hidden="false" collective="false" import="true" targetId="005b-c464-c070-94d7" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="28.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a442-62a5-28a0-2ac0" name="Fighta Bommer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4992-51c7-7f34-8d2e" name="Fighta Bommer" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<modifiers>
<modifier type="decrement" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="a442-62a5-28a0-2ac0" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f00-6d9b-20ec-85c0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="a442-62a5-28a0-2ac0" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="8234-9f67-e172-880a" value="1">
<conditions>
<condition field="selections" scope="a442-62a5-28a0-2ac0" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">3</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">-</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">1</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-4</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">4+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">3</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">7</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c299-afab-49e2-40ba" name="Aerial Attack" hidden="false" targetId="0d22-4d01-ff7f-b254" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="46e9-6659-5436-1d29" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="true"/>
<categoryLink id="8d65-cb75-df79-ae86" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2585-a14c-5fc7-456f" name="Additional Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="b56b-cf9f-9b58-263c" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="a442-62a5-28a0-2ac0" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8d46-35c2-ee18-4cee" type="greaterThan"/>
<condition field="selections" scope="a442-62a5-28a0-2ac0" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1812-6abe-f084-4769" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b56b-cf9f-9b58-263c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1c34-4742-42e1-81f0" name="Pair of Rokkits" hidden="false" collective="false" import="true" targetId="e324-ab13-d146-b6db" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b72-7269-2b8c-b77b" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="96c2-2d16-6e3a-b2cb" name="Pair of Wing Bombs" hidden="false" collective="false" import="true" targetId="7e34-8f72-472e-0520" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fca-019d-73c3-4bf6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="6a92-b07e-5471-f80d" name="Pair of Big Bombs" hidden="false" collective="false" import="true" targetId="8d46-35c2-ee18-4cee" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f004-dec6-823f-cf25" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="3321-c4d1-aeee-951c" name="Quad Big Shootas" hidden="false" collective="false" import="true" targetId="f6cb-4ac3-2c7c-ee01" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad08-804f-5f88-5fad" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9476-219a-71b7-3ba2" type="max"/>
</constraints>
</entryLink>
<entryLink id="5e8b-6b54-ebee-55c2" name="Turret Big Shootas" hidden="false" collective="false" import="true" targetId="65d8-6c0b-06df-abc3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8058-be1d-f858-fc7a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee80-5e17-8ee3-29fe" type="max"/>
</constraints>
</entryLink>
<entryLink id="5134-ff6c-3010-d867" name="Tail Gun" hidden="false" collective="false" import="true" targetId="5e29-c17a-07a1-14b7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="505e-8866-2d9a-c99d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d6e-06f7-7432-9a61" type="max"/>
</constraints>
</entryLink>
<entryLink id="95b0-7d7f-7fe8-4ef9" name="Aircraft upgrade" hidden="false" collective="false" import="true" targetId="54a6-483f-3fbb-cf60" type="selectionEntryGroup"/>
<entryLink id="2e38-d153-3519-07cc" name="Crew" hidden="false" collective="false" import="true" targetId="ea21-b91d-7237-b2b0" type="selectionEntryGroup"/>
<entryLink id="6eb6-5b04-19f7-4a11" name="Expanded Ace Abilities" hidden="false" collective="false" import="true" targetId="9212-4467-e7a2-ed52" type="selectionEntry"/>
<entryLink id="3599-0ea1-5be7-e880" name="Custom Aircraft Upgrades" hidden="false" collective="false" import="true" targetId="fa55-16f8-1abb-3626" type="selectionEntry"/>
<entryLink id="8740-45e4-165a-9a9d" name="Campaign Ace Abilities" hidden="false" collective="false" import="true" targetId="005b-c464-c070-94d7" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9125-c1ab-8abf-5bc9" name="Flak Platform" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d465-2495-9cf3-f9f5" name="Flak Plaform" hidden="false" typeId="f0d7-0c84-fbe0-fc3f" typeName="Ground Asset">
<characteristics>
<characteristic name="Structure" typeId="6308-84d8-bb4b-c0f8">2</characteristic>
<characteristic name="FPR" typeId="0aab-6b79-44c7-f913">8-4-2</characteristic>
<characteristic name="Damage" typeId="ba3d-54b5-9dbe-39ea">5+</characteristic>
<characteristic name="Special" typeId="c3d9-609b-cc54-f9e6">Effective Altitude (2), Ground-to-Air Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1399-b37e-8309-3487" name="Effective Altitude (2)" hidden="false" targetId="5bcf-3c73-e59a-e68a" type="profile"/>
<infoLink id="dfdc-56a6-e861-4b47" name="Ground-to-Air Fire" hidden="false" targetId="297a-5ea8-7f8e-4621" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fff6-bcfc-820d-4415" name="Ground Asset" hidden="false" targetId="4ccd-3c3f-80d3-f2fb" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="9.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8db8-8c06-939d-4614" name="Grot Bommer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="e09b-2125-1631-9d01" name="Grot Bomms" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<modifiers>
<modifier type="set" field="a495-a55a-5d79-5b94" value="4">
<conditions>
<condition field="selections" scope="8db8-8c06-939d-4614" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f0d3-a101-5526-f7d1" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Left Side-Front, Front, Right Side-Front</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">-</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">2+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">2</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">Autonomous Weapon, Extra Damage (4+)</characteristic>
</characteristics>
</profile>
<profile id="45c9-dc48-91f6-d889" name="Grot Bommer" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<modifiers>
<modifier type="increment" field="8234-9f67-e172-880a" value="1">
<conditions>
<condition field="selections" scope="8db8-8c06-939d-4614" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="8db8-8c06-939d-4614" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e3-0ac3-0a20-de14" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="db83-4ff1-b0cb-a312" value="1">
<conditions>
<condition field="selections" scope="8db8-8c06-939d-4614" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f00-6d9b-20ec-85c0" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">6</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">3</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">1</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-3</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">5+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">2</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">4</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="80ad-f617-e7d2-5368" name="Bomber" hidden="false" targetId="8cfa-dfb7-e996-3c7d" primary="true"/>
<categoryLink id="e233-797f-1ca4-0b91" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e4be-0e6f-6cab-8343" name="Port Turret" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96b9-f363-baa2-18c8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b8e-0056-1b25-ca4a" type="max"/>
</constraints>
<profiles>
<profile id="0a31-7fc9-659c-23f2" name="Port Turret" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Left Side, Up</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">2-1-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ad52-13e1-11ea-0335" name="Starboard Turret" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e972-0a40-7073-e2a5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f970-5015-dc96-7ac3" type="max"/>
</constraints>
<profiles>
<profile id="1845-27c9-6219-b155" name="Starboard Turret" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Right Side, Up</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">2-1-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="2a83-262f-2a10-a9a8" name="Grot Bomms" hidden="false" collective="false" import="true" defaultSelectionEntryId="a63a-f2b7-32ae-62be">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68fb-6144-90ab-c1a9" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="27bd-df2b-ab1c-fbac" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="a63a-f2b7-32ae-62be" name="2 Bomms" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f0d3-a101-5526-f7d1" name="4 Bomms" 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="a75a-6f56-7b1c-1864" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="8.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b70a-a569-188b-68cb" name="Quad Big Shootas" hidden="false" collective="false" import="true" targetId="f6cb-4ac3-2c7c-ee01" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a26-fb02-b6e2-9105" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="837a-241f-bf66-6eac" type="max"/>
</constraints>
</entryLink>
<entryLink id="bf6a-bef9-9846-dbf3" name="Aircraft upgrade" hidden="false" collective="false" import="true" targetId="54a6-483f-3fbb-cf60" type="selectionEntryGroup"/>
<entryLink id="8d36-bd66-77b7-86aa" name="Crew" hidden="false" collective="false" import="true" targetId="ea21-b91d-7237-b2b0" type="selectionEntryGroup">
<selectionEntries>
<selectionEntry id="7f5f-8f88-7045-4df7" name="Rudok Redz" publicationId="22c5-f0a4-5370-5716" 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="edc8-769f-006b-1f4e" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="03f9-921a-a504-4172" type="max"/>
</constraints>
<profiles>
<profile id="2f53-9103-f174-94a8" name="Grot Bomb Ace" hidden="false" typeId="de1e-e160-29f8-7a0c" typeName="Aces">
<characteristics>
<characteristic name="Ability" typeId="65ee-9496-8377-0d24">A single Grot Bomm fired by this aircraft may be piloted by Rudok Reddz. When moving, Rudok Redz may make up to two turns with his Grot Bomb rather than the usual one.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</entryLink>
<entryLink id="639b-ace7-b219-4b4b" name="Expanded Ace Abilities" hidden="false" collective="false" import="true" targetId="9212-4467-e7a2-ed52" type="selectionEntry"/>
<entryLink id="a2be-600e-cc8b-7150" name="Custom Aircraft Upgrades" hidden="false" collective="false" import="true" targetId="fa55-16f8-1abb-3626" type="selectionEntry"/>
<entryLink id="9762-c9cf-6540-0c43" name="Campaign Ace Abilities" hidden="false" collective="false" import="true" targetId="005b-c464-c070-94d7" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="28.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d3eb-3c4f-dc23-39cc" name="Vulture" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7305-b7c0-0d10-ef1d" type="max"/>
</constraints>
<profiles>
<profile id="ece3-f0f8-2c9e-4f6a" name="Vulture" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">2</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">-</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">2</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-5</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">3+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">3</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">8</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0986-e190-79ab-bd5d" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="true"/>
<categoryLink id="0a46-a152-f9af-0a1e" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="46c1-9806-77ea-6949" name="Da Black Barun" 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="4b91-2308-0ba1-8b97" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="447b-ed75-0bd5-323d" type="min"/>
</constraints>
<profiles>
<profile id="f073-8c93-a29a-4fbd" name="Fighter Ace" hidden="false" typeId="de1e-e160-29f8-7a0c" typeName="Aces">
<characteristics>
<characteristic name="Ability" typeId="65ee-9496-8377-0d24">When targeting an enemy aircraft with Air-to-Aire fire, this aircraft may re-roll any of the Firepower dice that roll a 1 to hit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="bad4-ad33-fa8f-0abf" name="Additional Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="869c-c6bb-f761-b2bd" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b1ac-3a2a-574d-25a3" name="Pair of Wing Bombs" hidden="false" collective="false" import="true" targetId="7e34-8f72-472e-0520" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4cf1-9810-667a-e218" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="fd2b-c00d-9581-af75" name="Pair of Rokkits" hidden="false" collective="false" import="true" targetId="e324-ab13-d146-b6db" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c416-3734-a80f-bd99" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6700-c3c3-ae5a-3987" name="Quad Big Shootas" hidden="false" collective="false" import="true" targetId="f6cb-4ac3-2c7c-ee01" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dce4-add0-c808-8860" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5cb9-681b-5c84-65c3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ce25-72f4-6cf2-8c90" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="23.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c538-e1db-be7c-e544" name="Killa Eagul" publicationId="583d-7042-2316-f8b5" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14ef-8d52-c1f4-0565" type="max"/>
</constraints>
<profiles>
<profile id="5393-43ec-51ac-e397" name="Killa Eagul" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">2</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">-</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">2</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-5</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">4+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">4</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">8</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">4</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="17cd-9dbd-8fdc-ddcc" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="true"/>
<categoryLink id="45bf-3c6a-9086-e9d2" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7e32-4e4a-7277-3877" name="Da Skymuncha" publicationId="583d-7042-2316-f8b5" 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="b9e4-cb09-5a27-b7e6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f270-eeb6-793b-2b4d" type="min"/>
</constraints>
<profiles>
<profile id="9660-d10d-a2ef-344b" name="Oversized Engines" hidden="false" typeId="de1e-e160-29f8-7a0c" typeName="Aces">
<characteristics>
<characteristic name="Ability" typeId="65ee-9496-8377-0d24">Once per game, at the start of its Movement, this aircraft can increase its Throttle value to 4 until the end of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="d807-0cdc-5803-997f" name="Additional Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1878-8e0b-2780-6336" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0c32-f3a4-fa05-29b8" name="Pair of Wing Bombs" hidden="false" collective="false" import="true" targetId="7e34-8f72-472e-0520" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f158-8ca1-7d37-0cb4" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="65ef-28a1-3e09-6b49" name="Pair of Rokkits" hidden="false" collective="false" import="true" targetId="e324-ab13-d146-b6db" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="473e-94f7-6029-a058" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6528-88e3-e177-7578" name="Quad Big Shootas" hidden="false" collective="false" import="true" targetId="f6cb-4ac3-2c7c-ee01" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6415-55c7-4a5d-99bb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be7a-7e4c-34a3-ab9e" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9224-e2a6-175b-3da4" name="Fighter" hidden="false" targetId="eea0-ed0b-e00c-b07c" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="18.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8303-efa8-8088-5a91" name="Mega Bommer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="ed65-8936-8f72-7e3d" name="Mega Bommer" hidden="false" typeId="d311-f402-9b2b-75cf" typeName="Unit">
<characteristics>
<characteristic name="Structure" typeId="6b68-c1f3-058a-07b2">10</characteristic>
<characteristic name="Transport" typeId="8ee3-89b8-cd9f-58ba">3</characteristic>
<characteristic name="Fuel" typeId="e194-183f-9e70-f04d">-</characteristic>
<characteristic name="Throttle" typeId="92ef-efe6-13ea-3792">1</characteristic>
<characteristic name="Ace Maneuvers" typeId="3225-9212-fdab-50f0">1-2</characteristic>
<characteristic name="Handling" typeId="951a-93cf-2cc5-78d8">5+</characteristic>
<characteristic name="Min Speed" typeId="8234-9f67-e172-880a">2</characteristic>
<characteristic name="Max Speed" typeId="db83-4ff1-b0cb-a312">5</characteristic>
<characteristic name="Max Altitude" typeId="8a75-2b8f-5077-06cd">5</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cf15-640e-c6b6-58e7" name="New CategoryLink" hidden="false" targetId="8cfa-dfb7-e996-3c7d" primary="true"/>
<categoryLink id="d005-6690-88bf-2c7e" name="Ork" hidden="false" targetId="9dd3-5cdf-f7b0-eaa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ba31-5937-836d-0948" name="Dorsal-mounted Flak Cannon" 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="2cf7-fa1b-00e5-b588" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e5a-28c6-1012-ae4e" type="min"/>
</constraints>
<profiles>
<profile id="b50a-8aa1-515b-cfd0" name="Dorsal-mounted Flak Cannon" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">All Round, Up</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">8-4-2</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">Aerial Attack</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d41a-c008-4e10-6aa8" name="Aerial Attack" hidden="false" targetId="0d22-4d01-ff7f-b254" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c8d9-f374-3723-fa03" name="Mega Bomb" 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="5b2a-e7a2-d9ee-9b85" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4d1-de1b-ec34-1bef" type="min"/>
</constraints>
<profiles>
<profile id="6122-a8bf-0a9f-cb82" name="Mega Bomb" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Rear</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">10-0-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">2+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">1</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">Ground Attack, Extra Damage (4+)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4de3-cc16-9cce-2f87" name="Ground Attack" hidden="false" targetId="434d-a81a-c5e1-5f52" type="profile"/>
<infoLink id="be1c-7e9a-f0b6-6c4f" name="Extra Damage (4+)" hidden="false" targetId="6cd3-39d8-bedc-56e6" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0248-0cc4-d4d3-5132" name="Nose Turret (Mega Bommer)" 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="bee7-10ef-26c2-f4ff" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3e7-1141-a750-5d94" type="min"/>
</constraints>
<profiles>
<profile id="c438-822a-c63b-b3b3" name="Nose Turret (Mega Bommer)" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Front</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">2-1-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">4+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">Aerial Attack</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4103-7781-c6a8-ceeb" name="Aerial Attack" hidden="false" targetId="0d22-4d01-ff7f-b254" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8e14-1466-abc5-1627" name="Nose-mounted Big Shoota" 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="3957-79c8-9e36-6360" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10bc-96b7-438f-dfa8" type="min"/>
</constraints>
<profiles>
<profile id="a2b1-a99e-4e8c-6c35" name="Nose-mounted Big Shoota" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Front</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">4-2-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ebd0-02b8-2b0d-54fe" name="Port Big Shoota" 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="47f4-e57e-ad5a-79ac" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a872-9a1a-05d0-56cc" type="min"/>
</constraints>
<profiles>
<profile id="446c-97c7-6a8e-eb4a" name="Port Big Shoota" hidden="false" typeId="a0a8-9aaa-cb92-0e1e" typeName="Weapon">
<characteristics>
<characteristic name="FIRE ARC" typeId="3281-5ef2-68b5-0c24">Left Side, Down</characteristic>
<characteristic name="FPR" typeId="a5ae-d9ef-f1b4-e838">1-1-0</characteristic>
<characteristic name="DMG" typeId="3666-196d-11fd-c067">5+</characteristic>
<characteristic name="AMMO" typeId="a495-a55a-5d79-5b94">UL</characteristic>
<characteristic name="SPECIAL" typeId="847c-0816-0714-4132">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>