forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tyranids.cat
11449 lines (11448 loc) · 906 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 id="7150-5917-ae80-68c5" name="Tyranids" revision="81" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@GenWilhelm" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="185" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="7150-5917-pubN65537" name="Codex: Tyranids"/>
</publications>
<profileTypes>
<profileType id="ecce-8736-aed9-0d2e" name="Stat Damage - S & A">
<characteristicTypes>
<characteristicType id="490c-1562-0502-ef6e" name="Remaining W"/>
<characteristicType id="b619-f2d7-2354-c9da" name="Strength"/>
<characteristicType id="b9cd-19c3-85b1-3963" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="f37a-cabe-fb51-984f" name="Stat Damage - WS, S & A">
<characteristicTypes>
<characteristicType id="6726-2cb5-38d4-fe61" name="Remaining W"/>
<characteristicType id="3eb2-45db-6911-98d2" name="WS"/>
<characteristicType id="e296-16a0-14bb-818f" name="Strength"/>
<characteristicType id="0ef7-2f27-4040-a6e1" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="e396-53ae-c9e0-c11e" name="Stat Damage - BS, S & A">
<characteristicTypes>
<characteristicType id="8bf4-ca65-4139-ab79" name="Remaining W"/>
<characteristicType id="64d2-8017-da67-e3bb" name="BS"/>
<characteristicType id="cbd1-f6bd-0b27-2af8" name="Strength"/>
<characteristicType id="98cd-b3e0-6c9f-b358" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="9de5-d2fe-da97-6d0e" name="Stat Damage - M, WS & S">
<characteristicTypes>
<characteristicType id="2625-4c00-7dba-9ae9" name="Remaining W"/>
<characteristicType id="eabf-1d8b-9350-1dae" name="Movement"/>
<characteristicType id="36d7-b901-c734-e11d" name="WS"/>
<characteristicType id="41b1-0828-d595-8df2" name="Strength"/>
</characteristicTypes>
</profileType>
<profileType id="2931-0d83-bea3-6634" name="Stat Damage - WS, BS & A">
<characteristicTypes>
<characteristicType id="6309-3e37-0827-cc64" name="Remaining W"/>
<characteristicType id="1c5e-313e-94ec-ff6e" name="WS"/>
<characteristicType id="7596-6a24-519d-a423" name="BS"/>
<characteristicType id="25b4-cf74-ff1b-a6c4" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="1d35-9cf8-74f1-32c4" name="Stat Damage - M, WS & BS">
<characteristicTypes>
<characteristicType id="b727-51df-e04a-19d7" name="Remaining W"/>
<characteristicType id="d77f-9965-665b-2d01" name="Movement"/>
<characteristicType id="a29c-7b92-a163-2f4f" name="WS"/>
<characteristicType id="dad3-29bb-36d1-1a83" name="BS"/>
</characteristicTypes>
</profileType>
<profileType id="30f5-815e-20ac-1e14" name="Stat Damage - WS, BS & S">
<characteristicTypes>
<characteristicType id="3353-569e-a5cc-c95a" name="Remaining W"/>
<characteristicType id="f70a-cfa9-a853-2e1b" name="WS"/>
<characteristicType id="0090-8a64-4224-f9f4" name="BS"/>
<characteristicType id="6df1-07d7-4884-ceb1" name="Strength"/>
</characteristicTypes>
</profileType>
<profileType id="85fd-6b7a-8424-ccb2" name="Stat Damage - WS, S & PO">
<characteristicTypes>
<characteristicType id="d74b-219b-46b5-da7f" name="Remaining W"/>
<characteristicType id="376d-7e38-b42e-ca50" name="WS"/>
<characteristicType id="a175-06e7-1123-e5b0" name="S"/>
<characteristicType id="0a20-6cf8-c284-78d7" name="Psychic Overload"/>
</characteristicTypes>
</profileType>
<profileType id="52c8-7349-4ac2-cef2" name="Stat Damage - M, S & A">
<characteristicTypes>
<characteristicType id="1a36-2b68-6e1d-4ecb" name="Remaining W"/>
<characteristicType id="fe5a-59e4-1117-703b" name="Movement"/>
<characteristicType id="2385-0863-398c-7eb6" name="Strength"/>
<characteristicType id="67e3-9763-92a9-3894" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="af93-555b-e64f-e4b1" name="Stat Damage - M, WS & A">
<characteristicTypes>
<characteristicType id="fb9a-3540-30b4-afa0" name="Remaining W"/>
<characteristicType id="2614-0c76-13f1-806d" name="Movement"/>
<characteristicType id="d23d-4de2-f2fd-396a" name="WS"/>
<characteristicType id="5443-03b2-0e8e-6ef8" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="bc4a-228a-5761-6770" name="Stat Damage - M, BS & A">
<characteristicTypes>
<characteristicType id="55fe-e4b1-1ff9-7459" name="Remaining W"/>
<characteristicType id="2784-37d9-f3ae-d98e" name="Movement"/>
<characteristicType id="f47b-11e0-61ef-9126" name="BS"/>
<characteristicType id="a3af-9fee-a89e-025f" name="Attacks"/>
</characteristicTypes>
</profileType>
<profileType id="597c-6571-0e33-dcbe" name="The Ymgarl Factor">
<characteristicTypes>
<characteristicType id="17d1-6099-341f-fd3d" name="Result"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="a367-fb78-5192-96eb" name="Faction: Tyranids" hidden="false"/>
<categoryEntry id="dc2c-fdd5-528b-e9ad" name="Faction: <Hive Fleet>" hidden="false"/>
<categoryEntry id="9c32-eba0-ea9e-1e0d" name="Hive Tyrant" hidden="false"/>
<categoryEntry id="d482-6830-b5c2-bb33" name="Carnifex" hidden="false"/>
<categoryEntry id="df7c-355d-38a6-261f" name="Genestealer" hidden="false"/>
<categoryEntry id="cc90-4ec4-47e7-6aaf" name="Lictor" hidden="false"/>
<categoryEntry id="7b29-b270-99fe-4de7" name="Synapse" hidden="false"/>
<categoryEntry id="e73a-a897-c34f-6206" name="Zoanthrope" hidden="false"/>
<categoryEntry id="07db-05a2-b062-16c6" name="Ravener" hidden="false"/>
<categoryEntry id="6e8a-f026-6760-4c1c" name="Spore" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="41ae-9f3f-4de4-ad5b" name="Gargoyles" hidden="false" collective="false" import="true" targetId="21fc-05c5-6fd6-2d0a" type="selectionEntry"/>
<entryLink id="7a59-25ca-cc43-c9c0" name="Broodlord" hidden="false" collective="false" import="true" targetId="7d3f-defb-b3ba-0c65" type="selectionEntry"/>
<entryLink id="7889-f64b-d183-b3f4" name="Carnifexes" hidden="false" collective="false" import="true" targetId="96c9-795a-8498-07e6" type="selectionEntry"/>
<entryLink id="0c79-1e6d-3d27-3af2" name="Exocrine" hidden="false" collective="false" import="true" targetId="a886-3ba1-c505-1200" type="selectionEntry"/>
<entryLink id="ba4a-0459-81d7-3d4c" name="Biovores" hidden="false" collective="false" import="true" targetId="d957-0f84-bce5-1298" type="selectionEntry"/>
<entryLink id="d3b9-f331-3afc-777b" name="Genestealers" hidden="false" collective="false" import="true" targetId="593d-594c-e42d-02f5" type="selectionEntry"/>
<entryLink id="bac6-0947-3c3f-fb31" name="Haruspex" hidden="false" collective="false" import="true" targetId="a753-2d35-9437-02d3" type="selectionEntry"/>
<entryLink id="6cd2-f9e5-a9dc-ee83" name="Harpy" hidden="false" collective="false" import="true" targetId="ee16-7977-eb9b-88e7" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e82-5890-d2e2-602c" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6ad8-b30c-17b3-24de" name="Hive Crone" hidden="false" collective="false" import="true" targetId="7c4f-3eb2-a044-15a8" type="selectionEntry">
<categoryLinks>
<categoryLink id="a9cd-6103-f8d7-72a0" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9de1-4bf0-ebed-9728" name="Hive Guard" hidden="false" collective="false" import="true" targetId="c941-0aa1-f972-429c" type="selectionEntry"/>
<entryLink id="5db5-e555-d047-b4bc" name="Hive Tyrant" hidden="false" collective="false" import="true" targetId="add7-3535-a4cd-9ba5" type="selectionEntry"/>
<entryLink id="9aac-9844-80d2-5a24" name="Hormagaunts" hidden="false" collective="false" import="true" targetId="0843-c3c5-0340-2a53" type="selectionEntry"/>
<entryLink id="3b6c-4cbd-05b6-6761" name="Lictor" hidden="false" collective="false" import="true" targetId="a5e2-a0a5-57f0-27b6" type="selectionEntry"/>
<entryLink id="1399-daca-8214-fb2f" name="Mucolid Spores" hidden="false" collective="false" import="true" targetId="9773-03e8-68e5-8ea1" type="selectionEntry"/>
<entryLink id="7965-0c0a-9605-535c" name="Maleceptor" hidden="false" collective="false" import="true" targetId="9801-59fc-296b-6b85" type="selectionEntry"/>
<entryLink id="c00b-b397-7cc0-cee7" name="Mawloc" hidden="false" collective="false" import="true" targetId="92ec-64fb-e5a7-65c1" type="selectionEntry"/>
<entryLink id="2caa-a988-a841-0892" name="Pyrovores" hidden="false" collective="false" import="true" targetId="cb6d-b756-8436-074e" type="selectionEntry"/>
<entryLink id="ca8e-eae3-00d7-67f7" name="Spore Mines" hidden="false" collective="false" import="true" targetId="0a0b-c7ca-2804-4f90" type="selectionEntry"/>
<entryLink id="a58a-0e9b-fcb7-309e" name="Raveners" hidden="false" collective="false" import="true" targetId="eda6-2686-5153-3ac8" type="selectionEntry"/>
<entryLink id="d787-2e6d-7228-27cb" name="Ripper Swarm" hidden="false" collective="false" import="true" targetId="04a7-33a3-6396-b371" type="selectionEntry"/>
<entryLink id="5385-87f8-aaa2-a63c" name="Sky-slasher Swarms" hidden="false" collective="false" import="true" targetId="d7ba-bc0a-efeb-36f3" type="selectionEntry"/>
<entryLink id="298c-6bd8-9d7d-fb46" name="Sporocyst" hidden="false" collective="false" import="true" targetId="4fe0-a701-3f44-b703" type="selectionEntry"/>
<entryLink id="d850-00d4-a2fd-cfb6" name="Termagants" hidden="false" collective="false" import="true" targetId="2e2b-aedb-e20b-9c8b" type="selectionEntry"/>
<entryLink id="2f34-dcaf-2024-c917" name="Tervigon" hidden="false" collective="false" import="true" targetId="0507-f341-5267-7cc5" type="selectionEntry"/>
<entryLink id="3ac1-aa02-8760-74fc" name="Toxicrene" hidden="false" collective="false" import="true" targetId="cdd9-7d89-df58-3760" type="selectionEntry"/>
<entryLink id="297a-7787-6c6b-3dee" name="Trygon" hidden="false" collective="false" import="true" targetId="f628-1bb2-0620-3beb" type="selectionEntry"/>
<entryLink id="5870-35da-ab76-32dc" name="Trygon Prime" hidden="false" collective="false" import="true" targetId="1864-f6fc-3f51-0c34" type="selectionEntry"/>
<entryLink id="e653-a641-544a-52e0" name="Tyranid Shrikes" hidden="true" collective="false" import="true" targetId="0435-abe8-4398-eff8" type="selectionEntry"/>
<entryLink id="3e9a-45c3-8e47-aa04" name="Tyranid Warriors" hidden="false" collective="false" import="true" targetId="8ffc-a0f3-766e-8ae4" type="selectionEntry"/>
<entryLink id="01c1-2946-aa51-d10e" name="Tyrannofex" hidden="false" collective="false" import="true" targetId="f535-4e40-2b57-2bf7" type="selectionEntry"/>
<entryLink id="dd09-362b-8987-d307" name="Tyrannocyte" hidden="false" collective="false" import="true" targetId="0daf-d491-1f32-1322" type="selectionEntry"/>
<entryLink id="85a8-887f-b830-5a35" name="Tyrant Guard" hidden="false" collective="false" import="true" targetId="66df-c9ba-5ea8-e524" type="selectionEntry"/>
<entryLink id="01b2-45b5-9669-0e27" name="Venomthropes" hidden="false" collective="false" import="true" targetId="90b8-1695-18c9-1512" type="selectionEntry"/>
<entryLink id="090e-2089-1990-29d4" name="Zoanthropes" hidden="false" collective="false" import="true" targetId="c1b3-01e5-3175-3107" type="selectionEntry"/>
<entryLink id="0126-8728-f2d1-cfae" name="Tyranid Prime" hidden="false" collective="false" import="true" targetId="d254-4969-7e67-32a9" type="selectionEntry"/>
<entryLink id="edae-964e-79cf-2b23" name="Deathleaper" hidden="false" collective="false" import="true" targetId="0e09-72a3-df36-ebd8" type="selectionEntry"/>
<entryLink id="b83c-b207-3554-1608" name="Old One Eye" hidden="false" collective="false" import="true" targetId="d83b-acf3-2677-40e1" type="selectionEntry"/>
<entryLink id="727c-a757-0b3c-c35e" name="The Red Terror" hidden="false" collective="false" import="true" targetId="6bad-120f-afa0-1745" type="selectionEntry"/>
<entryLink id="0cb8-4ea5-eae3-70d5" name="The Swarmlord" hidden="false" collective="false" import="true" targetId="5a85-738f-f138-2640" type="selectionEntry"/>
<entryLink id="25b8-444c-19e0-4f4d" name="Discipline: Hive Mind" hidden="false" collective="false" import="true" targetId="b2e2-50ef-bfed-5f84" type="selectionEntry">
<categoryLinks>
<categoryLink id="4739-0f1d-bd18-3126" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7c79-3bee-090a-e576" name="Meiotic Spores" hidden="false" collective="false" import="true" targetId="dec0-7f71-801a-6d37" type="selectionEntry"/>
<entryLink id="45cf-05f7-7969-a52c" name="Stone Crusher Carnifex Brood" hidden="false" collective="false" import="true" targetId="5c6d-f382-b731-f5ca" type="selectionEntry"/>
<entryLink id="de12-9bf9-c22b-4e97" name="Malanthropes" hidden="false" collective="false" import="true" targetId="fb84-bb9f-5abe-be3f" type="selectionEntry"/>
<entryLink id="c5f6-b2a2-b2da-1093" name="Dimachaeron" hidden="false" collective="false" import="true" targetId="31b7-cfad-2be9-9997" type="selectionEntry"/>
<entryLink id="25c7-7db7-08e9-daba" name="Barbed Hierodule" hidden="false" collective="false" import="true" targetId="35c3-a8c2-fe10-325f" type="selectionEntry"/>
<entryLink id="b9bd-607d-05bd-2b98" name="Harridan" hidden="false" collective="false" import="true" targetId="d1cb-8964-788a-7e66" type="selectionEntry"/>
<entryLink id="bfb8-0156-28d4-764e" name="Hierophant" hidden="false" collective="false" import="true" targetId="8d05-bafd-ea07-c4af" type="selectionEntry"/>
<entryLink id="aebb-4ffd-6f5f-83f3" name="Scythed Hierodule" hidden="false" collective="false" import="true" targetId="633b-45d1-420d-61ba" type="selectionEntry"/>
<entryLink id="7e0d-7b58-8b37-b6eb" name="Screamer-killers" hidden="false" collective="false" import="true" targetId="797b-c7fe-679a-7117" type="selectionEntry">
<categoryLinks>
<categoryLink id="6d7b-1073-46a4-c531" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="eb51-1e71-bce8-ff4f" name="Neurothrope" hidden="false" collective="false" import="true" targetId="cd9f-f30b-27c3-2869" type="selectionEntry"/>
<entryLink id="9e04-2019-313e-0259" name="Hive Fleet" hidden="false" collective="false" import="true" targetId="1e74-63b9-9478-0dc8" type="selectionEntry">
<categoryLinks>
<categoryLink id="fcd2-9956-207c-9614" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="da6d-33ae-040a-ca30" name="Thornbacks" hidden="false" collective="false" import="true" targetId="6f2a-1546-df78-9521" type="selectionEntry">
<categoryLinks>
<categoryLink id="b973-6c58-8a04-dc37" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f8d5-d671-bc0d-d14d" name="Stratagem: Bounty of the Hive Fleet" hidden="false" collective="false" import="true" targetId="6b0e-e4eb-91ab-6e4c" type="selectionEntry">
<categoryLinks>
<categoryLink id="220e-012b-759f-c848" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="27d1-78fe-b763-9744" name="Extensions of the Hive Mind" hidden="false" collective="false" import="true" targetId="dc31-a954-25ed-be9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="6f11-577f-139a-5f8f" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="228b-bfc8-704d-60db" name="Stratagem: Progeny of the Hive" hidden="false" collective="false" import="true" targetId="d4b2-47ac-a417-6b68" type="selectionEntry">
<categoryLinks>
<categoryLink id="8913-1229-88aa-4f0d" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="d957-0f84-bce5-1298" name="Biovores" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="2">
<conditions>
<condition field="selections" scope="d957-0f84-bce5-1298" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="2">
<conditions>
<condition field="selections" scope="d957-0f84-bce5-1298" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="bb88-befd-7283-7387" name="Biovores" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Infantry, Biovores</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="70fc-ef2b-db93-f698" name="Instinctive Behaviour" hidden="false" targetId="b830-920a-231b-073d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5289-8d26-a19e-7b47" name="New CategoryLink" hidden="false" targetId="dc2c-fdd5-528b-e9ad" primary="false"/>
<categoryLink id="0e50-8d64-dcc4-1a53" name="New CategoryLink" hidden="false" targetId="a367-fb78-5192-96eb" primary="false"/>
<categoryLink id="e30e-c4fc-9b5e-e14b" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="3c29-8b5f-160e-5b74" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3b18-3102-34b0-465f" name="Biovore" 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="f2c0-4774-4911-95b0" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="933c-edee-7f79-b2ca" type="max"/>
</constraints>
<profiles>
<profile id="e0c6-7c38-33ec-b989" name="Biovore" publicationId="7150-5917-pubN65537" page="101" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">5</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="5af9-d99a-5a8f-a998" name="Spore Mine Launcher" hidden="false" collective="false" import="true" targetId="f2f0-5874-f1e1-1dd5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb7d-2127-7f4c-5101" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="da1c-abc6-de98-05c9" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7a46-5c79-0346-b323" name="Show Spore Mine Rules" hidden="false" collective="false" import="true" targetId="7cd5-1124-4d20-3675" type="selectionEntry"/>
<entryLink id="8f3a-ca73-0d51-7b48" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="2e12-4290-dc8a-2273" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="1081-23e8-059c-5aba" name="Adaptive Physiology" hidden="false" collective="false" import="true" targetId="ed23-c139-601b-d1f2" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7d3f-defb-b3ba-0c65" name="Broodlord" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="cd62-0fc6-55ac-1c2e" name="Broodlord" publicationId="7150-5917-pubN65537" page="84" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">-</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">6</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="02f7-33ad-2ee6-743e" name="Broodlord" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">1</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">1</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite + 1 Hive Mind</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b">-</characteristic>
</characteristics>
</profile>
<profile id="16de-8e90-9574-508b" name="Brood Telepathy" publicationId="7150-5917-pubN65537" page="84" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can add 1 to hit rolls in the Fight phase for <HIVE FLEET> Genestealer units within 6" of and friendly <HIVE FLEET> Broodlords.</characteristic>
</characteristics>
</profile>
<profile id="aad7-01b8-2160-d974" name="Broodlord" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Character, Infantry, Genestealer, Psyker, Synapse, Broodlord</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="121a-3331-506d-ce2d" name="Synapse" hidden="false" targetId="1f08-bd8f-43a3-ce1b" type="profile"/>
<infoLink id="5e0e-02ed-67f8-7871" name="Shadow in the Warp" hidden="false" targetId="f587-afe6-7bbe-4eac" type="profile"/>
<infoLink id="bbdb-7769-7cd6-41b4" name="Lightning Reflexes" hidden="false" targetId="91dd-d2c6-4db5-3bf1" type="profile"/>
<infoLink id="d736-0079-8740-657f" name="Swift and Deadly" hidden="false" targetId="bc40-384b-8bf8-f27e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ca9a-faec-967e-f2e5" name="New CategoryLink" hidden="false" targetId="dc2c-fdd5-528b-e9ad" primary="false"/>
<categoryLink id="3182-9196-8754-5e61" name="New CategoryLink" hidden="false" targetId="a367-fb78-5192-96eb" primary="false"/>
<categoryLink id="f676-d938-8ac9-91de" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="fcca-784e-b2ca-9478" name="New CategoryLink" hidden="false" targetId="df7c-355d-38a6-261f" primary="false"/>
<categoryLink id="9aae-bb23-8507-6bdd" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="b292-78f4-13c3-4629" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="7026-7319-8b81-4048" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="9b17-7ccb-f2f5-5ba3" name="New CategoryLink" hidden="false" targetId="7b29-b270-99fe-4de7" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="93a4-878d-9ff8-88a2" name="Monstrous Rending Claws" hidden="false" collective="false" import="true" targetId="ad36-e646-f921-335f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb11-f362-f745-1799" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b716-1507-6ef7-f012" type="max"/>
</constraints>
</entryLink>
<entryLink id="91f4-1f30-a288-c31d" name="Hive Mind Discipline" hidden="false" collective="false" import="true" targetId="c2f7-de12-e2e1-bb33" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f7a9-2250-7918-4665" type="max"/>
</constraints>
</entryLink>
<entryLink id="3c88-86f9-51b4-6e81" name="Bio-artefacts" hidden="false" collective="false" import="true" targetId="6bd6-d28a-87ce-355e" type="selectionEntryGroup"/>
<entryLink id="7d0e-6175-7bf1-6ad7" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="25a0-b547-6079-03a1" type="selectionEntryGroup"/>
<entryLink id="7a27-e46a-7b82-d92f" name="Warlord" hidden="false" collective="false" import="true" targetId="c832-2f4e-ee51-f481" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5e60-fe83-2601-0798" type="max"/>
</constraints>
</entryLink>
<entryLink id="2330-8b6f-f898-6270" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="ad70-02a6-8ca8-9246" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="959c-16e2-64f3-c223" name="Adaptive Physiology" hidden="false" collective="false" import="true" targetId="ed23-c139-601b-d1f2" type="selectionEntry"/>
<entryLink id="718e-0057-6475-3030" name="Power: Smite" hidden="false" collective="false" import="true" targetId="de0e-92ba-1682-b5a0" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="125.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="96c9-795a-8498-07e6" name="Carnifexes" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="6">
<conditions>
<condition field="selections" scope="96c9-795a-8498-07e6" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="6">
<conditions>
<condition field="selections" scope="96c9-795a-8498-07e6" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c8ce-d400-0d10-fd29" name="Carnifexes" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Monster, Carnifexes</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1419-7d60-6a9c-2689" name="Instinctive Behaviour" hidden="false" targetId="b830-920a-231b-073d" type="profile"/>
<infoLink id="06a3-dfe8-a3f8-8c93" name="Monstrous Brood" hidden="false" targetId="f6a4-e2dd-1a97-c642" type="profile"/>
<infoLink id="a664-9d26-5a7c-742e" name="Living Battering Ram" hidden="false" targetId="24a7-441a-0231-b07b" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a43a-27d8-ea2f-8f56" name="New CategoryLink" hidden="false" targetId="dc2c-fdd5-528b-e9ad" primary="false"/>
<categoryLink id="99f0-f235-de45-4ac9" name="New CategoryLink" hidden="false" targetId="a367-fb78-5192-96eb" primary="false"/>
<categoryLink id="72c7-a9c5-9b60-8440" name="New CategoryLink" hidden="false" targetId="d482-6830-b5c2-bb33" primary="false"/>
<categoryLink id="9605-5089-7391-4cac" name="New CategoryLink" hidden="false" targetId="3b77-decb-d468-6bcc" primary="false"/>
<categoryLink id="064d-0ca6-816f-38ee" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ea64-43e5-1c8c-968c" name="Carnifex" 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="5f54-4476-302e-0d47" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="185a-41dd-8974-ae58" type="max"/>
</constraints>
<profiles>
<profile id="a36b-ea29-0ae5-fed4" name="Carnifex" publicationId="7150-5917-pubN65537" page="102" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="381b-eb28-74c3-df5f" value="3+">
<conditions>
<condition field="selections" scope="ea64-43e5-1c8c-968c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fd3c-0d6f-c0b5-3e03" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">8</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="5240-c9ae-f53f-01a5" name="Tail Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="421e-668d-75bb-867a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5c87-6d2a-82c4-1593" name="Thresher Scythe" hidden="false" collective="false" import="true" targetId="c3f4-9aab-7e7f-2f46" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
<entryLink id="2345-fc74-a989-cd09" name="Bone Mace" hidden="false" collective="false" import="true" targetId="d6a4-47c4-d958-e3d4" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="15d0-a1e4-5f68-4cb4" name="Arm Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="ddc8-2bd6-560c-0f67" value="1">
<conditions>
<condition field="selections" scope="ea64-43e5-1c8c-968c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="47c8-9111-24e8-70f7" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="9d8c-40b8-33c6-7297" value="1">
<conditions>
<condition field="selections" scope="ea64-43e5-1c8c-968c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="47c8-9111-24e8-70f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ddc8-2bd6-560c-0f67" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9d8c-40b8-33c6-7297" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="47c8-9111-24e8-70f7" name="2x Monstrous Scything Talons" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="ecca-bbee-c34b-a43c" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ecca-bbee-c34b-a43c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="103d-a3ba-49bc-4dd6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="121d-79c0-2bf0-a765" name="Monstrous Scything Talons" hidden="false" targetId="50eb-e431-8604-7297" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="8ce6-1125-1cbc-960e" name="Monstrous Scything Talons" hidden="false" collective="false" import="true" targetId="086e-c796-ac9a-a766" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f50b-bda8-ecff-c845" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="a0c5-e85b-d846-85b3" name="Monstrous Bio-cannons" hidden="false" collective="false" import="true" targetId="b4ba-418e-b4d8-e76b" type="selectionEntryGroup"/>
<entryLink id="05ef-1cd1-3666-ca05" name="Monstrous Crushing Claws" hidden="false" collective="false" import="true" targetId="e641-8fab-45bd-d886" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="58fa-e64e-e1af-7f5d" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="597e-4de8-6a6e-8c4d" name="Carapace Morph" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f3a9-596d-be8f-d140" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6b77-3fe6-1e57-779a" name="Spore Cysts" hidden="false" collective="false" import="true" targetId="6c79-005f-7fc6-aceb" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="5cb0-aa22-62dc-1714" name="Spine Banks" hidden="false" collective="false" import="true" targetId="8a16-fcf0-8e16-083b" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2a58-c818-54df-70e3" name="Head Morph" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9329-3433-1a47-3017" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4ae7-e2fd-bae7-9a70" name="Bio-plasma" hidden="false" collective="false" import="true" targetId="377e-aeca-721c-5858" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="f1a6-0f05-c5dd-fac4" name="Monstrous Acid Maw" hidden="false" collective="false" import="true" targetId="b774-7145-5f59-9e9b" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="06a1-803c-7ea5-a359" name="Tusks" hidden="false" collective="false" import="true" targetId="6661-b7b0-872d-d0dc" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="fbf8-a2f6-f5e3-304d" name="Enhanced Senses" hidden="false" collective="false" import="true" targetId="fd3c-0d6f-c0b5-3e03" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="51fb-9c36-9ba7-bb4a" name="Toxin Sacs" hidden="false" collective="false" import="true" targetId="0ad6-5e03-5112-d194" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d3ea-3f82-d453-c945" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
<entryLink id="5eab-000f-f15d-190f" name="Adrenal Glands" hidden="false" collective="false" import="true" targetId="9837-af87-3cfd-a48c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="050e-7b73-0231-9bd0" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
<entryLink id="2938-c4fd-9d80-a696" name="Chitin Thorns" hidden="false" collective="false" import="true" targetId="0af1-5d39-8da1-53c0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0da2-5dae-c635-2605" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
<entryLink id="4203-45a1-ad9a-9951" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="b1dc-6124-1bcf-131e" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="9664-124b-3947-7e08" name="Adaptive Physiology" hidden="false" collective="false" import="true" targetId="ed23-c139-601b-d1f2" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a886-3ba1-c505-1200" name="Exocrine" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9f26-7669-789f-de1e" name="Exocrine" publicationId="7150-5917-pubN65537" page="100" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">12</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="4efd-944b-5bcf-e501" name="Exocrine (1)" hidden="false" typeId="2931-0d83-bea3-6634" typeName="Stat Damage - WS, BS & A">
<characteristics>
<characteristic name="Remaining W" typeId="6309-3e37-0827-cc64">7-12+</characteristic>
<characteristic name="WS" typeId="1c5e-313e-94ec-ff6e">4+</characteristic>
<characteristic name="BS" typeId="7596-6a24-519d-a423">4+</characteristic>
<characteristic name="Attacks" typeId="25b4-cf74-ff1b-a6c4">3</characteristic>
</characteristics>
</profile>
<profile id="611f-066b-655a-14a4" name="Exocrine (2)" hidden="false" typeId="2931-0d83-bea3-6634" typeName="Stat Damage - WS, BS & A">
<characteristics>
<characteristic name="Remaining W" typeId="6309-3e37-0827-cc64">4-6</characteristic>
<characteristic name="WS" typeId="1c5e-313e-94ec-ff6e">4+</characteristic>
<characteristic name="BS" typeId="7596-6a24-519d-a423">5+</characteristic>
<characteristic name="Attacks" typeId="25b4-cf74-ff1b-a6c4">D3</characteristic>
</characteristics>
</profile>
<profile id="6ca5-dd8c-9b7d-649c" name="Exocrine (3)" hidden="false" typeId="2931-0d83-bea3-6634" typeName="Stat Damage - WS, BS & A">
<characteristics>
<characteristic name="Remaining W" typeId="6309-3e37-0827-cc64">1-3</characteristic>
<characteristic name="WS" typeId="1c5e-313e-94ec-ff6e">5+</characteristic>
<characteristic name="BS" typeId="7596-6a24-519d-a423">5+</characteristic>
<characteristic name="Attacks" typeId="25b4-cf74-ff1b-a6c4">1</characteristic>
</characteristics>
</profile>
<profile id="747a-05a9-a399-6e59" name="Symbiotic Targeting" publicationId="7150-5917-pubN65537" page="100" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model did not move in its Movement phase, you can add 1 to its hit rolls in the following Shooting phase. If you do so, it cannot charge in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="9205-7102-f657-b657" name="Exocrine" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Monster, Exocrine</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0432-c142-5df4-81ad" name="Instinctive Behaviour" hidden="false" targetId="b830-920a-231b-073d" type="profile"/>
<infoLink id="4fb1-457f-6db5-ff61" name="Death Throes" hidden="false" targetId="6515-364e-86c7-5f9f" type="profile"/>
<infoLink id="4f9f-41ba-cc1b-0062" name="Weapon Beast" hidden="false" targetId="fe93-768f-dcee-d94c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0316-aa04-569a-9ce2" name="New CategoryLink" hidden="false" targetId="dc2c-fdd5-528b-e9ad" primary="false"/>
<categoryLink id="7f5d-9d62-4d01-baef" name="New CategoryLink" hidden="false" targetId="a367-fb78-5192-96eb" primary="false"/>
<categoryLink id="a8a9-e83d-2595-5d23" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="dc14-1326-eed8-0393" name="New CategoryLink" hidden="false" targetId="3b77-decb-d468-6bcc" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f82e-bd5c-1116-e04b" name="Bio-plasmic Cannon" hidden="false" collective="false" import="true" targetId="c045-e3db-568a-7ed0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d2e9-75e3-101f-c50c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d94a-4440-d781-aef4" type="max"/>
</constraints>
</entryLink>
<entryLink id="9b86-ddd6-d1bb-c104" name="Powerful Limbs" hidden="false" collective="false" import="true" targetId="178d-3d9c-81ba-e703" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a742-aeec-9693-3bf7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e71a-65ed-9b09-0864" type="max"/>
</constraints>
</entryLink>
<entryLink id="23eb-2e98-d108-57c3" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="07b6-6567-a73f-fd9c" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="f342-c494-5269-0ab2" name="Adaptive Physiology" hidden="false" collective="false" import="true" targetId="ed23-c139-601b-d1f2" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="9.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="21fc-05c5-6fd6-2d0a" name="Gargoyles" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="21fc-05c5-6fd6-2d0a" value="11.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="21fc-05c5-6fd6-2d0a" value="21.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="f823-426f-658c-e322" name="Gargoyles" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Infantry, Fly, Gargoyles</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="da0e-87c1-64ea-a2d1" name="Instinctive Behaviour" hidden="false" targetId="b830-920a-231b-073d" type="profile"/>
<infoLink id="5b05-b639-9448-41da" name="Hail of Living Ammunition" hidden="false" targetId="d1fe-35b9-7009-518f" type="profile"/>
<infoLink id="d8eb-b3cf-6749-57d4" name="Swooping Assault" hidden="false" targetId="d863-0718-4b4f-1b72" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7f25-7c0b-43b2-c3c0" name="New CategoryLink" hidden="false" targetId="dc2c-fdd5-528b-e9ad" primary="false"/>
<categoryLink id="42bf-fdc6-a5ed-6bd3" name="New CategoryLink" hidden="false" targetId="a367-fb78-5192-96eb" primary="false"/>
<categoryLink id="2237-3bed-3f59-75ef" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="e0b1-0c4f-f243-49c7" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="94cf-a23f-4eae-2547" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0837-d880-49c7-01cf" name="Gargoyle" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81d4-cc66-fce5-31e9" type="min"/>
<constraint field="selections" scope="parent" value="30.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e88-01e5-a5a6-b3ca" type="max"/>
</constraints>
<profiles>
<profile id="aa0e-9a99-922f-4ea2" name="Gargoyle" publicationId="7150-5917-pubN65537" page="97" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">5</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">6+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="e7ea-d772-4f8e-04cc" name="Fleshborer" hidden="false" collective="false" import="true" targetId="b888-86b7-cb7a-866f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9335-fe96-dded-121a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6430-7043-edb5-2d3b" type="max"/>
</constraints>
</entryLink>
<entryLink id="0884-1db2-1d5d-bd6f" name="Blinding Venom" hidden="false" collective="false" import="true" targetId="6d44-8ab7-93ea-0f51" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9531-d3aa-cfae-fe50" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c19a-bb5c-5585-9e7a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="7.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d00f-8deb-6d88-d190" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="a631-a7fb-27eb-90a0" name="Battle Honours (Chapter Approved 2018)" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="913d-c9a2-0a36-532f" name="Adaptive Physiology" hidden="false" collective="false" import="true" targetId="ed23-c139-601b-d1f2" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="593d-594c-e42d-02f5" name="Genestealers" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="4">
<conditions>
<condition field="selections" scope="593d-594c-e42d-02f5" value="11.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="4">
<conditions>
<condition field="selections" scope="593d-594c-e42d-02f5" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="4">
<conditions>
<condition field="selections" scope="593d-594c-e42d-02f5" value="16.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="dce4-764a-b3bd-8e71" name="Flurry of Claws" publicationId="7150-5917-pubN65537" page="89" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Genestealers have 4 Attacks instead of 3 whilst their unit has 10 or more models.</characteristic>
</characteristics>
</profile>
<profile id="7927-fe05-4c32-200e" name="Genestealers" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Infantry, Genestealers</characteristic>
</characteristics>
</profile>
<profile id="91fd-1b0d-e845-d4c8" name="Infestation" publicationId="7150-5917-pubN65537" page="89" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If your army includes any units of Genestealers, you can place up to four infestation nodes anywhere in your deployment zone when your army deploys. You can then set up any Genestealers lurking, instead of placing them on the battlefield. If an enemy model is ever within 9" of an infestation node, the node is destroyed and removed from the battlefield. Whilst there are any friendly infestation nodes on the battlefield, this unit can stop lurking: at the end of your Movement phase, set it up wholly within 6" of a friendly infestation node. That infestation node is then removed from the battlefield. If this unit is still lurking when the last friendly infestation node is removed, the unit is destroyed.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0472-7b0f-db60-fc6b" name="Lightning Reflexes" hidden="false" targetId="91dd-d2c6-4db5-3bf1" type="profile"/>
<infoLink id="954a-6ac1-cf6b-b91d" name="Swift and Deadly" hidden="false" targetId="bc40-384b-8bf8-f27e" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="593d-594c-e42d-02f5" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="29c0-c68e-5bdc-9b99" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="4447-3c6e-b750-b8ad" name="New CategoryLink" hidden="false" targetId="dc2c-fdd5-528b-e9ad" primary="false"/>
<categoryLink id="074b-d965-5fb1-7ec8" name="New CategoryLink" hidden="false" targetId="a367-fb78-5192-96eb" primary="false"/>
<categoryLink id="00d9-8ae1-fdf0-323c" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="87f6-0bca-afc3-ddc1" name="New CategoryLink" hidden="false" targetId="df7c-355d-38a6-261f" primary="false"/>
<categoryLink id="ae77-f796-459f-28df" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c4f3-a07b-eb36-3bf0" name="Genestealer" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a840-d12e-6434-77c8" type="min"/>
<constraint field="selections" scope="parent" value="20.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63a1-1317-001b-7867" type="max"/>
</constraints>
<profiles>
<profile id="1df9-ea04-1c1f-6323" name="Genestealer" publicationId="7150-5917-pubN65537" page="89" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="c0df-df94-abd7-e8d3" value="4+">
<conditions>
<condition field="selections" scope="593d-594c-e42d-02f5" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="29c0-c68e-5bdc-9b99" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="0d3c-f071-7354-6e85" name="Rending Claws" hidden="false" collective="false" import="true" targetId="ff3e-68ce-4f21-4c0b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ecc6-4fe1-336d-16e8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1a80-961b-4154-6064" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="13.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="f3b0-c623-214d-dbd8" name="Head Morphs" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="b41d-ab0c-5178-68df" name="Acid Maw" hidden="false" collective="false" import="true" targetId="c1e2-406a-e7c9-749c" type="selectionEntry">
<modifiers>
<modifier type="increment" field="b8dd-84db-37d1-098e" value="1.0">
<repeats>
<repeat field="selections" scope="593d-594c-e42d-02f5" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d60a-f45c-69c7-1566" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b8dd-84db-37d1-098e" type="max"/>
</constraints>
</entryLink>
<entryLink id="a66b-53d0-b4a9-fa79" name="Flesh Hooks" hidden="false" collective="false" import="true" targetId="e8ab-6677-781d-991b" type="selectionEntry">
<modifiers>
<modifier type="increment" field="c53a-3d8e-d5ad-cb5f" value="1.0">
<repeats>
<repeat field="selections" scope="593d-594c-e42d-02f5" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2c9f-7b67-4ae9-2815" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c53a-3d8e-d5ad-cb5f" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="3.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="8169-8c75-51bf-6f4c" name="Scything Talons" hidden="false" collective="false" import="true" targetId="2b06-87d5-7b1e-8d82" type="selectionEntry">
<modifiers>
<modifier type="increment" field="220a-40c0-6a94-685e" value="1.0">
<repeats>
<repeat field="selections" scope="593d-594c-e42d-02f5" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c4f3-a07b-eb36-3bf0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="20.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0262-0d13-9ecc-6e65" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="220a-40c0-6a94-685e" type="max"/>
</constraints>
</entryLink>
<entryLink id="ec28-dba2-9c2c-cbff" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="565e-6b8c-7251-929c" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="6ce0-abbe-6104-c0dd" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="be2f-e109-f1b8-843b" name="Adaptive Physiology" hidden="false" collective="false" import="true" targetId="ed23-c139-601b-d1f2" type="selectionEntry"/>
<entryLink id="db1b-cc4b-51bc-536a" name="Extended Carapace" hidden="false" collective="false" import="true" targetId="29c0-c68e-5bdc-9b99" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="2.0">
<repeats>
<repeat field="selections" scope="593d-594c-e42d-02f5" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9f89-2434-f2d0-3332" type="max"/>
</constraints>
</entryLink>
<entryLink id="3cbb-7fc3-1f27-1633" name="Toxin Sacs" hidden="false" collective="false" import="true" targetId="0ad6-5e03-5112-d194" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="5.0">
<repeats>
<repeat field="selections" scope="593d-594c-e42d-02f5" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2f68-61c9-b365-228b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee16-7977-eb9b-88e7" name="Harpy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="ea83-bc08-3150-d0b9" name="Harpy" publicationId="7150-5917-pubN65537" page="109" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">6</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">12</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="a0ab-f262-8ce0-3056" name="Harpy (1)" hidden="false" typeId="1d35-9cf8-74f1-32c4" typeName="Stat Damage - M, WS & BS">
<characteristics>
<characteristic name="Remaining W" typeId="b727-51df-e04a-19d7">7-12+</characteristic>
<characteristic name="Movement" typeId="d77f-9965-665b-2d01">30"</characteristic>
<characteristic name="WS" typeId="a29c-7b92-a163-2f4f">4+</characteristic>
<characteristic name="BS" typeId="dad3-29bb-36d1-1a83">4+</characteristic>
</characteristics>
</profile>
<profile id="3d75-a42b-1de9-2eeb" name="Harpy (2)" hidden="false" typeId="1d35-9cf8-74f1-32c4" typeName="Stat Damage - M, WS & BS">
<characteristics>
<characteristic name="Remaining W" typeId="b727-51df-e04a-19d7">4-6</characteristic>
<characteristic name="Movement" typeId="d77f-9965-665b-2d01">20"</characteristic>
<characteristic name="WS" typeId="a29c-7b92-a163-2f4f">4+</characteristic>
<characteristic name="BS" typeId="dad3-29bb-36d1-1a83">5+</characteristic>
</characteristics>
</profile>
<profile id="ff00-9264-c363-7e30" name="Harpy (3)" hidden="false" typeId="1d35-9cf8-74f1-32c4" typeName="Stat Damage - M, WS & BS">
<characteristics>
<characteristic name="Remaining W" typeId="b727-51df-e04a-19d7">1-3</characteristic>
<characteristic name="Movement" typeId="d77f-9965-665b-2d01">10"</characteristic>
<characteristic name="WS" typeId="a29c-7b92-a163-2f4f">5+</characteristic>
<characteristic name="BS" typeId="dad3-29bb-36d1-1a83">5+</characteristic>
</characteristics>
</profile>
<profile id="1e02-0c03-74d4-7de6" name="Sonic Screech" publicationId="7150-5917-pubN65537" page="109" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When a Harpy successfully charges, until the end of the turn enemy units within 1" cannot be chosen to Fight until all other eligible units have done so.</characteristic>
</characteristics>
</profile>
<profile id="2b49-9278-98af-1c07" name="Spore Mine Cysts" publicationId="7150-5917-pubN65537" page="109" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">A Harpy can drop Spore Mines as it flies over enemy units in the Movement phase. To do so, after the Harpy has moved, pick one enemy unit that it flew over and roll a D6 for each model in the unit, up to a maximum of 3 dice. Each time you roll a 4+ a Spore Mine has hit the target and explodes. Roll a D6 to find out how much damage is inflicted; on a 1 the Spore Mine fails to inflict any harm, on a 2-5 it inflicts 1 mortal wound, and on a 6 it inflicts D3 mortal wounds. Each time a Spore Mine misses its target, set up a single <HIVE FLEET> Spore Mine anywhere within 6" of the target unit and more than 3" from any enemy model (if the Spore Mine cannot be placed it is destroyed). This then follows the rules for a Spore Mine (pg 99) that is part of your army, but it cannot move or charge during the turn it was set up.</characteristic>
</characteristics>
</profile>
<profile id="671d-a7eb-2a78-5cdc" name="Harpy" hidden="true" typeId="b900-0afb-e411-2cbb" typeName="Keywords">
<characteristics>
<characteristic name="Keywords (Faction)" typeId="6b92-2d97-5144-62bc">Tyranids, <Hive Fleet></characteristic>
<characteristic name="Keywords (Basic)" typeId="ce6c-4765-4bb8-bd49">Monster, Fly, Harpy</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="adf5-1770-a8b6-cfc9" name="Instinctive Behaviour" hidden="false" targetId="b830-920a-231b-073d" type="profile"/>
<infoLink id="b4c5-e762-2886-16f2" name="Death Throes" hidden="false" targetId="6515-364e-86c7-5f9f" type="profile"/>
</infoLinks>
<categoryLinks>