generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Codex - Tyranids.cat
3002 lines (2987 loc) · 217 KB
/
Codex - 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="4026-2a6f-5a07-ce65" name="Codex - Tyranids" revision="2" battleScribeVersion="2.03" library="false" gameSystemId="9ea8-c89d-9104-ed03" gameSystemRevision="23" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="584a-05fe-7c57-360c" name="Biomorphs">
<characteristicTypes>
<characteristicType id="b4c3-8624-ebe7-241c" name="Biomorphs"/>
</characteristicTypes>
</profileType>
<profileType id="8169-3a6a-f9ec-e20a" name="Psychic Powers">
<characteristicTypes>
<characteristicType id="f579-6477-67fa-487a" name="Force"/>
<characteristicType id="cd38-4a91-bbeb-e5e3" name="Range"/>
<characteristicType id="0367-ede9-b5f6-4be3" name="Psychic Power"/>
</characteristicTypes>
</profileType>
<profileType id="7918-e0ef-71e7-a7fd" name="Spore Mine Damage">
<characteristicTypes>
<characteristicType id="966c-3d59-956d-d12c" name="Strength"/>
<characteristicType id="f5ce-ce7b-f3b0-19d1" name="Damage"/>
<characteristicType id="6e5f-126e-f5ac-c49a" name="Save Modifier"/>
<characteristicType id="0f77-6c11-7871-379d" name="Armour Penetration"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="1439-f160-c1a8-1061" name="Individuals" hidden="false"/>
<categoryEntry id="0de2-91d6-86dc-d0bc" name="Broods" hidden="false"/>
<categoryEntry id="795f-7f64-4e25-925e" name=" Support" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="3ac3-0c76-b06c-0af8" name="Tyranids" hidden="false">
<categoryLinks>
<categoryLink id="6726-e718-87fd-cd1e" name=" Support" hidden="false" targetId="795f-7f64-4e25-925e" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="31ce-048f-11e3-1706" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="52c1-0e96-e897-9acd" name="Individuals" hidden="false" targetId="1439-f160-c1a8-1061" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="7817-0c94-00fd-c049" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6b56-d47a-27b1-a596" name="Broods" hidden="false" targetId="0de2-91d6-86dc-d0bc" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="7549-62dc-3560-98ec" type="min"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="b4c8-927d-0791-6fe1" name="Hive Tyrant" hidden="false" collective="false" import="true" targetId="5047-398c-1218-a11c" type="selectionEntry"/>
<entryLink id="154e-ad17-d83e-43f0" name="Zoanthropes" hidden="false" collective="false" import="true" targetId="927e-7594-fe18-1824" type="selectionEntry"/>
<entryLink id="2e7a-99e8-039a-3e87" name="Lictors" hidden="false" collective="false" import="true" targetId="0e28-f698-333d-1571" type="selectionEntry"/>
<entryLink id="1b41-9b0d-0468-e73b" name="Tyranid Warrior Brood" hidden="false" collective="false" import="true" targetId="7622-bab0-4e89-237d" type="selectionEntry"/>
<entryLink id="844c-7bd7-e548-6cc9" name="Genestealer Brood" hidden="false" collective="false" import="true" targetId="27e9-c638-cca6-7cd6" type="selectionEntry"/>
<entryLink id="20d9-1650-8b9a-669f" name="Termagant Brood" hidden="false" collective="false" import="true" targetId="8ef6-0800-7990-8c8b" type="selectionEntry"/>
<entryLink id="c4d5-7eed-cee0-0265" name="Gargoyle Brood" hidden="false" collective="false" import="true" targetId="4982-8ffd-8731-f0ef" type="selectionEntry"/>
<entryLink id="dd24-a06f-22e0-921c" name="Carnifex" hidden="false" collective="false" import="true" targetId="b51f-1350-df11-3ea8" type="selectionEntry"/>
<entryLink id="a189-9c21-ae7e-71b5" name="Ripper Swarm" hidden="false" collective="false" import="true" targetId="002d-4b1c-aae9-e6c4" type="selectionEntry"/>
<entryLink id="4973-ebeb-3917-119e" name="Spore Mine" hidden="false" collective="false" import="true" targetId="3bbe-cef1-f452-5191" type="selectionEntry"/>
<entryLink id="98e0-114a-0824-019b" name="Biovores" hidden="false" collective="false" import="true" targetId="f0aa-a3fc-e732-ce86" type="selectionEntry"/>
<entryLink id="6d57-0c7f-769c-8106" name="Haruspex" hidden="false" collective="false" import="true" targetId="2387-26e1-f400-7bf0" type="selectionEntry"/>
<entryLink id="9367-7351-537d-6d20" name="Tyranid Malefactor" hidden="false" collective="false" import="true" targetId="0ea3-c0f5-5b5f-8756" type="selectionEntry"/>
<entryLink id="5d04-5f3c-7796-24c1" name="Tyranid Exocrine" hidden="false" collective="false" import="true" targetId="874b-b669-16bb-4404" type="selectionEntry"/>
<entryLink id="9020-e4b0-ba1a-baea" name="Hormagaunt Brood" hidden="false" collective="false" import="true" targetId="0207-1291-2587-cda4" type="selectionEntry"/>
<entryLink id="f518-1750-9b6b-69b3" name="Tyranid Dactylis" hidden="false" collective="false" import="true" targetId="8398-c660-2467-1542" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="86d3-f9d3-0f5e-3b20" name="Targetting Tyranids" publicationId="4740-6730-10c0-9b25" page="59" hidden="false">
<description>Instead of choosing between shooting closest squad, vehicle, or individual models, Tyranids can be targeted based on:
Monstrous Creatures, Man-sized Creatures, or Smaller Creatures
See Tyranid Codex Pg. 59 for full break down on targetting units</description>
</rule>
<rule id="579f-57d2-2ca7-d1d9" name="Weapon Effects" publicationId="4740-6730-10c0-9b25" page="61" hidden="false">
<description>Flamers: Tyranids set on fire that are immune to psychology naturally or from proximity range may continue to move and fight as normal while on fire. Must still roll for damage.
Needle/Shrieker Ammo: All Tyranids are immune to toxin from these weapons
Hellfire Shells: The shells have their full effect
Grenades: Immune to Choke, Hallucinogen, Scare, Toxin, and Virus
Conversion/Photon Flash: Tyranids recover from being blinded on a 3+ instead of a 5+
Ork Smasha Gun: Tyranid Warriors, Zoanthropes, and Lictors count as Terminator sized, Hive Tyrants and Carnifexes count as Dreadnought sized
Ork Pulsa Rokkit and Shokk attack gun: All Tyranids are counted as "Foot troops" against these
Ork Squig Catapult: Any Tyranids not on the catapult list count as "Tyranids" and have a 4+ save against Buzzer Squigs</description>
</rule>
<rule id="4d98-8fce-1b86-0760" name="Breaking Off From Combat" publicationId="4740-6730-10c0-9b25" page="62" hidden="false">
<description>Hive Tyrants, Lictors, Zoanthropes, Tyranid Warriors and Carnifexes can move out of close combat in their movement phase. May shoot after leaving combat. May charge into another enemy. </description>
</rule>
<rule id="0202-61f4-3fcf-bc1a" name="Firing into Close Combat" publicationId="4740-6730-10c0-9b25" page="62" hidden="false">
<description>May fire into close combat against Tyranids. Randomly allocate who is hit, including if hit by a template. Monstrous Creatures count as double the size as a man and Small Creatures count as half the size of a man.</description>
</rule>
<rule id="78aa-0e55-9162-1bf6" name="Squad/Brood Coherency" publicationId="4740-6730-10c0-9b25" page="62" hidden="false">
<description>Models in close combat may be ignored for the purposes of the Squad or Brood coherency. Models which follow-up are also permitted to move out of the normal 2" coherency. However once a close combat engagement is over models become subject to the Coherency rules again and move back to within 2" of the rest of their squad or brood as soon as possible. </description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="9fdd-6d9e-e4de-e3e4" name="Bonesword" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="0c7b-4455-26e1-3d5c" name="Bonesword" hidden="false" targetId="4271-4fba-12e0-b75d" type="profile"/>
<infoLink id="dabf-3c78-eea3-e452" name="Parry" hidden="false" targetId="049d-3ed2-a1bf-86b0" type="rule"/>
<infoLink id="396d-07b0-a684-44b4" name="Close Combat" hidden="false" targetId="c494-c170-605c-8959" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="04be-29cd-fa25-ae71" name="Lash Whip" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="6f90-66e9-cc5e-af8d" name="Lash Whip" hidden="false" targetId="6a1e-635c-1bed-ca7f" type="rule"/>
<infoLink id="1170-855b-435c-6800" name="Lash Whip" hidden="false" targetId="8132-1bc5-ba7c-a9e1" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7946-9a40-e997-ab65" name="Spinefist" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="3c5e-d125-defe-5b8e" name="Spinefist" hidden="false" targetId="cad0-5fc4-781a-192c" type="profile"/>
<infoLink id="e20c-474f-fe01-045c" name="Spinefist" hidden="false" targetId="691c-d4b5-7686-867f" type="rule"/>
<infoLink id="0362-ec1f-dbac-9e10" name="Close Combat" hidden="false" targetId="c494-c170-605c-8959" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c64-62fc-400a-83b6" name="Strangleweb" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="db0f-608a-0b21-6dce" name="Close Combat" hidden="false" targetId="c494-c170-605c-8959" type="rule"/>
<infoLink id="54db-bb74-282c-3a9e" name="Strangleweb" hidden="false" targetId="a4a8-bf16-a229-fd25" type="rule"/>
<infoLink id="8d50-6db0-9c13-9e35" name="Strangleweb" hidden="false" targetId="cb0e-f5fb-d838-9293" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="84b8-1f6e-5d28-f55f" name="Deathspitter" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="5d0d-5f64-601e-39ab" name="Deathspitter" hidden="false" targetId="90b8-357f-537c-d17d" type="rule"/>
<infoLink id="4427-c7fe-6bed-23c9" name="Deathspitter" hidden="false" targetId="796f-2668-c08c-81ae" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a903-a6a7-d13f-ddee" name="Flamespurt" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="2993-967e-6512-71a3" name="Flamespurt" hidden="false" targetId="e1ec-dbda-798c-a323" type="rule"/>
<infoLink id="c100-ed10-a40a-ac45" name="Flamespurt" hidden="false" targetId="e376-f3f0-4ab3-54a0" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b42e-0f97-7566-7bc9" name="Fleshborer" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="cfa5-fdcb-f531-2924" name="Fleshborer" hidden="false" targetId="cb2a-0c67-0796-4418" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e7ee-39f7-5c7e-6f15" name="Flesh Hooks" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="da18-1fbd-2506-3c46" name="Flesh Hooks" hidden="false" targetId="bb9d-62e0-ac60-d702" type="rule"/>
<infoLink id="0c62-b8f0-7a9e-72f4" name="Flesh Hooks" hidden="false" targetId="a0e6-e9d4-3c24-fc30" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="72fa-9969-2784-166c" name="Spike Rifle" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="d403-15f0-795d-700e" name="Spike Rifle" hidden="false" targetId="34dd-d104-c195-c6a3" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4f71-a6e3-3aa9-97ec" name="Devourer" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="528c-d646-c02a-8a07" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="f92c-f145-97a3-39d8" name="Sustained Fire" hidden="false" targetId="0b67-c911-308c-4960" type="rule"/>
<infoLink id="9f83-469a-6384-0f21" name="Devourer" hidden="false" targetId="e8de-6e38-d04b-86f0" type="rule"/>
<infoLink id="9b41-16a9-3143-e52a" name="Devourer" hidden="false" targetId="02a7-9159-537d-019d" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b1b-e8c2-20e9-dd99" name="Barbed Strangler" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="343c-e6f0-63d4-3a31" name="Barbed Strangler" hidden="false" targetId="6a62-0492-f309-667b" type="rule"/>
<infoLink id="b325-425e-8082-0b74" name="Barbed Strangler" hidden="false" targetId="646e-b902-14d2-0e47" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4f89-76a0-e8dd-8570" name="Venom Cannon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="85fd-e382-def9-0a4c" name="Venom Cannon" hidden="false" targetId="d7f2-06cb-94f0-6944" type="rule"/>
<infoLink id="0723-6a77-bc3a-6099" name="Venom Cannon" hidden="false" targetId="78e0-5e04-16da-1012" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a48-469a-c2a0-27a8" name="Bio-Plasma" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="0861-2523-4b81-7d71" name="Bio-Plasma" hidden="false" targetId="15a6-3e91-dfb9-d24a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5047-398c-1218-a11c" name="Hive Tyrant" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="1586-ff1d-b9eb-a0ff" value="1.0">
<repeats>
<repeat field="points" scope="roster" value="1000.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f209-8cb3-5cae-0f0b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1586-ff1d-b9eb-a0ff" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="dd52-e29d-e6cf-5959" type="min"/>
</constraints>
<infoLinks>
<infoLink id="aca5-ade2-29a8-6449" name="Hive Tyrant" hidden="false" targetId="82a0-d7ee-6f97-8195" type="profile"/>
<infoLink id="6f14-a71d-86b1-ce62" name="Leadership" hidden="false" targetId="029d-d831-ac7e-79df" type="rule"/>
<infoLink id="0135-f341-50bf-5e2f" name="Terror" hidden="false" targetId="05e0-cd40-2d9e-a9f9" type="rule"/>
<infoLink id="ed87-eb9f-8ec9-670e" name="Hive Mind - Tyrant" hidden="false" targetId="fd95-6aac-8c28-27f0" type="rule"/>
<infoLink id="cfce-33f1-1804-b3f5" name="Psychic Level 4" hidden="false" targetId="f988-2251-b863-a538" type="profile"/>
<infoLink id="1734-7c62-d079-1f1b" name="Chitin Carapace Armour" hidden="false" targetId="7fa5-c5cb-96e4-4981" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4898-20b6-80e2-652d" name="New CategoryLink" hidden="false" targetId="1439-f160-c1a8-1061" primary="true"/>
<categoryLink id="f548-7cda-47c8-5dd1" name="Tyranids" hidden="false" targetId="f209-8cb3-5cae-0f0b" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b049-66cb-3d84-b89c" name="Tyranid Biomorphs" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="031a-9df8-7b89-d8ef" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f1c3-b8c6-9c23-f35e" name="Acid Blood" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="150c-17a6-dc4b-0200" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2d08-ea28-8134-cbaf" name="Acid Blood" hidden="false" targetId="132f-88ff-538a-df77" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc76-1ff5-1262-3e7a" name="Bio-Plasma Attack" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d6b7-72a7-6ae1-5462" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4826-fc6d-adab-168a" name="Bio-Plasma" hidden="false" targetId="15a6-3e91-dfb9-d24a" type="profile"/>
<infoLink id="d338-bd31-cddf-2d65" name="Bio-Plasma Attack" hidden="false" targetId="240e-8ca9-114f-3c4f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="41d3-0ccb-0a9e-98fb" name="Adrenaline Sac" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae18-0495-e082-5f98" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fe41-1f68-ba3e-47ad" name="Adrenaline Sac" hidden="false" targetId="107d-0c15-4c84-066a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b3ac-1268-20ed-7bb3" name="Aura of Torment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58c6-bdb3-afbc-789d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6b74-f7f2-8f53-1937" name="Aura of Torment" hidden="false" targetId="e867-5cc5-e640-7611" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fda7-757a-80fe-6ed6" name="Enhanced Senses" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d21d-9935-6144-6247" type="max"/>
</constraints>
<infoLinks>
<infoLink id="149f-3520-b28a-9351" name="Enhanced Senses" hidden="false" targetId="5355-8025-ba2d-37ca" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="011e-2054-f403-616a" name="Flesh Hooks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a04b-b32e-dc84-81d8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e94a-35ca-ad52-969f" name="Flesh Hooks Biomorph" hidden="false" targetId="451b-3c43-c56f-6291" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="0254-c3c7-b3cd-3282" name="Flesh Hooks" hidden="false" collective="false" import="true" targetId="e7ee-39f7-5c7e-6f15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="64c7-2844-4b43-f13c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6797-7105-a75e-6454" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2c53-0516-dcef-ac7f" name="Hardened Carapace" publicationId="4740-6730-10c0-9b25" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a9e-a53c-cf80-921f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2ac9-0095-3f2d-b4d1" name="Hardened Carapace" hidden="false" targetId="11f4-120f-d25e-5069" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5e29-38a5-6175-26a9" name="Null Zone" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="413b-73cf-8196-2c23" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3c9d-3df8-b7a8-59ae" name="Null Zone" hidden="false" targetId="e90d-359c-bfd3-f0f7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd2a-236b-0987-5bdb" name="Optic Membranes" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac90-7bed-438e-1b62" type="max"/>
</constraints>
<infoLinks>
<infoLink id="29a1-79ac-a1ea-e33e" name="Optic Membranes" hidden="false" targetId="1a36-cb69-dd91-7fc3" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="05df-1bb7-6bbb-b85d" name="Regenerate" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f34b-dbe0-e7db-3957" type="max"/>
</constraints>
<infoLinks>
<infoLink id="05eb-b6e7-6ddd-6c31" name="Regenerate" hidden="false" targetId="1c4d-b414-d0c1-e4e7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0eb2-49b7-ad9c-a9b6" name="Toughened Exoskeleton" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0cec-1948-d99e-ed18" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4f56-034b-fe57-cb92" name="Toughened Exoskeleton" hidden="false" targetId="82e0-1298-c78d-5b5e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d190-3daa-1ea7-1762" name="Sharpened Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2547-08ce-6699-1329" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4337-46b3-f533-43a8" name="Sharpened Claws" hidden="false" targetId="66c3-9362-0c10-d2b8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e659-e533-0695-8568" name="Venom Sacs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3697-7714-1dff-7edf" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1f40-5b41-bc95-c630" name="Venom Sacs" hidden="false" targetId="94ee-d665-a00a-009d" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="838c-76d0-137d-cfd3" name="Voltage Field" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d814-3ade-6724-b1cd" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6e64-856f-cb92-f1ac" name="Voltage Field" hidden="false" targetId="d5eb-113b-6747-b078" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="df0c-da95-d7df-726c" name="Warp Field" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="91ef-933b-9656-6f7a" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fb7e-6f88-90ee-8a9f" name="Warp Field" hidden="false" targetId="f9c8-9293-a5b1-917a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="6265-c46e-d096-9e54" name="Melee Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df11-904b-0f81-717d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d5c8-cb09-4efe-e5fd" name="Lash Whip" hidden="false" collective="false" import="true" targetId="04be-29cd-fa25-ae71" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="9.0"/>
</costs>
</entryLink>
<entryLink id="7b45-6642-ef8d-c4de" name="Spinefist" hidden="false" collective="false" import="true" targetId="7946-9a40-e997-ab65" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</entryLink>
<entryLink id="3165-7de0-0d52-f546" name="Bonesword" hidden="false" collective="false" import="true" targetId="9fdd-6d9e-e4de-e3e4" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="6.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="11ec-17a9-35c1-dcc7" name="Ranged Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4fe-9e3c-bf73-dbb0" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1946-739b-cf2c-c5c8" name="Devourer" hidden="false" collective="false" import="true" targetId="4f71-a6e3-3aa9-97ec" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="9.0"/>
</costs>
</entryLink>
<entryLink id="522f-3eaf-f891-3adf" name="Venom Cannon" hidden="false" collective="false" import="true" targetId="4f89-76a0-e8dd-8570" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</entryLink>
<entryLink id="0051-9397-6ab9-9fed" name="Barbed Strangler" hidden="false" collective="false" import="true" targetId="0b1b-e8c2-20e9-dd99" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="31.0"/>
</costs>
</entryLink>
<entryLink id="f4e5-455e-412c-8718" name="Deathspitter" hidden="false" collective="false" import="true" targetId="84b8-1f6e-5d28-f55f" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="13.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6631-d359-d59f-b1bb" name="Psyker" hidden="false" collective="false" import="true" targetId="56e9-7608-b945-ac81" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0da8-1b55-35ea-2829" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b16-64a4-6fda-204a" type="max"/>
</constraints>
</entryLink>
<entryLink id="a070-a04d-a84c-b13e" name="Army Commander" hidden="false" collective="false" import="true" targetId="14a7-3ca1-c284-9ae1" type="selectionEntry"/>
<entryLink id="38dc-b922-0823-7b67" name="Tyranid Psychic Powers" hidden="false" collective="false" import="true" targetId="a896-0e4a-7028-cd01" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="164.0"/>
</costs>
</selectionEntry>
<selectionEntry id="14a7-3ca1-c284-9ae1" name="Army Commander" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f483-00eb-ec2a-9a35" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0a8-7372-0e39-a7a3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="be04-978f-461e-0ff9" name="Army Commander" hidden="false" targetId="742e-aa63-7b0f-8b56" type="profile">
<modifiers>
<modifier type="set" field="d0c8-e08c-1828-77b4" value="1"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="927e-7594-fe18-1824" name="Zoanthropes" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7b87-135d-e3fd-084b" name="Warp Blast" hidden="false" typeId="8169-3a6a-f9ec-e20a" typeName="Psychic Powers">
<characteristics>
<characteristic name="Force" typeId="f579-6477-67fa-487a">0-3</characteristic>
<characteristic name="Range" typeId="cd38-4a91-bbeb-e5e3">24-60</characteristic>
<characteristic name="Psychic Power" typeId="0367-ede9-b5f6-4be3">Warp blast has 4 different profiles depending on how many force cards you use</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="a541-6094-081d-1c03" name="Zoanthrope Psyker" publicationId="4740-6730-10c0-9b25" hidden="false">
<description>Psyker but do not draw cards for their powers. They always know Warp Field and Warp Blast. They are fully affected by all the weapons and psychic powers which affect daemons and or psyskers. A Zoanthrope's close combat attacks count as psychic attacks.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="922f-99ce-3705-f68d" name="Zoanthropes" hidden="false" targetId="a373-ade8-6ec9-2ef0" type="profile"/>
<infoLink id="d374-27c3-4bf6-d23e" name="Leadership" hidden="false" targetId="029d-d831-ac7e-79df" type="rule"/>
<infoLink id="4e00-d33f-42df-64c5" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="644d-3a46-c5b4-913d" name="Psychic Level 2" hidden="false" targetId="76f1-a9ec-f1f7-0162" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="33a4-bcc4-bbb9-4d0e" name="New CategoryLink" hidden="false" targetId="1439-f160-c1a8-1061" primary="true"/>
<categoryLink id="8c32-08d6-4bbd-0725" name="Tyranids" hidden="false" targetId="f209-8cb3-5cae-0f0b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a140-a837-fcd9-6602" name="Warp Field" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be64-1b0c-9497-8a89" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb0b-b0a7-57b1-df89" type="min"/>
</constraints>
<infoLinks>
<infoLink id="022f-138a-4ad6-12b5" name="Warp Field" hidden="false" targetId="f9c8-9293-a5b1-917a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1501-d8d2-3c90-ede5" name="Psyker" hidden="false" collective="false" import="true" targetId="56e9-7608-b945-ac81" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1abb-2ea7-e763-f8fc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6fc5-1921-7d9d-876a" type="max"/>
</constraints>
</entryLink>
<entryLink id="51e7-80e1-d20e-046d" name="Warp Blast" hidden="false" collective="false" import="true" targetId="0b48-ca90-cd69-7c76" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fe5-7865-c63a-1f20" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="068c-bd84-795c-f2c7" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b48-ca90-cd69-7c76" name="Warp Blast" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="395a-aaad-b434-e9a4" name="Warp Blast Force 0" hidden="false" typeId="d8e8-6c66-f558-30ee" typeName="Weapon">
<characteristics>
<characteristic name="Short range" typeId="a108-ac67-8c42-6bbb">-</characteristic>
<characteristic name="Long Range" typeId="3acf-5fa0-de29-6094">24</characteristic>
<characteristic name="Short 'To Hit’" typeId="bbc0-6de5-4dfa-9328">-</characteristic>
<characteristic name="Long 'To Hit’" typeId="10bb-0500-b03c-643c">-</characteristic>
<characteristic name="Strength" typeId="e297-34fa-4b72-f0b6">4</characteristic>
<characteristic name="Damage" typeId="8978-f9c3-8957-1481">1</characteristic>
<characteristic name="Save Modifier" typeId="53ec-cd58-3d6e-c00d">-1</characteristic>
<characteristic name="Armour Penetration" typeId="0530-f4b7-b7db-de67">2D6+4</characteristic>
<characteristic name="Special" typeId="9fb9-b2be-dfa5-713d"/>
</characteristics>
</profile>
<profile id="dbd3-1228-e401-3450" name="Warp Blast Force 1" hidden="false" typeId="d8e8-6c66-f558-30ee" typeName="Weapon">
<characteristics>
<characteristic name="Short range" typeId="a108-ac67-8c42-6bbb">-</characteristic>
<characteristic name="Long Range" typeId="3acf-5fa0-de29-6094">36</characteristic>
<characteristic name="Short 'To Hit’" typeId="bbc0-6de5-4dfa-9328">-</characteristic>
<characteristic name="Long 'To Hit’" typeId="10bb-0500-b03c-643c">-</characteristic>
<characteristic name="Strength" typeId="e297-34fa-4b72-f0b6">5</characteristic>
<characteristic name="Damage" typeId="8978-f9c3-8957-1481">D3</characteristic>
<characteristic name="Save Modifier" typeId="53ec-cd58-3d6e-c00d">-2</characteristic>
<characteristic name="Armour Penetration" typeId="0530-f4b7-b7db-de67">2D6+D3+5</characteristic>
<characteristic name="Special" typeId="9fb9-b2be-dfa5-713d">1" blast radius</characteristic>
</characteristics>
</profile>
<profile id="06bb-a134-6be6-9137" name="Warp Blast Force 2" hidden="false" typeId="d8e8-6c66-f558-30ee" typeName="Weapon">
<characteristics>
<characteristic name="Short range" typeId="a108-ac67-8c42-6bbb">-</characteristic>
<characteristic name="Long Range" typeId="3acf-5fa0-de29-6094">48</characteristic>
<characteristic name="Short 'To Hit’" typeId="bbc0-6de5-4dfa-9328">-</characteristic>
<characteristic name="Long 'To Hit’" typeId="10bb-0500-b03c-643c">-</characteristic>
<characteristic name="Strength" typeId="e297-34fa-4b72-f0b6">6</characteristic>
<characteristic name="Damage" typeId="8978-f9c3-8957-1481">D6</characteristic>
<characteristic name="Save Modifier" typeId="53ec-cd58-3d6e-c00d">-3</characteristic>
<characteristic name="Armour Penetration" typeId="0530-f4b7-b7db-de67">D12+2D6+6</characteristic>
<characteristic name="Special" typeId="9fb9-b2be-dfa5-713d">1 1/2" blast radius</characteristic>
</characteristics>
</profile>
<profile id="74e2-5a48-eacf-e237" name="Warp Blast Force 3" hidden="false" typeId="d8e8-6c66-f558-30ee" typeName="Weapon">
<characteristics>
<characteristic name="Short range" typeId="a108-ac67-8c42-6bbb">-</characteristic>
<characteristic name="Long Range" typeId="3acf-5fa0-de29-6094">60</characteristic>
<characteristic name="Short 'To Hit’" typeId="bbc0-6de5-4dfa-9328">-</characteristic>
<characteristic name="Long 'To Hit’" typeId="10bb-0500-b03c-643c">-</characteristic>
<characteristic name="Strength" typeId="e297-34fa-4b72-f0b6">7</characteristic>
<characteristic name="Damage" typeId="8978-f9c3-8957-1481">D10</characteristic>
<characteristic name="Save Modifier" typeId="53ec-cd58-3d6e-c00d">-4</characteristic>
<characteristic name="Armour Penetration" typeId="0530-f4b7-b7db-de67">D12+D10+D6+7</characteristic>
<characteristic name="Special" typeId="9fb9-b2be-dfa5-713d">2" blast radius</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e28-f698-333d-1571" name="Lictors" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="a458-f10a-2a1b-89d4" name="Lictor Fleshhooks" publicationId="4740-6730-10c0-9b25" page="21" hidden="false">
<description>A Lictor can fire 2 Flesh Hooks in the shooting phase</description>
</rule>
</rules>
<infoLinks>
<infoLink id="7f6a-f070-3554-07f1" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="7ec4-dcca-26aa-d6fb" name="Lictor" hidden="false" targetId="b2af-14ab-73f4-05ad" type="profile"/>
<infoLink id="56f0-ffd8-673e-0d3f" name="Chameleon Scales" hidden="false" targetId="c8b0-8316-107e-ab44" type="rule"/>
<infoLink id="aa16-2f62-c877-4a9b" name="Leadership" hidden="false" targetId="029d-d831-ac7e-79df" type="rule"/>
<infoLink id="6fda-3263-3c88-b55f" name="Poison" hidden="false" targetId="d31a-8352-14b8-27d6" type="rule"/>
<infoLink id="6667-0002-80a3-821f" name="Hiding" hidden="false" targetId="0ed3-af90-812e-9646" type="rule"/>
<infoLink id="250c-d828-2034-10ca" name="Infiltration" hidden="false" targetId="f4b6-ebd6-edee-8d7e" type="rule"/>
<infoLink id="520f-03fe-bf1b-f8a3" name="Acute Senses" hidden="false" targetId="65ac-8308-b233-fe21" type="rule"/>
<infoLink id="ea1b-e0d6-5ffd-0373" name="Exoskeleton" hidden="false" targetId="683b-ffb8-4792-29ef" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c95f-799b-18b9-35c6" name="New CategoryLink" hidden="false" targetId="1439-f160-c1a8-1061" primary="true"/>
<categoryLink id="1adc-0daf-da9f-8cc0" name="Tyranids" hidden="false" targetId="f209-8cb3-5cae-0f0b" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="30b5-1224-1f84-1df8" name="Tyranid Biomorphs" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29b2-bc7b-4f94-f1f8" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="76c6-b863-ca1b-7499" name="Acid Blood" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb84-9793-23fd-208c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8daa-698a-d0f3-59c7" name="Acid Blood" hidden="false" targetId="132f-88ff-538a-df77" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a1d-0b5d-3856-f88f" name="Bio-Plasma Attack" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="756e-fb53-c715-eb25" type="max"/>
</constraints>
<infoLinks>
<infoLink id="cf20-3046-730f-3577" name="Bio-Plasma" hidden="false" targetId="15a6-3e91-dfb9-d24a" type="profile"/>
<infoLink id="110d-45b9-e9cc-9247" name="Bio-Plasma Attack" hidden="false" targetId="240e-8ca9-114f-3c4f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3300-d761-d231-dd5b" name="Adrenaline Sac" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6162-f667-c270-0ac1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d8c0-7c72-2e91-5c90" name="Adrenaline Sac" hidden="false" targetId="107d-0c15-4c84-066a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1636-a27a-6151-8ef6" name="Aura of Torment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a12-4e17-1ea6-ddd8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6cc4-85aa-8597-a8a4" name="Aura of Torment" hidden="false" targetId="e867-5cc5-e640-7611" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6aba-146b-23f0-6397" name="Enhanced Senses" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="702a-a97d-82ab-d2d3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e666-5aff-2337-d6c3" name="Enhanced Senses" hidden="false" targetId="5355-8025-ba2d-37ca" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f79b-05a7-6cfb-7adf" name="Flesh Hooks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="075a-3d46-3509-647e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ad5f-88c2-b948-16c7" name="Flesh Hooks Biomorph" hidden="false" targetId="451b-3c43-c56f-6291" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="b7b0-36df-513e-ef88" name="Flesh Hooks" hidden="false" collective="false" import="true" targetId="e7ee-39f7-5c7e-6f15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00dd-def0-02c4-f70b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9f8-635a-357b-0f02" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2544-3a1a-1d9f-329c" name="Hardened Carapace" publicationId="4740-6730-10c0-9b25" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="597c-ab57-2be8-1032" type="max"/>
</constraints>
<infoLinks>
<infoLink id="25a5-55db-f4e5-8bcc" name="Hardened Carapace" hidden="false" targetId="11f4-120f-d25e-5069" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6d86-7729-0494-b538" name="Null Zone" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a66d-6f4f-f3be-7538" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7e53-a158-a94b-f6e4" name="Null Zone" hidden="false" targetId="e90d-359c-bfd3-f0f7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="23a8-ef52-e371-6e0a" name="Optic Membranes" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4599-8da5-30c7-e429" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5a80-13ea-38b9-c521" name="Optic Membranes" hidden="false" targetId="1a36-cb69-dd91-7fc3" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="57dc-7b7c-3b89-d5cf" name="Regenerate" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="13d0-fbd8-c456-72f6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7edc-64e0-b1c0-916a" name="Regenerate" hidden="false" targetId="1c4d-b414-d0c1-e4e7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b4cf-15a6-9be4-2242" name="Toughened Exoskeleton" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="30ec-fd4b-af0b-a2b1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d218-199f-d95f-afcf" name="Toughened Exoskeleton" hidden="false" targetId="82e0-1298-c78d-5b5e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9bfb-ae1a-8604-26bd" name="Sharpened Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="80aa-647e-80e4-61ee" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ee8d-c05a-4ad0-80d5" name="Sharpened Claws" hidden="false" targetId="66c3-9362-0c10-d2b8" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4793-bed4-7591-d86f" name="Venom Sacs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e406-3e39-412e-f4b7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6463-5b66-e794-3e32" name="Venom Sacs" hidden="false" targetId="94ee-d665-a00a-009d" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1cf4-7852-dfcb-ee9d" name="Voltage Field" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8baa-1d05-0ed6-9597" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7740-85a0-d7b7-d564" name="Voltage Field" hidden="false" targetId="d5eb-113b-6747-b078" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e06-02a3-56bf-1166" name="Warp Field" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d71-86dc-b45c-9f87" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1192-eeaa-5908-4c03" name="Warp Field" hidden="false" targetId="f9c8-9293-a5b1-917a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f735-30f3-fe3b-025f" name="Flesh Hooks" hidden="false" collective="false" import="true" targetId="e7ee-39f7-5c7e-6f15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d682-a053-02ba-d930" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49cd-00ef-3b59-59fe" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="96.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7622-bab0-4e89-237d" name="Tyranid Warrior Brood" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="1a35-8d27-95a8-e878" name="Hive Mind - Warrior" hidden="false" targetId="958b-9301-4992-1bc6" type="rule"/>
<infoLink id="7934-1ff5-2778-5fa2" name="Fear" hidden="false" targetId="c7ef-dc7b-3ecc-91f5" type="rule"/>
<infoLink id="745c-ae90-f9c2-4fbd" name="Leadership" hidden="false" targetId="029d-d831-ac7e-79df" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1944-bfd2-a12f-aed6" name="New CategoryLink" hidden="false" targetId="0de2-91d6-86dc-d0bc" primary="true"/>
<categoryLink id="e6b2-22b2-fe93-2047" name="Tyranids" hidden="false" targetId="f209-8cb3-5cae-0f0b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="07b1-40d8-2b51-9225" name="Tyranid Warrior" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ad3-6697-5da3-a8f3" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b052-e07d-4752-bdd6" type="min"/>
</constraints>
<infoLinks>
<infoLink id="afe8-ed38-8e1a-02ea" name="Tyranid Warrior" hidden="false" targetId="5ed4-de11-9204-42f8" type="profile"/>
<infoLink id="3f7d-085d-cbea-1c69" name="Chitinous Armour" hidden="false" targetId="1a56-f7ec-afd4-de11" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7762-0920-5b91-8c54" name="Weapon Options" hidden="false" collective="false" import="true" defaultSelectionEntryId="528d-b868-ce4d-2083">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dee7-3ba4-7b19-37ac" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eac4-6962-9958-2cc0" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="528d-b868-ce4d-2083" name="Two Boneswords" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="d990-f1bd-7c72-05ef" name="Bonesword" hidden="false" collective="false" import="true" targetId="9fdd-6d9e-e4de-e3e4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="407b-8d6a-0cc1-b689" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2953-061d-643f-2e55" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2cc4-52aa-982c-6506" name="Lash Whip & Bonesword" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="d41b-81f4-c0ec-b399" name="Lash Whip" hidden="false" collective="false" import="true" targetId="04be-29cd-fa25-ae71" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2cdd-ab5f-2765-57be" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4b1-f3d6-283c-9e25" type="min"/>
</constraints>
</entryLink>
<entryLink id="a3fa-2c57-e8c0-6f36" name="Bonesword" hidden="false" collective="false" import="true" targetId="9fdd-6d9e-e4de-e3e4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87e4-1051-290b-7c8f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f66-2264-e01e-1a52" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="82d3-68c0-98f6-9995" name="Spinefist & Bonesword" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="dca8-aeb0-68db-3853" name="Spinefist" hidden="false" collective="false" import="true" targetId="7946-9a40-e997-ab65" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6641-1f35-fbc8-6d3c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f286-813e-6404-6f63" type="min"/>
</constraints>
</entryLink>
<entryLink id="d8f7-f47d-bc8b-5d3a" name="Bonesword" hidden="false" collective="false" import="true" targetId="9fdd-6d9e-e4de-e3e4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f042-1584-dca6-0331" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b4ec-2fe5-505f-a49b" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="6.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9368-79e0-b91b-baa5" name="Devourer" hidden="false" collective="false" import="true" targetId="4f71-a6e3-3aa9-97ec" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="2.0"/>
</costs>
</entryLink>
<entryLink id="11ee-ef59-d872-1941" name="Deathspitter" hidden="false" collective="false" import="true" targetId="84b8-1f6e-5d28-f55f" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="6.0"/>
</costs>
</entryLink>
<entryLink id="bd13-bbcd-764a-d2c1" name="Barbed Strangler" hidden="false" collective="false" import="true" targetId="0b1b-e8c2-20e9-dd99" type="selectionEntry">
<modifiers>
<modifier type="set" field="16a8-f92b-9e1a-2ee4" value="0.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="7622-bab0-4e89-237d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7875-5b7e-3d61-7578" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="7622-bab0-4e89-237d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="16a8-f92b-9e1a-2ee4" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="24.0"/>
</costs>
</entryLink>
<entryLink id="7875-5b7e-3d61-7578" name="Venom Cannon" hidden="false" collective="false" import="true" targetId="4f89-76a0-e8dd-8570" type="selectionEntry">
<modifiers>
<modifier type="set" field="11ea-362b-274d-aa05" value="0.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="7622-bab0-4e89-237d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bd13-bbcd-764a-d2c1" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="7622-bab0-4e89-237d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="11ea-362b-274d-aa05" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="33.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="55.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="07e6-2244-c8d6-41bd" name="Tyranid Biomorphs - Applies to All Models" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fdae-b260-d3d1-5aa9" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="2f5d-8678-5770-8d2b" name="Acid Blood" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="points" value="5.0">
<repeats>
<repeat field="selections" scope="7622-bab0-4e89-237d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="82b2-ac25-490c-412e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="28f6-1206-7e3a-5049" name="Acid Blood" hidden="false" targetId="132f-88ff-538a-df77" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="30f4-e4fc-2ff9-6cbf" name="Bio-Plasma Attack" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="points" value="40.0">
<repeats>
<repeat field="selections" scope="7622-bab0-4e89-237d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>