forked from ksnyder1986/Warhammer-40k-3rd-Edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Space Wolves (2000).cat
4306 lines (4306 loc) · 300 KB
/
Space Wolves (2000).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="0885-d75b-33a6-169b" name="Space Wolves (2000)" revision="1" battleScribeVersion="2.03" library="false" gameSystemId="96e2-b781-50d7-3d18" gameSystemRevision="2" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="2682-a24d-27d0-d11d" name="13th Company" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="39f1-fcef-6cb3-b8e1" name="Wolf Lord" hidden="false" collective="false" import="true" targetId="5a50-b1c6-a93a-cc0d" type="selectionEntry"/>
<entryLink id="2187-639e-f729-e0a8" name="Grey Hunter Pack" hidden="false" collective="false" import="true" targetId="3e5e-e6ef-03df-c011" type="selectionEntry">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c1f-e049-f15a-a603" type="min"/>
</constraints>
</entryLink>
<entryLink id="0f72-722b-83e7-a1e0" name="Dreadnought" hidden="false" collective="false" import="true" targetId="3f7e-ad94-b024-1a57" type="selectionEntry">
<categoryLinks>
<categoryLink id="76fc-5d20-47ed-d75c" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="8720-0f77-8e40-a902" name="New CategoryLink" hidden="false" targetId="6d25-b346-c314-6911" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6472-8c21-bd0d-3a3a" name="Land Speeder Squadron" hidden="false" collective="false" import="true" targetId="417c-9227-f9a3-8f58" type="selectionEntry">
<categoryLinks>
<categoryLink id="e6ea-eee4-f012-1517" name="New CategoryLink" hidden="false" targetId="34e2-d53c-28ab-44cf" primary="true"/>
<categoryLink id="ca4e-34b6-249e-4ca4" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7272-27ad-ff4b-4257" name="Land Speeder Tornado" hidden="false" collective="false" import="true" targetId="c398-1788-6d0b-3d3f" type="selectionEntry">
<categoryLinks>
<categoryLink id="20ff-aaf1-a486-cede" name="New CategoryLink" hidden="false" targetId="34e2-d53c-28ab-44cf" primary="true"/>
<categoryLink id="2507-f5a7-a9f5-52c7" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="08e4-9fe1-bf1e-0c19" name="Land Speeder Typhoon" hidden="false" collective="false" import="true" targetId="fd3d-a63d-ee67-d276" type="selectionEntry">
<categoryLinks>
<categoryLink id="f82f-b0a7-a7ad-7ae9" name="New CategoryLink" hidden="false" targetId="34e2-d53c-28ab-44cf" primary="true"/>
<categoryLink id="a0ea-3a72-2f57-e4f7" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3fed-01cf-1f4d-6f00" name="Attack Bike Squadron" hidden="false" collective="false" import="true" targetId="26b2-8587-e170-87ee" type="selectionEntry">
<infoLinks>
<infoLink id="1222-8e02-0f9a-51c6" name="Space Wolves Special Rules" hidden="false" targetId="20dd-1d42-8acc-dd7b" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9c31-4b3f-0526-56c5" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="a619-4768-f428-aa3a" name="New CategoryLink" hidden="false" targetId="34e2-d53c-28ab-44cf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="aa97-d1ee-d112-3bd8" name="Whirlwind" hidden="false" collective="false" import="true" targetId="d13e-3fe7-b445-511c" type="selectionEntry">
<categoryLinks>
<categoryLink id="6d45-e5e5-3f70-6154" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
<categoryLink id="9b4f-7d0e-d346-5dc9" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6b08-9b3a-b398-d280" name="Predator Annihilator" hidden="false" collective="false" import="true" targetId="75b1-7506-f196-951d" type="selectionEntry">
<categoryLinks>
<categoryLink id="9bf8-4783-af75-9673" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
<categoryLink id="98ab-c79e-c8de-4cb0" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="19dc-d8f4-1c72-a8f0" name="Predator Destructor" hidden="false" collective="false" import="true" targetId="156e-b697-5422-38ff" type="selectionEntry">
<categoryLinks>
<categoryLink id="3090-0561-9b44-b880" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="163d-d8ca-635a-b009" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0dcd-577d-539f-a572" name="Land Raider" hidden="false" collective="false" import="true" targetId="0432-2db6-5eda-20d8" type="selectionEntry">
<categoryLinks>
<categoryLink id="31d6-f5b7-479b-7bbd" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
<categoryLink id="6ada-aced-ce8d-de26" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4f0c-fdd7-1e44-fbdf" name="Vindicator" hidden="false" collective="false" import="true" targetId="86f9-0db1-c67b-3442" type="selectionEntry">
<categoryLinks>
<categoryLink id="2b40-7517-f576-4ec8" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
<categoryLink id="6d60-05d1-7066-e1fe" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a78d-cf09-2f70-eaa4" name="Wolf Guard Battle Leader" hidden="false" collective="false" import="true" targetId="15f4-1e12-3cd9-c427" type="selectionEntry"/>
<entryLink id="2a7e-d531-49ce-6ba8" name="Rune Priest" hidden="false" collective="false" import="true" targetId="f17e-d81d-8244-c7e7" type="selectionEntry"/>
<entryLink id="00aa-110e-dc66-40bc" name="Wolf Priest" hidden="false" collective="false" import="true" targetId="ed4e-91dc-5579-95a7" type="selectionEntry"/>
<entryLink id="8093-a8a5-2073-c416" name="Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="580c-ab92-d3cc-44a9" type="selectionEntry">
<categoryLinks>
<categoryLink id="bc68-8c36-8339-a6d7" name="New CategoryLink" hidden="false" targetId="a8a7-7a4b-5f7e-2138" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b565-d53f-381a-0af2" name="Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="580c-ab92-d3cc-44a9" type="selectionEntry">
<categoryLinks>
<categoryLink id="7b56-9b02-4ef4-0204" name="New CategoryLink" hidden="false" targetId="6d25-b346-c314-6911" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e6fa-3ab9-4e58-b127" name="Wolf Guard (Elite Slot Blocker)" hidden="false" collective="false" import="true" targetId="ae86-86d6-7423-73b2" type="selectionEntry"/>
<entryLink id="784b-7af7-538a-7fef" name="Blood Claws Jump Pack" hidden="false" collective="false" import="true" targetId="726c-923e-afff-3bbb" type="selectionEntry"/>
<entryLink id="74d8-528a-558c-6486" name="Wolf Scouts" hidden="false" collective="false" import="true" targetId="8dd6-5d62-803c-c4f5" type="selectionEntry"/>
<entryLink id="4717-e8b7-874f-f081" name="Iron Priest" hidden="false" collective="false" import="true" targetId="8e67-eae0-b3a8-22be" type="selectionEntry"/>
<entryLink id="746f-ae47-2a91-43ea" name="Blood Claws Pack" hidden="false" collective="false" import="true" targetId="c5d5-c966-393d-bcd7" type="selectionEntry"/>
<entryLink id="ae98-9681-8da2-dce0" name="Blood Claws Bike Pack" hidden="false" collective="false" import="true" targetId="7580-13ed-77ef-4cee" type="selectionEntry"/>
<entryLink id="d0b4-0777-59d4-e59a" name="Long Fang Pack" page="" hidden="false" collective="false" import="true" targetId="b308-b104-9cf1-084e" type="selectionEntry"/>
<entryLink id="ec24-e43c-b7df-57b5" name="Leman Russ Exterminator" page="l" hidden="false" collective="false" import="true" targetId="4c22-47a4-8177-f8f5" type="selectionEntry"/>
<entryLink id="0ead-aa56-5a80-f3f0" name="Wolf Lord Logar Grimnar" hidden="false" collective="false" import="true" targetId="7244-770d-e195-f39c" type="selectionEntry"/>
<entryLink id="fb51-9b1f-181e-7b6e" name="Wolf Lord Ragnar Blackmane" hidden="false" collective="false" import="true" targetId="62a9-130b-ccf7-841e" type="selectionEntry"/>
<entryLink id="206c-1bf7-6320-edb6" name="Wolf Priest Ulrik the Slayer" hidden="false" collective="false" import="true" targetId="de6e-4b00-dee0-5d95" type="selectionEntry"/>
<entryLink id="7525-0bff-f7d8-a4c4" name="Hyperious Air Defence Battery (IA)" hidden="false" collective="false" import="true" targetId="fde5-3ce5-0c7a-820c" type="selectionEntry"/>
<entryLink id="c179-1e01-c1d8-d07d" name="Imperial Navy Support (IA)" hidden="true" collective="false" import="true" targetId="3e43-ec0f-64ff-daaa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8b88-334b-8114-66f9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="b7aa-3686-5ca2-6433" value="0.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2902-cdf6-3c7e-3769" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b7aa-3686-5ca2-6433" type="max"/>
</constraints>
</entryLink>
<entryLink id="2902-cdf6-3c7e-3769" name="Orbital Strike (IA)" hidden="true" collective="false" import="true" targetId="9419-6303-5744-f2b2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8b88-334b-8114-66f9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="4e53-c5c9-3f3f-4a79" value="0.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c179-1e01-c1d8-d07d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e53-c5c9-3f3f-4a79" type="max"/>
</constraints>
</entryLink>
<entryLink id="8b88-334b-8114-66f9" name="Damocles Command Rhino (IA)" hidden="false" collective="false" import="true" targetId="56bf-16e9-79ee-abd3" type="selectionEntry"/>
<entryLink id="9608-be34-5c62-e818" name="Thunderhawk Gunship (IA)" hidden="false" collective="false" import="true" targetId="81c2-8110-65c2-82cd" type="selectionEntry"/>
<entryLink id="715a-4766-f685-2485" name="Whirlwind Hyperios (IA)" hidden="false" collective="false" import="true" targetId="1466-696f-2a85-14b5" type="selectionEntry"/>
<entryLink id="129b-76c3-acd3-91a1" name="Deathwind Drop Pod (IA)" hidden="false" collective="false" import="true" targetId="9470-3822-9925-43d2" type="selectionEntry"/>
<entryLink id="fe16-ad6e-04b8-22f0" name="Land Raider Crusader (IA)" hidden="false" collective="false" import="true" targetId="d7d7-d12e-387b-1b3b" type="selectionEntry"/>
<entryLink id="fb2b-ba1b-fa01-e83c" name="Land Raider Helios (IA)" hidden="false" collective="false" import="true" targetId="1be4-df32-2640-9413" type="selectionEntry">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2928-3763-ce41-28a1" type="max"/>
</constraints>
</entryLink>
<entryLink id="b8c8-3a1c-a979-7400" name="Land Speeder Tempest (IA)" hidden="false" collective="false" import="true" targetId="7c0e-8c2e-0bfb-7646" type="selectionEntry"/>
<entryLink id="816c-9fb7-8d54-48e5" name="Tarantula Sentry Gun (IA)" hidden="false" collective="false" import="true" targetId="82c5-8065-6903-5174" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e178-bd57-17cf-9d24" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="d722-1d06-df19-eab5" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d1c3-0d96-2077-57c7" name="Stormraven Gunship (Homebrew)" hidden="false" collective="false" import="true" targetId="fb33-3e36-b9a7-679d" type="selectionEntry">
<categoryLinks>
<categoryLink id="cc32-cdcd-22b7-3749" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5641-29d0-39ed-fe54" name="Contemptor Dreadnought (Homebrew)" hidden="false" collective="false" import="true" targetId="9042-1a04-ca8a-4f29" type="selectionEntry">
<categoryLinks>
<categoryLink id="0909-221d-2e02-40a7" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6304-c3ab-c83f-58fd" name="Stalker (Homebrew)" hidden="false" collective="false" import="true" targetId="eebe-d468-31d3-6f58" type="selectionEntry">
<categoryLinks>
<categoryLink id="a9a1-83ca-bdb1-0c01" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d03d-7f2b-09c3-f944" name="Hunter (Homebrew)" hidden="false" collective="false" import="true" targetId="7baa-b96b-fff0-33ea" type="selectionEntry">
<categoryLinks>
<categoryLink id="4e78-4c3c-9d9a-de0a" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="82f6-2391-be92-191f" name="Stormtalon Gunship (Homebrew)" hidden="false" collective="false" import="true" targetId="2bfb-ac8e-748b-2de0" type="selectionEntry">
<categoryLinks>
<categoryLink id="df39-6984-e90b-ad06" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d5a7-204b-7afc-09ca" name="Stormhawk Interceptor (Homebrew)" hidden="false" collective="false" import="true" targetId="a437-f9fe-eb04-57bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="2c41-808b-c9fb-41f3" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4b33-915d-e29b-44c8" name="Deathwatch Kill Team (Chapter Approved)" hidden="false" collective="false" import="true" targetId="1004-74e9-5ee6-c51f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2227-39c0-84da-3e84" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0ad2-544b-3bdb-3535" name="New CategoryLink" hidden="false" targetId="a8a7-7a4b-5f7e-2138" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c462-02ff-d9a8-1838" name="Emperor's Champion" hidden="false" collective="false" import="true" targetId="ad23-c512-3d63-c3a4" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Emperor's Champion (Chapter Approved)"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd02-5d20-85ac-d996" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="5a50-b1c6-a93a-cc0d" name="Wolf Lord" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="61ec-bc60-cc79-5b22" type="max"/>
</constraints>
<infoLinks>
<infoLink id="317d-b082-8d3f-ed1d" name="Wolf Lord" hidden="false" targetId="e8ac-0f64-f7f8-c1de" type="profile"/>
<infoLink id="adc8-5ac1-b5d4-6ac3" name="True Grit" hidden="false" targetId="849a-bdda-3647-9ab5" type="rule"/>
<infoLink id="87b9-f9aa-037f-1c64" name="Independent Character" hidden="false" targetId="4a60-7f7e-c37f-a4d6" type="rule"/>
<infoLink id="6d18-df7e-179c-bc42" name="Space Wolves Special Rules" hidden="false" targetId="20dd-1d42-8acc-dd7b" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e4b4-aca4-3e56-308c" name="New CategoryLink" hidden="false" targetId="a8a7-7a4b-5f7e-2138" primary="true"/>
<categoryLink id="71f2-f260-1172-ce91" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="0cc0-16e9-1015-d7cc" name="Independent Character" hidden="false" targetId="3c96-248b-affd-e504" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ab8f-3bf3-76b4-0ee4" name="Retinue" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2682-a24d-27d0-d11d" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e53f-a21d-1577-265e" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="7364-4666-7ca4-ae04" name="Transport" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d07-df5a-cfbb-c80c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="49e5-145a-1dbd-cb63" name="Rhino" hidden="false" collective="false" import="true" targetId="a0bd-2758-8540-c713" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6108-924d-eb58-8550" type="greaterThan"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="50.0"/>
</costs>
</entryLink>
<entryLink id="c9d9-5d99-f708-68db" name="Razorback" hidden="false" collective="false" import="true" targetId="af87-d6ac-8955-8877" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6108-924d-eb58-8550" type="greaterThan"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="70.0"/>
</costs>
</entryLink>
<entryLink id="15e7-3fe7-ec88-d532" name="Land Raider" hidden="false" collective="false" import="true" targetId="0432-2db6-5eda-20d8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6108-924d-eb58-8550" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="equalTo"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="equalTo"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="9.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="equalTo"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="8.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="equalTo"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="6.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="962e-66b6-c77a-0739" type="equalTo"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="7.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="250.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9123-2779-afc2-b2f0" name="Wolf Guard Retinue" hidden="false" collective="false" import="true" targetId="3eef-2986-8524-8639" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0cf-9e07-6684-7a71" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a4d-fd6c-d80d-33e9" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="374a-a3a7-b666-7176" name="Wulfen Lord" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2682-a24d-27d0-d11d" type="instanceOf"/>
<condition field="selections" scope="5a50-b1c6-a93a-cc0d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c37f-7380-6994-dd44" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5fa1-32f3-697b-b97b" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="8d42-dc01-f115-a391" name="Fensrisian Wolves" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad3b-03d3-f1d8-7ce2" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8ad0-2aba-99f2-b12e" name="Fenris Wolf" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="c725-2eb4-d79a-f573" name="Fenrisian Wolf" hidden="false" targetId="2850-fb21-7c8b-c26f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="12.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9893-8ba7-1b4b-859c" name="Space Wolves Armoury" hidden="false" collective="false" import="true" targetId="c4c0-8266-9b44-5012" type="selectionEntryGroup"/>
<entryLink id="dee3-0bd3-373d-2e53" name="Deathwatch Special Ammo (Independent Characters)" hidden="false" collective="false" import="true" targetId="175a-d904-f65a-6dd4" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="340a-63dd-f55e-9d16" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="982e-7b96-4be8-13f4" name="Deathwatch Veteran" hidden="false" collective="false" import="true" targetId="340a-63dd-f55e-9d16" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0eb1-0fe2-0b21-b47f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3e5e-e6ef-03df-c011" name="Grey Hunter Pack" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="4f6b-1998-a826-399c" name="True Grit" hidden="false" targetId="849a-bdda-3647-9ab5" type="rule"/>
<infoLink id="300c-54e0-a606-2023" name="Space Wolves Special Rules" hidden="false" targetId="20dd-1d42-8acc-dd7b" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d0f1-81f8-5617-9343" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="958c-fac0-6762-70b5" name="New CategoryLink" hidden="false" targetId="0ef5-5056-d52e-3cfd" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="20de-3815-fca3-3f67" name="Upgrade to Bolter" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="6beb-6ae0-2ce2-aea7" value="1.0">
<repeats>
<repeat field="selections" scope="parent" 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="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6beb-6ae0-2ce2-aea7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2103-6215-85ca-d882" name="Boltgun" hidden="false" targetId="60bf-18fd-f6e6-6eb4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="29e3-a6e4-046e-680c" name="Frag Grenades" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="4ed5-2f92-9abc-2870" value="1.0">
<repeats>
<repeat field="selections" scope="parent" 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="3f1f-22c2-026a-8c20" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="341a-4b62-e619-b23a" name="Krak Grenades" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="4ed5-2f92-9abc-2870" value="2.0">
<repeats>
<repeat field="selections" scope="parent" 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="e6fc-ff23-f1d2-3d27" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7eca-a704-6e07-4fc0" name="Standard Bearer" 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="cf6a-a1b8-ccb5-9113" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e50-a3d9-9f9a-75d2" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bc17-30f4-7035-55a2" name="Wolf Totem" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7eca-a704-6e07-4fc0" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e4e-75c6-e3d9-11fc" type="max"/>
</constraints>
<rules>
<rule id="555b-fa23-a6cb-1810" name="Wolf Totem" hidden="false">
<description>Add +1 to the Space Marine combat resolution socre of any assault that takes place within 6" of the Wolf Totem.
However, if the model bearing the standard is slain in close combat, then the enemy model that slew him captures the standard gains the +1 bonus to combat resolution from then on. It is possible for the model to change hands multiple times per game.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="20.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="dfd7-e26c-f40a-9b5f" name="Grey Hunters" hidden="false" collective="false" import="true" defaultSelectionEntryId="3514-adf9-9de6-845b">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a9b4-e7bd-a28b-5086" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="241f-1a00-83a7-3eb3" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3514-adf9-9de6-845b" name="Grey Hunter" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="0754-39d2-5ae5-aa7e" name="Grey Hunter" hidden="false" targetId="904a-a9f3-4b9a-8608" type="profile"/>
<infoLink id="f43d-1dde-73c7-1254" name="Bolt Pistol" hidden="false" targetId="e9ac-c779-51bb-3c9a" type="profile"/>
<infoLink id="d554-5be4-36b5-dac2" name="Close Combat Weapon" hidden="false" targetId="46d5-85f2-d932-f0a2" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="17.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="02d4-8870-ced0-5e59" name="Deathwatch Veteran" hidden="false" collective="false" import="true" targetId="340a-63dd-f55e-9d16" type="selectionEntry">
<infoLinks>
<infoLink id="6879-f305-93e3-7410" name="Boltgun" hidden="false" targetId="60bf-18fd-f6e6-6eb4" type="profile"/>
<infoLink id="7e56-ffc0-192b-e4fb" name="Space Marine" hidden="false" targetId="9514-67fd-b082-445f" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="70fc-9bc8-00dc-437c" name="Deathwatch Special Ammo (Independent Characters)" hidden="false" collective="false" import="true" targetId="175a-d904-f65a-6dd4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="22.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="da52-042d-4fa3-192c" name="Weapon Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c926-430a-f629-bb71" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="a2aa-0cb4-c33d-6721" name="Power Weapon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="619a-bb6a-9c8e-bd70" name="Power Weapon" hidden="false" targetId="5774-7187-2616-dd8a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd1d-b035-e65a-db76" name="Power Fist" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="04f1-cfbc-2f94-d5e9" name="Power Fist" hidden="false" targetId="a161-ed4b-bcb7-0a01" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="15.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="7ead-3eed-b564-588b" name="Weapon Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8232-ab28-c024-8204" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="693d-6dd9-abc3-8a93" name="Plasma Pistol" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="4155-f9e0-e96c-7d62" name="Plasma Pistol" hidden="false" targetId="7b91-b670-d042-7c88" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="5c50-cf02-9092-c15a" name="Weapon Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7412-2822-5869-fbee" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="97be-cb52-6eba-c131" name="Meltagun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="55dd-7643-0caf-480a" name="Meltagun" hidden="false" targetId="737d-c7ef-4cb5-e6fa" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b633-a5f9-aff5-56ec" name="Flamer" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="302a-2d3f-22b2-e9b4" name="Flamer" hidden="false" targetId="9177-ce8a-92e3-157e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2f66-9364-c4a5-721a" name="Plasma Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="d65f-e92a-6834-e3c3" name="Plasma Gun" hidden="false" targetId="112a-baea-9eeb-b1b5" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="12.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="bbe4-faa9-8a52-606f" name="Transport" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db6a-ba04-135f-076a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8762-01eb-90eb-609f" name="Rhino" hidden="false" collective="false" import="true" targetId="a0bd-2758-8540-c713" type="selectionEntry">
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="50.0"/>
</costs>
</entryLink>
<entryLink id="858f-a003-13ac-ba80" name="Razorback" hidden="false" collective="false" import="true" targetId="af87-d6ac-8955-8877" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="70.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="580c-ab92-d3cc-44a9" name="Venerable Dreadnought" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d30f-2196-ab18-13d7" type="max"/>
</constraints>
<rules>
<rule id="0168-6b72-928b-8890" name="Hard to Kill" hidden="false">
<description>Venerable Dreadnoughts are extraordinarily tenacious. When taking a glancing or penetrating hit, you may force your opponent to re-roll the resulting damage.</description>
</rule>
<rule id="8e15-830e-4bd9-80b7" name="Old & Wise" hidden="false">
<description>A Space Wolves army that includes a Venerable Dreadnought may re-roll the dice to determine who gets the first turn.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="36d3-2b8a-cf54-73a9" name="Venerable Dreadnought" hidden="false" targetId="51e5-f2dc-8261-e34f" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d96a-fdc9-3082-8523" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="296a-420f-56ea-e162" name="Dreadnought" hidden="false" targetId="8dd2-2313-fb9d-0368" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="4429-f119-23f6-bb67" name="Left Arm" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="623d-e1cc-800f-e469" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68ce-6003-dd55-31ce" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="c7a2-e606-376e-d16b" name="Dreadnought Close Combat Weapon w/ Storm Bolter" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="878c-679a-140f-d927" name="Dreadnought Close Combat Weapons" hidden="false" targetId="c7f7-e5ab-17a7-1cf9" type="profile"/>
<infoLink id="bd90-f27e-b4c6-6bc4" name="Storm Bolter" hidden="false" targetId="4c6c-9de1-00a8-8016" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2056-cf90-ef36-8255" name="Missile Launcher" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="62b8-f03b-020f-e28a" name="Missle Launcher (krak)" hidden="false" targetId="4e6c-7b62-ba6d-05cf" type="profile"/>
<infoLink id="c95a-042c-1684-d28c" name="Missle Launcher (frag)" hidden="false" targetId="aa04-2d5e-da7e-2d25" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b096-8934-7b3a-a1d1" name="Dreadnought Close Combat Weapon w/ Heavy Flamer" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="373a-f4c6-2b94-7f33" name="Dreadnought Close Combat Weapons" hidden="false" targetId="c7f7-e5ab-17a7-1cf9" type="profile"/>
<infoLink id="c89a-11e0-1e4b-3023" name="Heavy Flamer" hidden="false" targetId="6d36-2c09-dfc3-f257" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="c8d0-51a9-ad95-b6d5" name="Right Arm" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9fcd-f725-532b-76a7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee27-38bd-e022-da6c" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="f13b-1409-5578-583f" name="Assault Cannon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="4d91-2aa0-eb5c-1e5d" name="Assault Cannon" hidden="false" targetId="3f9c-e7c1-c442-3b7c" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5ea7-8105-9c00-f435" name="Twin-linked Lascannon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="3d0e-f40b-7053-66f1" name="Twin-Linked" hidden="false" targetId="ebe5-6318-0fba-b84c" type="rule"/>
<infoLink id="4e55-24eb-b2ac-3155" name="Lascannon" hidden="false" targetId="a160-d79e-e7a9-2e9c" type="profile">
<modifiers>
<modifier type="set" field="name" value="Twin-linked Lascannon"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0160-11a6-3a64-b821" name="Multi-melta" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="63f5-8d9c-fd0b-3667" name="Multi-melta" hidden="false" targetId="7077-4e34-5c92-5320" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="477f-f6af-8b1f-dd06" name="Plasma Cannon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="69fe-5d29-c0c7-457e" name="Plasma Cannon" hidden="false" targetId="9a19-ea1c-3d75-94aa" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7858-8913-bbd3-7f43" name="Twin-linked Heavy Bolter" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="1ff8-e5ff-a8a3-0798" name="Twin-Linked" hidden="false" targetId="ebe5-6318-0fba-b84c" type="rule"/>
<infoLink id="d9f8-17dc-94d8-c32d" name="Heavy Bolter" hidden="false" targetId="b9aa-366b-bd62-4692" type="profile">
<modifiers>
<modifier type="set" field="name" value="Twin-linked Heavy Bolter"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a984-673e-a9de-b664" name="Twin-linked Autocannon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="ec94-0b1c-c82c-a19a" name="Twin-Linked" hidden="false" targetId="ebe5-6318-0fba-b84c" type="rule"/>
<infoLink id="4932-b86c-d711-ba4a" name="Autocannon" hidden="false" targetId="6128-e2af-037e-4d1a" type="profile">
<modifiers>
<modifier type="set" field="name" value="Twin-linked Autocannon"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="35.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1520-8ea7-7211-a492" name="Space Marine Vehicle Upgrades" hidden="false" collective="false" import="true" targetId="93a4-c4f2-3183-a640" type="selectionEntryGroup"/>
<entryLink id="a969-1a0c-34e9-42fa" name="Drop Pod (IA)" hidden="false" collective="false" import="true" targetId="a9cd-beaa-0d6b-0086" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7245-8356-5fa2-6042" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="125.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4c22-47a4-8177-f8f5" name="Leman Russ Exterminator" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cfc-01f2-1df9-e4f8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5616-3112-d321-1d81" name="Leman Russ Exterminator" hidden="false" targetId="72ea-d08b-cdd9-c107" type="profile">
<modifiers>
<modifier type="set" field="b109-f88e-dcc7-8a24" value="4"/>
</modifiers>
</infoLink>
<infoLink id="5138-b943-e241-3cff" name="Autocannon" hidden="false" targetId="6128-e2af-037e-4d1a" type="profile">
<modifiers>
<modifier type="set" field="name" value="Twin-Linked Autocannon"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="d2c5-ada9-ec3f-ceca" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="4be3-cb30-25e9-ce85" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="da34-5912-7b47-72de" name="Hull Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="36c9-8e39-8fd6-17c8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c6d7-354b-b517-454d" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="5f51-b439-5558-c2c7" name="Heavy Bolter" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="7533-0b5f-19c8-9d09" name="Heavy Bolter" hidden="false" targetId="b9aa-366b-bd62-4692" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4dcd-ac66-1854-d39e" name="Lascannon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="0210-9c4b-6bc8-b9da" name="Lascannon" hidden="false" targetId="a160-d79e-e7a9-2e9c" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="15.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="4a05-5804-555c-1aa9" name="Side Sponsons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bfef-1457-b344-27de" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8efe-0726-61bc-9128" name="Heavy Bolter" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="7ac1-5d8f-4008-5fe7" name="Heavy Bolter" hidden="false" targetId="b9aa-366b-bd62-4692" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b4a4-218e-2c9e-b566" name="Space Marine Vehicle Upgrades" hidden="false" collective="false" import="true" targetId="93a4-c4f2-3183-a640" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="180.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b308-b104-9cf1-084e" name="Long Fang Pack" hidden="false" collective="false" import="true" type="unit">
<rules>
<rule id="e5c4-4d9e-e338-4a48" name="Fire Control" hidden="false">
<description>If the pack leader is alive and doesn't shoot in the Shooting Phase then the pack may engage up to two different targets instead of one. Declare which models will fire at each target and then carry on using the normal rules.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="ea95-7a34-cc5c-865e" name="True Grit" hidden="false" targetId="849a-bdda-3647-9ab5" type="rule"/>
<infoLink id="964f-9ed6-da29-6550" name="Space Wolves Special Rules" hidden="false" targetId="20dd-1d42-8acc-dd7b" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5ffe-9ba2-61e7-b39b" name="Space Wolf" hidden="false" targetId="9bbd-df2b-520d-778d" primary="false"/>
<categoryLink id="5c74-b06e-f972-fccc" name="New CategoryLink" hidden="false" targetId="aacb-8a81-62c0-3db8" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b801-9818-bef8-1cc3" name="Transport" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f1d-98b1-fad9-12d5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="24fa-e94b-cdbf-256c" name="Rhino" hidden="false" collective="false" import="true" targetId="a0bd-2758-8540-c713" type="selectionEntry">
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="50.0"/>
</costs>
</entryLink>
<entryLink id="cdf1-52a0-96fe-8cd2" name="Land Raider" hidden="false" collective="false" import="true" targetId="0432-2db6-5eda-20d8" type="selectionEntry">
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="250.0"/>
</costs>
</entryLink>
<entryLink id="2fdb-2f8b-3f3d-c8ec" name="Razorback" hidden="false" collective="false" import="true" targetId="af87-d6ac-8955-8877" type="selectionEntry">
<comment>Allowed per FAQ in CA:2003</comment>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="db01-ab22-63a9-c52f" name="Long Fangs" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a19-665b-082c-4807" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="53aa-7dda-3da3-681f" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="9802-e3e2-0c0a-7056" name="Pack Leader" 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="30cd-b91a-6323-ca56" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="633a-cf7d-6524-d85c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e3ac-31f8-5eb5-2550" name="Grey Hunter" hidden="false" targetId="904a-a9f3-4b9a-8608" type="profile">
<modifiers>
<modifier type="set" field="name" value="Pack Leader"/>
<modifier type="set" field="f47e-b15a-8f58-703c" value="9"/>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="4145-e9ab-5b3e-a91c" name="Weapon Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="151d-b298-9ef9-f448">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4550-16bf-05fc-00d1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cf9-90c2-2671-14db" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="151d-b298-9ef9-f448" name="Bolt Pistol" 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="dd68-6122-cafb-8c99" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5bf1-1f51-75bc-c533" name="Bolt Pistol" hidden="false" targetId="e9ac-c779-51bb-3c9a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4e1c-ef2a-dbbc-c3d9" name="Meltagun" 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="32a7-a90b-06ee-77f6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f3af-7f37-7c0a-7215" name="Meltagun" hidden="false" targetId="737d-c7ef-4cb5-e6fa" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="55c2-e3fd-2298-3f1b" name="Flamer" 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="1119-e473-f33b-dc64" type="max"/>
</constraints>
<infoLinks>
<infoLink id="60f0-a7d3-0f86-5138" name="Flamer" hidden="false" targetId="9177-ce8a-92e3-157e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7211-9afc-0075-b547" name="Plasma Gun" 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="2d19-7a0b-ada7-14d1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="539c-323f-8e79-6e04" name="Plasma Gun" hidden="false" targetId="112a-baea-9eeb-b1b5" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="12.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1753-0e22-7090-b89e" name="Bolter" 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="7d9d-879b-758a-a7b4" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e5cc-4485-6077-01a8" name="Boltgun" hidden="false" targetId="60bf-18fd-f6e6-6eb4" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="a5c1-6595-fd4d-7ef3" name="Weapon Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="b2a2-a483-be63-73e8">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="55c2-e3fd-2298-3f1b" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7211-9afc-0075-b547" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4e1c-ef2a-dbbc-c3d9" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="49e1-0d3e-0a68-cec1" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="55c2-e3fd-2298-3f1b" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7211-9afc-0075-b547" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4e1c-ef2a-dbbc-c3d9" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7fdc-aaf4-c177-e4cc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49e1-0d3e-0a68-cec1" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="9421-fd28-8df4-9f15" name="Power Weapon" 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="3c33-7a4e-15f6-172e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2ace-ec1b-8f40-1049" name="Power Weapon" hidden="false" targetId="5774-7187-2616-dd8a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="4ed5-2f92-9abc-2870" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="270e-9d22-8085-1906" name="Power Fist" 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="2dd6-681a-27e1-0fee" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5a74-5feb-3dc0-d834" name="Power Fist" hidden="false" targetId="a161-ed4b-bcb7-0a01" type="profile"/>
</infoLinks>