-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScourge.cat
4070 lines (4066 loc) · 307 KB
/
Scourge.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="d4a3-4b36-bde2-4468" name="Scourge" gameSystemId="6d58e2c7-f67a-3e19-7acf-5b8a58cf919c" gameSystemRevision="4" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Command" hidden="false" id="6fcb-2dad-9bef-49bb">
<selectionEntries>
<selectionEntry type="unit" import="true" name="Desolator Command Barge" hidden="false" id="7af4-d761-b159-ca6b">
<selectionEntries>
<selectionEntry type="model" import="true" name="Desolator Command Barge" hidden="false" id="b4f0-fce2-1202-07aa">
<costs>
<cost name="pts" typeId="points" value="140"/>
<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="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
</costs>
<profiles>
<profile name="Desolator Command Barge" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="02eb-2552-a118-711e">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">11</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">7</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7d5d-d192-4332-a29f" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="de5e-867a-3401-4eba" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Ion Cyclone" hidden="false" id="c6c3-59f6-345e-8a62" type="selectionEntry" targetId="f3d7-3b92-d765-5f9e"/>
<entryLink import="true" name="Ion Storm" hidden="false" id="4af1-e131-e3e0-e38b" type="selectionEntry" targetId="d021-0d87-bf35-9d35"/>
<entryLink import="true" name="Commander" hidden="false" id="74bd-87d5-02df-222b" type="selectionEntryGroup" targetId="35d6-3921-58bd-457c"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="7790-82d5-cda4-8d7b" targetId="ed7f-0593-2e55-430d" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Oppressor Command Arthropod" hidden="false" id="442f-08dd-d233-04d3">
<selectionEntries>
<selectionEntry type="model" import="true" name="Oppressor Command Arthropod" hidden="false" id="0cc8-186a-7ca1-db4a">
<costs>
<cost name="pts" typeId="points" value="150"/>
<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="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="4"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Oppressor Command Arthropod" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="10f3-3117-3f13-1121">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">8"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">9</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Walker</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Large, Resilient</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">4 Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Large" id="ac16-9c74-f7e7-3f73" hidden="false" type="rule" targetId="45e1-bc6d-e75c-45a2"/>
<infoLink name="Resilient" id="d0bb-7e68-b4c7-c766" hidden="false" type="rule" targetId="bee8-5b68-340e-b6bb"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0ffd-098e-f307-2fd5" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="49d0-f5d2-6c9b-f022" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Razor Claws" hidden="false" id="e6ae-f68f-d3b8-b60e" type="selectionEntry" targetId="1cd2-8918-7972-6556"/>
<entryLink import="true" name="Electroweb Caster" hidden="false" id="37fe-c3d2-2143-3f88" type="selectionEntry" targetId="d7d4-03d8-412c-ee56"/>
<entryLink import="true" name="Plasma Carbines" hidden="false" id="2733-0fa2-5950-0e37" type="selectionEntry" targetId="74b7-1ab4-0905-7bcc"/>
<entryLink import="true" name="Commander" hidden="false" id="888c-97ca-97bb-1e03" type="selectionEntryGroup" targetId="35d6-3921-58bd-457c"/>
</entryLinks>
<rules>
<rule name="Micro Subjugation Field" id="5c23-713b-732d-00f6" hidden="false">
<description>Enemy non-Behemoth units that activate within 3” of this unit reduce the amount of actions they may perform by 1 to a minimum of 1. Additionally, enemy infantry may not benefit from Scan Tokens while they (or the Garrison they’re occupying) are within 3” of this unit.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="c22f-ccbb-e50c-252d" targetId="ed7f-0593-2e55-430d" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Despot Suppression Walker" hidden="false" id="0ad8-bdfc-e753-d928">
<selectionEntries>
<selectionEntry type="model" import="true" name="Despot Suppression Walker" hidden="false" id="24e6-4755-396f-f978">
<costs>
<cost name="pts" typeId="points" value="55"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="3"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
</costs>
<profiles>
<profile name="Despot Suppression Walker" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="7652-6727-9bea-df1d">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">6"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">3</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Walker</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Resilient</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Resilient" id="5d97-63dd-1760-fc4c" hidden="false" type="rule" targetId="bee8-5b68-340e-b6bb"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a8e4-d8f5-12e6-097e" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dcde-6aff-8a06-c7ba" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Razor Claws" hidden="false" id="8324-1474-0f17-edb4" type="selectionEntry" targetId="1cd2-8918-7972-6556"/>
<entryLink import="true" name="Plasma Hose" hidden="false" id="9d09-315c-2d02-5e82" type="selectionEntry" targetId="0da6-2eb2-286d-b11d"/>
<entryLink import="true" name="Commander" hidden="false" id="c95f-2ef9-1c5a-8302" type="selectionEntryGroup" targetId="35d6-3921-58bd-457c"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="a7fc-33f4-b105-5e7a" targetId="ed7f-0593-2e55-430d" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Eden’s Dinosaur - Savager Laser Barge" hidden="false" id="1e9e-5eab-ee7f-0e12">
<selectionEntries>
<selectionEntry type="model" import="true" name="Savager Laser Barge" hidden="false" id="5b86-9174-6e5b-7c5d" collective="true">
<costs>
<cost name="pts" typeId="points" value="260"/>
<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="Savager Laser Barge" typeId="b88a-b68e-168b-9f29" typeName="Aircraft" hidden="false" id="6378-d57f-a862-4399">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">11</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">7</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Command Centre</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="966c-6f03-6dd0-3f48" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a5fc-6a8d-5705-e860" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Assault Standoff Energy Beam" hidden="false" id="345e-812d-3076-8bb1" type="selectionEntry" targetId="4a30-0037-4c64-02c0" collective="true"/>
<entryLink import="true" name="Commander (CV 5)" hidden="false" id="9e9f-c4fe-53c4-23d5" type="selectionEntry" targetId="8160-acd4-d9ed-2583">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b0a1-cab3-173c-f47e" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ea5c-a3d9-ec50-ca1a" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<rules>
<rule name="Benefit" id="03c5-9a3b-e8e9-fea7" hidden="false">
<description>At the end of each turn, look at the top 3 cards of your Command Card deck. Add one to your hand, place one on the bottom of the Command Card Deck, and discard the remaining card.</description>
</rule>
<rule name="Detriment" id="9637-d9d4-715c-8e3c" hidden="false">
<description>Your opponent increases their initiative roll by 2.</description>
</rule>
</rules>
<infoLinks>
<infoLink name="Command Centre" id="743e-ec6e-b225-df88" hidden="false" type="rule" targetId="69c8-c7bd-0b67-dfbe"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Famous Commander" hidden="false" id="8d4f-4464-3fd8-f1d4" targetId="b9fe-b6e1-3716-8d88" primary="false"/>
<categoryLink name="Heavy" hidden="false" id="3c5a-8acf-122e-6317" targetId="ff91-8cc3-f775-3d20" primary="true"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2292-8266-5676-192d" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Slaughterhouse V - Overseer Cradle Barge " hidden="false" id="56c5-9c94-d5b5-1a48">
<selectionEntries>
<selectionEntry type="model" import="true" name="Overseer Cradle Barge" hidden="false" id="69e9-b955-7a92-a5a9" collective="true">
<costs>
<cost name="pts" typeId="points" value="145"/>
<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="Overseer Cradle Barge" typeId="b88a-b68e-168b-9f29" typeName="Aircraft" hidden="false" id="109e-88b5-4829-7cb6">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">11</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">7</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Command Centre</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f0ec-1ac7-c803-a2aa" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="40fb-e2ba-b9ff-64d1" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Ion Cradle" hidden="false" id="443f-a165-3071-30ca" type="selectionEntry" targetId="5444-bb2d-f179-38af" collective="true" sortIndex="3"/>
<entryLink import="true" name="Commander (CV 3)" hidden="false" id="4117-ab0d-91ff-7ff0" type="selectionEntry" targetId="425b-ba23-208f-1d7e" sortIndex="1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ba3a-d7ac-ffc1-05da" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="42b6-3269-3558-69fc" includeChildSelections="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Plasma Vent" hidden="false" id="1cd9-9bd8-ff2e-bd3f" type="selectionEntry" targetId="3141-bd13-038e-5eae" sortIndex="2"/>
</entryLinks>
<infoLinks>
<infoLink name="Command Centre" id="6089-7407-ccbb-f396" hidden="false" type="rule" targetId="69c8-c7bd-0b67-dfbe"/>
</infoLinks>
<rules>
<rule name="Plasma Generator" id="c8b6-a83d-9810-7eb9" hidden="false">
<description>Any friendly units with weapons containing the word “Plasma” or “Electroweb” in their name re-roll failed damage rolls if they are within 9” of this unit when firing. Units with the Fast special rule, Behemoth type, or weapons with a range of CQ are not affected.”</description>
</rule>
<rule name="Benefit" id="a93a-12db-cd26-9788" hidden="false">
<description>At the end of the turn, look through your discarded Command Cards. Pick one and shuffle it back into your Command Card Deck.</description>
</rule>
<rule name="Detriment" id="ec21-13af-3680-0261" hidden="false">
<description>Discard your entire hand of Command Cards in the second step of the Initiation Phase instead of only unwanted Command Cards.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Famous Commander" hidden="false" id="874f-276e-bcd3-4d8a" targetId="b9fe-b6e1-3716-8d88" primary="false"/>
<categoryLink name="Support" hidden="false" id="5807-e6ee-e26c-2af8" targetId="1742-0b1d-252f-505d" primary="true"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="6008-e1cd-85a1-87de" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Pest of Olympus - Despot Suppression Walker " hidden="false" id="e33a-ac49-d13d-f24c">
<selectionEntries>
<selectionEntry type="model" import="true" name="Despot Suppression Walker" hidden="false" id="9ef6-3183-ac31-5254">
<costs>
<cost name="pts" typeId="points" value="125"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="4"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="0"/>
<cost name="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Despot Suppression Walker" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="cb9c-5df6-2a60-f9fa">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">6"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">2</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Walker</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Resilient</characteristic>
<characteristic name="Transport Requirement" typeId="730b-1969-f647-f794">4 Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Resilient" id="df38-1244-53c2-8e8a" hidden="false" type="rule" targetId="bee8-5b68-340e-b6bb"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4294-7e02-3029-901e" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="34c2-d459-fdbf-ddd3" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Razor Claws" hidden="false" id="125f-dd9e-3ddb-6a37" type="selectionEntry" targetId="1cd2-8918-7972-6556"/>
<entryLink import="true" name="Plasma Hose" hidden="false" id="51db-4b85-b70f-1d88" type="selectionEntry" targetId="0da6-2eb2-286d-b11d"/>
<entryLink import="true" name="Commander (CV 2)" hidden="false" id="21cd-c036-4bef-b5b8" type="selectionEntry" targetId="3ef3-74ac-9b0a-841f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4bbf-30d4-e588-9cee" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="572d-6c3d-b457-4dd4" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<rules>
<rule name="Micro Subjugation Field" id="598a-2d44-e0fe-466d" hidden="false">
<description>Enemy non-Behemoth units that activate within 3” of this unit reduce the amount of actions they may perform by 1 to a minimum of 1. Additionally, enemy infantry may not benefit from Scan Tokens while they (or the Garrison they’re occupying) are within 3” of this unit.</description>
</rule>
<rule name="Benefit" id="d9d8-2fd8-d109-4042" hidden="false">
<description>Friendly units weapons with “Plasma” in their name reduce the total accuracy modifier increases those weapons suffer by 1 to a minimum of +1 (i.e. a +3 modifier would become a +2 modifier).</description>
</rule>
<rule name="Detriment" id="27d3-ba1a-e136-4422" hidden="false">
<description>Command Cards with an area of Influence can only be used within this Commanders Command Radius and within 4” of friendly units with the Scout category.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Command" hidden="false" id="261b-5e01-eba0-d86d" targetId="ed7f-0593-2e55-430d" primary="true"/>
<categoryLink name="Famous Commander" hidden="false" id="20a2-5a5e-d80e-e63e" targetId="b9fe-b6e1-3716-8d88" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4e5b-8be3-7bd2-0f71" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Auxiliary" hidden="false" id="3948-63c0-92fd-24b4">
<selectionEntries>
<selectionEntry type="unit" import="true" name="Harbinger Troopship" hidden="false" id="f4f3-caf4-529e-56bb">
<selectionEntries>
<selectionEntry type="model" import="true" name="Harbinger Troopship" hidden="false" id="c14d-57f1-9ca2-a382" collective="true">
<costs>
<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="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="-2"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="50"/>
</costs>
<profiles>
<profile name="Harbinger Troopship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="39b9-4ee3-b465-6c2c">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">18"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">11</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">4</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="eacf-0a39-6866-3d7f-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eacf-0a39-6866-3d7f-max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Transport Selection" id="1ea5-2aa6-aa13-5acc" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Screamers or Spectre Skimtanks" hidden="false" id="e965-1e67-134f-8316" defaultAmount="0">
<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="0"/>
<cost name="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Screamer_Req" typeId="1657-edf7-a484-c3e7" value="-1"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Infantry" hidden="false" id="2e89-7ce2-bf7c-b8af" defaultAmount="4">
<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="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="4" field="selections" scope="model" shared="true" id="83f8-5881-2285-2b10" includeChildSelections="false"/>
<constraint type="max" value="4" field="selections" scope="model" shared="true" id="00a7-ea7c-d9c2-d99a" includeChildSelections="false"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Plasma Bombs" hidden="false" id="25f7-bf8d-f766-9086" type="selectionEntry" targetId="dadd-e193-78f4-cf2e" sortIndex="2"/>
<entryLink import="true" name="Acid Streamer" hidden="false" id="5f88-68b5-525e-3342" type="selectionEntry" targetId="0dae-dc95-5534-57de" sortIndex="3"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="b564-8896-cb4d-6c30" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Marauder Dropship" hidden="false" id="b3d5-0ad2-c01c-45a3">
<selectionEntries>
<selectionEntry type="model" import="true" name="Marauder Dropship" hidden="false" id="2c97-e65d-f981-1660">
<costs>
<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="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="-2"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Screamer_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="40"/>
</costs>
<profiles>
<profile name="Marauder Dropship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="4347-3059-ca72-b429">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">24"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">3</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Plasma Hose" hidden="false" id="7e5b-8edd-4f13-11c3" type="selectionEntry" targetId="7b1b-751c-5058-1839"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="695c-c446-a84f-5e5d" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="93b6-4cfd-d308-5b1e" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="96b9-e2e9-0eb2-6eed" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Invader APC" hidden="false" id="abe6-9b46-30f0-16f5">
<selectionEntries>
<selectionEntry type="model" import="true" name="Invader APC" hidden="false" id="b77f-19d5-e2ca-a89e">
<profiles>
<profile name="Invader APC" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="17cc-3c9d-7b80-1d53">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">6"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+2</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">3</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Skimmer</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="-3"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="0"/>
<cost name="Tank_Req" typeId="1832-e9be-1e78-02df" value="3"/>
<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"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="15"/>
</costs>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="063b-ffc8-1ac0-8e58" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="662b-624a-d153-0cd7" includeChildSelections="false"/>
</constraints>
<rules>
<rule name="Speed Boost" id="2fe4-edd8-6727-ddf8" hidden="false">
<description>If this unit doesn’t embark or disembark during its activation, increase its MV by 3” until the end of the activation.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink targetId="de27-8358-5d78-6eeb" id="bd62-0bda-1a76-9cc7" primary="true" name="Auxiliary"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Despoiler Heavy Dropship" hidden="false" id="e38f-b533-7884-1c67">
<selectionEntries>
<selectionEntry type="model" import="true" name="Despoiler Heavy Dropship" hidden="false" id="07dc-3cf6-b610-b926">
<costs>
<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="-18"/>
<cost name="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="-4"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Screamer_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="70"/>
</costs>
<profiles>
<profile name="Despoiler Heavy Dropship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="9a7e-ff16-642c-8c66">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">18"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">7</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Twin Plasma Cannons" hidden="false" id="fe92-64f9-8f57-ef8f" type="selectionEntry" targetId="8de9-dfe0-7286-98ca"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="326c-96fb-1195-b6e4" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b1e3-c8f5-5e29-8157" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="1d29-4f5d-b29a-f81c" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Intruder Light Dropship" hidden="false" id="fa8b-d7e1-0e56-094e">
<selectionEntries>
<selectionEntry type="model" import="true" name="Intruder Light Dropship" hidden="false" id="0dfd-fcd5-e86d-5d2b">
<profiles>
<profile name="Intruder Light Troopship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="e46f-de1c-7779-5961">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">30"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</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">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="-4"/>
<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"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="20"/>
</costs>
<entryLinks>
<entryLink import="true" name="Plasma Hose" hidden="false" id="6a83-6846-9fe7-2e15" type="selectionEntry" targetId="8f27-272e-556e-4a88"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="894f-1b8b-36d1-38ce" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6a0d-7245-4fd5-7249" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="4eb4-b081-7f0f-d95e" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Intruder Light Troopship" hidden="false" id="7f11-5eca-da57-9e4d">
<selectionEntries>
<selectionEntry type="model" import="true" name="Intruder Light Troopship" hidden="false" id="10ee-e2d5-eafb-23a3">
<profiles>
<profile name="Intruder Light Troopship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="8a5f-848f-41d1-a5dc">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">30"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</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">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<costs>
<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"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="35"/>
</costs>
<entryLinks>
<entryLink import="true" name="Plasma Hose" hidden="false" id="e1d8-b6ca-94a3-adfd" type="selectionEntry" targetId="8f27-272e-556e-4a88"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="41e7-e718-a396-b668" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5336-1f2a-39f6-a65a" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="2645-22b4-6ad2-2541" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Harbinger Dropship" hidden="false" id="beee-e955-7cde-1c66">
<selectionEntries>
<selectionEntry type="model" import="true" name="Harbinger Dropship" hidden="false" id="3b39-df1a-a094-eb88" collective="true">
<costs>
<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="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="-2"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="-3"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="45"/>
</costs>
<profiles>
<profile name="Harbinger Troopship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="b717-70aa-d7fa-7117">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">18"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0"/>
<characteristic name="A" typeId="dadd-5f09-c124-988c">11</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">4</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a12b-7816-9f5b-75be"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="86f2-3b71-7d94-595e"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Plasma Bombs" hidden="false" id="c9b0-c3b1-8283-b4c4" type="selectionEntry" targetId="dadd-e193-78f4-cf2e" sortIndex="1"/>
<entryLink import="true" name="Mini Arc Caster" hidden="false" id="dffc-cfc1-6a49-5254" type="selectionEntry" targetId="8760-b2f5-ccbb-16fe" sortIndex="2"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="2ac8-d986-7638-586e" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Corsair Interceptor" hidden="false" id="d235-999f-429e-e2e8">
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="cf10-1cd0-2a47-9b1e" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Corsair Interceptor" hidden="false" id="7354-703b-9291-e429">
<costs>
<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"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="40"/>
</costs>
<profiles>
<profile name="Corsair Interceptor" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="aed1-9061-6de1-3290">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">24"-36"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+5</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">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Fast, Rare</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Fast" id="aa80-c2aa-4dae-a11e" hidden="false" type="rule" targetId="5ca6-fb78-323a-0702"/>
<infoLink name="Rare" id="b648-5765-0954-31f2" hidden="false" type="rule" targetId="b430-8b04-52c2-a2c6"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Corsair Interceptor Weapon Selection" hidden="false" id="696d-fd1e-5366-71f0" type="selectionEntryGroup" targetId="6502-b75c-ad8f-a6e5"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="17e7-540c-9093-8050" includeChildSelections="false"/>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="a778-de4f-dd21-3b24" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="3" field="2c65-d9c6-5955-17d4">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="c6ef-6271-e246-47a8" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="1" field="2c65-d9c6-5955-17d4">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="7895-d441-b903-8bb2" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="2" field="2c65-d9c6-5955-17d4">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="3fda-65f2-6cc3-ee33" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<comment>Rare Config</comment>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2c65-d9c6-5955-17d4" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Vampire" hidden="false" id="b7a7-38ea-d023-9c27">
<selectionEntries>
<selectionEntry type="model" import="true" name="Vampire" hidden="false" id="46cd-0b99-c2e2-5ae1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="18b9-79c4-2d58-ee74"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="1e79-0f9c-e899-286a" includeChildSelections="false"/>
</constraints>
<costs>
<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="3"/>
<cost name="Faction1_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
<cost name="A_pts" typeId="201f-b481-6ccf-6a5f" value="10"/>
</costs>
<profiles>
<profile name="Vampire" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="e385-1808-c056-4d01">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">E+3</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">7</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">1</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft-S</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Rapid Insertion 0", Rare</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rapid Insertion-X" id="ab92-1e1e-4566-fded" hidden="false" type="rule" targetId="ed15-ec95-1603-67f8"/>
<infoLink name="Rare" id="2a4c-f55c-6c40-5b34" hidden="false" type="rule" targetId="b430-8b04-52c2-a2c6"/>
</infoLinks>
<rules>
<rule name="Grasping" id="d154-13fe-dcac-0fdc" hidden="false">
<description>This squad must be deployed in a single Transport, although does not count towards that Transport’s starting Capacity.</description>
</rule>
<rule name="Concentrated Cutting" id="022d-38c3-9743-7ac1" hidden="false">
<description>This unit may not Reaction Fire. Additionally, Cutting Beam’s Focus special rule can be used to combine shots from the unit’s whole squad.</description>
</rule>
</rules>
<entryLinks>
<entryLink import="true" name="Cutting Beam" hidden="false" id="5ba5-3968-699c-265e" type="selectionEntry" targetId="a0e9-472b-80e5-d1a9"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="3" field="f1c8-2d1f-ad09-4f0f">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="c6ef-6271-e246-47a8" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="1" field="f1c8-2d1f-ad09-4f0f">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="7895-d441-b903-8bb2" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="2" field="f1c8-2d1f-ad09-4f0f">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="3fda-65f2-6cc3-ee33" shared="true" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<comment>Rare Config</comment>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="f1c8-2d1f-ad09-4f0f" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<categoryLinks>
<categoryLink name="Auxiliary" hidden="false" id="59a3-2a59-56fb-feee" targetId="de27-8358-5d78-6eeb" primary="true"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Standard" hidden="false" id="d3b9-6431-8d13-9d71">
<selectionEntries>
<selectionEntry type="unit" import="true" name="Hunter Tank" hidden="false" id="454e-a9cd-9a90-41b1">
<selectionEntries>
<selectionEntry type="model" import="true" name="Hunter Tank" hidden="false" id="e43c-bdf0-a743-470f" collective="true">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="0749-fecf-264d-206f" includeChildSelections="false"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="dc9d-b09c-7042-ac42" includeChildSelections="false"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="35"/>
<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="2"/>
<cost name="Vampire_Req" typeId="5bb1-3f94-8396-e8d2" value="0"/>
<cost name="Crab_Req" typeId="adf6-547d-2c51-e81a" value="0"/>
<cost name="Screamer_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Hunter Tank" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="f49d-e893-e6f2-a262">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">9"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+2</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</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 typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Plasma Cannon" hidden="false" id="77a5-d334-3bc0-edef" type="selectionEntry" targetId="04c6-1414-00a0-0dd5"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Standard" hidden="false" id="5b81-d459-a5f2-a830" targetId="7bea-a1e7-3cab-7ecb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Stalker Beetle" hidden="false" id="df73-3aaa-95fd-99b7">
<selectionEntries>
<selectionEntry type="model" import="true" name="Stalker Beetle" hidden="false" id="c468-8bf8-76ec-b7d2" collective="true">
<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="1"/>
<cost name="Faction2_Req" typeId="1657-edf7-a484-c3e7" value="0"/>
</costs>
<profiles>
<profile name="Stalker Beetle" typeId="b88a-b68e-168b-9f28" typeName="Vehicle" hidden="false" id="d727-e46c-cb04-05d6">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">6"</characteristic>
<characteristic name="Countermeasures" typeId="725f-50fa-0778-01b">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">2</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Walker</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Infiltrate 8", Resilient</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Infiltrating" hidden="false" id="feb1-e3b4-925a-e010" type="selectionEntry" targetId="5e74-7851-f3ac-10e9"/>
<entryLink import="true" name="Electroweb Caster" hidden="false" id="95e7-9a60-940c-6bc4" type="selectionEntry" targetId="d7d4-03d8-412c-ee56" collective="true"/>
<entryLink import="true" name="Cutting Claws" hidden="false" id="5854-3687-bb6c-8767" type="selectionEntry" targetId="fabe-2a6c-3c28-c20c" collective="true"/>
</entryLinks>
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="45df-5bff-6b1f-7244" includeChildSelections="false"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="9a23-14b0-7458-fab2" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Resilient" id="8191-8513-78dc-7964" hidden="false" type="rule" targetId="bee8-5b68-340e-b6bb"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Standard" hidden="false" id="2c8f-fd01-8b2d-ccc1" targetId="7bea-a1e7-3cab-7ecb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Spectre Skimtank" hidden="false" id="80fd-d998-6a1c-17e9">
<selectionEntries>
<selectionEntry type="model" import="true" name="Spectre Skimtank" hidden="false" id="5ef8-a1d7-4998-e472" collective="true">
<profiles>
<profile name="Spectre Skimtank" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="a84a-e713-88a4-5489">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">12"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A, E+3</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">Skimmer</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<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="1"/>
</costs>
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="baab-abe6-4781-38cc" includeChildSelections="false"/>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="2ea2-a51a-bf50-7912" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Spectre Skimtank Weapon Selection" hidden="false" id="25ae-2994-0751-24b3" type="selectionEntryGroup" targetId="312e-3583-62e7-8d1c"/>
</entryLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Standard" hidden="false" id="822e-9f2a-17cd-2347" targetId="7bea-a1e7-3cab-7ecb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ravenor Laser Walker" hidden="false" id="748c-c139-a911-5996">
<selectionEntries>
<selectionEntry type="model" import="true" name="Ravenor Laser Walker" hidden="false" id="b01f-c0fa-0346-714f" defaultAmount="1" collective="true">
<profiles>
<profile name="Ravenor Laser Walker" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="9769-e44e-8876-580b">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">6"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">13</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">3</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Walker</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">Resilient</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="55"/>
<cost name="Infantry_Req" typeId="466e-b8ec-f298-b782" value="0"/>
<cost name="Light_Req" typeId="f4ee-4eec-0c72-6c13" value="4"/>
<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>
<infoLinks>
<infoLink name="Resilient" id="0f40-6501-84a4-92fc" hidden="false" type="rule" targetId="bee8-5b68-340e-b6bb"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Razor Claws" hidden="false" id="9ba0-0fd2-843b-1995" type="selectionEntry" targetId="1cd2-8918-7972-6556" sortIndex="2"/>
<entryLink import="true" name="Standoff Energy Cluster" hidden="false" id="1480-1fa7-75a1-bde7" type="selectionEntry" targetId="d9fa-a40d-22dc-2708" sortIndex="1"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b70f-fe82-aa85-e68c" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ee0a-27a2-cea9-8344" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Standard" hidden="false" id="63e3-bb25-ef7b-06aa" targetId="7bea-a1e7-3cab-7ecb" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Corruptor Hiveship" hidden="false" id="f9b7-d72f-fed1-f473">
<selectionEntries>
<selectionEntry type="model" import="true" name="Corruptor Hiveship" hidden="false" id="69d7-0946-750b-403a" collective="true">
<profiles>
<profile name="Corruptor Hiveship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="5696-6191-e555-287d">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">24"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">2</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="80"/>
<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="Plasma Hose" hidden="false" id="fb4b-1b34-2dc6-977e" type="selectionEntry" targetId="8f27-272e-556e-4a88"/>
<entryLink import="true" name="Razorworms" hidden="false" id="61b3-c6af-1822-4456" type="selectionEntry" targetId="50ee-13d2-7059-c2fa"/>
</entryLinks>
<rules>
<rule name="Razorworm Pod" id="5d72-ce4d-e841-951a" hidden="false">
<description>During this squad’s activation, each unit may launch a Razorworm volley at a Garrison within 6”. Roll 1 dice for each unit launching a volley. Rolls of 1 have is no effect. For every roll of 2-4, place 1 unit of Razorworms in that Garrison. For every roll of 5-6 place 2 units of Razorworms in that Garrison.
All Razorworm units launched into a Garrison at the same time from the same squad count as being a single squad. That squad is the same Battlegroup as the launching squad and may activate in the same round they are spawned, although do not have to re-roll Damage if Shooting a unit in that Garrison this round.
The Garrison receives an equal number of Collateral Damage tokens to units of Razorworms placed.</description>
</rule>
</rules>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9cf2-3537-558c-fc7a" includeChildSelections="false"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="4269-57b2-7957-5db6" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Support" hidden="false" id="9c6f-b136-f8af-fb58" targetId="1742-0b1d-252f-505d" primary="true"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Reaver Gunship" hidden="false" id="8fca-6c5e-71ec-d34d">
<selectionEntries>
<selectionEntry type="model" import="true" name="Reaver Gunship" hidden="false" id="f860-397f-8fc0-bb4f" collective="true">
<profiles>
<profile name="Reaver Gunship" typeId="b88a-b68e-168b-9f28" typeName="Unit" hidden="false" id="aba4-df79-afb8-e1e1">
<characteristics>
<characteristic name="Move" typeId="945b-0e28-8a43-adae">24"</characteristic>
<characteristic name="CM" typeId="725f-50fa-0778-01b0">A</characteristic>
<characteristic name="A" typeId="dadd-5f09-c124-988c">10</characteristic>
<characteristic name="DP" typeId="4f0a-b592-a15b-4f82">2</characteristic>
<characteristic name="Type" typeId="cce5-c8f0-316f-2a02">Aircraft</characteristic>
<characteristic name="Special" typeId="25ff-0caf-af0d-995f">-</characteristic>
<characteristic typeId="730b-1969-f647-f794" name="Transport Requirement"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="55"/>
<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"/>