forked from Geemoney24/BattleScribeData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEldar_4th_Ed.cat
4045 lines (4045 loc) · 394 KB
/
Eldar_4th_Ed.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"?><catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="d137146b-6a5f-45e1-87ab-d9ba63fc45e5" revision="2" gameSystemId="3d1a4963-0629-4025-a90b-76ab3d63c5c5" gameSystemRevision="1" battleScribeVersion="1.11b" name="Eldar 4th Ed (2006) Enhanced"><entries>
<entry id="d6eb5dcf-4a47-4729-b6d3-db61edfd3b6b" name="Asurmen (Phoenix Lord)" points="230.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Asurmen" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="7"/>
<characteristic name="BS" value="7"/>
<characteristic name="S" value="4"/>
<characteristic name="T" value="4"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="7"/>
<characteristic name="A" value="4/5"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="2+/4++"/>
</characteristics></profile>
<profile name="Avenger Gauntlets (Asurmen)" type="Weapon"><characteristics>
<characteristic name="Range" value="18""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="fa3c19ea-2386-4c95-acbd-a26af71050dc" name="Autarch" points="70.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="e05fa37b-fbe0-4e9b-afd8-057270e1e1ad" name="Single-handed Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6e02e4af-31c3-4cb3-b26e-0503047e4279" name="Laser Lance" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="fa3c19ea-2386-4c95-acbd-a26af71050dc" childId="59f27534-7b51-4d6e-8b77-5223544c366a" field="selections" type="at least" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles>
<profile name="Laser Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="6""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="4"/>
<characteristic name="Type" value="Assault 1, Lance, Power Weapon"/>
</characteristics></profile>
</profiles></entry>
<entry id="fb334ec0-e481-4cb6-a759-3ddd5581f212" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bc75a715-2d8f-463a-b7f4-620d7f1f11b0" name="Scorpion Chainsword" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="0dd2b8d6-afcb-4538-abe0-67677c947381" name="Upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0f36c9be-51bc-4556-b0c0-0e8357b42ceb" name="Swooping Hawk Wings" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="59f27534-7b51-4d6e-8b77-5223544c366a" name="Jetbike" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
<profile name="Autarch (Jetbike)" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Jetbike"/>
<characteristic name="WS"/>
<characteristic name="BS" value="6"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3 (4)"/>
<characteristic name="W"/>
<characteristic name="I" value="6"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="3+/4++"/>
</characteristics></profile>
</profiles></entry>
<entry id="7253246b-de35-4162-ac71-91a4e158a5f9" name="Warp Jump Generator" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="73865a7b-9352-4fdc-b740-990a44106db3" name="Two-handed Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="59fd720f-d82d-49ae-8b03-55c7ac6a5edd" name="Death Spinner" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Death Spinner" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="-"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="4f73c38f-9f45-4791-9fb0-ad142a5a2be8" name="Reaper Launcher" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Reaper Launcher" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="5"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="963cc86f-4c07-4328-a97c-220dbb8b3976" name="Fusion Gun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Fusion Gun" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="1"/>
<characteristic name="Type" value="Assault 1, Melta"/>
</characteristics></profile>
</profiles></entry>
<entry id="001cea1d-fd44-43e6-b106-02cfb3fc2bfd" name="Avenger Shuriken Catapult" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Avenger Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="18""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="4a851a88-2ff0-4cbb-9b14-696106d77ac9" name="Lasblaster" points="1.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Lasblaster" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="3"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a03236f2-2786-45d1-b351-730e16b3d129" name="Helmet" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="31a8e9d2-32df-4fab-9f55-66687b91a13d" name="Mandiblasters" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="14a9caf4-04fa-4ee7-948a-f2c375ffce2a" name="Banshee Mask" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Autarch" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="6"/>
<characteristic name="BS" value="6"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="6"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="3+/4++"/>
</characteristics></profile>
<profile name="Shuriken Pistol" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Pistol"/>
</characteristics></profile>
</profiles></entry>
<entry id="ddd3e801-74fc-468d-8164-188b98960cb0" name="Avatar" points="155.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Avatar" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Monstrous Creature"/>
<characteristic name="WS" value="10"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="6"/>
<characteristic name="T" value="6"/>
<characteristic name="W" value="4"/>
<characteristic name="I" value="6"/>
<characteristic name="A" value="4"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="3+/4++"/>
</characteristics></profile>
<profile name="The Wailing Doom (Avatar)" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="1"/>
<characteristic name="Type" value="Assault 1, Melta"/>
</characteristics></profile>
</profiles></entry>
<entry id="f3636484-968f-49ee-b435-2f0e2176d2c3" name="Baharroth (Phoenix Lord)" points="200.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Baharroth" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Jump Infantry"/>
<characteristic name="WS" value="7"/>
<characteristic name="BS" value="7"/>
<characteristic name="S" value="4"/>
<characteristic name="T" value="4"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="7"/>
<characteristic name="A" value="4"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="2+"/>
</characteristics></profile>
<profile name="Hawk's Talon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="5"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
<entry id="db36e527-7541-4cfc-a0a8-aa2c137cfb6f" name="Cobra (IA)" points="600.0" category="Super Heavy" type="model" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="729dff12-7980-4209-9ab4-c51c6ba189bc" name="Star Engines" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cced299a-5ebe-4699-a7b3-556e21acd661" name="Vectored Engines" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="62b2c2a0-472d-4e8d-87af-66800b4c7225" name="Hull Weapon" defaultEntryId="21213826-1467-426d-8f76-427b076e8265" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="21213826-1467-426d-8f76-427b076e8265" name="Shuriken Cannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
<entry id="0e2e8f58-e13a-44a2-9bde-ae1e5aed194d" name="Starcannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Starcannon" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="b4962d55-f86c-4ad5-a0db-32b041bb269b" name="Scatter Laser" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Scatter Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="0d14e74c-a936-449b-9c4a-78b48a0b7f24" name="Eldar Missile Launcher" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
<entry id="792e4b55-c6b0-4c12-adf7-10c92938acb4" name="Bright Lance" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Bright Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 1, Lance"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules>
<rule name="Cobra D-Cannon"><description>An Cobra's Distortion Cannon always wounds on 2+ regardless of toughness and inflicts Instant Death regardless of Toughness. It ignores defensive power fields and shields of all types, including Ork Fields and Void Shields. </description></rule>
<rule name="Eldar Titan Holo Fields"><description>Eldar Titans have more advanced Holo Fields than their smaller vehicles. These shimmering shields distort and displace the location of the vehicle. The vehicle has a 4+ Invulnerable Save on any turn that the vehicle moved. </description></rule>
</rules><profiles>
<profile name="Cobra" type="Vehicle (Super Heavy)"><characteristics>
<characteristic name="BS" value="4"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="11"/>
<characteristic name="Structure Points" value="3"/>
<characteristic name="Type" value="Super Heavy Tank, Fast, Skimmer"/>
</characteristics></profile>
<profile name="Cobra D-Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="D"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Ordnance 1, Barrage, 10" Blast, Destroyer, Distortion, Primary Weapon"/>
</characteristics></profile>
</profiles></entry>
<entry id="63722704-5a15-429f-ba02-1b794040b25f" name="Dark Reapers" points="0.0" category="Heavy Support" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="79157246-71ab-47c2-9bc5-d72b5118b881" name="Dark Reapers" points="35.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Dark Reaper" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="3+"/>
</characteristics></profile>
<profile name="Reaper Launcher" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="5"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="722e7bd1-a802-49c5-93a1-449ece561941" name="Exarch" points="12.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="47c25981-1039-43a5-98d4-a2eebded396a" name="Fast Shot" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f19c4bc6-7cf4-45e8-8c54-85b3015552d3" name="Crack Shot" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="4b3567e1-008f-4ec8-9b12-ece6ed1b8121" name="Exarch may be equipped with:" defaultEntryId="0eeaae07-781b-4f29-ba55-2fc9341ec1ce" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1dabf223-1be0-4ac5-8bc4-9f594ce4e4d3" name="Tempest Launcher" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Tempest Launcher" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 2, Blast, Barrage"/>
</characteristics></profile>
</profiles></entry>
<entry id="fd0835c3-0b6e-45dc-8d6b-f6aa124ac1f0" name="Eldar Missile Launcher" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
<entry id="0eeaae07-781b-4f29-ba55-2fc9341ec1ce" name="Reaper Launcher" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Reaper Launcher" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="5"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="d40c9468-6c95-4b60-99df-c20b8d841385" name="Shuriken Cannon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Dark Reaper Exarch" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S"/>
<characteristic name="T"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="6"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="3+"/>
</characteristics></profile>
</profiles></entry>
<entry id="01a3cb1c-5aaf-4de4-8f60-cc04c3b86766" name="Wave Serpent" points="90.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1c665fc8-5fa6-4d23-aabd-6183363396cf" name="Spirit Stones" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5eaa1da8-94fb-4371-97ca-58377b802914" name="Star Engines" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ada266a2-48a1-47c7-98de-94cd92591f9f" name="Vectored Engines" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="efba83c7-0c3b-467f-89c2-adde8e0c7da8" name="Weapons" defaultEntryId="63004ea2-04af-409b-a972-a919c23c7043" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ea41ee4b-7a52-4f4e-bd8d-00092b9ed2cc" name="Twin-Linked Scatter Lasers" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Scatter Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="7006019a-df1d-4ec4-b392-2d3609140e6e" name="Twin-Linked Starcannons" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Starcannon" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="ddc2c706-4698-4050-83dc-1997d8e2b2f1" name="Twin-Linked Bright Lances" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Bright Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 1, Lance"/>
</characteristics></profile>
</profiles></entry>
<entry id="e3fb456f-610b-44ea-9d29-bf5c56d1e1dd" name="Twin-Linked Shuriken Cannons" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
<entry id="3d959289-a083-451d-bf5f-e65f39b953ea" name="Twin-Linked Missile Launcher" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="91f9ba75-4e7c-4964-af4c-6096302f94d8" name="Hull Weapon" defaultEntryId="80494e41-db58-4528-84d3-674903f69d63" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="8bcc71bb-45e3-4ad1-bcfb-82173fdfa8c2" name="Twin-Linked Shuriken Catapults" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="1e2141d7-ac60-41d4-b83f-c40a0f143cc0" name="Shuriken Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Wave Serpent" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
<characteristic name="Type" value="Tank, Fast, Skimmer, Transport: 12"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="573835e8-1367-48fe-8405-e2bb3f96dc8a" name="Dire Avengers" points="0.0" category="Troops" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="feb8908e-a105-4f92-9099-e030a0ff1106" name="Dire Avenger" points="12.0" category="(No Category)" type="upgrade" minSelections="5" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Dire Avenger" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="4+"/>
</characteristics></profile>
<profile name="Avenger Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="18""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="6373b705-5920-43dd-982f-c8d3cca5be56" name="Exarch" points="12.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="30870c5b-f32b-4cb7-b7b6-d32713369d19" name="Bladestorm" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="51097b2b-1734-43f6-bb20-384b40cb380d" name="Defend" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="1d45bde9-8714-4b33-80c1-e65fcec88a49" name="Exarch may be equipped with:" defaultEntryId="600b33bf-8177-45e9-83aa-56eba44f6ba8" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f89c0085-19cd-4564-b6da-eab3e3956f40" name="Diresword and Shuriken Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Pistol" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Pistol"/>
</characteristics></profile>
</profiles></entry>
<entry id="bcfa6e29-e6be-432a-8c70-5923b5a6f2de" name="Powersword and Shimmershield" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3a07509c-7f9d-4c4d-a855-34111c81b128" name="Dual Avenger Catapults" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Dual Avenger Catapults" type="Weapon"><characteristics>
<characteristic name="Range" value="18""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="600b33bf-8177-45e9-83aa-56eba44f6ba8" name="Avenger Catapult" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Avenger Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="18""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Dire Avenger Exarch" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="6"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="3+"/>
</characteristics></profile>
</profiles></entry>
<entry id="22319b32-e2a1-4119-896d-236bf5e26f74" name="Wave Serpent" points="90.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dc4fec45-de49-44f7-bf88-3bd929e0921a" name="Spirit Stones" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="86d692cc-4c03-4c1d-861a-89b819ba9c71" name="Star Engines" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f41c6d0a-ebdd-4910-a696-8d97fc7447ee" name="Vectored Engines" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="95c6403b-f5c0-4932-83a7-d9434da4e0bb" name="Weapons" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3ac08f6e-97fc-42f2-b235-5721df308bf0" name="Twin-Linked Scatter Lasers" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Scatter Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="41ba0ad3-6cdf-4588-a136-2ce11ac1ded1" name="Twin-Linked Starcannons" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Starcannon" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="150854e3-f6ff-48dc-8d4a-44065cd780d5" name="Twin-Linked Bright Lances" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Bright Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 1, Lance"/>
</characteristics></profile>
</profiles></entry>
<entry id="d9f9c73d-8cf9-4772-9e29-9da08934de74" name="Twin-Linked Shuriken Cannons" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
<entry id="ae9f7462-45f4-40dc-85be-72cdd6b33616" name="Twin-Linked Missile Launcher" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a9b8649a-a0ca-47aa-a865-873e6063699d" name="Hull Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="22fda906-6cf5-4657-8fdc-dbc281ea695d" name="Twin-Linked Shuriken Catapults" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="6057bed8-57a5-4697-b0ad-2beed854aa50" name="Shuriken Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Wave Serpent" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
<characteristic name="Type" value="Tank, Fast, Skimmer, Transport: 12"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cefe4a8f-e49f-40fd-94de-92f35cda17d0" name="Eldrad Ulthran" points="210.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries>
<entry id="f7131bd6-8441-4f89-85b8-6afd624129ba" name="Warlocks" points="0.0" category="(No Category)" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="688a0204-758c-4de5-afa6-562ec37f0349" name="Warlock" points="25.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6e8e380e-7936-4e1b-95a5-bfcb41eab48d" name="Upgrade to Spiritseer" points="6.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="f89b8b52-d524-4e18-a457-afc80901379e" name="Warlock Power" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6a3972b9-d4a2-4218-9658-57f248a71cd0" name="Embolden" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="705bee8c-e26e-43d3-8e6a-05b230603c83" name="Conceal" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6c23bebd-d019-4378-805f-a1111661d328" name="Destructor" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7d041046-5d1d-4c41-895d-5cc69c3d5240" name="Enhance" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="cc133b92-a894-43e1-b159-cf33de190aa5" name="Weapon" defaultEntryId="63919769-cde0-4aa0-bfe4-a8576122f730" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="63919769-cde0-4aa0-bfe4-a8576122f730" name="Witchblade" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f66b64b9-4286-473d-a84b-e385d54aef87" name="Singing Spear" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Warlock" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="8"/>
<characteristic name="Save" value="4++"/>
</characteristics></profile>
<profile name="Shuriken Pistol" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Pistol"/>
</characteristics></profile>
</profiles></entry>
<entry id="31286e10-4f5f-4bd9-adf8-049e86ca2859" name="Wave Serpent" points="90.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0f4a39ce-0829-41b5-8b1f-f6cf11ae1770" name="Spirit Stones" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4b18f9cb-f49d-496a-b8bf-c1838e791a40" name="Star Engines" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="11f442db-90a6-418f-96a0-934f874b3802" name="Vectored Engines" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="9a80561a-701b-4204-abdc-395850d97276" name="Weapons" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dc172349-a6ac-4991-a899-c1f54589def3" name="Twin-Linked Scatter Lasers" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Scatter Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="f4963cd5-ad01-4642-8715-f23fd54a4821" name="Twin-Linked Starcannons" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Starcannon" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="d80fdf23-55b1-4d6f-a552-2f23fe9e896f" name="Twin-Linked Bright Lances" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Bright Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 1, Lance"/>
</characteristics></profile>
</profiles></entry>
<entry id="8e36cdd6-fbdc-49ee-89a2-eb3a838a5d2c" name="Twin-Linked Missile Launchers" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
<entry id="0875d5dd-020d-45bb-bfdc-55a3854dd59e" name="Twin-Linked Shuriken Cannons" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="41c2ff54-5650-4a5d-9f82-9f3d1bc1aba7" name="Hull Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="749ba38d-07c1-4e27-b6d5-d1dd1cf4811d" name="Twin-Linked Shuriken Catapults" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="095fcb3b-9e7c-442d-94e9-a67fea1b8a15" name="Shuriken Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Wave Serpent" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
<characteristic name="Type" value="Tank, Fast, Skimmer, Transport: 12"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="352891ab-a1a6-4807-857d-72df21503a80" name="Jetbike Warlocks" points="0.0" category="(No Category)" type="unit" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cbbafcff-de33-4f0b-9cf2-1cfa3c6fb210" name="Warlock (Jetbike)" points="45.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a3691254-bdda-4aa9-9dad-43984630985c" name="Upgrade to Spiritseer" points="6.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="eec8543b-2093-4523-96bc-2f53533ccb88" name="Warlock Power" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1288bfb2-f768-4d6b-ad6a-c71c7e354406" name="Embolden" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6c5c2a20-9bfb-4b30-b6bc-c1c43b25e4d3" name="Conceal" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="38abed7e-e678-4b72-9bc4-cd1306a8e22c" name="Destructor" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a5fdf5aa-1082-4375-ac8b-6d443367a52e" name="Enhance" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="e12d9d8e-9d08-4c8d-b7c4-6e385b3aa8c5" name="Weapon" defaultEntryId="69c9233f-4045-4506-822c-e659b430b827" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="69c9233f-4045-4506-822c-e659b430b827" name="Witchblade" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="da589e81-8115-4b04-8ccb-e43fb4d4e304" name="Singing Spear" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Warlock (Jetbike)" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Jetbike"/>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3 (4)"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="8"/>
<characteristic name="Save" value="3+/4++"/>
</characteristics></profile>
<profile name="Shuriken Pistol" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Pistol"/>
</characteristics></profile>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldrad Ulthuan" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="4"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="3++"/>
</characteristics></profile>
</profiles></entry>
<entry id="b2f25e3e-657f-487b-952e-229b0a7f4971" name="Falcon" points="115.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="03fd364e-a074-46c3-8cd9-873a40ed1ddd" name="Spirit Stones" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f6bb7aec-4940-45ac-a43f-2eba533b6462" name="Star Engines" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ebf6e59f-7f08-4bbf-963b-d09d7f74ae4b" name="Vectored Engines" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="361fbdd3-2142-49df-a5e1-5f3cb054f483" name="Holo-fields" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="76b0f53f-0b11-4df1-a8b6-45c449af8ea7" name="Additional Weapon" defaultEntryId="4593efee-db99-4c53-b6ef-3fba7b77050a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e532e165-d93d-4d2b-87d6-c90ecd3d1bb7" name="Scatter Laser" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Scatter Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="d86de9c8-7b97-4b12-926b-d1996493fc1b" name="Starcannon" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Starcannon" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="89b31e76-4c71-4f00-ad7d-ab02921ab4b9" name="Bright Lance" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Bright Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 1, Lance"/>
</characteristics></profile>
</profiles></entry>
<entry id="06ecbfe7-1a66-4da4-ab28-b420bd16513a" name="Missile Launchers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
<entry id="4593efee-db99-4c53-b6ef-3fba7b77050a" name="Shuriken Cannon" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="cefd91de-2336-4f01-af37-6eb044a665c2" name="Hull Weapon" defaultEntryId="80494e41-db58-4528-84d3-674903f69d63" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9520a619-6054-485d-a105-7a4c06595e43" name="Twin-Linked Shuriken Catapults" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="def0d710-3994-46ec-a7af-4b624bf5e115" name="Shuriken Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Falcon" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
<characteristic name="Type" value="Tank, Skimmer, Fast, Transport: 6"/>
</characteristics></profile>
<profile name="Pulse Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="54138ac0-bff4-4798-9cfb-1c8aedbc258f" name="Farseer" points="55.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="86707812-13dc-452a-93de-20e0557481a6" name="Runes of Witnessing " points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="eab7e187-e267-4d7b-8a96-ba678db9080e" name="Jetbike" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
<profile name="Farseer (Jetbike)" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Jetbike"/>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3 (4)"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="3+/4++"/>
</characteristics></profile>
</profiles></entry>
<entry id="745f6251-6f93-4766-ab97-1d66193fe9b8" name="Spirit Stones" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bd26e089-1ade-4d74-b835-9878e5595db8" name="Runes of Warding" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9fb9f3aa-3957-41be-b44b-e246310d1747" name="Jetbike Warlocks" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="39a692a7-d049-4425-8490-8452d024a30d" name="Warlock (Jetbike)" points="45.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2ab9732d-e5ec-41e7-8128-b5ae41aa8347" name="Upgrade to Spiritseer" points="6.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="6bbe7b01-6c4d-4ebf-9ab5-3db9894102c8" name="Warlock Power" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9c62e688-6cea-4c8d-8b70-bdf947102d9e" name="Embolden" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dabb9cb8-c34c-44ef-9692-1576043a11a0" name="Conceal" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="843168de-26cf-436c-890b-3611eac45451" name="Destructor" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="13edb401-99b5-4e23-abd9-f86efc962bca" name="Enhance" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="6de2bcea-c493-4923-a877-16e74460fe4b" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e9f8dfb4-d9ec-4c53-b103-e9350887a42b" name="Witchblade" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6b30a9b2-ed64-4ac0-904b-ded5e6f2fe33" name="Singing Spear" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Warlock (Jetbike)" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Jetbike"/>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3 (4)"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="8"/>
<characteristic name="Save" value="3+/4++"/>
</characteristics></profile>
<profile name="Shuriken Pistol" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Pistol"/>
</characteristics></profile>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2866d4d4-2a16-448f-bb5f-e9741aed10ed" name="Warlocks" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7e84e372-908b-4a5a-a977-184cc1b83920" name="Warlock" points="25.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="10" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c116874c-d9f6-4061-aee8-45cf4ec84442" name="Upgrade to Spiritseer" points="6.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="1e9d5e1e-c322-4b97-a54c-2dc55d52b4e4" name="Warlock Power" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="599b7386-39dc-4601-8ed8-e36db81af360" name="Embolden" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c028f9eb-4445-4a99-9215-7fd515520435" name="Conceal" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7b208bc7-a394-4eb6-91a2-9bcf5e19d1c3" name="Destructor" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="58968c07-e5a5-4af5-ac0f-777ca2a4296e" name="Enhance" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="59a1cdf8-3ce8-46ab-9f7d-24d55c1bca8a" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="141c934a-4eb5-4357-9d57-c8a7ebd8ebf9" name="Witchblade" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2fda7a56-3395-4028-9d25-585518c5dbe3" name="Singing Spear" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Warlock" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="8"/>
<characteristic name="Save" value="4++"/>
</characteristics></profile>
<profile name="Shuriken Pistol" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Pistol"/>
</characteristics></profile>
</profiles></entry>
<entry id="39ea4ab9-7cd9-4200-9852-9c44843f76ee" name="Wave Serpent" points="90.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f54e1575-572f-489d-9242-0918cb3ea979" name="Spirit Stones" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="95214e03-2bf6-4540-b1f8-43b5affd22cd" name="Star Engines" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="13c099d9-1d29-437e-87fe-c0d159799784" name="Vectored Engines" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="8f0d9e5a-c621-4f1e-b04c-4c29e8a86357" name="Weapons" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="db17f280-43cc-46db-90c5-fa5685ce934a" name="Twin-Linked Scatter Lasers" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Scatter Laser" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 4"/>
</characteristics></profile>
</profiles></entry>
<entry id="2308df5e-8700-4702-bd38-b8ba32ec7911" name="Twin-Linked Starcannons" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Starcannon" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="f88276bf-c78d-4ea4-84b2-6246023d61d3" name="Twin-Linked Bright Lances" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Bright Lance" type="Weapon"><characteristics>
<characteristic name="Range" value="36""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="2"/>
<characteristic name="Type" value="Heavy 1, Lance"/>
</characteristics></profile>
</profiles></entry>
<entry id="94db83f2-8698-4bed-a8f2-a2d45860178d" name="Twin-Linked Missile Launchers" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Eldar Missile Launcher - Krak" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="8"/>
<characteristic name="AP" value="3"/>
<characteristic name="Type" value="Heavy 1"/>
</characteristics></profile>
<profile name="Eldar Missile Launcher - Plasma" type="Weapon"><characteristics>
<characteristic name="Range" value="48""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="6"/>
<characteristic name="Type" value="Heavy 1, Blast, Pinning"/>
</characteristics></profile>
</profiles></entry>
<entry id="ec02fd08-1cf4-455f-83fa-190b5d04a37a" name="Twin-Linked Shuriken Cannons" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="f0b47140-bb03-4292-b394-479997146fde" name="Hull Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="17e2f0e8-3772-485a-b537-06e22d9edbd1" name="Twin-Linked Shuriken Catapults" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Catapult" type="Weapon"><characteristics>
<characteristic name="Range" value="12""/>
<characteristic name="Strength" value="4"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 2"/>
</characteristics></profile>
</profiles></entry>
<entry id="669e4c99-12fd-4775-98ad-f88858ba77c8" name="Shuriken Cannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Shuriken Cannon" type="Weapon"><characteristics>
<characteristic name="Range" value="24""/>
<characteristic name="Strength" value="6"/>
<characteristic name="AP" value="5"/>
<characteristic name="Type" value="Assault 3"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Wave Serpent" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
<characteristic name="Type" value="Tank, Fast, Skimmer, Transport: 12"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="337d6a46-2fab-411e-a82c-d70cadbf497a" name="Psychic Powers" minSelections="1" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="40b0ad81-4eeb-46e4-a77c-6d1a3e30ded6" name="Eldritch Storm" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fb2d8fef-d6f5-4860-837c-759fc716676c" name="Mind War" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6101a484-a74f-4fa9-a9af-6c88e8e0092e" name="Fortune" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="87d1dd5e-6270-4376-a915-2ec0fea774e4" name="Doom" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6e8716b6-668e-4922-99a8-fe8ccb09bf78" name="Guide" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="356d0d48-ae34-4e2e-af39-b10e4580f0d8" name="Weapon" defaultEntryId="64d9d20a-1b08-498a-9f0c-7bd86fe8591e" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="64d9d20a-1b08-498a-9f0c-7bd86fe8591e" name="Witchblade" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="080ea983-adff-4924-b318-0bb3dd7716a2" name="Singing Spear" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Farseer" type="Unit"><characteristics>
<characteristic name="Unit Type" value="Infantry"/>
<characteristic name="WS" value="5"/>