forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImperium - FW Elysians.cat
4569 lines (4569 loc) · 346 KB
/
Imperium - FW Elysians.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="62ed-66a0-988c-e34e" name="Imperium - FW Elysians" revision="67" battleScribeVersion="2.02" authorName="BSData Developers" authorContact="Discord: @Alphalas, @CrusherJoe | Twitter: @kingoverlord, @theawesomesauce" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="4" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="62ed-66a0-pubN69354" name="Codex: Astra Militarum"/>
<publication id="62ed-66a0-pubN91709" name="Codex: Genestealer Cults"/>
<publication id="62ed-66a0-pubN92006" name="Imperial Armour - Index: Forces of the Astra Militarum"/>
</publications>
<profileTypes>
<profileType id="8164-003b-2cc1-99b3" name="Wound Track (M,BS)">
<characteristicTypes>
<characteristicType id="5e09-f316-8feb-977b" name="Remaining W"/>
<characteristicType id="c6c2-e396-8e2e-3783" name="M"/>
<characteristicType id="b868-6cda-4902-e237" name="BS"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="78bd-e6d9-f362-2527" name="Elysian Drop Troops" hidden="false"/>
<categoryEntry id="5988-2982-1dde-215b" name="Officio Prefectus" hidden="false"/>
<categoryEntry id="adc3-d7b2-b51f-ecaa" name="Officer" hidden="false"/>
<categoryEntry id="890c-c9d8-9e8c-cee1" name="Avenger Strike Fighter" hidden="false"/>
<categoryEntry id="ee20-7662-0e06-9dfd" name="Cyclops Demolition Vehicle" hidden="false"/>
<categoryEntry id="dc5f-dbd3-fa1a-6c21" name="Elysian Command Squad" hidden="false"/>
<categoryEntry id="9d41-076b-88c2-0e19" name="Elysian Company Commander" hidden="false"/>
<categoryEntry id="8513-d267-3968-f2bf" name="Elysian Drop Sentinels" hidden="false"/>
<categoryEntry id="33b8-a805-c319-bebe" name="Elysian Drop Trooper Squad" hidden="false"/>
<categoryEntry id="877e-f8f7-46d6-7c09" name="Elysian Heavy Weapon Squad" hidden="false"/>
<categoryEntry id="40d7-cd1e-34ce-2fd4" name="Elysian Lord Commissar" hidden="false"/>
<categoryEntry id="80ee-875e-7eab-b9d1" name="Elysian Platoon Commander" hidden="false"/>
<categoryEntry id="bb7e-e7dd-8549-42c0" name="Elysian Sniper Squad" hidden="false"/>
<categoryEntry id="e502-54b5-4d6a-3027" name="Elysian Special Weapons Squad" hidden="false"/>
<categoryEntry id="ccf7-c274-738d-ca94" name="Elysian Veterans Squad" hidden="false"/>
<categoryEntry id="d749-7321-ab56-4459" name="Lightning Strike Fighter" hidden="false"/>
<categoryEntry id="03bc-85d7-40af-1b8c" name="Officer of the Fleet" hidden="false"/>
<categoryEntry id="353a-b8e3-9139-745c" name="Tarantula" hidden="false"/>
<categoryEntry id="78ca-2eb0-20a2-cc12" name="Tauros Assault Vehicle" hidden="false"/>
<categoryEntry id="1bb9-c13d-2bcd-99ea" name="Tauros Venator" hidden="false"/>
<categoryEntry id="5d68-e238-3241-2dbb" name="Thunderbolt Heavy Fighter" hidden="false"/>
<categoryEntry id="92cc-fdd6-245b-74e2" name="Valkyrie Sky Talon" hidden="false"/>
<categoryEntry id="7a94-45d7-e4df-a0e6" name="Valkyries" hidden="false"/>
<categoryEntry id="113d-07be-ce6e-d8c8" name="Vendetta Gunship" hidden="false"/>
<categoryEntry id="667a-b6a9-7ec5-c9f9" name="Vulture Gunship" hidden="false"/>
<categoryEntry id="2d90-89eb-8844-6deb" name="Commissar" hidden="false"/>
<categoryEntry id="22c4-7b72-08d0-e098" name="Tauros" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="fcda-e67d-f05b-a913" name="Avenger Strike Fighter" hidden="false" collective="false" targetId="da02-b1b3-5184-10f5" type="selectionEntry">
<categoryLinks>
<categoryLink id="b5b6-2ef0-8cb2-3258" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="f544-5da5-af65-8873" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="d3e4-d94e-de2d-7f2b" name="New CategoryLink" hidden="false" targetId="890c-c9d8-9e8c-cee1" primary="false"/>
<categoryLink id="0aeb-5698-8f3e-f2ca" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="47e9-1828-ef52-6294" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="bc56-ee53-1aa9-49e6" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="2da8-5bdb-fc55-0717" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d705-c58a-6974-00d6" name="Cyclops Demolition Vehicle" hidden="false" collective="false" targetId="e7e5-053a-4d41-b384" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc7d-b344-2ba8-e1ae" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="c459-d666-de04-98eb" name="New CategoryLink" hidden="false" targetId="ee20-7662-0e06-9dfd" primary="false"/>
<categoryLink id="af4d-374b-f7d1-82ba" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="53e8-e0b0-b630-a6e6" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="1821-9b6b-ae66-ea4c" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="3c66-d71a-a450-8eaa" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="9e6b-e25d-777e-2e1b" name="Elysian Command Squad" hidden="false" collective="false" targetId="af1d-8a5b-23ea-2494" type="selectionEntry">
<categoryLinks>
<categoryLink id="ac27-74c7-7a66-7589" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="1a8c-99ba-f756-df14" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="0506-ad5a-e1a8-94c0" name="New CategoryLink" hidden="false" targetId="dc5f-dbd3-fa1a-6c21" primary="false"/>
<categoryLink id="de92-b7ed-4055-cb43" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="c7b1-3602-4856-1563" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="ea31-0a0a-f7fa-e418" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1aac-d0e5-b586-a4b4" name="Elysian Company Commander" hidden="false" collective="false" targetId="9087-1b5b-86a2-3a89" type="selectionEntry">
<categoryLinks>
<categoryLink id="392e-7d30-6bb7-c16c" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="97a0-004e-ad6a-db69" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="85f9-5fb5-0072-430f" name="New CategoryLink" hidden="false" targetId="9d41-076b-88c2-0e19" primary="false"/>
<categoryLink id="08b7-fca7-a554-9c00" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="a2d6-1452-63f4-c296" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="d32b-585d-5ce1-8d12" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="c91d-ddd5-522c-22a0" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="01f3-925a-da70-9899" name="New CategoryLink" hidden="false" targetId="adc3-d7b2-b51f-ecaa" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2e51-467c-c8f5-76d3" name="Elysian Drop Sentinels" hidden="false" collective="false" targetId="c8ab-2564-efd1-9dc4" type="selectionEntry">
<categoryLinks>
<categoryLink id="f76b-3afc-6483-4a04" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="1cc6-e70f-52a4-80a7" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="4af2-45e9-b852-f370" name="New CategoryLink" hidden="false" targetId="8513-d267-3968-f2bf" primary="false"/>
<categoryLink id="185f-e3b4-6a06-2105" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="9148-a0e3-c4be-d9f5" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="1f5e-171d-81bc-ae19" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7edc-a10e-48fd-9c13" name="Elysian Drop Trooper Squad" hidden="false" collective="false" targetId="f228-8f36-c5d0-74af" type="selectionEntry">
<categoryLinks>
<categoryLink id="f884-81ac-7c95-5496" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="923b-901e-dc74-4e14" name="New CategoryLink" hidden="false" targetId="33b8-a805-c319-bebe" primary="false"/>
<categoryLink id="acca-4bb8-8cfd-528c" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="366f-8167-157d-567f" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="9f09-e417-bdf9-8837" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="bc21-29df-627e-b8d1" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ce02-726d-f9d3-17e4" name="Elysian Heavy Weapon Squad" hidden="false" collective="false" targetId="7296-7ca8-0463-d0ea" type="selectionEntry">
<categoryLinks>
<categoryLink id="7356-c45a-ad7f-34e1" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="dd60-4ace-8832-5608" name="New CategoryLink" hidden="false" targetId="877e-f8f7-46d6-7c09" primary="false"/>
<categoryLink id="ad2c-569e-b3e6-7443" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="aff2-5bb4-5664-6cc6" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="c13a-1de5-804f-7c21" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="4ddb-a670-8b94-9f37" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c396-79b6-5e6c-9109" name="Elysian Lord Commissar" hidden="false" collective="false" targetId="c80b-5795-b5b3-2bdd" type="selectionEntry">
<categoryLinks>
<categoryLink id="d421-e772-4441-9a8c" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="e137-2e96-63a2-fb5d" name="New CategoryLink" hidden="false" targetId="5988-2982-1dde-215b" primary="false"/>
<categoryLink id="3ac0-fecf-98b3-b3ab" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="67e7-5654-9be9-c9fd" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="425d-5621-2c1e-9938" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="5f80-c673-7a38-cec6" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="709c-f690-f40c-673f" name="New CategoryLink" hidden="false" targetId="40d7-cd1e-34ce-2fd4" primary="false"/>
<categoryLink id="32cb-d3ad-47c4-324e" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="4e71-d854-3154-4be0" name="New CategoryLink" hidden="false" targetId="2d90-89eb-8844-6deb" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="9452-9691-e142-b76c" name="Elysian Platoon Commander" hidden="false" collective="false" targetId="1248-7fe5-d1bb-6bd4" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b23-0d0b-be78-6325" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="a950-c70e-6bde-478c" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="a9ed-8c2f-e8ec-1187" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="3483-535f-371f-b280" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="5880-8f76-809c-57e4" name="New CategoryLink" hidden="false" targetId="80ee-875e-7eab-b9d1" primary="false"/>
<categoryLink id="411e-aebd-2959-7bd8" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="8d04-771f-4b40-ee29" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="71d0-b0f1-caa3-a91f" name="New CategoryLink" hidden="false" targetId="adc3-d7b2-b51f-ecaa" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2780-9a30-5b4c-424f" name="Elysian Sniper Squad" hidden="false" collective="false" targetId="6917-c69e-d9c7-0106" type="selectionEntry">
<categoryLinks>
<categoryLink id="0699-f1cf-7981-e20d" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="8551-152f-6e3f-636b" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="04bc-73f9-8328-f1f1" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="3b56-0533-3803-5fbe" name="New CategoryLink" hidden="false" targetId="bb7e-e7dd-8549-42c0" primary="false"/>
<categoryLink id="198a-b24f-0c1a-5c9c" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="3ea2-a830-161b-e8c6" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a27c-d10c-7cd9-3039" name="Elysian Special Weapons Squad" hidden="false" collective="false" targetId="3b6e-250f-ad7e-0c00" type="selectionEntry">
<categoryLinks>
<categoryLink id="91be-ee1a-88c2-aef7" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="e7bd-1d25-146f-acdb" name="New CategoryLink" hidden="false" targetId="e502-54b5-4d6a-3027" primary="false"/>
<categoryLink id="ead2-a975-a871-2a0a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="a451-d207-8130-5ef0" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="2772-4a4d-023c-9f43" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="356f-f17a-0a45-0284" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b33b-b31c-1e80-ee30" name="Elysian Veteran Squad" hidden="false" collective="false" targetId="6a5a-e6a7-c7f9-6071" type="selectionEntry">
<categoryLinks>
<categoryLink id="4693-7545-7052-a273" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="4ca0-987b-755d-ef12" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="c5cf-e2f6-ec02-aac4" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="6ebc-2465-e4fe-ffa6" name="New CategoryLink" hidden="false" targetId="ccf7-c274-738d-ca94" primary="false"/>
<categoryLink id="d779-7876-b134-7d70" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="94b5-cf7f-70f2-658e" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c72a-d81f-29a4-0a56" name="Lightning Strike Fighter" hidden="false" collective="false" targetId="290e-b2bb-3514-b3e2" type="selectionEntry">
<categoryLinks>
<categoryLink id="adb0-4e3a-4056-4d9c" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="d039-91c1-0c29-b43f" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="74da-c589-7da2-31c9" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="44f2-071d-b55f-599f" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="22b8-ca00-0492-01fc" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="d9f7-19cc-303b-46cd" name="New CategoryLink" hidden="false" targetId="d749-7321-ab56-4459" primary="false"/>
<categoryLink id="8dd2-41c9-b8c4-ad9e" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a50c-3a38-6722-6836" name="Officer of the Fleet" hidden="false" collective="false" targetId="a495-cb89-a201-af6b" type="selectionEntry">
<categoryLinks>
<categoryLink id="c0cb-726e-cf97-fbf9" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="8e4b-c3ab-7908-594f" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="6be5-1ebe-0d6a-d800" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="eda6-5f40-9e3c-0594" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="24f5-9e3b-7842-fad0" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="90fe-90c7-8203-5f0d" name="New CategoryLink" hidden="false" targetId="03bc-85d7-40af-1b8c" primary="false"/>
<categoryLink id="ef53-a7ac-522d-852c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="49d7-b823-affd-204b" name="Officer" hidden="false" targetId="adc3-d7b2-b51f-ecaa" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b869-cd0e-8900-b7f4" name="Tarantula Battery" hidden="false" collective="false" targetId="6406-153b-6543-9b1c" type="selectionEntry">
<categoryLinks>
<categoryLink id="4f67-0cb7-791a-1781" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="6581-456a-990c-409e" name="New CategoryLink" hidden="false" targetId="ae37-74e2-8391-d0f8" primary="false"/>
<categoryLink id="eae4-9af2-c93a-ef8b" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="5dbb-b071-d48a-d82c" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="932f-3af8-e0e4-8b63" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="bce7-4d97-f09c-8e71" name="New CategoryLink" hidden="false" targetId="353a-b8e3-9139-745c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1eea-42d1-889a-6e9b" name="Tauros Assault Vehicle" hidden="false" collective="false" targetId="c63a-a9f1-b5e8-a1ac" type="selectionEntry">
<categoryLinks>
<categoryLink id="febd-a721-dc30-1e9c" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="a06d-3475-aa6f-f816" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="8caa-5f7f-d0d8-3625" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="5c1e-ecfc-005e-96af" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="0fb4-7333-786d-335f" name="New CategoryLink" hidden="false" targetId="22c4-7b72-08d0-e098" primary="false"/>
<categoryLink id="5688-cba8-aaad-b2ee" name="New CategoryLink" hidden="false" targetId="78ca-2eb0-20a2-cc12" primary="false"/>
<categoryLink id="ecf7-440f-4a7c-6d3c" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1470-7dce-6f20-3a1f" name="Tauros Venator" hidden="false" collective="false" targetId="0614-3e10-b09a-d894" type="selectionEntry">
<categoryLinks>
<categoryLink id="3a3f-ff5f-05fd-dc6c" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="b051-324a-8e11-e751" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="62ab-3a11-8724-60a3" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="7cdd-e096-ecc9-6a4b" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="1ce7-48e5-8b60-bab6" name="New CategoryLink" hidden="false" targetId="22c4-7b72-08d0-e098" primary="false"/>
<categoryLink id="a432-649e-a3dd-fe1e" name="New CategoryLink" hidden="false" targetId="1bb9-c13d-2bcd-99ea" primary="false"/>
<categoryLink id="5769-7191-eb07-a16d" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="55ef-13f2-b149-08b8" name="Thunderbolt Heavy Fighter" hidden="false" collective="false" targetId="ac4b-51f7-5048-1e63" type="selectionEntry">
<categoryLinks>
<categoryLink id="e187-c499-d034-7844" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="744c-a687-151a-5fa5" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="36dc-b77a-1a07-3b4e" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="1650-c68e-04c8-3937" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="ea5a-4df4-d609-ecf5" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="fd34-7033-2e82-a05f" name="New CategoryLink" hidden="false" targetId="5d68-e238-3241-2dbb" primary="false"/>
<categoryLink id="1908-f0d9-9b88-b7eb" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2558-9522-f29c-2dce" name="Valkyrie Sky Talon" hidden="false" collective="false" targetId="787c-9abf-77a1-abb2" type="selectionEntry">
<categoryLinks>
<categoryLink id="6b3f-8f9a-3f5d-710c" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="d772-ecb1-1ff8-5ed9" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="2470-bd57-172a-e044" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="6a80-3c1a-c1ff-bf00" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="e57d-13fc-c172-6b83" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="8f04-252e-14e6-74e3" name="New CategoryLink" hidden="false" targetId="92cc-fdd6-245b-74e2" primary="false"/>
<categoryLink id="0698-a902-c515-cb92" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="48ab-461e-8d93-dac3" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ae42-0c96-af3f-00b1" name="Valkyries" hidden="false" collective="false" targetId="a0bf-b970-7acc-d625" type="selectionEntry">
<categoryLinks>
<categoryLink id="e8af-b2e1-2728-5658" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="f828-2d6a-3d16-4110" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="0d36-3535-39e6-9c45" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="3db0-bc62-e5b5-1eff" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="f24a-cb24-bfb4-a901" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="34cf-e8aa-35f8-0920" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="1c1e-ba3c-82a7-09b7" name="New CategoryLink" hidden="false" targetId="7a94-45d7-e4df-a0e6" primary="false"/>
<categoryLink id="865b-9d44-c679-adf7" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1410-c427-7ea9-df74" name="Vendetta Gunship" hidden="false" collective="false" targetId="5db2-87a5-a0c8-5a4e" type="selectionEntry">
<categoryLinks>
<categoryLink id="315a-dbae-bfa7-9439" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="f385-6f97-2010-4701" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="11e1-2011-30fe-5cec" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="0076-afd2-e27a-0778" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="5392-42fe-3976-fe83" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="afc7-ed61-d073-6891" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="a259-742c-a3ec-27a2" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="20f3-6029-9ad6-bea2" name="New CategoryLink" hidden="false" targetId="113d-07be-ce6e-d8c8" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a318-6569-4cd1-bc03" name="Vulture Gunship" hidden="false" collective="false" targetId="8e37-c68c-81d0-27f4" type="selectionEntry">
<categoryLinks>
<categoryLink id="622f-e06c-67ea-1589" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
<categoryLink id="3df5-8ba1-de83-2851" name="New CategoryLink" hidden="false" targetId="78bd-e6d9-f362-2527" primary="false"/>
<categoryLink id="ff97-9a0a-aa9e-e317" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="3396-71fe-a077-54bd" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="5b27-2eb0-fa83-fcbe" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="df2e-633f-dd4e-51ab" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="1eb6-a523-2d6f-ff99" name="New CategoryLink" hidden="false" targetId="667a-b6a9-7ec5-c9f9" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c68e-e69b-69d9-63af" name="Regimental Doctrine" hidden="false" collective="false" targetId="37a9-7131-2cbc-162b" type="selectionEntry">
<categoryLinks>
<categoryLink id="daf5-aac1-4c44-6b80" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dec6-67ee-ebf5-6dfd" name="Imperial Commander's Armoury" hidden="false" collective="false" targetId="d7be-7049-0cc9-dcf3" 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="dcbe-ff42-5cf6-453c" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="fe40-a5f9-c391-7bc1" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="a495-cb89-a201-af6b" name="Officer of the Fleet" page="0" hidden="false" collective="false" type="model">
<profiles>
<profile id="a44e-7700-d9ab-7fb4" name="Officer of the Fleet" publicationId="62ed-66a0-pubN69354" page="31" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">3</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
<profile id="f03e-34bd-8dc4-506b" name="Strafing Coordinates" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the start of the Shooting phase, pick an enemy unit, other than one which can FLY, within 18" of this model. For the duration of the phase, you can re-roll hit rolls of 1 for any friendly ELYSIAN DROP TROOPS units that can FLY that target the unit you picked.</characteristic>
</characteristics>
</profile>
<profile id="b2f3-a3ec-f355-999d" name="Air Raid Requested" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Once per battle, in your Shooting phase you can pick an enemy unit, other than a CHARACTER, which is visible to this model anywhere on the battlefield, and then roll a D6. On a roll of 1-3, nothing happens. On a roll of 4+ the target unit suffers D3 mortal wounds. On a roll of 6, the target unit suffers 3 mortal wounds. You may only call in one air raid per turn, regardless of the number of Officers of the Fleet.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6d16-7174-a01e-b4b3" name="New CategoryLink" hidden="false" targetId="3263-4233-4344-6228" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="20ae-c936-059e-f0d6" name="Laspistol" hidden="false" collective="false" targetId="c10b-e1a4-c913-ae15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fb0-01b4-6a23-f266" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="440f-a146-72cf-e50e" type="max"/>
</constraints>
</entryLink>
<entryLink id="1d31-d60f-09cd-564e" name="Heirlooms of Conquest" hidden="false" collective="false" targetId="6a6e-e0ec-babc-6703" type="selectionEntryGroup"/>
<entryLink id="0cb9-5353-2581-e412" name="Is A Custom Character" hidden="false" collective="false" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="46a2-3123-8f9c-5ba3" name="Custom Character Selections" hidden="false" collective="false" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="f515-42fc-22a4-d5ef" name="Warlord Traits" hidden="false" collective="false" targetId="21a1-cfa7-a290-45f7" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9dfe-e2ab-ed06-888e" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d3e7-39ec-b870-11bc" name="Warlord" hidden="false" collective="false" targetId="9dfe-e2ab-ed06-888e" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a0bf-b970-7acc-d625" name="Valkyries" hidden="false" collective="false" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="8">
<conditions>
<condition field="selections" scope="a0bf-b970-7acc-d625" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="53b8-6ee2-e014-df85" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="15">
<conditions>
<condition field="selections" scope="a0bf-b970-7acc-d625" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="53b8-6ee2-e014-df85" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry id="53b8-6ee2-e014-df85" name="Valkyrie" page="0" hidden="false" collective="false" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b824-af92-d007-7410" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be50-8b59-c8aa-8ea0" type="max"/>
</constraints>
<profiles>
<profile id="785c-f7ee-bcac-6156" name="Transport: Valkyrie" hidden="false" typeId="b3a8-0452-7436-44d1" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="15aa-1916-a38b-d223">This model can transport 12 ASTRA MiLITARUM INFANTRY models. Each Heavy Weapons Team or Veteran Heavy Weapons Team takes the place of two other models and each OGRYN takes the space of three other models.</characteristic>
</characteristics>
</profile>
<profile id="745f-4ed0-d79b-df05" name="Valkyrie" publicationId="62ed-66a0-pubN69354" page="48" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">14</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="b0ed-216c-0f82-84f5" name="Valkyrie Track 1" hidden="false" typeId="8164-003b-2cc1-99b3" typeName="Wound Track (M,BS)">
<characteristics>
<characteristic name="Remaining W" typeId="5e09-f316-8feb-977b">8-14+</characteristic>
<characteristic name="M" typeId="c6c2-e396-8e2e-3783">20-45</characteristic>
<characteristic name="BS" typeId="b868-6cda-4902-e237">4+</characteristic>
</characteristics>
</profile>
<profile id="7173-d300-c1ec-1494" name="Valkyrie Track 2" hidden="false" typeId="8164-003b-2cc1-99b3" typeName="Wound Track (M,BS)">
<characteristics>
<characteristic name="Remaining W" typeId="5e09-f316-8feb-977b">4-7</characteristic>
<characteristic name="M" typeId="c6c2-e396-8e2e-3783">20-30</characteristic>
<characteristic name="BS" typeId="b868-6cda-4902-e237">5+</characteristic>
</characteristics>
</profile>
<profile id="21f6-776a-c6a3-0573" name="Valkyrie Track 3" hidden="false" typeId="8164-003b-2cc1-99b3" typeName="Wound Track (M,BS)">
<characteristics>
<characteristic name="Remaining W" typeId="5e09-f316-8feb-977b">1-3</characteristic>
<characteristic name="M" typeId="c6c2-e396-8e2e-3783">20</characteristic>
<characteristic name="BS" typeId="b868-6cda-4902-e237">6+</characteristic>
</characteristics>
</profile>
<profile id="b424-f35a-e2be-ae71" name="Roving Gunship" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model hovers in its Movement phase, add 1 to all hit rolls made for it in the following Shooting phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b397-8285-5867-8760" name="Vehicle Squadron" hidden="false" targetId="a100-911e-3074-eaad" type="profile"/>
<infoLink id="495f-b9ca-a89f-18a8" name="Hard to Hit" hidden="false" targetId="7e37-7d16-4da6-97c8" type="profile"/>
<infoLink id="3c7f-093d-a638-4598" name="Crash and Burn" hidden="false" targetId="d677-7f53-691e-ac88" type="profile"/>
<infoLink id="b126-3434-f10f-c14a" name="Supersonic" hidden="false" targetId="2268-18ce-3bf2-b68d" type="profile"/>
<infoLink id="f03c-75c0-34ef-e4e6" name="Airborne" hidden="false" targetId="ed3d-c2e2-be6e-332d" type="profile"/>
<infoLink id="af97-909f-b8f1-0d5f" name="Hover Jet" hidden="false" targetId="5c2d-ef21-5078-d479" type="profile"/>
<infoLink id="2cfe-05b9-f66d-c3d3" name="Grav Chute Insertion" hidden="false" targetId="c4f9-48e3-4bdc-737f" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f41e-9397-b01a-fa14" name="Aircraft" hidden="false" targetId="d569-3d56-cd24-6a31" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a7a2-144d-3e26-02f3" name="2x Heavy Bolters" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dda1-558d-3b63-ab77" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c872-e7eb-237a-40ae" name="Heavy bolter" hidden="false" collective="false" targetId="05ab-e7cc-e856-c36f" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="8"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e20e-7e7d-1c7b-5644" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d48a-0a07-f026-6fef" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="acc0-24ea-c936-3d5b" name="Hull weapon" hidden="false" collective="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db57-0c43-1dfa-4f9d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9956-e695-cfee-5796" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="787a-d404-b198-7ce2" name="Multi-laser" page="0" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f8d2-95bf-8644-b6a1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2182-cb09-0adf-3d45" name="Multi-laser" hidden="false" targetId="92be-1bfc-f355-f214" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0bcd-1308-0152-4641" name="Lascannon" hidden="false" collective="false" targetId="a908-4664-11cd-f8b2" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="20"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0385-d2b5-be4f-2138" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2446-17f5-4741-5fc8" name="Wing-mounted Weapons" hidden="false" collective="false" targetId="08d1-89fb-dc8f-b6ef" type="selectionEntryGroup"/>
<entryLink id="70ca-9a34-1c08-14c0" name="Unit has battle honors?" hidden="false" collective="false" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="02ee-1f56-30f0-60f7" name="Battle Honors" hidden="false" collective="false" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c63a-a9f1-b5e8-a1ac" name="Tauros Assault Vehicle" hidden="false" collective="false" type="unit">
<selectionEntries>
<selectionEntry id="c0a8-031d-7a3a-a75b" name="Tauros Assault Vehicle" hidden="false" collective="false" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50ba-65cb-f5ad-3b9a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e1d-ab12-08a7-9ab7" type="min"/>
</constraints>
<profiles>
<profile id="31e6-1c8d-2f76-538b" name="Tauros Assault Vehicle" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">15</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="974c-d342-ff7a-8ca2" name="Galvanic Motor" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model moved over 10" in the movement phase, it gains a 5+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="77ad-6ef3-fbe8-0146" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a D6 before removing it from the battlefield and before any embarked models disembark. On a 6 it explodes, and each unit within 6" suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="71d6-fc84-7a74-139b" name="Aerial Drop" hidden="false" targetId="b2ac-24d0-fec8-1d3c" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="fe80-151a-47ee-38fc" name="Heavy Flamer" hidden="false" collective="false" defaultSelectionEntryId="13a8-c255-c2e8-0705">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4387-d837-b554-1c2c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b784-a69c-c3bb-d1ca" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="74f2-8225-23cd-d6a0" name="Tauros Grenade Launcher" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47b5-4557-d210-032b" type="max"/>
</constraints>
<profiles>
<profile id="d1e8-ca7c-0804-7bf4" name="Krak Grenade" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 2</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
<profile id="4177-41c2-de8c-ef93" name="Frag Grenade" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="20.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="13a8-c255-c2e8-0705" name="Heavy flamer" hidden="false" collective="false" targetId="18bc-b335-29c2-2ae2" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="14"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b8a-11c6-1bd6-1801" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0841-8b2a-0307-2f79" name="Hunter-killer missile" hidden="false" collective="false" targetId="32bf-b117-4ecf-5165" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ab26-5668-2b0f-ea4e" type="max"/>
</constraints>
</entryLink>
<entryLink id="6720-310d-2891-00d9" name="Unit has battle honors?" hidden="false" collective="false" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="56f2-5719-143b-1d65" name="Battle Honors" hidden="false" collective="false" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="37.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0614-3e10-b09a-d894" name="Tauros Venator" hidden="false" collective="false" type="unit">
<selectionEntries>
<selectionEntry id="09c6-8cdf-be3b-c709" name="Tauros Venator" hidden="false" collective="false" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a54d-5ed5-de39-ff0c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b65-8396-dd6c-6e8b" type="min"/>
</constraints>
<profiles>
<profile id="e6fd-7cd2-f25a-73f3" name="Tauros" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">15"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="0f53-74d6-3548-d8cf" name="Galvanic Motor" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model moved over 10" in the movement phase, it gains a 5+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="29b5-4a9b-aee6-11c8" name="Venator Targeting Array" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model does not suffer the penalty to hit for shooting a Heavy Weapon on a turn in which it has moved.</characteristic>
</characteristics>
</profile>
<profile id="77c2-297c-9062-a8e5" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a D6 before removing it from the battlefield and before any embarked models disembark. On a 6 it explodes, and each unit within 6" suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9ed7-ff75-243f-175b" name="Aerial Drop" hidden="false" targetId="b2ac-24d0-fec8-1d3c" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3c30-3dd2-0243-0411" name="Twin Multi-laser" hidden="false" collective="false" defaultSelectionEntryId="ca7e-5066-d38b-5dbe">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eefa-6dde-50aa-62c1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a12-c85e-3ef0-01f7" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="ca7e-5066-d38b-5dbe" name="Twin Multi-Laser" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bfc8-5b4d-3037-502f" type="max"/>
</constraints>
<profiles>
<profile id="26d8-31c4-d71f-d9f2" name="Twin Multi-Laser" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="18.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f07e-bcdc-ea81-4d86" name="Twin lascannon" hidden="false" collective="false" targetId="ee18-b1cd-6b60-464d" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="40"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3761-b914-96f5-35df" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cce3-e693-c4b7-f60f" name="Hunter-killer missile" hidden="false" collective="false" targetId="32bf-b117-4ecf-5165" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b40-378f-32a8-f5c1" type="max"/>
</constraints>
</entryLink>
<entryLink id="9542-6a95-49bf-600e" name="Unit has battle honors?" hidden="false" collective="false" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="d1cf-f6c0-b5e7-a4ed" name="Battle Honors" hidden="false" collective="false" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="46.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8e37-c68c-81d0-27f4" name="Vulture Gunship" hidden="false" collective="false" type="unit">
<categoryLinks>
<categoryLink id="4df7-db67-78b0-e987" name="Aircraft" hidden="false" targetId="d569-3d56-cd24-6a31" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e5e8-44c6-bfcf-ab66" name="Vulture Gunship" hidden="false" collective="false" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4262-fb83-1fc9-9cfa" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="637e-72aa-d5ec-66be" type="min"/>
</constraints>
<profiles>
<profile id="6af2-d804-6cc8-58dc" name="Vulture Gunship" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">14</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="d784-38f8-e63f-fe79" name="Vulture Gunship 1" hidden="false" typeId="8164-003b-2cc1-99b3" typeName="Wound Track (M,BS)">
<characteristics>
<characteristic name="Remaining W" typeId="5e09-f316-8feb-977b">8-14+</characteristic>
<characteristic name="M" typeId="c6c2-e396-8e2e-3783">20"-45"</characteristic>
<characteristic name="BS" typeId="b868-6cda-4902-e237">4+</characteristic>
</characteristics>
</profile>
<profile id="5534-68a2-83f3-6f17" name="Vulture Gunship 2" hidden="false" typeId="8164-003b-2cc1-99b3" typeName="Wound Track (M,BS)">
<characteristics>
<characteristic name="Remaining W" typeId="5e09-f316-8feb-977b">4-7</characteristic>
<characteristic name="M" typeId="c6c2-e396-8e2e-3783">20"-30"</characteristic>
<characteristic name="BS" typeId="b868-6cda-4902-e237">5+</characteristic>
</characteristics>
</profile>
<profile id="2a98-2857-1aa4-4f92" name="Vulture Gunship 3" hidden="false" typeId="8164-003b-2cc1-99b3" typeName="Wound Track (M,BS)">
<characteristics>
<characteristic name="Remaining W" typeId="5e09-f316-8feb-977b">1-3</characteristic>
<characteristic name="M" typeId="c6c2-e396-8e2e-3783">20"</characteristic>
<characteristic name="BS" typeId="b868-6cda-4902-e237">6+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e277-bac8-acf6-d8a0" name="Hard to Hit" hidden="false" targetId="7e37-7d16-4da6-97c8" type="profile"/>
<infoLink id="425e-951d-9770-c639" name="Supersonic" hidden="false" targetId="2268-18ce-3bf2-b68d" type="profile"/>
<infoLink id="91c1-b890-1b4b-3622" name="Hover Jet" hidden="false" targetId="5c2d-ef21-5078-d479" type="profile"/>
<infoLink id="967a-55cc-f1dc-b575" name="Airborne" hidden="false" targetId="ed3d-c2e2-be6e-332d" type="profile"/>
<infoLink id="22c6-06b3-125c-480b" name="Crash and Burn" hidden="false" targetId="d677-7f53-691e-ac88" type="profile"/>
<infoLink id="fbc0-5f15-d464-6c3d" name="Strafing Run" hidden="false" targetId="16e3-4e72-d831-8647" type="profile"/>
<infoLink id="26b0-c29d-07f3-2bbc" name="Vehicle Squadron" hidden="false" targetId="a100-911e-3074-eaad" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0104-8e08-22ea-f27c" name="Aircraft" hidden="false" targetId="d569-3d56-cd24-6a31" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="eaef-b74e-9d13-cd08" name="Twin Punisher Gatling Cannons" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7223-aba4-f0ed-8629" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7249-dcd0-0958-55c6" name="Punisher Gatling Cannon" hidden="false" targetId="9fac-07c9-3595-784e" type="profile">
<modifiers>
<modifier type="append" field="name" value="Twin"/>
<modifier type="set" field="077c342f-d7b9-45c6-b8af-88e97cafd3a2" value="Heavy 40"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="f520-9dd2-8868-36c7" name="Twin Multi-Laser" hidden="false" collective="false" defaultSelectionEntryId="d7e4-4104-0a02-8491">
<modifiers>
<modifier type="set" field="49d5-2b8e-5068-fe3d" value="0.0">
<conditions>
<condition field="selections" scope="e5e8-44c6-bfcf-ab66" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eaef-b74e-9d13-cd08" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="5e8b-5b86-0da2-e65e" value="0.0">
<conditions>
<condition field="selections" scope="e5e8-44c6-bfcf-ab66" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eaef-b74e-9d13-cd08" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e8b-5b86-0da2-e65e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49d5-2b8e-5068-fe3d" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="d7e4-4104-0a02-8491" name="Twin Multi-Laser" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7fa3-9397-2421-b471" type="max"/>
</constraints>
<infoLinks>
<infoLink id="baec-637c-c256-88de" name="Multi-laser" hidden="false" targetId="92be-1bfc-f355-f214" type="profile">
<modifiers>
<modifier type="append" field="name" value="Twin"/>
<modifier type="set" field="077c342f-d7b9-45c6-b8af-88e97cafd3a2" value="Heavy 6"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="18.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="22df-8406-9a05-8fc2" name="2 Multiple Rocket Pods" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2bb8-2acd-e46c-7d49" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1305-0318-1a49-3921" name="Multiple Rocket Pod" hidden="false" targetId="54ce-8da3-62f7-ba14" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="16.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a3dc-05e2-3ff5-11b9" name="Twin autocannon" hidden="false" collective="false" targetId="afe0-3771-1982-92b4" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="25"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="061d-7ea4-23ee-ed29" type="max"/>
</constraints>
</entryLink>
<entryLink id="9211-cd45-633c-24af" name="Twin lascannon" hidden="false" collective="false" targetId="ee18-b1cd-6b60-464d" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="40"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb2e-2c92-59b3-4e73" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a1e0-5cc1-0014-0b62" name="2 Hellstrike Missiles" hidden="false" collective="false" defaultSelectionEntryId="4f04-3cd1-7218-c9ef">
<modifiers>
<modifier type="set" field="5e0f-de70-c862-ae7a" value="0.0">
<conditions>
<condition field="selections" scope="e5e8-44c6-bfcf-ab66" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eaef-b74e-9d13-cd08" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="f807-6b42-4e65-82ce" value="0.0">
<conditions>
<condition field="selections" scope="e5e8-44c6-bfcf-ab66" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eaef-b74e-9d13-cd08" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e0f-de70-c862-ae7a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f807-6b42-4e65-82ce" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4f04-3cd1-7218-c9ef" name="2 Hellstrike Missiles" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa53-cf70-8d31-a8c1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="daaf-5ecb-9e2b-e342" name="Hellstrike Missile" hidden="false" targetId="390d-68dd-fa2b-5eb1" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f820-ad3e-89a4-a2df" name="Tactical Bombs" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="489b-a622-a225-2291" type="max"/>
</constraints>
<infoLinks>
<infoLink id="bed3-5cb8-4f86-cb6e" name="Tactical Bombs" hidden="false" targetId="3287-e0de-5e63-b84e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="03ec-c32a-d85a-1bd9" name="2 Hellfury Missiles" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c98-9a2a-d65d-7d82" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1314-e16c-d029-55e6" name="Hellfury Missiles" hidden="false" targetId="c506-bf8a-d143-2f18" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="30.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9065-7bb4-e7b5-f744" name="6 Skystrike Missiles" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26c9-1f28-fea4-dbb8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="57ba-e3e4-d1d4-e04a" name="Skystrike Missile" hidden="false" targetId="115c-291f-04a6-0e83" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="90.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b6ae-7328-8f38-b02a" name="6 Hunter-Killer Missiles" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4c8-3937-7b3b-0aa3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="bf87-8126-203b-e9a1" name="Hunter-killer missile" hidden="false" targetId="e2a9-e8fc-3a6b-2eec" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="36.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8433-86b5-427d-9612" name="2 Multiple Rocket Pods" hidden="false" collective="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d426-a41d-b6f8-9933" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f9de-6dca-923c-ab06" name="Multiple Rocket Pod" hidden="false" targetId="54ce-8da3-62f7-ba14" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="16.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="8bd3-8359-cb0e-1fe4" name="Heavy bolter" hidden="false" collective="false" targetId="05ab-e7cc-e856-c36f" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="8"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a9dd-310a-3307-3b48" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8639-cfed-5a8e-471e" type="min"/>
</constraints>
</entryLink>
<entryLink id="da68-f8ab-7e5f-b1fe" name="Unit has battle honors?" hidden="false" collective="false" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="590a-8955-e4e8-32d1" name="Battle Honors" hidden="false" collective="false" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="112.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="11.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5db2-87a5-a0c8-5a4e" name="Vendetta Gunship" hidden="false" collective="false" type="unit">