-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rebel Fleet.cat
7067 lines (7067 loc) · 510 KB
/
Rebel Fleet.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="ebb6-1d9a-63f3-4ef6" name="Rebel Fleet" revision="54" battleScribeVersion="2.03" authorName="Brian Black with updates by vadersson, BlueSeven" authorContact="Brian_Black on BGG and FFG Forums vadersson in lots of places BlueSeven on BSData discord" library="false" gameSystemId="4007-48b0-a016-7a8e" gameSystemRevision="40" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<comment>11/10/23 Errata changes added</comment>
<readme>11/10/23 Errata
Changes:
Commander Krysta Agate now 25pts
Commander General Draven now “At the end of each Command Phase, you may look at all command dials assigned to 1 enemy ship. Then you may place 2 command tokens, each of a different type, on this card.
After an enemy ship resolves a command, you may discard a matching command token from this card. If you do, that enemy ships gains 1 matching raid token.”
Squadron Fenn Rau now “After your activation, if you were activated by a Squad command, choose up to 2 non-unique squadrons at distance 1 of you. The chosen squadrons may activate as if they were activated by that squadron command.”
</readme>
<selectionEntries>
<selectionEntry id="7234-a2c9-5ef1-5b36" name="A-Wing" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e47c-2b8b-11ae-080a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7234-a2c9-5ef1-5b36-f0dc-ae6a-6219-19ef" hidden="false" targetId="f0dc-ae6a-6219-19ef" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="fa89-92b8-0c43-e63a" name="A-Wing Squadrons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1ba9-1f51-d7df-9a26" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="8557-fcfa-10e8-d19b" name="A-Wing Squadron" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="ccfe-402b-99f7-a7c6" name="A-Wing Squadron" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">5</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Counter 2</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4"/>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0606-5208-54fa-aa6c" name="" hidden="false" targetId="7022-8686-4ec8-eb64" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f5a4-a480-6bcd-eeb6" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="11.0"/>
</costs>
</selectionEntry>
<selectionEntry id="74db-13b6-5af4-a71f" name="•Green Squadron" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="413d-1832-7144-9ee3" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8168-d62d-407b-a537" type="max"/>
</constraints>
<profiles>
<profile id="3995-5528-7c81-0cfd" name="•Green Squadron" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">5</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Bomber, Counter 1</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4"/>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e690-3432-0f2c-d0f7" name="" hidden="false" targetId="1d2a-cdbb-2b66-ce85" type="rule"/>
<infoLink id="3b2f-ef93-a608-7897" name="" hidden="false" targetId="7022-8686-4ec8-eb64" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="db48-7ced-03b0-4158" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="9e72-c68b-d4e8-9e6b" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="12.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d732-88de-c3f7-d91b" name="•Shara Bey" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="84a8-5a13-2721-ee98" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="d260-e092-a75c-1d5e" type="max"/>
</constraints>
<profiles>
<profile id="a50f-7560-91e9-4a86" name="•Shara Bey" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">5</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Counter 3</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4">Brace, Scatter</characteristic>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31">While performing a Counter attack, each Critical icon adds 1 damage to the damage total.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c184-203b-3260-f6a4" name="" hidden="false" targetId="7022-8686-4ec8-eb64" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4d02-a680-7ae4-0883" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="47fb-2ace-f9fc-673f" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
<categoryLink id="1391-a66f-a243-fee3" name="Unique Squadron With Defense tokens" hidden="false" targetId="5e3d-2b80-d3a8-dbb8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="17.0"/>
</costs>
</selectionEntry>
<selectionEntry id="600f-2df5-794d-8084" name="•Tycho Celchu" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd01-8fd4-56b7-52e3" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="d658-817f-246a-0e4b" type="max"/>
</constraints>
<profiles>
<profile id="2f5f-7438-646c-7361" name="•Tycho Celchu" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">5</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Counter 2</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4">Brace, Scatter</characteristic>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31">You are not prevented from moving or attacking ships while you are engaged.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1c31-cf07-92b3-deaf" name="" hidden="false" targetId="7022-8686-4ec8-eb64" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bb50-8fa0-4e31-b2ac" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="0b9d-10fe-646b-5cc8" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
<categoryLink id="b8e0-8f4a-ec87-cfe1" name="Unique Squadron With Defense tokens" hidden="false" targetId="5e3d-2b80-d3a8-dbb8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="16.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37bc-3213-7cba-8aa7" name="Assault Frigate Mark II A" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4925-5f4c-6682-0783" name="Assault Frigate Mark II A" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<modifiers>
<modifier type="set" field="5ba4-e836-287d-1b42" value="Officer, Weapons Team, Fleet Command, Offensive Retrofit, Defensive Retrofit, Turbolasers">
<conditions>
<condition field="selections" scope="37bc-3213-7cba-8aa7" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4355-da00-3b0d-7ed2" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">6</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">2 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">3</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">2</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">4</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Evade, Brace, Redirect</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">2 Red, 1 Blue</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">3 Red, 1 Blue</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">3 Red, 1 Blue</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">2 Red, 1 Blue</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">4</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">3</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">3</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">2</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Weapons Team, Offensive Retrofit, Defensive Retrofit, Turbolasers</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">3</characteristic>
</characteristics>
</profile>
<profile id="6f5a-cdc3-b4bc-c291" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">1</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="eb9c-97fb-88db-9848" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="834d-7fca-62c9-50d5" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="aaa0-9737-4e21-f1fa" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="37bc-3213-7cba-8aa7-62d1-ec41-79d6-0a08" hidden="false" targetId="62d1-ec41-79d6-0a08" primary="true"/>
<categoryLink id="27a3-9082-2add-e1b4" name="New CategoryLink" hidden="false" targetId="034d-5d10-2acd-a23f" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e554-8e28-11f0-bf41" hidden="false" collective="false" import="true" targetId="d77d-f98a-9b86-934a" type="selectionEntryGroup"/>
<entryLink id="0e5a-046c-cabe-30f2" name="Defensive Retrofit" hidden="false" collective="false" import="true" targetId="66ad-5d33-8767-a59b" type="selectionEntryGroup"/>
<entryLink id="efac-c89e-c156-f6fc" name="Offensive Retrofit" hidden="false" collective="false" import="true" targetId="0a55-2f8b-aff3-154e" type="selectionEntryGroup"/>
<entryLink id="f9b5-bd6d-c5d7-c862" name="Officer" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
<entryLink id="41ec-3532-3c7f-68d3" name="Title - Assault Frigate Mk II" hidden="false" collective="false" import="true" targetId="3dab-7f1b-0c57-2c5b" type="selectionEntryGroup"/>
<entryLink id="992e-920c-00c2-15ef" name="Turbolasers" hidden="false" collective="false" import="true" targetId="919f-0faf-d84f-79ff" type="selectionEntryGroup"/>
<entryLink id="c778-320d-896a-e227" name="Weapons Team" hidden="false" collective="false" import="true" targetId="baa5-7a1e-92ea-a312" type="selectionEntryGroup"/>
<entryLink id="0f10-7bde-5623-50c5" name="Fleet Command" hidden="false" collective="false" import="true" targetId="e9c2-667f-db59-c935" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="37bc-3213-7cba-8aa7" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4355-da00-3b0d-7ed2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="81.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fd9c-4f9e-48c4-40c7" name="Assault Frigate Mark II B" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="64a0-15cf-269c-733c" name="Assault Frigate Mark II B" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<modifiers>
<modifier type="set" field="5ba4-e836-287d-1b42" value="Officer, Weapons Team, Fleet Command, Offensive Retrofit, Defensive Retrofit, Turbolasers">
<conditions>
<condition field="selections" scope="fd9c-4f9e-48c4-40c7" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4355-da00-3b0d-7ed2" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">6</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">3</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">3</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">4</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Evade, Brace, Redirect</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">2 Red</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">3 Red, 1 Blue</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">3 Red, 1 Blue</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">2 Red</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">4</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">3</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">3</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">2</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Weapons Team, Offensive Retrofit, Defensive Retrofit, Turbolasers</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">3</characteristic>
</characteristics>
</profile>
<profile id="ff92-3f63-6910-2245" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">1</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="4cf4-78a2-dc92-8928" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="da55-efa2-c871-9da8" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="8697-1ce3-70f5-7398" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="fd9c-4f9e-48c4-40c7-62d1-ec41-79d6-0a08" hidden="false" targetId="62d1-ec41-79d6-0a08" primary="true"/>
<categoryLink id="62e0-5579-4a80-7d88" name="New CategoryLink" hidden="false" targetId="034d-5d10-2acd-a23f" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="501e-cb7d-6b70-7e39" hidden="false" collective="false" import="true" targetId="d77d-f98a-9b86-934a" type="selectionEntryGroup"/>
<entryLink id="d3ee-90ac-07c0-0f96" hidden="false" collective="false" import="true" targetId="66ad-5d33-8767-a59b" type="selectionEntryGroup"/>
<entryLink id="8e0d-3a10-bdd0-d934" hidden="false" collective="false" import="true" targetId="0a55-2f8b-aff3-154e" type="selectionEntryGroup"/>
<entryLink id="7aaa-31af-633f-fdb3" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
<entryLink id="0090-84d0-105c-74f9" hidden="false" collective="false" import="true" targetId="3dab-7f1b-0c57-2c5b" type="selectionEntryGroup"/>
<entryLink id="9e17-cedc-5e7f-36c9" hidden="false" collective="false" import="true" targetId="919f-0faf-d84f-79ff" type="selectionEntryGroup"/>
<entryLink id="7f6d-687c-8118-6d33" name="Weapons Team" hidden="false" collective="false" import="true" targetId="baa5-7a1e-92ea-a312" type="selectionEntryGroup"/>
<entryLink id="6468-1abb-6b1e-60da" name="Fleet Command" hidden="false" collective="false" import="true" targetId="e9c2-667f-db59-c935" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="fd9c-4f9e-48c4-40c7" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4355-da00-3b0d-7ed2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="72.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9dd3-65ef-0609-5d59" name="B-Wing" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62b1-c154-b15c-8f11" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="9dd3-65ef-0609-5d59-f0dc-ae6a-6219-19ef" hidden="false" targetId="f0dc-ae6a-6219-19ef" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d2ab-6594-cf72-ec9b" name="B-Wing Squadrons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5f11-18ed-70d4-3bb9" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="998f-403c-27eb-0621" name="B-Wing Squadron" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="eaf9-782e-840b-e753" name="B-Wing Squadron" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">2</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">5</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Blue, 1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Bomber</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4"/>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5c42-a90f-7e57-fbed" name="" hidden="false" targetId="1d2a-cdbb-2b66-ce85" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="93eb-3bc2-cdfc-0d97" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3e65-f528-c4e5-0506" name="•Dagger Squadron" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e2e-7e3d-17d4-c246" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0186-7d87-3bdd-9ef0" type="max"/>
</constraints>
<profiles>
<profile id="2f52-c291-4eeb-fdcf" name="•Dagger Squadron" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">2</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">5</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">2 Blue, 1 Black</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Blue, 1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Bomber, Swarm</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4"/>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="136f-cba1-71d3-436e" name="" hidden="false" targetId="1d2a-cdbb-2b66-ce85" type="rule"/>
<infoLink id="6ffc-6d89-fbd9-04fe" name="" hidden="false" targetId="0172-dd4d-907c-a8a9" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c995-ce26-8745-e164" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="6ce0-9f10-94eb-41cc" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4956-7a6b-7a22-1e79" name="•Keyan Farlander" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="22de-7e72-b97a-b5d8" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="7596-9e3a-aaa2-8f30" type="max"/>
</constraints>
<profiles>
<profile id="92b5-2956-94cd-ae43" name="•Keyan Farlander" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">2</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">5</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">2 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Bomber</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4">2 Brace</characteristic>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31">While attacking a ship, if the defending hull zone has no shields, you may reroll any number of dice in your attack pool.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7656-a739-a9a7-daed" name="" hidden="false" targetId="1d2a-cdbb-2b66-ce85" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="65fb-2873-2da5-4b8d" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="6451-5d40-56c4-69c9" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
<categoryLink id="030f-52f0-5c69-c010" name="Unique Squadron With Defense tokens" hidden="false" targetId="5e3d-2b80-d3a8-dbb8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37b6-f00a-b8c7-bc12" name="•Ten Numb" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c636-7466-200d-07e4" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="4b67-ecc3-aceb-484b" type="max"/>
</constraints>
<profiles>
<profile id="5e49-a5c3-4485-b3bf" name="•Ten Numb" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">2</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">5</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">2 Blue, 1 Black</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Blue, 1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Bomber</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4">2 Brace</characteristic>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31">While attacking a squadron, you may spend 1 blue die with a Critical icon. If you do, each other enemy squadron at distance 1 of the defender suffers 1 damage.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a997-c7ed-3ffc-ed9c" name="" hidden="false" targetId="1d2a-cdbb-2b66-ce85" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="03a3-47f8-dda3-dc3f" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="5cd4-cd7e-541f-5cfb" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
<categoryLink id="b062-a2f3-85df-67e1" name="Unique Squadron With Defense tokens" hidden="false" targetId="5e3d-2b80-d3a8-dbb8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="19.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="84f9-c194-d8cd-e718" name="CR90 Corvette A" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="e72b-288f-6350-80c9" name="CR90 Corvette A" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<modifiers>
<modifier type="set" field="5ba4-e836-287d-1b42" value="Officer, Support Team, Fleet Command, Defensive Retrofit, Turbolasers">
<conditions>
<condition field="selections" scope="84f9-c194-d8cd-e718" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7658-5de3-7bd5-3df5" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">4</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">1</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">1</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">2</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Evade, Evade, Redirect</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">2 Red 1 Blue</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">1 Red 1 Blue</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">1 Red 1 Blue</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">1 Red</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">2</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">2</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">2</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">1</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Support Team, Defensive Retrofit, Turbolasers</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">4</characteristic>
</characteristics>
</profile>
<profile id="1bc1-a080-ff2f-6410" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">2</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">-</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="64b5-50ad-09b0-8e17" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">2</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">1</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="8330-9a82-7e92-27f7" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">2</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">1</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="6c38-53fc-898d-ab12" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522">2</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="84f9-c194-d8cd-e718-319a-5aa9-59e5-30fa" hidden="false" targetId="319a-5aa9-59e5-30fa" primary="true"/>
<categoryLink id="fe6a-9398-47b0-0ce1" name="New CategoryLink" hidden="false" targetId="fe1d-3608-d9e7-491e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="0cd4-5762-3233-a05a" hidden="false" collective="false" import="true" targetId="d77d-f98a-9b86-934a" type="selectionEntryGroup"/>
<entryLink id="3a94-2af2-71ce-ad58" hidden="false" collective="false" import="true" targetId="919f-0faf-d84f-79ff" type="selectionEntryGroup"/>
<entryLink id="b219-9b4b-a938-296b" hidden="false" collective="false" import="true" targetId="92d1-8354-bcb8-38fc" type="selectionEntryGroup"/>
<entryLink id="7c07-0682-d506-15f8" name="Defensive Retrofit" hidden="false" collective="false" import="true" targetId="66ad-5d33-8767-a59b" type="selectionEntryGroup"/>
<entryLink id="1832-1a92-094a-d556" hidden="false" collective="false" import="true" targetId="5c1d-02e5-2431-fb6f" type="selectionEntryGroup"/>
<entryLink id="c7d1-f27b-8493-f5d5" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
<entryLink id="723d-2325-11c2-99a6" name="Fleet Command" hidden="false" collective="false" import="true" targetId="e9c2-667f-db59-c935" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="84f9-c194-d8cd-e718" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7658-5de3-7bd5-3df5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="44.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9638-6bed-5646-56f4" name="CR90 Corvette B" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="faec-23d9-b0cb-5a97" name="CR90 Corvette B" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<modifiers>
<modifier type="set" field="5ba4-e836-287d-1b42" value="Officer, Support Team, Fleet Command, Defensive Retrofit, Ion Cannons">
<conditions>
<condition field="selections" scope="9638-6bed-5646-56f4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7658-5de3-7bd5-3df5" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">4</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">1</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">1</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">2</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Evade, Evade, Redirect</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">3 Blue</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">2 Blue</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">2 Blue</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">1 Blue</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">2</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">2</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">2</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">1</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Support Team, Defensive Retrofit, Ion Cannons</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">4</characteristic>
</characteristics>
</profile>
<profile id="04c2-c0ad-952c-bb2d" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">2</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">-</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="36ac-b1cf-75b1-a9c9" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">2</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">1</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="40d8-8b77-5301-f5d6" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">2</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">1</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="2311-dcaf-b527-b2db" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522">2</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9638-6bed-5646-56f4-319a-5aa9-59e5-30fa" hidden="false" targetId="319a-5aa9-59e5-30fa" primary="true"/>
<categoryLink id="08ae-95dc-44e2-7a9c" name="New CategoryLink" hidden="false" targetId="fe1d-3608-d9e7-491e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="7435-d6d4-12b6-f814" hidden="false" collective="false" import="true" targetId="d77d-f98a-9b86-934a" type="selectionEntryGroup"/>
<entryLink id="45af-335a-436c-0e88" hidden="false" collective="false" import="true" targetId="a176-c60f-7d96-1496" type="selectionEntryGroup"/>
<entryLink id="a274-2a7f-67b6-9df3" hidden="false" collective="false" import="true" targetId="92d1-8354-bcb8-38fc" type="selectionEntryGroup"/>
<entryLink id="4d38-99f4-be89-76dc" hidden="false" collective="false" import="true" targetId="66ad-5d33-8767-a59b" type="selectionEntryGroup"/>
<entryLink id="f7f2-649c-7c08-8962" hidden="false" collective="false" import="true" targetId="5c1d-02e5-2431-fb6f" type="selectionEntryGroup"/>
<entryLink id="042d-9cd5-6cf5-ec7e" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
<entryLink id="74d0-41ad-05dc-2e01" name="Fleet Command" hidden="false" collective="false" import="true" targetId="e9c2-667f-db59-c935" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="9638-6bed-5646-56f4" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7658-5de3-7bd5-3df5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="39.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6348-a2d3-d605-5c68" name="GR-75 Combat Retrofits" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4bc2-e6e7-291f-124c" name="GR-75 Combat Retrofits" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">3</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">1</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">2</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">2</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Scatter, Evade</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">1 Blue</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">-</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">-</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">1 Blue</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">1</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">1</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">1</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">1</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Fleet Support, Offensive Retrofit</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">3</characteristic>
</characteristics>
</profile>
<profile id="210b-bcba-a0f8-5803" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">2</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="1e4d-75b9-7089-ca80" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">2</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="d877-31d9-c14c-2eb7" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">2</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="7d45-7ce4-b09a-03ba" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="30b6-b861-c851-a996" name="Flotillas" hidden="false" targetId="66ca-1e61-b6e8-c63e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6348-a2d3-d605-5c68-8180-3b0c-4e1a-d22a" hidden="false" targetId="8180-3b0c-4e1a-d22a" primary="true"/>
<categoryLink id="01b9-e337-6bc4-68a8" name="New CategoryLink" hidden="false" targetId="85e7-c532-9071-4160" primary="false"/>
<categoryLink id="c161-8c59-b2dd-e5b2" name="New CategoryLink" hidden="false" targetId="fe1d-3608-d9e7-491e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="2096-69a8-e8eb-6756" hidden="false" collective="false" import="true" targetId="68b7-57ca-14ec-170f" type="selectionEntryGroup"/>
<entryLink id="733d-a8de-45d5-c337" name="Fleet Support" hidden="false" collective="false" import="true" targetId="5fa2-7fc1-d773-740c" type="selectionEntryGroup"/>
<entryLink id="703a-5443-82b1-ed93" name="Offensive Retrofit" hidden="false" collective="false" import="true" targetId="0a55-2f8b-aff3-154e" type="selectionEntryGroup"/>
<entryLink id="2548-7ebe-49b0-66b3" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="24.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7928-9325-451b-6e2a" name="GR-75 Medium Transports" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2c1f-d175-197b-28b6" name="GR-75 Medium Transports" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">3</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Black</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">1</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">2</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">2</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Scatter, Evade</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">-</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">-</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">-</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">-</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">1</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">1</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">1</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">1</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Fleet Support, Offensive Retrofit</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">3</characteristic>
</characteristics>
</profile>
<profile id="9f93-e699-b2f5-9458" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">2</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="60df-eab2-a2e3-e338" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">2</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="a5df-5061-7e2d-dbdc" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">2</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="226b-5ca1-7ba0-ebd0" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522"/>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b14e-9f27-06b7-a2d2" name="Flotillas" hidden="false" targetId="66ca-1e61-b6e8-c63e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7928-9325-451b-6e2a-8180-3b0c-4e1a-d22a" hidden="false" targetId="8180-3b0c-4e1a-d22a" primary="true"/>
<categoryLink id="9b7c-af44-c34e-f7e4" name="New CategoryLink" hidden="false" targetId="85e7-c532-9071-4160" primary="false"/>
<categoryLink id="8d6b-d941-c1f0-5a3c" name="New CategoryLink" hidden="false" targetId="fe1d-3608-d9e7-491e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="7f2f-5f0b-70e0-f813" hidden="false" collective="false" import="true" targetId="68b7-57ca-14ec-170f" type="selectionEntryGroup"/>
<entryLink id="1202-a94a-1ac2-27d6" name="Fleet Support" hidden="false" collective="false" import="true" targetId="5fa2-7fc1-d773-740c" type="selectionEntryGroup"/>
<entryLink id="b58b-e943-8ca1-867c" name="Offensive Retrofit" hidden="false" collective="false" import="true" targetId="0a55-2f8b-aff3-154e" type="selectionEntryGroup"/>
<entryLink id="d310-a920-0afb-dbb9" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="18.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8796-4f58-631e-f4a3" name="HWK-290" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ba3-6cd5-3d28-95e2" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8796-4f58-631e-f4a3-f0dc-ae6a-6219-19ef" hidden="false" targetId="f0dc-ae6a-6219-19ef" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="cfcf-e116-6f4b-16d2" name="HWK-290 Irregular Squadrons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0c22-75fa-d253-ded0" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="5866-803a-9d46-c43b" name="HWK-290" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="3914-b7bb-5338-2004" name="HWK-290" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">3</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">2 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Blue</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Counter 2, Intel</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4"/>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="90b8-a991-1eaf-dfd3" name="" hidden="false" targetId="7022-8686-4ec8-eb64" type="rule"/>
<infoLink id="3e18-1278-faed-89f8" name="" hidden="false" targetId="f379-5e57-6d92-edb9" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4e61-186f-9829-4729" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="12.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0df8-6b95-5627-b20b" name="•Jan Ors (Moldy Crow)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1896-6025-45d4-b8aa" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="d3f5-adb2-4141-1179" type="max"/>
</constraints>
<profiles>
<profile id="74b4-57a3-a0a0-b826" name="•Jan Ors (Moldy Crow)" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">3</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">3 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">1 Black</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Counter 2, Intel</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4">2 Brace</characteristic>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31">While a friendly squadron at distance 1-2 is defending, it can spend your defense tokens.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="aa9f-fcf4-ac3b-43eb" name="" hidden="false" targetId="7022-8686-4ec8-eb64" type="rule"/>
<infoLink id="5343-49cb-c25a-f9a0" name="" hidden="false" targetId="f379-5e57-6d92-edb9" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3c90-2d28-4a80-3d5c" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="95d9-c0fb-f956-a637" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
<categoryLink id="44e8-88ee-0a6c-7076" name="Unique Squadron With Defense tokens" hidden="false" targetId="5e3d-2b80-d3a8-dbb8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="19.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a75-248d-2979-6d3c" name="•Kanan Jarrus" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1214-c1c6-71d7-d3d5" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b716-fb31-8f73-ff7e" type="max"/>
</constraints>
<profiles>
<profile id="87d7-d324-bba7-256a" name="•Kanan Jarrus" hidden="false" typeId="6590-7c7f-7387-8791" typeName="1.4 Squadrons">
<characteristics>
<characteristic name="Speed" typeId="dc1b-7d57-479f-eea2">3</characteristic>
<characteristic name="Hull Value" typeId="7270-7235-8dde-f1a5">4</characteristic>
<characteristic name="Anti-Squadron" typeId="5ab5-88d4-1761-39fd">1 Red, 2 Blue</characteristic>
<characteristic name="Battery" typeId="0c90-10a7-96aa-17ec">2 Blue</characteristic>
<characteristic name="Keywords" typeId="0bb7-9857-bada-1cf5">Assault, Cloak, Rogue</characteristic>
<characteristic name="Defense Tokens" typeId="72b0-d5ab-aaed-96b4">2 Brace</characteristic>
<characteristic name="Squadron Ability" typeId="f700-e5ab-06cc-1b31">While attacking a ship, you may spend 1 die with a [Crit] icon. If you do, the defender gains 1 raid token of your choice.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="632e-6213-23cd-ba5e" name="Assault" hidden="false" targetId="0e25-812e-a5fd-7f07" type="rule"/>
<infoLink id="4c9d-f545-0b1c-9296" name="Cloak" hidden="false" targetId="405c-d276-9f64-9ae4" type="rule"/>
<infoLink id="a9bf-f5f7-c779-819e" name="Rogue" hidden="false" targetId="07dd-35ce-00b5-aedf" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b210-24bd-64c3-141e" name="Squadron" hidden="false" targetId="1033-4475-51fe-2d49" primary="false"/>
<categoryLink id="577a-7411-36de-c063" name="Unique Squadrons" hidden="false" targetId="b480-bb94-e584-7963" primary="false"/>
<categoryLink id="d03d-e538-6343-8770" name="Unique Squadron With Defense tokens" hidden="false" targetId="5e3d-2b80-d3a8-dbb8" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="19.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="34d6-c129-c2b5-56bc" name="MC30c Scout Frigate" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="85e0-b0bb-1df7-531e" name="MC30c Scout Frigate" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">4</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">2</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">1</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">3</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Evade, Evade, Redirect, Redirect</characteristic>
<characteristic name="Front Firing Arc" typeId="8d51-161b-6a35-8c8c">1 Red, 2 Black</characteristic>
<characteristic name="Left Firing Arc" typeId="b4b4-b590-eb56-726f">2 Red, 3 Black</characteristic>
<characteristic name="Right Firing Arc" typeId="748c-7972-54e2-1bd1">2 Red, 3 Black</characteristic>
<characteristic name="Rear Firing Arc" typeId="2949-52b4-c630-9e14">1 Red, 1 Black</characteristic>
<characteristic name="Front Shield Value" typeId="b626-c94b-bb41-4893">3</characteristic>
<characteristic name="Left Shield Value" typeId="634e-fa2b-63b6-bef2">3</characteristic>
<characteristic name="Right Shield Value" typeId="590e-4eb6-d942-884d">3</characteristic>
<characteristic name="Rear Shield Value" typeId="5753-1a48-06df-40af">2</characteristic>
<characteristic name="Upgrade Bar" typeId="5ba4-e836-287d-1b42">Officer, Weapons Team, Defensive Retrofit, Ordnance, Turbolasers</characteristic>
<characteristic name="Keywords" typeId="44b7-80c3-1f4f-8b7c"/>
<characteristic name="Max Speed" typeId="b650-9c38-4a65-44a7">4</characteristic>
</characteristics>
</profile>
<profile id="0193-81f5-0d38-5cb8" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f">1</characteristic>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">-</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">-</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="d523-c29a-4aba-64f6" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905">1</characteristic>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">1</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">1</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="7d9d-a147-dc6b-0b37" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7">2</characteristic>
<characteristic name="4" typeId="5e3b-e972-3249-2522">1</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
<profile id="7885-39ef-73dd-b8ab" name=" " hidden="false" typeId="12ae-fc05-5eb2-1c26" typeName="1.9 Speed Chart">
<characteristics>
<characteristic name="1" typeId="9c2c-0baf-d44a-434f"/>
<characteristic name="2" typeId="6d2c-60fc-6858-4905"/>
<characteristic name="3" typeId="a62c-fc4f-35ca-94d7"/>
<characteristic name="4" typeId="5e3b-e972-3249-2522">-</characteristic>
<characteristic name="|" typeId="953d-9875-c8ab-40ec">|</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="34d6-c129-c2b5-56bc-167d-fd4d-28e2-f646" hidden="false" targetId="167d-fd4d-28e2-f646" primary="true"/>
<categoryLink id="f5d5-ece2-50ff-5e4d" name="New CategoryLink" hidden="false" targetId="fe1d-3608-d9e7-491e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="a013-9ad4-1b72-dcf1" hidden="false" collective="false" import="true" targetId="d77d-f98a-9b86-934a" type="selectionEntryGroup"/>
<entryLink id="af68-513f-963a-82cb" hidden="false" collective="false" import="true" targetId="baa5-7a1e-92ea-a312" type="selectionEntryGroup"/>
<entryLink id="5118-a753-2cc0-01b4" hidden="false" collective="false" import="true" targetId="66ad-5d33-8767-a59b" type="selectionEntryGroup"/>
<entryLink id="4bfb-e1df-6015-7710" hidden="false" collective="false" import="true" targetId="23f2-ace7-4294-434e" type="selectionEntryGroup"/>
<entryLink id="4e46-d7c0-a86d-b8cb" hidden="false" collective="false" import="true" targetId="919f-0faf-d84f-79ff" type="selectionEntryGroup"/>
<entryLink id="0a1e-ec98-f7a3-4275" hidden="false" collective="false" import="true" targetId="b5af-b7c8-71fd-57cf" type="selectionEntryGroup"/>
<entryLink id="ab31-07f7-08cb-ee07" hidden="false" collective="false" import="true" targetId="10d5-12af-b773-cd45" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="69.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3879-0549-5a62-391d" name="MC30c Torpedo Frigate" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="79eb-84ad-ca23-b698" name="MC30c Torpedo Frigate" hidden="false" typeId="e72b-10bf-c14e-b3a8" typeName="1.1 Ships">
<characteristics>
<characteristic name="Hull" typeId="dce4-e1e2-4600-db77">4</characteristic>
<characteristic name="Anti-Squadron Value" typeId="4691-4ce0-0e70-7711">1 Blue</characteristic>
<characteristic name="Command" typeId="1d2d-071c-feaa-7f6e">2</characteristic>
<characteristic name="Squadron" typeId="b7a0-8944-9c2a-ca69">1</characteristic>
<characteristic name="Engineering" typeId="6069-def8-10bd-ab4b">3</characteristic>
<characteristic name="Defense Tokens" typeId="f211-7be9-035b-a0cf">Evade, Evade, Redirect, Redirect</characteristic>