forked from BSData/wh40k-10e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tyranids.cat
7952 lines (7936 loc) · 547 KB
/
Tyranids.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="b984-7317-81cc-20f" name="Xenos - Tyranids" revision="60" battleScribeVersion="2.03" library="false" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue" authorName="FitalShell" authorContact="fitalshell">
<categoryEntries>
<categoryEntry name="Synapse" hidden="false" id="4129-a453-686a-d38a"/>
<categoryEntry id="4f10-fe01-4b80-8d6b" name="Winged Hive Tyrant" hidden="false"/>
<categoryEntry id="101a-751-2ee4-c46e" name="Hive Tyrant" hidden="false"/>
<categoryEntry id="dc7d-ba0f-e6e-8599" name="The Swarmlord" hidden="false"/>
<categoryEntry id="f75-65-2121-87b5" name="Broodlord" hidden="false"/>
<categoryEntry id="d5b9-2986-70fe-f755" name="Winged Tyranid Prime" hidden="false"/>
<categoryEntry id="d3d8-a902-1064-9f78" name="Old One Eye" hidden="false"/>
<categoryEntry id="d2fb-227e-99b7-6b4e" name="Tervigon" hidden="false"/>
<categoryEntry id="5c1a-a178-5951-d42" name="Tyranid Warriors with Ranged Bio-weapons" hidden="false"/>
<categoryEntry id="fb3c-c529-4e6c-2251" name="Tyranid Warriors with Melee Bio-weapons" hidden="false"/>
<categoryEntry id="c5eb-961b-14b1-ae50" name="Endless Multitude" hidden="false"/>
<categoryEntry id="b054-c3e8-d71d-1a7e" name="Termagants" hidden="false"/>
<categoryEntry id="2b2c-c30e-6d51-a4cc" name="Hormagaunts" hidden="false"/>
<categoryEntry id="9c11-60f5-4859-9099" name="Gargoyles" hidden="false"/>
<categoryEntry id="0a83-07b1-7b88-6a46" name="Toxicrene" hidden="false"/>
<categoryEntry id="9655-9e08-b63f-c29e" name="Tyrant Guard" hidden="false"/>
<categoryEntry id="2917-4769-ded1-a00c" name="Neurotyrant" hidden="false"/>
<categoryEntry name="Lictor" hidden="false" id="1ff-bd00-eca8-bff7"/>
<categoryEntry name="Deathleaper" hidden="false" id="6467-972f-c95c-d414"/>
<categoryEntry name="Malceptor" hidden="false" id="a132-e812-3392-f9ef"/>
<categoryEntry name="Pyrovores" hidden="false" id="7420-596c-147a-5799"/>
<categoryEntry name="Haruspex" hidden="false" id="aee4-5cb5-329b-bb3e"/>
<categoryEntry name="Venomthropes" hidden="false" id="c84f-d7e4-d853-88f3"/>
<categoryEntry name="Von Ryan's Leapers" hidden="false" id="cdd2-3183-20ad-6126"/>
<categoryEntry name="Neurogaunts" hidden="false" id="50be-2da9-b98b-2a55"/>
<categoryEntry name="Zoanthropes" hidden="false" id="7214-3728-6fad-2681"/>
<categoryEntry name="Ripper Swarm" hidden="false" id="472-dea9-70ef-a8e4"/>
<categoryEntry name="Parasite of Mortrex" hidden="false" id="6646-3625-4f52-f47c"/>
<categoryEntry name="Mawloc" hidden="false" id="c729-fe17-f963-16b2"/>
<categoryEntry name="Trygon" hidden="false" id="c3a7-fdae-a434-6eff"/>
<categoryEntry name="Mucolid Spores" hidden="false" id="fda1-7891-2955-69e0"/>
<categoryEntry name="Spore Mines" hidden="false" id="51f8-b488-5f21-c390"/>
<categoryEntry name="Exocrine" hidden="false" id="d52d-1fd6-4cbf-cba1"/>
<categoryEntry name="Biovore" hidden="false" id="cf46-6271-340e-cf05"/>
<categoryEntry name="Carnifexes" hidden="false" id="2070-d263-505a-48cc"/>
<categoryEntry name="Screamer-killer" hidden="false" id="d5ed-53bc-4ad3-85ba"/>
<categoryEntry name="Hive Guard" hidden="false" id="156f-46c9-de79-247"/>
<categoryEntry name="Tyrannofex" hidden="false" id="a97-e5ad-de9a-d5c6"/>
<categoryEntry name="Tyrannocyte" hidden="false" id="6438-b712-55f4-c84c"/>
<categoryEntry name="Hive Crone" hidden="false" id="875d-4ae3-cc07-44c0"/>
<categoryEntry name="Harpy" hidden="false" id="cc05-aeb3-b2d6-3732"/>
<categoryEntry name="Sporocyst" hidden="false" id="37-442e-b3d4-98aa"/>
<categoryEntry name="Psychophage" hidden="false" id="ad6-e3cd-6f94-3f77"/>
<categoryEntry name="Barbgaunts" hidden="false" id="a80e-ff32-72b3-9ba3"/>
<categoryEntry name="Barbed Hierodule" hidden="false" id="4c30-3dbf-b2b7-3a7"/>
<categoryEntry name="Scythed Hierodule" hidden="false" id="88c0-f898-8500-5639"/>
<categoryEntry name="Harridan" hidden="false" id="7dcc-519b-45b-526b"/>
<categoryEntry name="Hierophant" hidden="false" id="c34e-980-ae84-3ff7"/>
<categoryEntry name="Genestealers" hidden="false" id="64ce-d746-b778-34d8"/>
<categoryEntry name="Raveners" hidden="false" id="1785-c8af-b343-a1a6"/>
<categoryEntry name="Dimachaeron" hidden="false" id="1da8-4ebe-f196-6f46"/>
<categoryEntry name="Sky-slasher Swarms" hidden="false" id="617e-a830-65fe-7b64"/>
<categoryEntry name="Malanthrope" hidden="false" id="a634-9edf-3a8-b3f1"/>
<categoryEntry name="Vanguard Invader" hidden="false" id="5ff0-d52d-e2b8-9de"/>
<categoryEntry name="Neurolictor" hidden="false" id="de12-e6b6-16c1-47b0"/>
<categoryEntry name="Norn Emissary" hidden="false" id="50ee-d05c-da9c-eda2"/>
<categoryEntry name="Norn Assimilator" hidden="false" id="2982-bf74-9aa7-a7a7"/>
<categoryEntry name="Harvester" hidden="false" id="8258-a58e-7cf0-a2c3"/>
<categoryEntry name="Terror of Vardenghast" hidden="false" id="7edf-be7-243d-218e"/>
</categoryEntries>
<entryLinks>
<entryLink id="706e-86ff-ae9f-c65f" name="Winged Hive Tyrant" hidden="false" collective="false" import="true" targetId="fa68-fcb9-38c-cd0f" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d160-2a74-7d96-5e9f" name="Hive Tyrant" hidden="false" collective="false" import="true" targetId="3e96-8098-3401-77af" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6738-f64a-bbeb-f2da" name="Tervigon" hidden="false" collective="false" import="true" targetId="cd6d-87b3-125a-f372" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="fece-50fa-e019-b6c2" name="The Swarmlord" hidden="false" collective="false" import="true" targetId="13f7-1a3-eff-7393" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b0ad-ecab-6292-ab67" name="Broodlord" hidden="false" collective="false" import="true" targetId="b86a-b38a-380c-483d" type="selectionEntry"/>
<entryLink id="9e71-1043-e2b3-edf9" name="Old One Eye" hidden="false" collective="false" import="true" targetId="9184-9ab6-9238-f558" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d950-10bf-1754-d11e" name="Tyranid Warriors with Ranged Bio-Weapons" hidden="false" collective="false" import="true" targetId="a125-b6fb-2945-56a" type="selectionEntry"/>
<entryLink id="a365-c488-23d5-a5e3" name="Tyranid Warriors with Melee Bio-Weapons" hidden="false" collective="false" import="true" targetId="5815-871c-9260-287a" type="selectionEntry"/>
<entryLink id="16f9-9c76-2e0e-dc49" name="Termagants" hidden="false" collective="false" import="true" targetId="359c-db2c-681a-8d62" type="selectionEntry"/>
<entryLink id="210a-cb5f-b323-6cbb" name="Hormagaunts" hidden="false" collective="false" import="true" targetId="f15b-9f9c-9bf0-8160" type="selectionEntry"/>
<entryLink id="e9a0-f638-7793-94c8" name="Gargoyles" hidden="false" collective="false" import="true" targetId="9ce8-7a63-15c3-0347" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="abfa-6d02-8cf0-0e7e" name="Toxicrene" hidden="false" collective="false" import="true" targetId="30d0-521c-1d45-f57b" type="selectionEntry">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3f5a-9872-f34d-05e3" name="Tyrant Guard" hidden="false" collective="false" import="true" targetId="1645-5407-92c8-1441" type="selectionEntry"/>
<entryLink import="true" name="Winged Tyranid Prime" hidden="false" type="selectionEntry" id="58d8-21cb-ed36-94b6" targetId="507d-5ea4-6ef1-bf66"/>
<entryLink import="true" name="Lictor" hidden="false" type="selectionEntry" id="deb6-2fc2-a1ad-cde1" targetId="da44-72c9-7a27-48aa"/>
<entryLink import="true" name="Deathleaper" hidden="false" type="selectionEntry" id="8b6a-3050-501a-db63" targetId="bc36-92fe-ecc6-58b3"/>
<entryLink import="true" name="Maleceptor" hidden="false" type="selectionEntry" id="5f55-69a5-636c-c8c1" targetId="2c2d-a2f9-61a8-a6c6">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Neurotyrant" hidden="false" type="selectionEntry" id="1478-2392-ea1-45cd" targetId="1ae1-ed96-5100-eda5">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Pyrovores" hidden="false" type="selectionEntry" id="5d80-6ec1-93d4-b2fc" targetId="d2c6-bd0b-3205-3319">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Haruspex" hidden="false" type="selectionEntry" id="fd1-a697-de5-e1f9" targetId="6249-358f-27d7-ef60">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Venomthropes" hidden="false" type="selectionEntry" id="b25f-20ce-a25a-1642" targetId="b563-c6d3-d0e5-1b78"/>
<entryLink import="true" name="Von Ryan's Leapers" hidden="false" type="selectionEntry" id="25ba-6e30-d587-a57e" targetId="9bd8-ac8c-2d3b-79f6"/>
<entryLink import="true" name="Neurogaunts" hidden="false" type="selectionEntry" id="adb8-1b04-9c1b-84e4" targetId="8ccc-3f27-7e4e-da81"/>
<entryLink import="true" name="Zoanthropes" hidden="false" type="selectionEntry" id="fe7f-7bff-cc64-ef7" targetId="b622-a22-a04f-6303"/>
<entryLink import="true" name="Ripper Swarms" hidden="false" type="selectionEntry" id="cbe1-73ce-de38-219e" targetId="1de2-b57b-aa0a-1f0d"/>
<entryLink import="true" name="Parasite of Mortrex" hidden="false" type="selectionEntry" id="b027-cb31-1000-7231" targetId="d213-efd8-a2b4-42d2">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Mawloc" hidden="false" type="selectionEntry" id="1893-956f-b717-6cc8" targetId="2bbb-d811-15f7-1a81">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Trygon" hidden="false" type="selectionEntry" id="50be-fcba-8fb6-5e13" targetId="56db-d7c-b349-677f">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Spore Mines" hidden="false" type="selectionEntry" id="ad62-c34f-470f-a75b" targetId="c590-436d-4fd-ef26">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Exocrine" hidden="false" type="selectionEntry" id="53a9-7a08-b3dd-1547" targetId="bbfd-5b01-5bd3-a28b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Mucolid Spores" hidden="false" type="selectionEntry" id="fdd6-9c02-ae6b-32c1" targetId="707a-9de8-f75b-41c5">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Biovores" hidden="false" type="selectionEntry" id="b6ef-5582-5c2c-c917" targetId="3f2c-85ec-d83c-4a2f">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Carnifexes" hidden="false" type="selectionEntry" id="f925-323-cb9f-9de6" targetId="9efd-5564-f0f5-21ea">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Screamer-killer" hidden="false" type="selectionEntry" id="f664-67d5-9014-79b7" targetId="8e53-d4a-a69f-e71d">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Hive Guard" hidden="false" type="selectionEntry" id="e7dc-9c6e-e267-c3de" targetId="ac7a-2560-c083-45b8">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Tyrannofex" hidden="false" type="selectionEntry" id="7548-d2b3-b0e0-595b" targetId="1705-379b-330d-36d4">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Tyrannocyte" hidden="false" type="selectionEntry" id="968d-6764-71d1-55d" targetId="fada-677a-f6a4-cd12">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Harpy" hidden="false" type="selectionEntry" id="2a52-f6b1-586a-a4b6" targetId="c679-b06a-750b-e7f7">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Hive Crone" hidden="false" type="selectionEntry" id="7907-f011-d28f-ec0f" targetId="93aa-dd13-de9d-402b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Sporocyst" hidden="false" type="selectionEntry" id="b0f2-86e1-24d3-bd1e" targetId="2cdd-3bf1-55e0-7641">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Psychophage" hidden="false" type="selectionEntry" id="bb17-5e67-f80d-1479" targetId="b6ac-f091-a018-dab2">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Barbgaunts" hidden="false" type="selectionEntry" id="2022-800a-5f81-59c3" targetId="6de-ccee-11b4-be3e">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Detachment" hidden="false" type="selectionEntry" id="1f79-3dd4-507b-c50" targetId="bac9-a18e-5a8a-48d1"/>
<entryLink import="true" name="Barbed Hierodule [Legends]" hidden="false" type="selectionEntry" id="c08c-3f82-eca5-bc5b" targetId="afd0-a0ca-68c3-d912">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Scythed Hierodule [Legends]" hidden="false" type="selectionEntry" id="ca37-6c54-394c-2803" targetId="218c-639e-22e0-59ce">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Harridan" hidden="false" type="selectionEntry" id="c849-ed0f-bc51-c66a" targetId="9b5c-3b5a-1f80-9a74">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Hierophant" hidden="false" type="selectionEntry" id="c6bf-2379-d8c9-2ddf" targetId="fbc0-3a2b-1d7d-23d9">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Genestealers" hidden="false" type="selectionEntry" id="b2fd-5fa7-ea48-c851" targetId="853e-48b8-4cc5-3704"/>
<entryLink import="true" name="Raveners" hidden="false" type="selectionEntry" id="908f-17f2-34bf-89b4" targetId="3f5-f7d6-1ce8-e6b9"/>
<entryLink import="true" name="Dimachaeron [Legends]" hidden="false" type="selectionEntry" id="49a7-35fe-b205-afe6" targetId="78ca-3743-c254-4404">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Sky-slasher Swarms [Legends]" hidden="false" type="selectionEntry" id="fc02-c2df-a3fd-a869" targetId="f46f-9d2b-1f97-aaf6">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Malanthrope [Legends]" hidden="false" type="selectionEntry" id="1913-3800-bc84-cbff" targetId="c17f-f55f-a3cb-530b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Show/Hide Options" hidden="false" type="selectionEntry" id="8f9e-ad26-3fe8-f3a3" targetId="e8ef-836a-a9d1-901d"/>
<entryLink import="true" name="Neurolictor" hidden="false" type="selectionEntry" id="2de5-fe7f-6b98-5156" targetId="642f-9302-4fdc-ab68">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Norn Emissary" hidden="false" type="selectionEntry" id="7f4b-9c76-78fe-6dc0" targetId="5720-2873-8c2c-edc3">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Terror of Vardenghast" hidden="false" type="selectionEntry" id="5009-2ca9-6545-a138" targetId="cc4a-75ac-22a8-77a7">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Norn Assimilator" hidden="false" type="selectionEntry" id="28a-e2b8-c42e-3dea" targetId="6a9b-8e2f-edac-fa2d">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<rules>
<rule id="86aa-437f-260b-5cad" name="Synapse" hidden="false">
<description>If your Army Faction is TYRANIDS, while a TYRANIDS unit from your army is within 6" of one or more friendly SYNAPSE models, that TYRANIDS unit is said to be within Synapse Range of that model and of your army. While a Tyranids unit from your army is within Synapse Range of your army:
■ Each time that unit takes a Battle-shock test, take that test on 3D6 instead of 2D6.
■ Each time a model in that unit makes a melee attack, add 1 to the Strength characteristic of that attack.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="fa68-fcb9-38c-cd0f" name="Winged Hive Tyrant" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="3e50-e28-471-cfe8" type="max"/>
</constraints>
<profiles>
<profile id="b3b6-408d-6916-d204" name="Winged Hive Tyrant" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile id="fee7-90a8-24a2-79ef" name="Paroxysm (Psychic)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, you can select one enemy unit within 12" of and visible to this model and roll one D6: on a 1, this Psyker suffers D3 mortal wounds; on a 2+, until the end of the phase, subtract 1 from the Attacks characteristic of weapons equipped by models in that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4868-8ba6-a021-5567" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D3"/>
</modifiers>
</infoLink>
<infoLink id="b12e-7b6d-4af8-4757" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink id="f648-e374-1db3-509c" name="Invulnerable Save" hidden="false" targetId="a2fa-ebfd-7b32-9a75" type="profile"/>
<infoLink name="Shadow in the Warp" hidden="false" type="rule" id="d052-102a-fd71-ef99" targetId="395b-a159-b293-27aa"/>
<infoLink name="Synapse" hidden="false" type="rule" id="52e5-4e0d-4d0e-572c" targetId="86aa-437f-260b-5cad"/>
<infoLink name="Will of the Hive Mind" hidden="false" type="profile" id="edb4-b975-82dc-c551" targetId="13-98c1-d481-eb95"/>
</infoLinks>
<categoryLinks>
<categoryLink id="843-f94e-913a-e630" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="978a-317d-5f0-93e1" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="2b6c-f19e-9742-72e1" name="Psyker" hidden="false" targetId="13bf-2bee-3ae0-b414" primary="false"/>
<categoryLink id="1bd8-98cd-a897-bf30" name="Winged Hive Tyrant" hidden="false" targetId="4f10-fe01-4b80-8d6b" primary="false"/>
<categoryLink id="e7f6-47ce-a120-989f" name="Faction: Tyranids" hidden="false" targetId="d1d8-6ae0-1be7-e9e" primary="false"/>
<categoryLink id="b781-f296-1e6d-9d8e" name="Great Devourer" hidden="false" targetId="7850-cc5a-c191-b80d" primary="false"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="59a1-9f52-66b7-2a61" primary="false" name="Fly"/>
<categoryLink targetId="4129-a453-686a-d38a" id="ad71-d73a-bf7c-b6a8" primary="false" name="Synapse"/>
<categoryLink targetId="5ff0-d52d-e2b8-9de" id="be7-36e1-711c-7bf3" primary="false" name="Vanguard Invader"/>
<categoryLink targetId="101a-751-2ee4-c46e" id="d995-1d79-eff6-ae59" primary="false" name="Hive Tyrant"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8bc7-da89-cba2-31d4" name="Winged Hive Tyrant Equipment" hidden="false" collective="false" import="true" defaultSelectionEntryId="777b-826-ebd3-6a1a">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c3b3-d152-a2d8-9b1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed83-7d2e-a97e-5121" type="max"/>
</constraints>
<profiles>
<profile id="1b78-1168-ce51-fe52" name="Tyrant Talons" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="2019-583b-ca88-546c" name="Monstrous Scything Talons" hidden="false" collective="false" import="true" targetId="d0cf-a582-5166-fbba" type="selectionEntry"/>
<entryLink id="79d7-2c8d-a55e-af25" name="Stranglethorn Cannon" hidden="false" collective="false" import="true" targetId="b9ec-cb81-44f6-49" type="selectionEntry">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1ca6-3b0a-4f4-dcc5" includeChildSelections="true"/>
</constraints>
<modifiers>
<modifier type="set" value="0" field="1ca6-3b0a-4f4-dcc5">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="parent" childId="1504-4096-b992-65c3" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="46a7-e00d-e612-2a6d" name="Heavy Venom Cannon" hidden="false" collective="false" import="true" targetId="1504-4096-b992-65c3" type="selectionEntry"/>
<entryLink id="777b-826-ebd3-6a1a" name="Monstrous Bonesword and Lash Whip" hidden="false" collective="false" import="true" targetId="effb-d65d-a1b1-51d6" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4fc9-cd8c-b426-f2d4" name="Warlord" hidden="false" collective="false" import="true" targetId="ceab-62d9-31bf-7c61" type="selectionEntry"/>
<entryLink id="e797-cbb5-dc66-bd25" name="Enhancements" hidden="false" collective="false" import="true" targetId="fa5b-f646-b960-a8d3" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="210"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Tyrant talons" hidden="false" id="f65e-95a4-be9d-282f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8ae6-7d40-24df-d86d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9ffd-7ed6-dceb-b72e"/>
</constraints>
<profiles>
<profile name="Tyrant talons" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="84d0-f0bf-85c5-2266">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry id="3e96-8098-3401-77af" name="Hive Tyrant" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="e6ea-68d7-9d41-3f3b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f729-3654-edaa-c166" name="Invulnerable Save" hidden="false" targetId="a2fa-ebfd-7b32-9a75" type="profile"/>
<infoLink id="c1b-3112-2cfe-dac" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D3"/>
</modifiers>
</infoLink>
<infoLink name="Shadow in the Warp" hidden="false" type="rule" id="fda-4228-90fc-4631" targetId="395b-a159-b293-27aa"/>
<infoLink name="Synapse" hidden="false" type="rule" id="91fc-ae63-809d-8c5a" targetId="86aa-437f-260b-5cad"/>
<infoLink name="Will of the Hive Mind" hidden="false" type="profile" id="66ae-5330-e14a-6f07" targetId="13-98c1-d481-eb95"/>
</infoLinks>
<categoryLinks>
<categoryLink id="121b-5c62-2542-1433" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="a030-8569-1f29-a456" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="387a-6862-5473-786b" name="Psyker" hidden="false" targetId="13bf-2bee-3ae0-b414" primary="false"/>
<categoryLink id="4f23-7aa7-a48e-89ea" name="Hive Tyrant" hidden="false" targetId="101a-751-2ee4-c46e" primary="false"/>
<categoryLink id="76b2-1939-4f4-ff2f" name="Faction: Tyranids" hidden="false" targetId="d1d8-6ae0-1be7-e9e" primary="false"/>
<categoryLink id="b56-f3c7-b29b-c6e6" name="Great Devourer" hidden="false" targetId="7850-cc5a-c191-b80d" primary="false"/>
<categoryLink targetId="4129-a453-686a-d38a" id="41ab-adbb-53ea-d07" primary="false" name="Synapse"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c1a4-2d78-4a06-852e" name="Hive Tyrant Equipment" hidden="false" collective="false" import="true">
<selectionEntryGroups>
<selectionEntryGroup id="2cd2-d174-61dc-7b97" name="Monstrous Bonesword and Lash Whip Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="5889-181a-3b21-9b7e">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e478-c71b-bcff-245f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b58c-a12e-d22c-a975" type="min"/>
</constraints>
<entryLinks>
<entryLink id="5889-181a-3b21-9b7e" name="Monstrous Bonesword and Lash Whip" hidden="false" collective="false" import="true" targetId="effb-d65d-a1b1-51d6" type="selectionEntry"/>
<entryLink id="1435-6320-71bc-dcfd" name="Heavy Venom Cannon" hidden="false" collective="false" import="true" targetId="1504-4096-b992-65c3" type="selectionEntry"/>
<entryLink id="ebc6-5d4f-5ec5-b222" name="Stranglethorn Cannon" hidden="false" collective="false" import="true" targetId="b9ec-cb81-44f6-49" type="selectionEntry"/>
<entryLink id="f717-3d3-4448-5cfc" name="Monstrous Scything Talons" hidden="false" collective="false" import="true" targetId="d0cf-a582-5166-fbba" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f99e-ae4e-fbce-84b9" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6f57-d5fd-f3ed-ae3" name="Monstrous Scything Talons Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="5fe8-e07-2888-42bc">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d36c-bd8-bbc9-ffc0" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee5d-591-12d-9bae" type="min"/>
</constraints>
<entryLinks>
<entryLink id="5fe8-e07-2888-42bc" name="Monstrous Scything Talons" hidden="false" collective="false" import="true" targetId="d0cf-a582-5166-fbba" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8011-7f8f-e852-5ded" type="max"/>
</constraints>
</entryLink>
<entryLink id="bb4e-c104-1a32-ad5d" name="Stranglethorn Cannon" hidden="false" collective="false" import="true" targetId="b9ec-cb81-44f6-49" type="selectionEntry"/>
<entryLink id="c352-60ee-2742-dba2" name="Heavy Venom Cannon" hidden="false" collective="false" import="true" targetId="1504-4096-b992-65c3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="3e96-8098-3401-77af" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8b2f-e77b-ce26-5403" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="a2d3-5a18-5a14-26ac" name="Warlord" hidden="false" collective="false" import="true" targetId="ceab-62d9-31bf-7c61" type="selectionEntry"/>
<entryLink id="ecf0-4643-c6b-6160" name="Enhancements" hidden="false" collective="false" import="true" targetId="fa5b-f646-b960-a8d3" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="235"/>
</costs>
<infoGroups>
<infoGroup name="Leader" hidden="false" id="ceb3-52af-6e6d-7b1b">
<profiles>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c13f-316a-bbdf-74fd">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
- TYRANT GUARD</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="ca22-f570-1167-42b4" targetId="b4dd-3e1f-41cb-218f"/>
</infoLinks>
</infoGroup>
</infoGroups>
<profiles>
<profile name="Hive Tyrant" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="a867-9c4b-3535-ae49">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">10</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile name="Onslaught (Aura, Psychic)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d038-2f3d-1c4a-a15">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly TYRANIDS unit is within 6" of this model, ranged weapons equipped by models in that unit have the [ASSAULT] and [LETHAL HITS] abilities.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="effb-d65d-a1b1-51d6" name="Monstrous Bonesword and Lash Whip" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6be2-7b2e-9716-518b" type="max"/>
</constraints>
<profiles>
<profile id="8ad2-55e5-a52f-2ca0" name="Monstrous bonesword and lash whip" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">9</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6196-36e6-881a-7178" name="Twin-linked" hidden="false" targetId="cf93-ad4d-2f08-a79d" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1504-4096-b992-65c3" name="Heavy Venom Cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2757-6b0f-d7eb-bb6a"/>
</constraints>
<profiles>
<profile id="953d-482e-624b-2465" name="Heavy Venom Cannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">9</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a401-8242-8687-ef8f" name="Blast" hidden="false" targetId="6c1f-1cf7-ff25-c99e" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<modifiers>
<modifier type="set" value="0" field="2757-6b0f-d7eb-bb6a">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="parent" childId="b9ec-cb81-44f6-49" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="b9ec-cb81-44f6-49" name="Stranglethorn Cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3c31-e2f4-bcd4-e9e5" type="max"/>
</constraints>
<profiles>
<profile id="3803-1fe1-edde-12e1" name="Stranglethorn Cannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">7</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8def-543c-9b61-3f4a" name="Blast" hidden="false" targetId="6c1f-1cf7-ff25-c99e" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<modifiers>
<modifier type="set" value="0" field="3c31-e2f4-bcd4-e9e5">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="parent" childId="1504-4096-b992-65c3" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="d0cf-a582-5166-fbba" name="Monstrous Scything Talons" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="54a6-4f13-d99b-583c" name="Monstrous Scything Talons" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Extra Attacks</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3b0-6790-786-73ba" name="Extra Attacks" hidden="false" targetId="115b-79dc-f723-d761" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ceab-62d9-31bf-7c61" name="Warlord" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a9c-a415-9934-68cc" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6e88-7ea5-92d6-b492" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="db48-6e99-34f8-d883" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="463c-5eaf-3d99-5917" name="Warlord" hidden="false" targetId="5c0e-4c31-d51b-e470" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd6d-87b3-125a-f372" name="Tervigon" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="d829-64e7-666a-a5dd" type="max"/>
</constraints>
<profiles>
<profile id="e21e-8589-b121-374f" name="Tervigon" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">11</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">16</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">5</characteristic>
</characteristics>
</profile>
<profile id="3ae7-6f89-23de-3cca" name="Spawn Termagants" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Command phase, you can select one friendly TERMAGANTS unit within 6" of this model and return up to D3+3 destroyed TERMAGANT models to that unit. A TERMAGANTS unit cannot be selected for this ability more than once per phase.</characteristic>
</characteristics>
</profile>
<profile id="7697-fdc6-4658-3f1c" name="Brood Progenitor (Aura, Psychic)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly TERMAGANTS unit is within 6" of this model, ranged weapons equipped by models in that unit have the [LETHAL HITS] ability.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9ae4-fb97-1652-8ad2" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D6"/>
</modifiers>
</infoLink>
<infoLink name="Shadow in the Warp" hidden="false" type="rule" id="7300-fb6b-da38-8f07" targetId="395b-a159-b293-27aa"/>
<infoLink name="Synapse" hidden="false" type="rule" id="1b95-16c8-e173-49d" targetId="86aa-437f-260b-5cad"/>
<infoLink name="Damaged: 1-5 Wounds Remaining" hidden="false" type="profile" id="b482-7059-4d45-669e" targetId="384f-e5ff-31a2-1295"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8b67-4a16-3736-df3" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink id="830e-4c0-344b-a5a6" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="4945-bac7-b273-c15f" name="Psyker" hidden="false" targetId="13bf-2bee-3ae0-b414" primary="false"/>
<categoryLink id="d0d9-854-a2d2-c3f7" name="Great Devourer" hidden="false" targetId="7850-cc5a-c191-b80d" primary="false"/>
<categoryLink id="aa1-a502-7d9e-2a5e" name="Tervigon" hidden="false" targetId="d2fb-227e-99b7-6b4e" primary="false"/>
<categoryLink id="faea-1f7-edb8-4cc3" name="Faction: Tyranids" hidden="false" targetId="d1d8-6ae0-1be7-e9e" primary="false"/>
<categoryLink targetId="4129-a453-686a-d38a" id="65ae-8235-26f1-5c9d" primary="false" name="Synapse"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="80c2-fb4d-2e3b-8ee2" name="Massive Scything Talons Options" hidden="false" collective="false" import="true" defaultSelectionEntryId="4f0d-da49-a7d-5e4b">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d69c-4cce-448b-cf3f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5686-2ec4-e36d-bc04" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4f0d-da49-a7d-5e4b" name="Massive Scything Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c6f-fea7-cbd5-e311" type="max"/>
</constraints>
<profiles>
<profile id="6869-7a05-273e-f815" name="➤ Massive Scything Talons - Strike" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">9</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D6</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
<profile id="de26-2863-a6b-1aa0" name="➤ Massive Scything Talons - Sweep" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">8</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a397-baf3-34f6-420f" name="Massive Crushing Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db28-f15c-2602-1552" type="max"/>
</constraints>
<profiles>
<profile id="84ce-3a2b-e1b1-aae" name="Massive Crushing Claws" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">12</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D6+1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink targetId="5e02-c4ce-b7e6-d59" id="3ca7-ce2a-18b6-82d3" type="selectionEntry" name="Stinger Salvoes" hidden="false" collective="false"/>
<entryLink id="cbbf-26c0-e748-930d" name="Enhancements" hidden="false" collective="false" import="true" targetId="fa5b-f646-b960-a8d3" type="selectionEntryGroup"/>
<entryLink id="c8f2-2473-63a9-2a2" name="Warlord" hidden="false" collective="false" import="true" targetId="ceab-62d9-31bf-7c61" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="175"/>
</costs>
</selectionEntry>
<selectionEntry id="13f7-1a3-eff-7393" name="The Swarmlord" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2826-bf0-331c-71e3" type="max"/>
</constraints>
<profiles>
<profile id="c06a-9ba8-68a2-17d0" name="The Swarmlord" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">10</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile id="ba65-9542-51dd-8200" name="Hive Commander" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your Command phase, if this model is on the battlefield, you gain 1CP</characteristic>
</characteristics>
</profile>
<profile id="4b18-f7de-620b-3b73" name="Malign Presence" hidden="true" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, after your opponent uses a Stratagem, if this model is your Warlord and is on the battlefield, it can use this ability. If it does, until the end of the battle, increase that Stratagem’s cost to your opponent by 1CP.</characteristic>
</characteristics>
</profile>
<profile id="b3b4-4208-4997-9506" name="Domination of the Hive Mind (Aura)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly TYRANIDS unit is within 9" of this model, that unit is within your army’s Synapse Range.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="245c-6475-1960-2a0d" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D3"/>
</modifiers>
</infoLink>
<infoLink id="03e9-1e26-bc4b-42a5" name="Invulnerable Save" hidden="false" targetId="a2fa-ebfd-7b32-9a75" type="profile"/>
<infoLink name="Shadow in the Warp" hidden="false" type="rule" id="da26-aec0-ce49-9117" targetId="395b-a159-b293-27aa"/>
<infoLink name="Synapse" hidden="false" type="rule" id="d127-3b0d-807d-155" targetId="86aa-437f-260b-5cad"/>
<infoLink name="Lord of Deceit (Aura)" id="66fb-740a-84ad-e491" hidden="false" type="profile" targetId="8332-466b-a51f-63ab"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f4dd-e30f-8467-8223" name="Epic Hero" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="6cbb-f4cd-e72e-ca07" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="641f-ed9b-52ed-7ac2" name="Faction: Tyranids" hidden="false" targetId="d1d8-6ae0-1be7-e9e" primary="false"/>
<categoryLink id="84a0-31b3-d591-4a46" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="c8ed-9841-781d-96c3" name="The Swarmlord" hidden="false" targetId="dc7d-ba0f-e6e-8599" primary="false"/>
<categoryLink id="8e72-7a5f-96c5-9cde" name="Great Devourer" hidden="false" targetId="7850-cc5a-c191-b80d" primary="false"/>
<categoryLink targetId="4129-a453-686a-d38a" id="56e8-3dae-49e4-1ba2" primary="false" name="Synapse"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="bbfa-1387-3460-814d" primary="false" name="Psyker"/>
<categoryLink targetId="101a-751-2ee4-c46e" id="267-6f72-f4f6-e381" primary="false" name="Hive Tyrant"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a30-4bad-cef5-5e55" name="Synaptic Pulse" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="82f5-c0af-4ccc-489" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d7f9-ea20-c05f-531b" type="max"/>
</constraints>
<profiles>
<profile id="8053-6497-fe27-f886" name="Synaptic Pulse" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Psychic, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1864-e041-31bb-e9d8" name="Torrent" hidden="false" targetId="5edf-d619-23e0-9b56" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a17-4fb0-c0f5-e22" name="Bone Sabres" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="35a0-7865-d067-d2ca" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f00d-b161-f1ce-c07f" type="max"/>
</constraints>
<profiles>
<profile id="805b-1a65-6cb6-c4ed" name="Bone Sabres" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">8</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">9</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a49f-21ea-3e47-7254" name="Twin-linked" hidden="false" targetId="cf93-ad4d-2f08-a79d" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>