forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Switfhawk Agents.cat
1202 lines (1202 loc) · 85.5 KB
/
Order - Switfhawk Agents.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="6554-e5f8-d1e4-61b7" name="Order - Switfhawk Agents" revision="13" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="25" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="6554-e5f8-pubN65537" name="Grand Alliance: Order"/>
</publications>
<categoryEntries>
<categoryEntry id="0beb-4c70-3430-5a77" name="AELF" hidden="false"/>
<categoryEntry id="5baa-844e-c811-5e7f" name="SWIFTHAWK AGENTS" hidden="false"/>
<categoryEntry id="9dae-f28a-611f-36b2" name="REAVERS" hidden="false"/>
<categoryEntry id="f560-2491-9504-9766" name="HIGH WARDEN" hidden="false"/>
<categoryEntry id="d932-3004-502d-ec6c" name="GRIFFON" hidden="false"/>
<categoryEntry id="77da-c8b9-b32c-e42a" name="SHADOW WARRIORS" hidden="false"/>
<categoryEntry id="cd8a-bc5d-88f4-b026" name="SKYCUTTERS" hidden="false"/>
<categoryEntry id="79ce-5a6d-5384-5952" name="CHARIOTS" hidden="false"/>
<categoryEntry id="8b2f-6407-d374-5b5a" name="SKYWARDEN" hidden="false"/>
<categoryEntry id="6517-8ae7-42c5-b77f" name="SPIREGUARD" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="290d-763e-0da2-4b55" name="Allegiance" hidden="false" collective="false" import="true" targetId="2b3a-3654-59df-3dff" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="abba-e493-4855-af2a" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a826-56cf-ab5a-fe35" name="Chariots" hidden="false" collective="false" import="true" targetId="46be-94c2-e630-b634" type="selectionEntry">
<categoryLinks>
<categoryLink id="d011-1a30-e4bb-dd50" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b6bf-a3b4-eeb9-3e10" name="High Warden" hidden="false" collective="false" import="true" targetId="b59c-2555-759d-260e" type="selectionEntry">
<categoryLinks>
<categoryLink id="1f9b-9646-3e12-b38b" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="9d49-e62c-cb83-465b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="002a-fcdd-5d03-3f0c" name="Reavers" hidden="false" collective="false" import="true" targetId="227b-4546-dc11-0602" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6554-7e3f-a96d-cb1c" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="73c6-cd5e-4cf9-c3cc" name="Shadow Warriors" hidden="false" collective="false" import="true" targetId="9c01-702d-ce3f-6382" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b023-a285-4373-34d9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0313-557b-960d-2236" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="afb0-e8db-4cb4-30dc" name="Shadow Warriors" hidden="false" collective="false" import="true" targetId="9c01-702d-ce3f-6382" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b023-a285-4373-34d9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d2f2-cb3e-1421-6319" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a2b9-9f2c-8098-ee7c" name="Reavers" hidden="false" collective="false" import="true" targetId="227b-4546-dc11-0602" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7c58-e45c-9601-0b56" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4a11-d04f-ffa8-d0f6" name="Skycutters" hidden="false" collective="false" import="true" targetId="cc2a-daaa-bf1c-c6b2" type="selectionEntry">
<categoryLinks>
<categoryLink id="a8bd-6947-d94e-59b6" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b5ee-24cc-8058-928a" name="Spireguard" hidden="false" collective="false" import="true" targetId="c35f-cf25-33ff-f583" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b023-a285-4373-34d9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e4aa-2714-4a27-5cc4" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a9af-3d14-9eb2-75f9" name="Spireguard" hidden="false" collective="false" import="true" targetId="c35f-cf25-33ff-f583" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b023-a285-4373-34d9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6e5c-f8e4-4c82-a4ea" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e222-34a7-6065-fe1d" name="Skywarden" hidden="false" collective="false" import="true" targetId="95c6-23f4-2300-ea81" type="selectionEntry">
<categoryLinks>
<categoryLink id="3aa9-4dbc-3816-a5a1" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="3ec2-da11-05fd-eb3a" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6cdd-2278-32bc-0d2e" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d71b-7bbd-907a-bcb6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3acc-fec4-46aa-8f92" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b3a-3654-59df-3dff" name="Allegiance" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="835e-655b-56d8-c757" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a5f8-a663-af78-3fa6" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="cc2f-1ea0-6afb-4369" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="b023-a285-4373-34d9">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bd3e-d757-7e87-aa8e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0a65-d2ab-4f57-3a47" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="abdf-5379-195d-8198" name="Allegiance: Order" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9899-dfc8-cda3-b3fb" name="Defiant Avengers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll battleshock tests for friendly ORDER units in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b023-a285-4373-34d9" name="Allegiance: Swifthawk Agents" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="981c-f1ef-c1cd-0ba1" name="Defiant Avengers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll battleshock tests for friendly ORDER units in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="227b-4546-dc11-0602" name="Reavers" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="32fc-0352-8992-3b66" name="Reavers" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="8d9e-9577-f409-7db1" name="Harbinger" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is a Harbinger. A Harbinger wields a Starsteel Blade in place of a Starwood Spear.</characteristic>
</characteristics>
</profile>
<profile id="4904-ad68-28d6-069a" name="Aelven Purebreeds" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In the shooting phase, before or after making attacks with this unit, you can roll two dice and move all of the models in this unit up to that many inches. Models cannot start or end this move withing 3" of an enemy unit. </characteristic>
</characteristics>
</profile>
<profile id="fbc4-dfa7-1d08-11de" name="Swift Volleys" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Models in this unit make 3 attacks with their Reaver Cavalry Bows if the unit is not within 3" of an enemy unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cb1f-ea0e-06dd-46f1" name="New CategoryLink" hidden="false" targetId="0beb-4c70-3430-5a77" primary="false"/>
<categoryLink id="ea94-463c-b977-5c83" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="9428-2aa0-193f-bd7a" name="New CategoryLink" hidden="false" targetId="9dae-f28a-611f-36b2" primary="false"/>
<categoryLink id="838e-0ac1-1ab8-f3e7" name="New CategoryLink" hidden="false" targetId="5baa-844e-c811-5e7f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1e87-82c4-b48a-e3e1" name="5 Reavers" 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="3de3-1169-72d2-e342" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26fe-abd6-d960-7ba7" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="68fa-1f1f-c5c7-eb09" name="Aelven Purebreed's Swift Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6087-fcf1-a272-1ca9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="395b-e35e-c3e5-9195" type="max"/>
</constraints>
<profiles>
<profile id="3c13-0640-6ed3-5171" name="Aelven Purebreed's Swift Hooves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707"/>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d437-ac17-f237-8513" name="Reaver Cavalry Bow" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="454c-30b3-dd47-3b1e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d5f-12c7-8dde-a444" type="min"/>
</constraints>
<profiles>
<profile id="3db4-e2b2-532d-7866" name="Reaver Cavalry Bow" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">16"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a66-f189-b9b2-8962" name="Starsteel Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="992c-7da1-d6c2-3db2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b0a8-12eb-8f96-ab23" type="min"/>
</constraints>
<profiles>
<profile id="4ab2-42ae-61b4-6c5c" name="Starsteel Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6f24-648f-6581-a1cc" name="Starwood Spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6051-040b-6795-1b37" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2880-063d-9683-a182" type="min"/>
</constraints>
<profiles>
<profile id="46c5-9dfc-7170-2c3b" name="Starwood Spear" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="95c6-23f4-2300-ea81" name="Skywarden" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="69a1-4459-a17e-5a17" name="Skywarden" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">16"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="9f73-6a0c-e6cd-49e7" name="Fleet of Wing" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this model runs, roll two dice instead of one and use the total when determining how much extra it can move.</characteristic>
</characteristics>
</profile>
<profile id="6775-284c-f480-ac73" name="Enchanted Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll all failed save rolls for this model.</characteristic>
</characteristics>
</profile>
<profile id="60b0-04ed-3b1a-c1f1" name="Windrider" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Skywarden has a Save of 4+ instead of 5+ in the shooting phase.</characteristic>
</characteristics>
</profile>
<profile id="9c2f-21d2-e78f-e03d" name="Swoop and Attack!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">If a Skywarden uses this ability, SWIFTHAWK AGENTS in your army that can fly can charge in your next charge phase even if they ran this turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9533-3065-94ab-90d3" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="27ce-56fc-8944-cbd7" name="New CategoryLink" hidden="false" targetId="0beb-4c70-3430-5a77" primary="false"/>
<categoryLink id="a241-cb48-7298-d605" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="c6b9-1500-0909-acf4" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="ff0a-99a0-701e-4086" name="New CategoryLink" hidden="false" targetId="8b2f-6407-d374-5b5a" primary="false"/>
<categoryLink id="5dfa-f138-a296-3f78" name="New CategoryLink" hidden="false" targetId="5baa-844e-c811-5e7f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="79e8-eeac-c350-807a" name="Swiftfeather Hawks' Raking Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df22-5032-4c75-e0a2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0668-5803-6814-aef1" type="min"/>
</constraints>
<profiles>
<profile id="74d1-6abb-d9ef-f09a" name="Swiftfeather Hawks' Raking Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cb6b-51a4-36e8-c58b" name="Agent's Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc11-2ad7-e1f3-3b19" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5005-38fd-3329-3d64" type="min"/>
</constraints>
<profiles>
<profile id="f5e9-188e-7e3f-3a2b" name="Agent's Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f19d-7353-fe4c-8979" name="Skywarden's Ithilmar Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c03c-012f-e509-5d6d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9733-1b7b-5fc7-d1a5" type="min"/>
</constraints>
<profiles>
<profile id="05d3-9059-cc5b-67e5" name="Skywarden's Ithilmar Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a8b3-09d5-6a44-334d" name="Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c1d-8296-00fd-077f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c6f4-c424-e4d5-086f" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e885-b2d8-7895-33d8" name="Zephyr Trident" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="be83-c241-5076-7987" name="Zephyr Trident" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8f99-89f0-78d0-fb95" name="Swifthawk Pennant" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1e84-8ec5-cee3-bf59" name="Swifthawk Pennant" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">A Skywarden with a Swifthawk Pennant gains the TOTEM keyword. You can add 1 to all wound rolls for SWIFTHAWK AGENTS units from your army if they are within 16" of this model when they attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="30d1-8375-7741-9987" name="General" hidden="false" collective="false" import="true" targetId="3ec2-da11-05fd-eb3a" type="selectionEntry"/>
<entryLink id="c268-7efc-979d-5e2e" name="Artefacts" hidden="false" collective="false" import="true" targetId="7757-ecfe-b442-cb2f" type="selectionEntryGroup"/>
<entryLink id="7e59-5bd5-7507-cacc" name="Command Traits" hidden="false" collective="false" import="true" targetId="4e57-c315-8cd6-be52" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b59c-2555-759d-260e" name="High Warden" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="e713-baf5-f843-90f6" name="High Warden" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">10</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="2829-b174-2382-304f" name="Predatory Leap" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The High Warden's Griffon can carry him over the battle line directly to their chosen foe. When this model piles in it can move up to 6" and can move over enemy models. Furthermore, it does not have to move towards the closest enemy model, as long as it ends its move within 1/2" of an enemy unit.</characteristic>
</characteristics>
</profile>
<profile id="732f-9aa8-77eb-d4f1" name="Hurricane Charge" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">If a High Warden uses this ability, then until your next hero phase you can re-roll any dice when determining the charge distance for SWIFTHAWK AGENTS from your army if they are within 16" of this model when they charge.</characteristic>
</characteristics>
</profile>
<profile id="b440-25de-2186-8115" name="Wounds0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Wicked Talons</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Razor-sharp Beak</characteristic>
</characteristics>
</profile>
<profile id="e21d-a541-0860-ecbc" name="Wounds1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-2</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">16"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3+</characteristic>
</characteristics>
</profile>
<profile id="9b21-8c1f-a3bf-0ad7" name="Wounds2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">3-4</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">14"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4+</characteristic>
</characteristics>
</profile>
<profile id="0867-0f95-a985-1898" name="Wounds3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">5-7</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">12"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4+</characteristic>
</characteristics>
</profile>
<profile id="1fdf-eef6-7780-6606" name="Wounds4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">8-9</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5+</characteristic>
</characteristics>
</profile>
<profile id="47d0-03b3-649e-f4db" name="Wounds5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">10+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b719-104e-20c4-e0c4" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="719d-27b1-9c37-fb50" name="New CategoryLink" hidden="false" targetId="0beb-4c70-3430-5a77" primary="false"/>
<categoryLink id="20f9-3ed3-a5c3-e857" name="New CategoryLink" hidden="false" targetId="d932-3004-502d-ec6c" primary="false"/>
<categoryLink id="12ab-f15f-714f-35ed" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="885a-88a2-2735-011f" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="8e44-f31d-b0bb-ba66" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="1c28-bea2-5db0-d082" name="New CategoryLink" hidden="false" targetId="5baa-844e-c811-5e7f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6e33-ab3a-5abd-3974" name="Griffon's Razor-sharp Beak" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="603d-0f8f-e647-1efc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43df-cda7-08ce-f05d" type="min"/>
</constraints>
<profiles>
<profile id="ce86-b3a0-66b8-f0ca" name="Griffon's Razor-sharp Beak" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">*</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ec72-38b1-60a4-d095" name="Griffon's Wicked Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b398-7cb2-7ab6-1e56" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="685a-f199-1a36-fac1" type="min"/>
</constraints>
<profiles>
<profile id="5562-bbde-b7ed-2b26" name="Griffon's Wicked Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2ede-9ff4-f4d3-1e92" name="Starblade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd11-0c5c-19b5-cbd6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c96e-aae5-e986-2eb9" type="min"/>
</constraints>
<profiles>
<profile id="966a-e57e-0d52-3f7b" name="Starblade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3ae1-0ce1-0098-652d" name="Starwood Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e8da-bea6-496f-e7c4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2d7-c61c-f965-ce55" type="min"/>
</constraints>
<profiles>
<profile id="acab-d4e0-3ef7-d70f" name="Starwood Lance" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="13cb-fef4-03be-fd0c" name="Starwood Lance" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the wound rolls and Damage of a Starwood Lance if this model charged in the same turn. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3532-12cd-e297-a064" name="General" hidden="false" collective="false" import="true" targetId="3ec2-da11-05fd-eb3a" type="selectionEntry"/>
<entryLink id="d173-b2f2-05ae-0f09" name="Artefacts" hidden="false" collective="false" import="true" targetId="7757-ecfe-b442-cb2f" type="selectionEntryGroup"/>
<entryLink id="b594-bb3d-bce7-c835" name="Command Traits" hidden="false" collective="false" import="true" targetId="4e57-c315-8cd6-be52" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="220.0"/>
</costs>
</selectionEntry>
<selectionEntry id="46be-94c2-e630-b634" name="Chariots" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="points" value="200.0">
<conditions>
<condition field="selections" scope="46be-94c2-e630-b634" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c5f1-d691-4f05-53da" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="f598-557e-71df-6eb2" name="Chariots" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="3d7a-89f3-8d75-92cb" name="Graceful Charge" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll all failed wound rolls for a Chariot in the combat phase if it made a charge in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="fc92-1190-10e6-3909" name="Swift and Deadly" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a Chariot runs there is no need to roll a dice, it can always move up to an extra 6". In addition, Chariots can pile in up to 6", instead of 3".</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="023e-8aa1-38cc-2b28" name="New CategoryLink" hidden="false" targetId="0beb-4c70-3430-5a77" primary="false"/>
<categoryLink id="6bc3-1b06-882b-fb84" name="New CategoryLink" hidden="false" targetId="79ce-5a6d-5384-5952" primary="false"/>
<categoryLink id="8dda-afd6-d940-7308" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="ccf9-5668-6b86-3efe" name="New CategoryLink" hidden="false" targetId="5baa-844e-c811-5e7f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c5f1-d691-4f05-53da" name="Chariot" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="points" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4aee-1b14-bf91-5ecc" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2729-d073-3626-6e06" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2a7b-e986-2ee6-29cc" name="Charioteers' Bows" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="617a-c5a5-5a04-a483" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49ed-9b03-ff35-f5bc" type="min"/>
</constraints>
<profiles>
<profile id="bb0d-8c0d-155c-96f7" name="Charioteers' Bows" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">18"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="662f-f8d5-9ff3-0533" name="Purebreeds' Swift Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="77ff-9c5f-f5c4-5f96" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e2e-4669-42e4-69f4" type="min"/>
</constraints>
<profiles>
<profile id="6017-de54-c1d0-b860" name="Purebreeds' Swift Hooves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707"/>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e77b-f051-8208-be4c" name="Swifthawk Spears" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4af7-d94d-2561-7e65" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3c11-5187-888c-02c6" type="min"/>
</constraints>
<profiles>
<profile id="c120-866c-5368-6786" name="Swifthawk Spears" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9c01-702d-ce3f-6382" name="Shadow Warriors" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="fd90-94e0-fba7-7f99" name="Shadow Warrior" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="10fa-5530-22f4-938d" name="One With the Shadows" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After set up is complete, you can move this unit up to 12", as long as no model in the unit moves within 3" of an enemy model.</characteristic>
</characteristics>
</profile>
<profile id="fd4a-cd77-c244-f50b" name="Shadow-Walker" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is a Shadow-walker. A Shadow-walker makes 2 attacks with a Ranger Bow rather than 1.</characteristic>
</characteristics>
</profile>
<profile id="1e19-8dac-397f-1e10" name="Strike Unseen" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If all models from this unit are in cover and are more than 6" from any enemy units, you can re-roll failed hit rolls for their Ranger Bows.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="74cf-9110-b27d-88bf" name="New CategoryLink" hidden="false" targetId="0beb-4c70-3430-5a77" primary="false"/>
<categoryLink id="b7eb-54ba-f41b-2360" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="ea64-5d0b-3944-edbc" name="New CategoryLink" hidden="false" targetId="77da-c8b9-b32c-e42a" primary="false"/>
<categoryLink id="17e0-72da-7871-7867" name="New CategoryLink" hidden="false" targetId="5baa-844e-c811-5e7f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="faf2-bc22-df86-ac47" name="10 Shadow Warriors" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ac20-af5b-3e0c-1d78" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b404-30ed-5d1e-cc72" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d563-fd1d-b174-9a79" name="Ranger Bow" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac0a-98a4-ca7a-a599" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c0c3-c6a1-682d-1917" type="min"/>
</constraints>
<profiles>
<profile id="821c-772b-ae97-141b" name="Ranger Bow" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">18"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a21a-89d7-f86d-3ad4" name="Shadow Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c7c1-051d-016f-fdfc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="85a8-1182-749a-f606" type="min"/>
</constraints>
<profiles>
<profile id="a6bc-e724-3a35-e43b" name="Shadow Blade" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc2a-daaa-bf1c-c6b2" name="Skycutters" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="9b0c-72dd-4d8a-4dc3" name="Skycutters" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">16"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="081e-5a15-0666-03d8" name="Agents' Blades and Spears" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a Skycutter is crewed by a trio of Agents, it makes 3 attacks with its Agents' Blades and Spears instead of 2.</characteristic>
</characteristics>
</profile>
<profile id="48d4-8315-6edb-9c44" name="Aelven Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll save rolls of 1 for this unit. You can instead re-roll save rolls of 1 or 2 for this unit in the shooting phase.</characteristic>
</characteristics>
</profile>
<profile id="6a5f-1e0a-16ab-fa57" name="Fleet of Wing" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this model runs, roll two dice instead of one and use the total when determining how much extra it can move.</characteristic>
</characteristics>
</profile>
<profile id="d538-bad9-2d94-61a1" name="Sky Chariot" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Skycutters can shoot even if they ran in their movement phase.</characteristic>
</characteristics>
</profile>
<profile id="90a3-c1ba-3494-3233" name="Swifthawk Discipline" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If you fail a battleshock test for this unit whilst a SWIFTHAWK AGENTS HERO from your army is within 16", halve the number of models that flee(rounding fractions up).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="72eb-46fd-cee4-3980" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cfc3-91b0-1956-860d" name="New CategoryLink" hidden="false" targetId="0beb-4c70-3430-5a77" primary="false"/>
<categoryLink id="e4af-fffb-7674-02db" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="a943-cde0-477e-0d61" name="New CategoryLink" hidden="false" targetId="cd8a-bc5d-88f4-b026" primary="false"/>
<categoryLink id="372d-3b2e-f88d-4211" name="New CategoryLink" hidden="false" targetId="5baa-844e-c811-5e7f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="da68-b9f6-c461-775a" name="Skycutter" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5c1e-7a27-ce18-2b11" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fd95-9a60-1ec2-5b1b" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c6f-d4ad-0303-68ce" name="Swiftfeather Hawks' Raking Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c95b-895a-f1f1-e39c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c388-e56e-1034-359a" type="min"/>
</constraints>
<profiles>
<profile id="d7dc-6709-9198-d5db" name="Swiftfeather Hawks' Raking Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="b06d-26e4-f295-b811" name="Crew Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="560b-4e55-6698-2a31" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7992-b2e1-07b5-bef0" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="2ea7-1bef-8b0f-8fe6" name="Crew of 2" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cd8e-2503-508c-b754" name="Eagle Eye Bolt Thrower" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">16"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="bb9b-a3c2-10ab-9a1c" name="Agents' Blades and Spears" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>