-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShaltari.cat
3124 lines (3124 loc) · 235 KB
/
Shaltari.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="false" id="c017-50c0-52a0-3f24" name="Shaltari" gameSystemId="6d58e2c7-f67a-3e19-7acf-5b8a58cf919c" gameSystemRevision="5" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Command" hidden="false" id="fe20-56c4-31ce-2159" subType="unit-group">
<selectionEntries>
<selectionEntry type="unit" import="true" name="Daimyo Battlesuit" hidden="false" id="a10b-a27d-b87d-f006">
<categoryLinks>
<categoryLink name="Command" hidden="false" id="3229-d3ce-2050-4924" targetId="ed7f-0593-2e55-430d" primary="true"/>
<categoryLink name="Infantry" hidden="false" id="72f3-cb29-3dff-4eb3" targetId="4416-02b4-a45b-07f0" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Daimyo Battlesuit" hidden="false" id="43d3-f4d3-6bc6-d385" defaultAmount="1" collective="true">
<costs>
<cost name="pts" typeId="points" value="65"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="2"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0523-0d5b-4865-4b28" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d09f-3816-b0a8-39e6" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Resilient" id="0389-48a8-cd4b-84d9" hidden="false" type="rule" targetId="bee8-5b68-340e-b6bb"/>
<infoLink name="Command Centre" id="a0f8-0cec-bf38-5443" hidden="false" type="rule" targetId="69c8-c7bd-0b67-dfbe"/>
<infoLink name="Warsuit" id="2666-449a-1afd-eb44" hidden="false" type="rule" targetId="78ab-d7d9-dfe8-de1e"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Commander" hidden="false" id="767a-bd9f-b075-def7" type="selectionEntryGroup" targetId="35d6-3921-58bd-457c" collective="true"/>
<entryLink import="true" name="Web Projector" hidden="false" id="5d14-9ca5-f8d1-7703" type="selectionEntry" targetId="2e0e-1ad7-d1d6-05a7"/>
</entryLinks>
<rules>
<rule name="Warband" id="66da-f1c1-236c-386b" hidden="false">
<description>At the start of the game, before deployment,this unit may join any other squad of Shaltari Infantry. For all purposes it is treated as part of their squad and battlegroup, taking on their category too (although a Commander may still be mounted in it due to the Command Centre special rule).</description>
</rule>
<rule name="Nano Gateway" id="80e2-94db-4d7d-4b07" hidden="false">
<description>Instead of making a Moving action, this squad may immediately go into Holding. Any held objectives are dropped before this squad is put into holding.</description>
</rule>
</rules>
<profiles>
<profile name="Daimyo Battlesuit" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="866c-d703-ddff-18d8">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">3"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, P5+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">9</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">4</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Infantry 2+</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Command Centre, Resilient</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">2 Infantry</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warband Selection" hidden="false" id="3580-cbe0-5b31-16a0" collective="true" defaultAmount="1">
<associations>
<association min="1" max="1" scope="force" childId="unit" name="Warband" id="3d60-f2a9-443f-1e35" includeChildSelections="true" includeChildForces="true"/>
</associations>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Lynx Chiefstrider" hidden="false" id="5943-60d6-2e2f-6acf">
<selectionEntries>
<selectionEntry type="model" import="true" name="Lynx Chiefstrider" hidden="false" id="2072-1e65-a7e5-f9df" collective="true">
<costs>
<cost name="pts" typeId="points" value="100"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="6"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Lynx Chiefstrider" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="cdb4-9e36-5071-c1ae">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">4"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, P3+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">14</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">4</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Walker</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">6 Tank</characteristic>
</characteristics>
</profile>
<profile name="Command Module" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="be05-974f-1f08-7f66">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">0"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, P3+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">11</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">1</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Tank</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">N/A</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="Clairvoyance" id="26bc-ba6e-8351-8117" hidden="false">
<description>When drawing Command Cards, draw one extra to your highest CV and discard 1 of your choice from your hand.</description>
</rule>
<rule name="Eject!" id="d92a-4273-6d98-f1dc" hidden="false">
<description>If this unit is destroyed, roll a 4 dice. Place the Command Module within that many inches, no higher than 8” above ground level. The Command Module is best represented by the turret top of the Lynx or a small token. If there was a Commander in this unit, it survives in the Command Module. The Command Module is counted as the same Battlegroup as this unit.</description>
</rule>
</rules>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9b5c-6e34-6279-e0b6" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b3ff-cab0-a294-5604" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Twin Gauss Cannons" hidden="false" id="a917-8a71-8b10-108b" type="selectionEntry" targetId="5a93-95aa-778b-3355"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="b802-345e-705e-2f3d" targetId="ed7f-0593-2e55-430d" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Frostdrake Command Ship" hidden="false" id="3410-3719-1b99-0697">
<selectionEntries>
<selectionEntry type="model" import="true" name="Frostdrake Command Ship" hidden="false" id="bffb-41d2-0b9b-5cc2">
<costs>
<cost name="pts" typeId="points" value="160"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Frostdrake Command Ship" typeId="b88a-b68e-168b-9f29" typeName="Aircraft" hidden="false" id="2df5-9d4e-08be-09ee">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">20"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, P5+, E+3</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">6</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5119-652a-0518-ede7" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5d28-0f6e-845a-5f10" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Foe Crusher Cannon" hidden="false" id="0b52-d1d5-6c84-f742" type="selectionEntry" targetId="4b42-e525-b383-a3be" sortIndex="1"/>
<entryLink import="true" name="Disruption Cannon" hidden="false" id="b280-6ba9-d6b0-47f1" type="selectionEntry" targetId="1680-e43c-db2c-0f15" sortIndex="2"/>
<entryLink import="true" name="Dragon Cannon" hidden="false" id="a517-fa69-e412-c062" type="selectionEntry" targetId="4e06-cfd3-c2c2-549d" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="4d88-4ff3-1e80-fac0" targetId="ed7f-0593-2e55-430d" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Gharial Command Tank" hidden="false" id="26d0-33af-b431-07bf">
<selectionEntries>
<selectionEntry type="model" import="true" name="Gharial Command Tank" hidden="false" id="d40b-b2e0-729b-beb8">
<costs>
<cost name="pts" typeId="points" value="115"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="6"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Gharial Command Tank" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="e19b-5044-b86a-57f9">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">6"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+2, P5+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">12</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">4</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Skimmer</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">6 Tank</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b7f6-94c8-7612-443b" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d094-0800-57d2-a791" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Microwave Cannon" hidden="false" id="e65e-e549-e94c-828d" type="selectionEntry" targetId="1d81-2481-98f3-0e35"/>
<entryLink import="true" name="Neutron Launchers" hidden="false" id="9c7c-a44c-1083-573b" type="selectionEntry" targetId="4d62-a842-4afc-78ee"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="d36b-bf88-6c41-3bc1" targetId="ed7f-0593-2e55-430d" primary="true"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Exotic" hidden="false" id="2f71-1a37-1e5e-11d7" subType="unit-group">
<selectionEntries>
<selectionEntry type="unit" import="true" name="Ronin Battlesuit" hidden="false" id="77c7-ab18-63e5-51d0">
<selectionEntries>
<selectionEntry type="model" import="true" name="Ronin Battlesuit" hidden="false" id="7cba-bfc9-0712-0e93" collective="true">
<profiles>
<profile name="Ronin Battlesuit" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="4960-f9ce-8939-033c">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">4"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, P6+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">9</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">2</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Infantry 3+</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">1 Infantry/Tank</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Transport Selection" id="f3d7-3204-3572-7d15" hidden="false" collective="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Infantry" hidden="false" id="379a-6a79-b35a-ad28" defaultAmount="1" collective="true">
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="1"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Vehicle" hidden="false" id="1668-a36f-ef9f-7a87" collective="true">
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="1"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dc1d-eb83-07f5-25a0" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8440-50dc-da31-c24a" includeChildSelections="false"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="d630-50a0-973f-63a2" includeChildSelections="false"/>
<constraint type="max" value="6" field="selections" scope="parent" shared="true" id="06bd-a414-e8ca-aaef" includeChildSelections="false"/>
</constraints>
<categoryLinks>
<categoryLink name="Infantry" hidden="false" id="65b7-4724-1b0c-bd79" targetId="4416-02b4-a45b-07f0" primary="true"/>
</categoryLinks>
<infoLinks>
<infoLink name="Tough" id="23d3-350b-cff5-f56c" hidden="false" type="rule" targetId="48e3-db2d-d554-e0dc"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Ronin Weapon Selection" hidden="false" id="c98c-cb0a-8f0d-678f" type="selectionEntryGroup" targetId="4e44-3472-19d5-25d2"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="25"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Exotic" hidden="false" id="3833-e52e-5cfc-d70a" targetId="b09c-78fb-f3c3-4438" primary="true"/>
<categoryLink name="Infantry" hidden="false" id="a671-1705-e0b1-f90e" targetId="4416-02b4-a45b-07f0" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Scout" hidden="false" id="2cb6-807d-c85e-374a" subType="unit-group">
<selectionEntries>
<selectionEntry type="unit" import="true" name="Tate Light Gravtank" hidden="false" id="e238-589f-0830-eec9">
<selectionEntries>
<selectionEntry type="model" import="true" name="Tate Light Gravtank" hidden="false" id="ec21-7ea3-df61-3345" collective="true">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="bcb3-1ab6-7013-f26b" includeChildSelections="false"/>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="c036-1f83-98be-d66f" includeChildSelections="false"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="20"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Light Gravtank Transport Selection" hidden="false" id="5bb2-ea5b-4678-23db" type="selectionEntryGroup" targetId="4ad1-c263-af99-b8e7"/>
</entryLinks>
<profiles>
<profile name="Tate Light Gravtank" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="d1e0-22b3-f118-9c56">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+2, P5+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">1</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Skimmer</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">2 Infantry/Tank</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="Shield Boosting Relay" id="abd8-4dac-0359-2c88" hidden="false">
<description>All friendly non-Behemoth Shaltari units (including this one) with Passive Countermeasures gain a -1 modifier to their Passive Countermeasures save if they are within 6” of one or more units with this special rule (for example a 5+ becomes a 4+).</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Scout" hidden="false" id="29f6-e215-9887-6b25" targetId="5f13-c39f-577a-8947" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Yari Light Gravtank" hidden="false" id="cd20-8b32-abe9-c01a">
<selectionEntries>
<selectionEntry type="model" import="true" name="Yari Light Gravtank" hidden="false" id="a74f-be58-a3f0-fc4e" collective="true">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="a89f-b847-9f34-3a08" includeChildSelections="false"/>
<constraint type="max" value="8" field="selections" scope="parent" shared="true" id="c7b3-0c89-0514-3af5" includeChildSelections="false"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="15"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Faction3_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Yari Light Gravtank Weapon Selection" hidden="false" id="3165-b218-f6f9-45d6" type="selectionEntryGroup" targetId="fbc5-b3cc-cfa7-83ee"/>
<entryLink import="true" name="Light Gravtank Transport Selection" hidden="false" id="f302-247c-0625-f858" type="selectionEntryGroup" targetId="4ad1-c263-af99-b8e7"/>
</entryLinks>
<profiles>
<profile name="Yari Light Gravtank" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="f30d-e396-c258-283e">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+2, P5+</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">1</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Skimmer</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">2 Infantry/Tank</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Scout" hidden="false" id="2f1a-7382-54c4-a74a" targetId="5f13-c39f-577a-8947" primary="true"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Weapons" hidden="false" id="c49f-7995-0c9f-bf4f">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Web Projector" hidden="false" id="2e0e-1ad7-d1d6-05a7" collective="true">
<profiles>
<profile name="Web Projector" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="67c4-04a4-3af3-6662">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">-</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">CQ</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">CQ</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">4</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">-</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">3</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Reduced-1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Reduced-X" id="ac2d-43ea-17dd-d147" hidden="false" type="rule" targetId="a7e1-7b0f-c257-7510"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="26d4-435b-34d5-6c14" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9435-8c1a-6eeb-8a5c" includeChildSelections="false"/>
</constraints>
<rules>
<rule name="Web Projector" id="5aff-0bc5-8c7f-f68a" hidden="false">
<description>When this weapon deals damage, instead of causing damage you may place the target squad in coherency outside the Garrison within 2" of a wall.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin Gauss Cannons" hidden="false" id="5a93-95aa-778b-3355" collective="true">
<profiles>
<profile name="Twin Gauss Cannons" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="4345-3b33-8b66-125f">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">24"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">2+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Strafe-2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Strafe-X" id="b278-73c1-4d6c-315f" hidden="false" type="rule" targetId="c922-67ea-3ea5-b76d"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0f4a-f6e1-f9e8-1cab" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6205-c6c4-d77b-b8e6" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heavy Microwave Cannon" hidden="false" id="1d81-2481-98f3-0e35" collective="true">
<profiles>
<profile name="Heavy Microwave Cannon" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="cd94-8fb4-85b4-cccf">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">6</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Cover (Body, Soft)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Cover-X" id="d65d-a323-6ae8-f7bd" hidden="false" type="rule" targetId="96af-8bf9-11b1-3754"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fb06-4e9a-7a4b-207b" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5121-bc6d-df2f-a796" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Neutron Launchers" hidden="false" id="4d62-a842-4afc-78ee" collective="true">
<profiles>
<profile name="Neutron Launchers (L)" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="c941-1af9-4946-9a26">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S (Left)</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-3 (Scenery), Limited-1</characteristic>
</characteristics>
</profile>
<profile name="Neutron Launchers (R)" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="13db-57e5-00e1-4f47">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S (Right)</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-3 (Scenery), Limited-1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastator-X" id="4f62-39ec-606b-d368" hidden="false" type="rule" targetId="f34b-6e21-a034-1168"/>
<infoLink name="Limited-X" id="a895-998e-9b8e-16b6" hidden="false" type="rule" targetId="df42-8b65-9b46-e48d"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9c2b-105b-d521-15ad" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e4c7-985c-0ce4-cd45" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Foe Crusher Cannon" hidden="false" id="4b42-e525-b383-a3be" collective="true">
<profiles>
<profile name="Foe Crusher Cannon" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="be49-d6e7-9f41-057a">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">10"</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">12</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-3 (Tank, Walker), Devastator-4 (Large)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastator-X" id="ed29-88bb-e233-73c2" hidden="false" type="rule" targetId="f34b-6e21-a034-1168"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d96e-8986-f849-9682" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cf5e-de53-bb10-0d49" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dragon Cannon" hidden="false" id="4e06-cfd3-c2c2-549d" collective="true">
<profiles>
<profile name="Dragon Cannon" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="e08a-87f5-c9c4-1961">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">12</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">6</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Cover (Body, Soft), Tech Killer</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Cover-X" id="fd47-a7ab-3c00-7956" hidden="false" type="rule" targetId="96af-8bf9-11b1-3754"/>
<infoLink name="Tech Killer" id="3f89-f209-f0bf-bea0" hidden="false" type="rule" targetId="d9e0-d31c-1f00-9d05"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d3ca-f551-ff46-b793" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f234-8304-7185-741b" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Disruption Cannon" hidden="false" id="1680-e43c-db2c-0f15" collective="true">
<profiles>
<profile name="Disruption Cannon" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="c75f-cdf5-73c8-1f7a">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">10"</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">48"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">48"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">8</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Area</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Area" id="2f32-a89e-ea30-d00c" hidden="false" type="rule" targetId="2c4f-a243-5354-a407"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0912-0ebc-003c-a4a4" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="38fc-b63c-c522-9810" includeChildSelections="false"/>
</constraints>
<rules>
<rule name="Disruption Cannon" id="c821-cd8b-0c24-f5ad" hidden="false">
<description>If the target of this weapon is within 24”, increase its Energy by 2. If the target is within 12”, instead increase the Energy by 4.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gauss Cannon" hidden="false" id="3e67-8f9d-d48b-6a74" collective="true">
<profiles>
<profile name="Gauss Cannon" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="9c2d-bede-0f2b-adc3">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">36"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">2+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b74e-5ff1-9eff-42c2" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6dc0-abd1-b8d5-248f" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Laser Pod" hidden="false" id="8264-5ad1-da31-3f01" collective="true">
<profiles>
<profile name="Laser Pod" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="f160-5a20-33ef-5d95">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">∞</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">7</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Destroyer 6+</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6deb-2b74-7bb5-171a" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7fb8-f6d5-f1ad-7f20" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Destroyer-X" id="6b15-df9a-e058-a1ef" hidden="false" type="rule" targetId="fc5c-a89b-86c1-8f46"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gravity Cannon" hidden="false" id="c1d9-5c0b-d25f-6514" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4286-9fc2-b9ca-eff5" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a35c-f126-4cff-e3d9" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Gravity Cannon" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="9351-8339-8cee-ffac">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">2+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">11</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-2 (Tank, Walker), Devastator-3 (Large)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastator-X" id="a9db-2d5d-5252-5a0e" hidden="false" type="rule" targetId="f34b-6e21-a034-1168"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Discus Launchers" hidden="false" id="5184-4291-4967-c0fa" collective="true">
<profiles>
<profile name="Discus Launchers" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="cc32-3352-c6e4-8dd2">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">6"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">8</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">3</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Reduced-4</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4d7e-33da-d913-dffd" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9d25-cbe5-1730-6e53" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gauss Rifle" hidden="false" id="178b-faaa-399a-9c46" collective="true">
<profiles>
<profile name="Gauss Rifle" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="828e-8785-85b2-f639">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">)"</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6f9a-a2c2-45da-c598" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ae55-3bed-5c37-3782" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heads" hidden="false" id="b59e-7f71-5b12-161f" collective="true">
<profiles>
<profile name="Heads" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="ced1-a853-9a66-a685">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">-</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">CQ</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">CQ</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">5</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">-</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">2</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Reduced-1</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9bbf-a0a1-9954-52c3" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1a04-97c8-7c3c-3a40" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Reduced-X" id="ee66-97d0-f24c-e7c7" hidden="false" type="rule" targetId="a7e1-7b0f-c257-7510"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warsuits" hidden="false" id="e9da-1237-6df0-5010" collective="true">
<profiles>
<profile name="Warsuits" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="12e0-429d-0723-fc52">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">-</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">CQ</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">CQ</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">3</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">-</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">4</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Reduced-1</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8fc7-0930-835f-e738" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e672-2639-5818-0348" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Reduced-X" id="527b-0ede-800f-58df" hidden="false" type="rule" targetId="a7e1-7b0f-c257-7510"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Energy Swords" hidden="false" id="f560-83b2-d4fb-0d03" collective="true">
<profiles>
<profile name="Energy Swords" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="d7d8-1e17-98f4-d339">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">-</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">CQ</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">CQ</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">3</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">-</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">6</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Alt-1, Reduced-1</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3d31-4cd9-ba1d-fde5" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="072b-73c4-a6af-9f86" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Alt-X" id="fc0f-7778-fbc9-24a5" hidden="false" type="rule" targetId="b470-85c7-b67e-8dc4"/>
<infoLink name="Reduced-X" id="67b8-b9f0-4bf2-e4c8" hidden="false" type="rule" targetId="a7e1-7b0f-c257-7510"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Wave Pistols" hidden="false" id="9dc3-806a-724a-0ce6" collective="true">
<profiles>
<profile name="Wave Pistols" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="cbad-b353-f6ac-6a92">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">-</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">CQ</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">CQ</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">12</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">-</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">3</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Alt-1, Reduced-4</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8a19-7a8d-609d-ecbb" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="60f5-abe1-e726-d2f1" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Alt-X" id="b4b9-357a-977f-47d6" hidden="false" type="rule" targetId="b470-85c7-b67e-8dc4"/>
<infoLink name="Reduced-X" id="acc5-0ae9-ad62-aa6f" hidden="false" type="rule" targetId="a7e1-7b0f-c257-7510"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin Ion Cannons" hidden="false" id="606a-156e-16d1-eebc" collective="true">
<profiles>
<profile name="Twin Ion Cannons" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="8380-e386-1fd8-4703">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">4</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">6</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">AA-2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="AA-X" id="73db-3ab9-45d1-8734" hidden="false" type="rule" targetId="9545-9da8-9b0d-8936"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b2b5-4ce2-60e8-20ea" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4244-6853-a286-b8a8" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bradyon Carbines" hidden="false" id="d315-2166-d726-56ea" collective="true">
<profiles>
<profile name="Bradyon Carbines" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="0d35-b2e7-5cef-6dc8">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">24"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">4</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">5</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Flame, Penetrative</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Flame" id="b889-d4c6-7f11-7286" hidden="false" type="rule" targetId="7fe5-1098-f28b-e066"/>
<infoLink name="Penetrative" id="80b5-2500-3db0-4aa0" hidden="false" type="rule" targetId="d90e-d63f-649e-1ca6"/>
</infoLinks>
<rules>
<rule name="Bradyon Carbines" id="b4d0-ceee-31c0-694e" hidden="false">
<description>Missed shots from this weapon are discarded, ignoring the usual rules for Flame weapons.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Energy Storm" hidden="false" id="c774-322d-14fe-6f60" collective="true">
<profiles>
<profile name="Energy Storm" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="c619-05d6-8b79-0471">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">2</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">4+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">6</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">AA-4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="AA-X" id="5dbf-c0b4-1b11-4eaf" hidden="false" type="rule" targetId="9545-9da8-9b0d-8936"/>
</infoLinks>
<rules>
<rule name="Energy Storm" id="885c-888d-ecab-7a4e" hidden="false">
<description>When firing this weapon, add +1 Energy for every other friendly unit in the squad within coherency.</description>
</rule>
</rules>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ef0d-d463-f77d-23bb" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9977-9340-f8e9-2ef1" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Teleport Beamer" hidden="false" id="2b6f-2c29-cf98-9698" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="11c9-4746-187e-e554" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e690-e257-bdf8-7985" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Teleport Beamer" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="1a2e-904c-6061-49c0">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">4+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">-</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="Teleport Beamer" id="1652-c4cc-383b-38cb" hidden="false">
<description>This unit can choose to target friendly or enemy units, but not units in the same squad. Scenery pieces and Behemoths cannot be targeted.
If this weapon hits, it does no damage, but every unit in the targeted unit’s squad in coherency must teleport.
Move friendly units up to 6” per hit, or enemy units up to 3” per hit. This does not count as moving for the purposes of Move & Fire.
The units must be placed in coherency, although may be placed facing any direction, and ignore all scenery in the path of the move (although must be able to be placed on Passable terrain). It’s easiest to roll all hits first, and then teleport the squad a total distance in one go.
Remember: always ask your opponent to move their own miniatures!</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gravity Cannon" hidden="false" id="c0a8-72d4-a1ca-5320" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="382d-7375-9a8f-44cb" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b38b-33f5-3b70-5710" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Gravity Cannon (L)" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="1fc6-fe2c-e603-1872">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">10"</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S (Left)</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">2+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">11</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-2 (Tank, Walker), Devastator-3 (Large)</characteristic>
</characteristics>
</profile>
<profile name="Gravity Cannon (R)" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="7ba3-5b81-170c-7a6f">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">10"</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S (Right)</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">18"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">18"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">2+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">11</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-2 (Tank, Walker), Devastator-3 (Large)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastator-X" id="6545-ab10-9981-dd5c" hidden="false" type="rule" targetId="f34b-6e21-a034-1168"/>
</infoLinks>
<comment>Adamah Ver</comment>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Gauss Triad" hidden="false" id="745c-5b97-23b9-c690" collective="true">
<profiles>
<profile name="Gauss Triad" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="95d7-c0d8-59f8-9b81">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">36"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">3</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">2+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">10</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Devastator-2 (Vehicle)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b5e8-e44a-4126-def7" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e78e-8f33-ebfc-d955" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Devastator-X" id="0a98-e562-ab9e-06da" hidden="false" type="rule" targetId="f34b-6e21-a034-1168"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Laser Pods" hidden="false" id="e3f8-0065-8de9-3006" collective="true">
<profiles>
<profile name="Laser Pod (Left)" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="693b-991a-3567-52bc">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S (Left)</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">∞</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">7</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Destroyer 6+</characteristic>
</characteristics>
</profile>
<profile name="Laser Pod (Right)" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="2ea9-4b76-bc24-85c9">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S (Right)</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">∞</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">∞</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">1</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">7</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Destroyer 6+</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="745a-b8bb-93ea-7a3d" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dfda-e9fd-c8cb-7c9b" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Destroyer-X" id="a2ac-12ef-41a1-e9c4" hidden="false" type="rule" targetId="fc5c-a89b-86c1-8f46"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin Dragon Cannons" hidden="false" id="db78-de6d-138a-6490" collective="true">
<profiles>
<profile name="Twin Dragon Cannons" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="cf81-45d6-c10e-35d2">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">12</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">6</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Alt-1, Cover (Body, Soft), Strafe-2, Tech Killer</characteristic>
</characteristics>
</profile>
<profile name="Concentrated Dragon Beam" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="a4fd-3c38-c50a-0f93">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">12"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">12"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">6</characteristic>
<characteristic name="Acc" typeId="4.163637572616379e+35">3+</characteristic>
<characteristic name="E" typeId="456e6572677923232344415441232323">6</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Alt-1, Cover (Body, Soft), Focus-2, Tech Killer</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Alt-X" id="3e0a-6812-55ae-e2cd" hidden="false" type="rule" targetId="b470-85c7-b67e-8dc4"/>
<infoLink name="Tech Killer" id="62a6-783a-4aa4-d8fe" hidden="false" type="rule" targetId="d9e0-d31c-1f00-9d05"/>
<infoLink name="Focus-X" id="90ab-9b10-f729-dd16" hidden="false" type="rule" targetId="5d31-f577-8070-6820"/>
<infoLink name="Cover-X" id="5f80-5fd4-6142-74f0" hidden="false" type="rule" targetId="96af-8bf9-11b1-3754"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="23ed-5240-6823-27d4" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ea2a-0c27-f8b9-77af" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Thermal Lance" hidden="false" id="d94e-e699-4899-b2bc" collective="true">
<profiles>
<profile name="Thermal Lance" typeId="576561706f6e23232344415441232323" typeName="Weapon" hidden="false" id="6f48-a43a-70f7-dbc4">
<characteristics>
<characteristic name="M&F" typeId="4d6f76652026204669726523232344415441232323">-</characteristic>
<characteristic name="Arc" typeId="4.1726323232344415e+25">F/S/R</characteristic>
<characteristic name="R(F)" typeId="52616e6765202846756c6c2923232344415441232323">9"</characteristic>
<characteristic name="R(C)" typeId="52616e67652028436f756e74657265642923232344415441232323">9"</characteristic>
<characteristic name="Shots" typeId="53686f747323232344415441232323">2</characteristic>