generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Aeldari - Craftworlds.cat
7174 lines (7174 loc) · 573 KB
/
Aeldari - Craftworlds.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="9ba1-c994-4719-e3ac" name="Aeldari - Asuryani" revision="14" battleScribeVersion="2.03" authorName="BSData Developers" authorUrl="https://discord.gg/3QtaU2g" library="false" gameSystemId="18f7-26e1-8fbb-f7fa" gameSystemRevision="6" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="280a-43bb-426c-aa7c" name="Asuryani Datasheets PDF"/>
</publications>
<categoryEntries>
<categoryEntry id="426a-d6ae-7bf1-76e7" name="Faction: Warhost" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="0ca1-5137-598c-3f5b" name="Faction: Ulthwe" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="ce0b-343c-1fec-2a6c" name="Eldrad Ulthran" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="9a3e-a774-54d2-90b3" name="Farseer" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c595-6cad-4e25-eb78" name="Faction: <Craftworld>" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="84a5-2e68-7574-450c" name="Warlock" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="30ea-ec04-7774-0e0e" name="Warlock Conclave" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c816-fd07-538e-0ed1" name="Warlock Skyrunner Conclave" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="ea95-b026-c30c-948c" name="Faction: Iyanden" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="85fb-e447-f6b6-108e" name="Autarch" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="4d7f-30fc-b674-da2a" name="Prince Yriel" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="22a2-27b2-b2bc-f851" name="Faction: Alaitoc" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="0fba-5905-99af-65b7" name="Ranger" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="7ca2-31c7-3f2b-3d2b" name="Illic Nightspear" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="6b12-0532-6c76-4d6a" name="Faction: Aspect Warrior" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="2e91-aa9f-83cf-7eb8" name="Avatar of Khaine" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="1d1d-2698-50bf-08b2" name="Phoenix Lord" hidden="false"/>
<categoryEntry id="3ffb-066a-b606-8e9d" name="Asurmen" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="fcdb-eb9d-5da1-9f9d" name="Baharroth" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="11cd-1f82-d273-0db8" name="Fuegan" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="7fcb-572a-369f-05f1" name="Jain Zar" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="32f5-5b4d-18fc-b3d3" name="Karandras" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="5276-66b7-4039-9f57" name="Spiritseer" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3f4b-6e5c-df13-6bd1" name="Maugan Ra" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="e6b3-694b-d2d0-6d3d" name="Howling Banshees" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="4d2f-2983-d867-e5a9" name="Striking Scorpions" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="2029-92cf-1d2d-126a" name="Fire Dragons" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="d87a-76eb-0a86-5eb4" name="Faction: Spirit Host" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="15c3-2847-803f-ab5c" name="Wraith Construct" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="8ba3-d349-fc11-281b" name="Wraithblades" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3531-dacf-0de7-75e9" name="Wraithguard" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c23d-1cca-547b-e26e" name="Guardian" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="2232-8652-0d84-7cad" name="Guardian Defenders" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="9d35-a353-53e7-0ea9" name="Storm Guardians" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3350-db26-8be5-c44c" name="Dire Avengers" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c310-7060-475e-c0fd" name="Windriders" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="6f1e-0423-70d8-bb02" name="Vypers" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3dd4-2910-c31b-4f2a" name="Swooping Hawks" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="dd0a-ed07-ba74-f669" name="Warp Spiders" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="b8f9-cba4-648f-b785" name="Shining Spears" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="f15b-7d86-d50d-04b0" name="War Walkers" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="4163-0f97-b7ff-d7fe" name="Wraithlord" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="0f87-5726-9408-30fe" name="Support Weapon" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="7b24-42fb-412e-6ba1" name="Dark Reapers" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="5765-a4bb-a124-8f55" name="Falcon" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="5670-e24a-ee9b-cec0" name="Night Spinner" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="2088-4529-13d8-fdfe" name="Fire Prism" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="a48b-3727-3bc4-cfe2" name="Wave Serpent" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="bd57-0da8-3bb1-2db4" name="Crimson Hunter" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="010e-d870-19d3-b261" name="Hemlock Wraithfighter" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c031-35fd-5467-0224" name="Wraithknight" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="4615-e929-2642-c8d2" name="Bonesinger" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="1cbc-1458-9175-2cba" name="Shadow Spectres" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="d90b-6620-ac04-f868" name="Jet Pack" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="8ba9-8ba5-d74e-d22f" name="Wasp Assault Walkers" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="32ed-5957-9a77-7ba0" name="Wraithseer" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c40c-2fce-7076-8471" name="Hornets" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3773-a172-94ea-1140" name="Warp Hunter" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="17cf-83ef-383e-d061" name="Lynx" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="92b8-e895-a142-7d0c" name="Scorpion" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3e73-be3d-d4a6-1e5d" name="Cobra" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="b083-9519-dd05-43ee" name="Nightwing" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c185-7cb0-8742-3453" name="Phoenix" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="2e07-1eaf-522f-cc39" name="Vampire Raider" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="b655-b288-dd53-8de9" name="Vampire Hunter" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="121a-d5f2-7401-9a6f" name="Vampire" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="f5a1-a9e5-7f63-662f" name="Skathach Wraithknight" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="0e2c-3abb-feb4-7c38" name="Revenant Titan" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="9f25-68ce-5ff5-7cb2" name="Corsair Cloud Dancer Band" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="3ba6-75b9-a82e-4567" name="Faction: Anrathe" hidden="false"/>
<categoryEntry id="bc58-857a-2fff-55d9" name="Faction: <Coterie>" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="e27f-ca33-eb2f-9d28" name="Irillyth" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="42c5-79ac-4f52-f4e2" name="Phantom Titan" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="d72c-dcfa-399e-3bc9" name="Wraith-Titan" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="8bc0-d16c-6626-d3f8" name="Corsair Reaver Band" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="e736-7dde-0dd7-e3b0" name="Corsair Skyreaver Band" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="946e-2585-7458-2d25" name="Firestorm" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="9d23-393f-a633-5265" name="Corsair Falcon" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="fe5f-ae76-6a2f-7d22" name="Corsair Venom" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
<categoryEntry id="c31f-3ff2-43cf-51d3" name="Faction: <Conclave>" publicationId="280a-43bb-426c-aa7c" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="8785-9bd8-6adf-940c" name="Eldrad Ulthran" hidden="false" collective="false" import="true" targetId="e4e5-fffd-9435-163e" type="selectionEntry"/>
<entryLink id="ad58-d937-78d5-f77d" name="Farseer" hidden="false" collective="false" import="true" targetId="737f-18b5-b48f-fce1" type="selectionEntry"/>
<entryLink id="fb43-e677-c360-c531" name="Farseer Skyrunner" hidden="false" collective="false" import="true" targetId="efe5-d944-de03-32d6" type="selectionEntry"/>
<entryLink id="231e-b2a1-1888-44f0" name="Warlock Conclave" hidden="false" collective="false" import="true" targetId="37c4-8933-9b90-4f89" type="selectionEntry"/>
<entryLink id="0f1e-2d8d-0388-9946" name="Warlock Skyrunner Conclave" hidden="false" collective="false" import="true" targetId="aedf-3fd7-2326-f58c" type="selectionEntry"/>
<entryLink id="f853-7b0a-48ff-6f82" name="Asurmen" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="b1e9-150f-2d7c-2053" type="selectionEntry"/>
<entryLink id="10d9-1ce2-6cff-d039" name="Autarch" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="be2f-3864-670d-7ee8" type="selectionEntry"/>
<entryLink id="a9f5-8144-551d-e3c8" name="Autarch - Skyrunner" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="8bf0-5926-7f9f-a5fe" type="selectionEntry"/>
<entryLink id="3b73-4a35-fc7c-20f5" name="Autarch - Swooping Hawk Wings" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="2e94-7f86-50dd-2db5" type="selectionEntry"/>
<entryLink id="9a1e-552f-5033-67e7" name="Autarch - Warp Jump Generator" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="9b2f-0889-4d9e-0a2b" type="selectionEntry"/>
<entryLink id="c9ba-d304-017c-3844" name="Avatar of Khaine" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="629f-fd39-b3e9-96f0" type="selectionEntry"/>
<entryLink id="2357-01b5-7728-1f68" name="Baharroth" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="3562-c0f4-6625-577d" type="selectionEntry"/>
<entryLink id="409e-26ae-632b-c56c" name="Bonesinger" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="acea-54ee-29d0-cabd" type="selectionEntry"/>
<entryLink id="f70c-41f2-732e-76a3" name="Dark Reapers" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f04e-0066-a892-78a5" type="selectionEntry"/>
<entryLink id="45e6-e382-b53a-2342" name="Dire Avengers" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="1183-01ea-7fb0-5aa5" type="selectionEntry"/>
<entryLink id="2585-ad44-dc86-6afe" name="Falcon" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="4e1d-50aa-a9f5-2a1a" type="selectionEntry"/>
<entryLink id="8064-c9dc-99ed-b621" name="Fire Dragons" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="d9d6-9114-3ac9-5567" type="selectionEntry"/>
<entryLink id="84d7-fdc8-c03d-9bd4" name="Fire Prism" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="881a-8e38-39aa-f558" type="selectionEntry"/>
<entryLink id="d313-c8ae-3a4a-dda7" name="Fuegan" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="8cc2-4200-3c18-116b" type="selectionEntry"/>
<entryLink id="9531-3a8b-c04b-3dfc" name="Guardian Defenders" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="4f84-648e-afa4-1be6" type="selectionEntry"/>
<entryLink id="37b1-e86e-4ee0-08a8" name="Hemlock Wraithfighter" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="1d02-87a0-c957-1ecb" type="selectionEntry"/>
<entryLink id="8f65-a024-3d93-9f0c" name="Howling Banshees" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="2a2e-7341-a82a-bd71" type="selectionEntry"/>
<entryLink id="afca-bea2-4fd7-013c" name="Illic Nightspear" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="ffd8-28a3-0207-0f27" type="selectionEntry"/>
<entryLink id="608f-1b74-9b9c-a0c9" name="Jain Zar" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="4426-bfdb-0078-52cc" type="selectionEntry"/>
<entryLink id="fd3b-6184-c739-b5df" name="Karandras" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="0cf3-b3f6-b571-97de" type="selectionEntry"/>
<entryLink id="f439-0bb8-1617-786d" name="Maugan Ra" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="3673-2d76-83e7-62a5" type="selectionEntry"/>
<entryLink id="15ae-8879-6ca6-9bf4" name="Night Spinner" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="34b5-2a51-395a-c509" type="selectionEntry"/>
<entryLink id="5470-ca45-d07c-08ab" name="Prince Yriel" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="0ff6-ae15-e08c-9ea5" type="selectionEntry"/>
<entryLink id="8e95-a355-a5e7-473c" name="Rangers" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="2d7c-8e48-4ab0-cfb0" type="selectionEntry"/>
<entryLink id="d583-2781-c064-60a4" name="Shining Spears" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="40b5-4c2d-8615-a3cc" type="selectionEntry"/>
<entryLink id="919a-37a2-4415-f8f7" name="Spiritseer" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="a3de-399e-d9fe-fc95" type="selectionEntry"/>
<entryLink id="b98a-a5f9-d351-4524" name="Storm Guardians" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="3165-4f80-e1f0-67ee" type="selectionEntry"/>
<entryLink id="43a0-c06a-d938-b8d4" name="Striking Scorpions" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="9264-38a4-f7e5-b84a" type="selectionEntry"/>
<entryLink id="75d6-bdae-391c-2ce9" name="Support Weapon" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="17b5-d5aa-2c02-bcde" type="selectionEntry"/>
<entryLink id="eaac-a23c-cea5-00df" name="Swooping Hawks" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="b129-5cbc-0af4-4992" type="selectionEntry"/>
<entryLink id="0ae2-daee-0c36-c3c9" name="Vypers" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="3d81-8676-1c39-779f" type="selectionEntry"/>
<entryLink id="896b-8264-787b-2511" name="War Walkers" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="fb2b-c82c-b122-d0cf" type="selectionEntry"/>
<entryLink id="ad84-1d59-a973-dbeb" name="Warp Spiders" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7bc4-5e16-b481-b8a5" type="selectionEntry"/>
<entryLink id="192b-758f-befd-662f" name="Wave Serpent" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="38fe-72be-0945-ee29" type="selectionEntry"/>
<entryLink id="5653-14ea-e90d-af84" name="Windriders" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f773-0a28-fbb9-4d16" type="selectionEntry"/>
<entryLink id="0569-075f-9ab1-0f21" name="Wraithblades" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="ee31-1ec1-2733-9021" type="selectionEntry"/>
<entryLink id="aa99-dc16-130a-78ae" name="Wraithguard" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="56e5-8735-aae8-619b" type="selectionEntry"/>
<entryLink id="0e5b-1195-8c7e-12f2" name="Wraithknight" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="9d0a-caea-baf7-39ef" type="selectionEntry"/>
<entryLink id="183f-f770-d953-b056" name="Wraithlord" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="3e1c-f3a0-9471-7bff" type="selectionEntry"/>
<entryLink id="4216-b6e6-6f3a-6113" name="Crimson Hunter" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="390d-1450-f97d-9f59" type="selectionEntry"/>
<entryLink id="8169-64c0-51d1-e485" name="Webway Gate" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f4ea-67e2-d7a9-3bbd" type="selectionEntry"/>
<entryLink id="5e93-e1c7-c47d-0d8e" name="Wraithseer" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f9fa-b9d8-81ed-993a" type="selectionEntry"/>
<entryLink id="e257-f18e-29ef-e088" name="Wasp Assault Walkers" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="3cc1-eb93-ef2f-6b65" type="selectionEntry"/>
<entryLink id="dbd0-37b5-173a-3e7e" name="Shadow Spectres" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="5d7e-5783-b123-60dd" type="selectionEntry"/>
<entryLink id="303e-a35e-9b64-71e1" name="Hornets" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="844f-aee0-9460-9665" type="selectionEntry"/>
<entryLink id="7411-d9fa-603e-5c1f" name="Warp Hunter" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="0953-b21b-fd0f-aee6" type="selectionEntry"/>
<entryLink id="999e-1930-19d6-d100" name="Lynx" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="5f7b-fd92-2eb1-5517" type="selectionEntry"/>
<entryLink id="c0a8-66fc-385f-06df" name="Scorpion" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="5e4b-9607-b05c-7e7f" type="selectionEntry"/>
<entryLink id="eebe-abf1-2963-2200" name="Cobra" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="98c4-f0df-b819-dc2d" type="selectionEntry"/>
<entryLink id="ddcc-dfd9-cfa4-27fc" name="Nightwing" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="d73c-8f13-fa2f-3bfe" type="selectionEntry"/>
<entryLink id="7971-4f55-666c-30cf" name="Phoenix" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="6424-a7f6-e1e5-340d" type="selectionEntry"/>
<entryLink id="d905-012a-10dd-b097" name="Vampire Raider" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="0e14-7bf4-496b-8530" type="selectionEntry"/>
<entryLink id="36ec-a95c-ab94-bccc" name="Vampire Hunter" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f91f-c22b-1a8c-57a8" type="selectionEntry"/>
<entryLink id="cea1-4cd0-dab1-e1bf" name="Skathach Wraithknight" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="2d1f-8699-e4fe-45d6" type="selectionEntry"/>
<entryLink id="4c0f-91f5-e5a8-b02a" name="Revenant Titan" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="74a6-2f0c-d23f-a3df" type="selectionEntry"/>
<entryLink id="3497-9a09-b364-70c9" name="Irillyth" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="c631-81e4-9ec0-da45" type="selectionEntry"/>
<entryLink id="b816-45d7-9a75-50ce" name="Phantom Titan" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="07be-bf59-bac2-f8c6" type="selectionEntry"/>
<entryLink id="b527-e331-b8fb-ed38" name="Firestorm" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="6db6-4e13-0096-d658" type="selectionEntry"/>
<entryLink id="ba83-f2cd-0624-c747" name="Corsair Falcon" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="33fb-34c6-4d54-5fcf" type="selectionEntry"/>
<entryLink id="5cae-8623-b88f-dc5d" name="Corsair Cloud Dancer Band" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f224-27d1-ff8e-274d" type="selectionEntry"/>
<entryLink id="a425-28ca-b280-d843" name="Corsair Reaver Band" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="a586-68c6-71b0-1e55" type="selectionEntry"/>
<entryLink id="27aa-6020-385c-92d4" name="Corsair Venom" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="f9ca-fdc4-ed07-a9df" type="selectionEntry"/>
<entryLink id="bc61-ef6c-e7d7-2ff3" name="Corsair Skyreaver Band" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="b8e7-fcd2-b2df-381a" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="e4e5-fffd-9435-163e" name="Eldrad Ulthran" publicationId="280a-43bb-426c-aa7c" page="1" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="eeeb-a47c-4050-b13b" type="max"/>
</constraints>
<profiles>
<profile id="41cb-9e3a-991e-2d01" name="Eldrad Ulthran" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0272-1e55-d307-146c" name="Runes of the Farseer" hidden="false" targetId="c3bd-4dd9-ae75-f56d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a50d-f572-64db-288c" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="eaf4-64d9-2853-07e0" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="20d0-9c5d-6bb8-c4eb" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="b0ed-01e5-55c7-ddee" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="ec52-2d45-bb8d-3575" name="Eldrad Ulthran" hidden="false" targetId="ce0b-343c-1fec-2a6c" primary="false"/>
<categoryLink id="b1b3-3eb7-5ee1-991e" name="Faction: Ulthwe" hidden="false" targetId="0ca1-5137-598c-3f5b" primary="false"/>
<categoryLink id="a75d-7e84-3fb5-a946" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="1007-de29-65e2-dd2a" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="5142-4047-f246-8340" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="2fb2-36be-7938-4f9e" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
<categoryLink id="053d-b06b-ef00-78ab" name="Farseer" hidden="false" targetId="9a3e-a774-54d2-90b3" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="5bd2-7be7-201a-e738" name="Executioner" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c7ab-7aa8-c262-2c37" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0bc9-4b2e-6c2a-191d" type="max"/>
</constraints>
<profiles>
<profile id="1343-3f41-2a9d-4555" name="Executioner" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Heavy</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">18"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">1</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">8+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Witchfire</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fa17-9d7e-d36e-c7ea" name="The Staff of Ulthamar" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbd4-6dc3-10d7-49cc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e97e-73ec-4733-e300" type="min"/>
</constraints>
<profiles>
<profile id="66ef-5e9a-d9a4-36b2" name="The Staff of Ulthamar" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">7+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="2b4e-13ae-5536-ae02" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="737f-18b5-b48f-fce1" name="Farseer" publicationId="280a-43bb-426c-aa7c" page="2" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d076-ca99-6d01-8a76" name="Farseer" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8fa6-d81e-2f57-2bb3" name="Runes of the Farseer" hidden="false" targetId="c3bd-4dd9-ae75-f56d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1d76-90f3-6111-a2de" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="7b16-1d7e-81f2-4ba9" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="b62a-9927-0ac2-d1fc" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="ab22-140f-f354-54bb" name="Faction: <Craftworld>" hidden="false" targetId="c595-6cad-4e25-eb78" primary="false"/>
<categoryLink id="f335-e24c-1627-906b" name="Farseer" hidden="false" targetId="9a3e-a774-54d2-90b3" primary="false"/>
<categoryLink id="2479-4c3b-884a-7d13" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="9fe9-c1eb-b4f4-86a0" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="642f-e619-0ae9-7b17" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="4dca-7700-6fc4-ab71" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="ceb6-117e-94c2-210f" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="5995-3711-57e0-3f09" name="Witchblade" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="a8b2-e2ec-b3f7-83ee" type="selectionEntry"/>
<entryLink id="44a7-7678-0067-3b91" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="4.0"/>
</costs>
</selectionEntry>
<selectionEntry id="efe5-d944-de03-32d6" name="Farseer Skyrunner" publicationId="280a-43bb-426c-aa7c" page="2" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="33c4-848a-dd26-3753" name="Farseer Skyrunner" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">17"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6884-5944-bd94-bec1" name="Runes of the Farseer" hidden="false" targetId="c3bd-4dd9-ae75-f56d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6bce-1d08-4a33-9254" name="Biker" hidden="false" targetId="c8b5-9ad5-d8df-45f2" primary="false"/>
<categoryLink id="3714-0665-9fd4-2e2a" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="31ec-f0ee-5f41-b330" name="Faction: <Craftworld>" hidden="false" targetId="c595-6cad-4e25-eb78" primary="false"/>
<categoryLink id="8dbb-ecb8-330d-7db5" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="adc2-64ea-0468-e86b" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="a2a8-b4c5-7be8-d2bd" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="7ead-5b50-aa2e-3535" name="Farseer" hidden="false" targetId="9a3e-a774-54d2-90b3" primary="false"/>
<categoryLink id="7e77-51d4-43e7-ac08" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
<categoryLink id="b015-098a-4ba6-0eaa" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="2f02-dc83-9926-4c16" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="1886-bf7d-e17b-33e0" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="0b11-89d5-a717-45c9" name="Witchblade" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="a8b2-e2ec-b3f7-83ee" type="selectionEntry"/>
<entryLink id="56d3-3866-afe1-5d63" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37c4-8933-9b90-4f89" name="Warlock Conclave" publicationId="280a-43bb-426c-aa7c" page="3" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="0288-ea86-1fb2-8648" name="Conclave of Power" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="c35d-9645-6070-0198" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f8db-4bc2-bd56-0a73" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="ab0c-02bb-0fc6-e0c7" name="Faction: <Craftworld>" hidden="false" targetId="c595-6cad-4e25-eb78" primary="false"/>
<categoryLink id="62b8-58c4-eaea-86d8" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="d4bf-f46d-1f75-76d5" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="c6b0-ab1d-9cb2-d290" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="d889-6566-f914-f4a4" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="7189-2d8b-2de2-2991" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
<categoryLink id="47b4-47d2-8b41-880d" name="Warlock" hidden="false" targetId="84a5-2e68-7574-450c" primary="false"/>
<categoryLink id="01a1-b083-5388-2705" name="Warlock Conclave" hidden="false" targetId="30ea-ec04-7774-0e0e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="babd-9151-d6cd-bcdb" name="Unit Size" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" defaultSelectionEntryId="fff9-d860-3569-334f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0e8-fd5c-f2e7-673e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a03d-32a6-518c-4164" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="fff9-d860-3569-334f" name="1 Model" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9f2-1a48-04e6-458d" type="max"/>
</constraints>
<profiles>
<profile id="5001-f04e-2b09-aae3" name="Warlock Conclave (1 Model)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="3.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c8b8-daa3-7d4b-d67e" name="5 Models" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afb5-a8fe-d811-2897" type="max"/>
</constraints>
<profiles>
<profile id="90c7-cac1-2115-7be3" name="Warlock Conclave (5 Models)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">2</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">2</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d8a5-1355-2bd5-9ae4" name="10 Models" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a4a6-fc93-9efa-8ac1" type="max"/>
</constraints>
<profiles>
<profile id="7979-72db-bdb7-f0d0" name="Warlock Conclave (10 Models)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">3</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">4</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="12.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="baec-433d-a9f9-b6d5" name="Destructor" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="2b7e-1653-1446-44a0" type="selectionEntry"/>
<entryLink id="c7a8-e61b-b451-db46" name="Witchblades & Singing Spears" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7c60-ce87-4950-b53d" type="selectionEntry"/>
<entryLink id="e336-0002-32fd-eeda" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aedf-3fd7-2326-f58c" name="Warlock Skyrunner Conclave" publicationId="280a-43bb-426c-aa7c" page="3" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="a3c8-9d43-f720-e6a5" name="Conclave of Power" hidden="false" targetId="c35d-9645-6070-0198" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd48-df84-a2be-14b9" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="6802-7e8c-4d74-dcf0" name="Faction: <Craftworld>" hidden="false" targetId="c595-6cad-4e25-eb78" primary="false"/>
<categoryLink id="6315-3857-7a2e-0c34" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="0390-caac-8db0-d969" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="3385-7476-d1d0-75a4" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="51e0-8c6a-04ee-8905" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="b397-0c00-419d-5fd7" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
<categoryLink id="6d0f-57ce-6a57-37e8" name="Warlock" hidden="false" targetId="84a5-2e68-7574-450c" primary="false"/>
<categoryLink id="4983-05f3-3cfc-e3bd" name="Biker" hidden="false" targetId="c8b5-9ad5-d8df-45f2" primary="false"/>
<categoryLink id="0afe-8cff-35a5-550b" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
<categoryLink id="7d52-2aa7-3e69-4724" name="Warlock Skyrunner Conclave" hidden="false" targetId="c816-fd07-538e-0ed1" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="22f3-9f65-e906-63cd" name="Unit Size" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" defaultSelectionEntryId="764f-c3d8-0ed7-01a2">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55dd-0ac1-0755-69e7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5e8-ef54-902f-8cb0" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="764f-c3d8-0ed7-01a2" name="1 Model" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5abb-e69b-dbad-20aa" type="max"/>
</constraints>
<profiles>
<profile id="f23a-d3ba-65f9-d89c" name="Warlock Skyrunner Conclave (1 Model)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">17"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="3.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ba72-4ef2-038d-cfa8" name="5 Models" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39e5-2e97-4ae2-c316" type="max"/>
</constraints>
<profiles>
<profile id="4b56-0ac8-c48f-9d25" name="Warlock Skyrunner Conclave (5 Models)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">17"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">2</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">2</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="42e4-fe60-b8d3-9bc5" name="10 Models" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4eba-aa34-3455-1be7" type="max"/>
</constraints>
<profiles>
<profile id="c7fb-4c99-964e-76b2" name="Warlock Skyrunner Conclave (10 Models)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">17"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">3</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">4</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="12.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0c4b-d668-6c9a-bde3" name="Destructor" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="2b7e-1653-1446-44a0" type="selectionEntry"/>
<entryLink id="4d80-2694-f9a0-0e02" name="Witchblades & Singing Spears" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7c60-ce87-4950-b53d" type="selectionEntry"/>
<entryLink id="f2bb-a30f-834e-25e2" name="Twin Shuriken Catapults" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="52e7-3e94-096e-8fd8" type="selectionEntry"/>
<entryLink id="397d-6f8b-7923-7e91" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="3.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a8b2-e2ec-b3f7-83ee" name="Witchblade" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e77a-c693-13fd-bcec" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3204-726b-00a8-0eb6" type="min"/>
</constraints>
<infoLinks>
<infoLink id="5cc0-f752-1785-9a23" name="Witchblade" hidden="false" targetId="7a7f-f5ba-ede0-73b2" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b7e-1653-1446-44a0" name="Destructor" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ca2-e62f-43bd-f32e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0900-4aef-b659-fd55" type="min"/>
</constraints>
<infoLinks>
<infoLink id="2951-dc1e-ce95-4f46" name="Destructor" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="7ef9-27b2-5b32-a3e1" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7c60-ce87-4950-b53d" name="Witchblades & Singing Spears" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="19f6-465e-2d34-3fbf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9f5-2ac0-9afa-b1d9" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1e6f-d5ce-80d4-8f2b" name="Witchblades & Singing Spears" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="e6bf-f329-4f12-5fc7" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0ff6-ae15-e08c-9ea5" name="Prince Yriel" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="4e2e-9a98-7c51-8c9c" type="max"/>
</constraints>
<profiles>
<profile id="ec81-544f-da01-b864" name="Prince Yriel" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
<profile id="3a54-6689-907d-fffa" name="The Eye of Wrath" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Once per battle, after this unit makes a Move action, select one enemy unit within 3" of it and roll one D12; on a 4+ place one blast marker next to that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2293-fb2d-558a-8000" name="Path of Command" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="b615-6db0-50d9-adf4" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9c2e-ddcc-0ff8-5089" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="64a9-dddb-24ef-a66a" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="5c14-7fe1-757e-2f01" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="81b5-9f3f-74e9-eb18" name="Faction: Iyanden" hidden="false" targetId="ea95-b026-c30c-948c" primary="false"/>
<categoryLink id="4388-faab-0e6d-ef3a" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="6d6d-e957-48d6-b7fc" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="8dd4-e0be-01a0-f783" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="ca74-9e48-138b-d912" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="5c38-2a97-4def-cb7b" name="Prince Yriel" hidden="false" targetId="4d7f-30fc-b674-da2a" primary="false"/>
<categoryLink id="c020-485c-549d-82a6" name="Autarch" hidden="false" targetId="85fb-e447-f6b6-108e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a367-996c-2cc0-5082" name="The Spear of Twilight" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bd9-ede3-51fb-4315" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65e0-8131-0da0-4c31" type="max"/>
</constraints>
<profiles>
<profile id="ac4a-bd7d-4657-f836" name="The Spear of Twilight" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">3+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">3+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7426-8c4b-59d6-350a" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ffd8-28a3-0207-0f27" name="Illic Nightspear" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="ef92-1878-408a-d941" type="max"/>
</constraints>
<profiles>
<profile id="19fe-f712-9b57-ce76" name="Illic Nightspear" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">10+</characteristic>
</characteristics>
</profile>
<profile id="3352-8d56-21ed-2d0c" name="Bringer of the True Death" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Re-roll hit rolls and wound rolls of 1 for attacks made by this unit that
target Necrons units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="598d-fead-6cd4-2669" name="Deep Strike" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="8fc3-5045-3aa5-00ce" type="profile"/>
<infoLink id="9308-46b4-10fa-f23a" name="Stealth" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="b133-8e04-3e7b-9fd6" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="95cd-d2ab-fe78-503a" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="0ab0-15a0-9d13-ab93" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="61cb-e019-e96d-3cfc" name="Faction: Alaitoc" hidden="false" targetId="22a2-27b2-b2bc-f851" primary="false"/>
<categoryLink id="5000-1d7a-b690-0854" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="d44d-2aae-941b-547a" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="31b6-9660-00b2-e086" name="Illic Nightspear" hidden="false" targetId="7ca2-31c7-3f2b-3d2b" primary="false"/>
<categoryLink id="8f17-2e09-f8e2-7ab4" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="f47d-0e19-0cd3-358f" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="6c30-0188-5c7e-8ce6" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="ccc1-d785-e8e6-cdcf" name="Ranger" hidden="false" targetId="0fba-5905-99af-65b7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="cd24-a705-2124-457f" name="Voidbringer" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a84-416c-6f29-d7cf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b65e-acac-b6b3-f3f7" type="max"/>
</constraints>
<profiles>
<profile id="e8a6-b84a-2d14-37c6" name="Voidbringer" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Heavy</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">48"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">1</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">4+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">6+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Sniper</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="797e-20b5-849f-295d" name="Power Sword" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6578-d009-f464-b9d6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cc9-960b-e20b-68d0" type="max"/>
</constraints>
<profiles>
<profile id="b2bb-6f51-30fa-ee51" name="Power Sword" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">9+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f9c9-cbd2-2c1a-bfbf" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="be2f-3864-670d-7ee8" name="Autarch" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="4f6c-4e13-0134-9219" name="Autarch" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a7a7-8882-bed4-1403" name="Path of Command" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="b615-6db0-50d9-adf4" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1102-d31d-68ac-0da7" name="Autarch" hidden="false" targetId="85fb-e447-f6b6-108e" primary="false"/>
<categoryLink id="44ef-0d86-cb76-2295" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="f9c3-b9b8-e23e-cfa3" name="Faction: <Craftworld>" hidden="false" targetId="c595-6cad-4e25-eb78" primary="false"/>
<categoryLink id="118c-2c64-0f07-8edf" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="1251-6f0d-44d9-a7b9" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="43fd-dde1-1d8f-16bc" name="Faction: Warhost" hidden="false" targetId="426a-d6ae-7bf1-76e7" primary="false"/>
<categoryLink id="b98f-d6ae-fe43-f0c5" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="472b-216b-90f9-8e55" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="ea87-5974-ab4b-ceda" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="7248-78f6-2cc9-48e0" name="Autarch Weapons" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="e6d4-6942-f926-4720" type="selectionEntry"/>
<entryLink id="506d-ec35-d88e-bcb4" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="629f-fd39-b3e9-96f0" name="Avatar of Khaine" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="79aa-f42c-a9e3-741f" type="max"/>
</constraints>
<profiles>
<profile id="7c2a-1f2b-5b17-6a2e" name="Avatar of Khaine" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">2</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">2</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
<profile id="7edc-926b-8834-c516" name="Khaine Awakened" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Morale tests taken for friendly Asuryani units are automatically passed whilst they are within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c09d-b6b4-37f3-c451" name="Ignore Damage (5+)" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="958c-7037-989a-6da0" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="73f9-71c6-a781-ef15" name="Avatar of Khaine" hidden="false" targetId="2e91-aa9f-83cf-7eb8" primary="false"/>
<categoryLink id="4abc-8330-91c4-d1aa" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="e2cf-335c-ff13-2085" name="Daemon" hidden="false" targetId="dfc6-5d64-127f-97a1" primary="false"/>
<categoryLink id="692d-6010-9f52-3232" name="Faction: <Craftworld>" hidden="false" targetId="c595-6cad-4e25-eb78" primary="false"/>
<categoryLink id="643e-b9f8-a732-c783" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="5b3c-bcb4-1f0d-6211" name="Faction: Aspect Warrior" hidden="false" targetId="6b12-0532-6c76-4d6a" primary="false"/>
<categoryLink id="9a19-e732-b380-0864" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="5f52-0a53-cdfe-7adf" name="Heavy" hidden="false" targetId="25c7-3353-2028-72b2" primary="false"/>
<categoryLink id="9a7b-f155-14e8-fcca" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="5685-6024-bb44-8816" name="Monster" hidden="false" targetId="3bbd-6bb7-b214-6dca" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="46c3-e64a-70f4-3822" name="The Wailing Doom" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="447a-7ac6-8e18-2972" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4af3-91d5-783a-da99" type="max"/>
</constraints>
<profiles>
<profile id="dcfc-9149-0cc1-b034" name="The Wailing Doom (Ranged)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Heavy</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">12"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">1</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">9+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">5+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Destroyer</characteristic>
</characteristics>
</profile>
<profile id="9756-5234-1be0-38ab" name="The Wailing Doom (Melee)" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">5+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">5+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Destroyer</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7947-5c5c-b221-9112" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b1e9-150f-2d7c-2053" name="Asurmen" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="44ad-31a6-ec6d-44f3" type="max"/>
</constraints>
<profiles>
<profile id="4407-8481-34ed-0858" name="Asurmen" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">4+</characteristic>
</characteristics>
</profile>
<profile id="2b72-b61a-7400-ca63" name="The Hand of Asuryan" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Add 1 to saving throws made for friendly Aspect Warrior units whilst they are within 6" of this unit. Add a further 1 to saving throws made for friendly Dire Avengers units whilst they are within 6" of this unit. This cannot improve a saving throw roll beyond 4+.</characteristic>
</characteristics>
</profile>
<profile id="4746-a079-0415-8f71" name="Bladestorm" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Re-roll hit rolls of 1 for attacks made by this unit and friendly Dire Avengers units whilst they are within 6" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7ff7-6f33-68f7-3128" name="Asurmen" hidden="false" targetId="3ffb-066a-b606-8e9d" primary="false"/>
<categoryLink id="6a46-3fa2-7e28-ea98" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="b8c2-097e-180d-4c0a" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="5d33-092f-b041-e5ca" name="Faction: Aspect Warrior" hidden="false" targetId="6b12-0532-6c76-4d6a" primary="false"/>
<categoryLink id="d14a-f670-a60a-a232" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="9b35-b9f5-5dde-c49f" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="e172-119c-ee97-80af" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="59b9-e89b-2f0c-469d" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="0ffe-d9b6-a465-f99d" name="Phoenix Lord" hidden="false" targetId="1d1d-2698-50bf-08b2" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="96c1-8065-76f9-b965" name="The Sword of Asur" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea17-a1f4-0874-072a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a51-202f-8f45-2173" type="max"/>
</constraints>
<profiles>
<profile id="452d-6cba-da05-ecf7" name="The Sword of Asur" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">6+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5357-b317-cb94-7565" name="Avenger Shuriken Catapults" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="ab35-1721-b89b-9aeb" type="selectionEntry"/>
<entryLink id="c286-7cf0-842b-7ff6" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3562-c0f4-6625-577d" name="Baharroth" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="7c68-77e5-3c11-2ea6" type="max"/>
</constraints>
<profiles>
<profile id="0e36-f1e2-13da-0324" name="Baharroth" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">14"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">4+</characteristic>
</characteristics>
</profile>
<profile id="07c9-9f90-84f5-8e45" name="Brilliant Sun" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Add 1 to the Leadership characteristic of friendly Aspect Warrior units whilst they are within 6" of this unit. Add a further 1 to the Leadership characteristic of friendly Swooping Hawks units whilst they are within 6" of this unit.</characteristic>
</characteristics>
</profile>
<profile id="7b18-6b68-979e-3de6" name="Blazing Fury" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Re-roll hit rolls of 1 for attacks made by this unit and friendly Swooping Hawks units whilst they are within 6" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="86e1-122a-5dd2-da69" name="Deep Strike" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="8fc3-5045-3aa5-00ce" type="profile"/>
<infoLink id="efa1-4b7d-c1f7-a742" name="Skyleap" publicationId="280a-43bb-426c-aa7c" hidden="false" targetId="ca0c-ced5-1816-2b42" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5c7b-77e6-6290-448a" name="Baharroth" hidden="false" targetId="fcdb-eb9d-5da1-9f9d" primary="false"/>
<categoryLink id="de7c-1c29-6796-0ea2" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="699d-adb3-9815-a2f5" name="Faction: Aeldari" hidden="false" targetId="ce0a-bb90-8dd4-f52d" primary="false"/>
<categoryLink id="c468-c471-57bf-a29e" name="Faction: Aspect Warrior" hidden="false" targetId="6b12-0532-6c76-4d6a" primary="false"/>
<categoryLink id="dcf9-57d1-2298-b31f" name="Faction: Asuryani" hidden="false" targetId="b3cf-7747-c0da-770b" primary="false"/>
<categoryLink id="3d13-14aa-43d6-f1a2" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
<categoryLink id="3af4-2735-d344-a5f5" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="67d8-c9de-a9f9-9dd5" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="8c52-4692-50cb-5407" name="Jump Pack" hidden="false" targetId="cdf9-175a-b31b-44a1" primary="false"/>
<categoryLink id="0fec-5da2-3baa-ef12" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="f7a2-a88d-60ff-cef9" name="Phoenix Lord" hidden="false" targetId="1d1d-2698-50bf-08b2" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b617-a848-528b-2e03" name="Hawk's Talon" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fdc0-1f38-ed44-3892" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="537d-3c37-84a5-bede" type="max"/>
</constraints>
<profiles>
<profile id="22e8-0dad-56ed-7092" name="Hawk's Talon" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Small Arms</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">24"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">9+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">10+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5dce-f741-3022-b255" name="The Shining Blade" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47eb-0611-a4eb-636c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0788-1c82-1e99-b05b" type="max"/>
</constraints>
<profiles>
<profile id="3398-f686-d7f4-c957" name="The Shining Blade" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="16bd-0e65-431e-51b0" name="Commander" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="9.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8cc2-4200-3c18-116b" name="Fuegan" publicationId="280a-43bb-426c-aa7c" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="97b7-789c-3feb-68c8" type="max"/>
</constraints>
<profiles>
<profile id="9bc8-1972-53be-9cba" name="Fuegan" publicationId="280a-43bb-426c-aa7c" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">7"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">4+</characteristic>
</characteristics>
</profile>