forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deathwatch.cat
2628 lines (2628 loc) · 192 KB
/
Deathwatch.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="7548-75cf-ab24-7e9c" name="Deathwatch" revision="19" battleScribeVersion="2.03" authorName="@MadSpy" authorUrl="https://github.com/BSData/wh40k-killteam" library="false" gameSystemId="a467-5f42-d24c-6e5b" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="7548-75cf-pubN65537" name="Warhammer 40,000 - Kill Team - Core Manual"/>
</publications>
<profileTypes>
<profileType id="077d-c292-5c8e-3690" name="Special Issue Ammunition">
<characteristicTypes>
<characteristicType id="f30c-391f-8390-3df0" name="Modifier"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="4fba-7c76-7dc8-8a49" name="Deathwatch Veteran" hidden="false"/>
<categoryEntry id="31e1-8ec4-0707-f4e2" name="Primaris" hidden="false"/>
<categoryEntry id="f9cc-54d5-6a6b-55d7" name="Intercessor" hidden="false"/>
<categoryEntry id="faaf-ba3e-797f-0c06" name="Reiver" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="aa7e-e8f7-b6b6-6399" name="Watch Sergeant" hidden="false" collective="false" import="true" targetId="3a43-b32d-507b-c8d3" type="selectionEntry">
<categoryLinks>
<categoryLink id="90c0-3bd3-dc71-dd39" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fccf-b6af-799a-1bc5" name="Watch Sergeant" hidden="false" collective="false" import="true" targetId="3a43-b32d-507b-c8d3" type="selectionEntry">
<categoryLinks>
<categoryLink id="2509-5044-427c-b0f7" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cac7-b470-3c12-d0ab" name="Watch Sergeant" hidden="false" collective="false" import="true" targetId="3a43-b32d-507b-c8d3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8f6c-e9e0-8fe2-5322" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="04a6-3752-a472-ec19" name="Veteran Gunner" hidden="false" collective="false" import="true" targetId="fe35-3207-26cd-c3ce" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="eaec-c9d9-f97c-78a9" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="03af-1704-8818-5e75" name="Veteran Gunner" hidden="false" collective="false" import="true" targetId="fe35-3207-26cd-c3ce" type="selectionEntry">
<categoryLinks>
<categoryLink id="6b01-a73e-8018-d731" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f0d0-cb4f-b22d-7bc6" name="Veteran" hidden="false" collective="false" import="true" targetId="bdd0-e085-dacc-1f66" type="selectionEntry">
<categoryLinks>
<categoryLink id="22ba-3d6b-5147-f525" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="06c9-2730-c22d-dd9a" name="Veteran" hidden="false" collective="false" import="true" targetId="bdd0-e085-dacc-1f66" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="33f3-e45b-3e16-3f76" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6879-da67-30a1-dc51" name="Black Shield" hidden="false" collective="false" import="true" targetId="7bf0-9686-9554-6193" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c751-3173-8b5a-5643" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f62b-47d2-24c1-399a" name="Black Shield" hidden="false" collective="false" import="true" targetId="7bf0-9686-9554-6193" type="selectionEntry">
<categoryLinks>
<categoryLink id="c40c-989c-7f4a-bcc9" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bec6-692a-a642-9812" name="Deathwatch Veteran Fire Team" hidden="false" collective="false" import="true" targetId="4713-0bf7-a9f9-4523" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6271-6d86-2b94-8df1" name="Intercessor" hidden="false" collective="false" import="true" targetId="07d5-2fb7-ab3c-64dd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ab05-8677-25df-658a" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="82f9-6084-8c62-c50a" name="Intercessor Gunner" hidden="false" collective="false" import="true" targetId="be83-2d58-a86b-c773" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="70a8-a632-9787-2d61" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8482-621e-4299-8398" name="Intercessor Sergeant" hidden="false" collective="false" import="true" targetId="cf1d-d0f5-b708-5bca" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ee77-a4a7-6a1e-ebd2" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="33e8-a229-f9a5-c3c3" name="Reiver" hidden="false" collective="false" import="true" targetId="83cd-6b72-2282-9826" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3914-e3e8-d792-c94b" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f760-dd6c-4bfb-478c" name="Reiver Sergeant" hidden="false" collective="false" import="true" targetId="9864-ccc9-9751-806f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="25ca-d300-8c68-11a8" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bc43-a237-3d1f-e6b1" name="Intercessor" hidden="false" collective="false" import="true" targetId="07d5-2fb7-ab3c-64dd" type="selectionEntry">
<categoryLinks>
<categoryLink id="6c2f-e335-fa25-9073" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="61b7-8eeb-fa4a-1690" name="Intercessor Gunner" hidden="false" collective="false" import="true" targetId="be83-2d58-a86b-c773" type="selectionEntry">
<categoryLinks>
<categoryLink id="c198-fc6f-45d7-dbdc" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dfac-933b-b4d8-8448" name="Intercessor Sergeant" hidden="false" collective="false" import="true" targetId="cf1d-d0f5-b708-5bca" type="selectionEntry">
<categoryLinks>
<categoryLink id="81dc-0b2b-6728-6147" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="33bd-da0f-ddf8-98ab" name="Reiver" hidden="false" collective="false" import="true" targetId="83cd-6b72-2282-9826" type="selectionEntry">
<categoryLinks>
<categoryLink id="2615-59b2-9547-8063" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a730-7388-8479-b9b3" name="Reiver Sergeant" hidden="false" collective="false" import="true" targetId="9864-ccc9-9751-806f" type="selectionEntry">
<categoryLinks>
<categoryLink id="16bd-545e-1c84-fab2" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="efe0-075f-c749-64c8" name="Intercessor Sergeant" hidden="false" collective="false" import="true" targetId="cf1d-d0f5-b708-5bca" type="selectionEntry">
<categoryLinks>
<categoryLink id="8917-4e5a-d8db-a746" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2107-e259-b05d-c50e" name="Reiver Sergeant" hidden="false" collective="false" import="true" targetId="9864-ccc9-9751-806f" type="selectionEntry">
<categoryLinks>
<categoryLink id="18aa-5647-7905-20bf" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8057-f96f-c530-a886" name="Intercessor Fire Team" hidden="false" collective="false" import="true" targetId="f9c1-0d03-a6be-c7aa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3149-2b81-7ec8-9b90" name="Reiver Fire Team" hidden="false" collective="false" import="true" targetId="f8d2-61ce-0792-2eca" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="ad7d-d24d-add6-05dc" name="Primaris Captain" hidden="false" collective="false" import="true" targetId="b7e8-a22b-56f9-93a2" type="selectionEntry"/>
<entryLink id="c2ed-3786-3d06-bc02" name="Primaris Chaplain" hidden="false" collective="false" import="true" targetId="109f-9823-a9f6-e6f0" type="selectionEntry"/>
<entryLink id="88f8-3a58-4350-4ea9" name="Primaris Librarian" hidden="false" collective="false" import="true" targetId="448a-c69d-5f36-bca0" type="selectionEntry"/>
<entryLink id="73d4-55db-995b-8440" name="Watch Master" hidden="false" collective="false" import="true" targetId="020c-93ca-a5b5-2957" type="selectionEntry"/>
<entryLink id="a7e4-b28f-ea75-ed7c" name="Terminator" hidden="false" collective="false" import="true" targetId="ca38-d54c-3ff9-5c1c" type="selectionEntry">
<infoLinks>
<infoLink id="8bea-cf20-bb57-e05f" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f9b3-f351-51ff-db6b" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
<categoryLink id="af89-eb8c-b6e1-fb69" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="1804-cb52-05cb-2e44" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="fd6b-f9bc-6b9d-4b21" name="Terminator" hidden="false" collective="false" import="true" targetId="ca38-d54c-3ff9-5c1c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="9b92-b8fb-eeb5-e51a" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8950-81a8-e873-c260" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
<categoryLink id="4025-e944-aa23-2454" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c855-dbdf-a7fa-22af" name="Terminator Gunner" hidden="false" collective="false" import="true" targetId="8adc-9d8c-0bf8-6bc3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="2122-4934-a44c-8cff" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="452f-77a9-2475-557a" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
<categoryLink id="bc8c-880a-63e1-864c" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="745c-7938-1da1-eb2c" name="Terminator Gunner" hidden="false" collective="false" import="true" targetId="8adc-9d8c-0bf8-6bc3" type="selectionEntry">
<infoLinks>
<infoLink id="6d40-f0a1-0294-ef95" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4f2a-b0e1-97bd-d89d" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
<categoryLink id="f728-2935-5d05-4995" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="4aa7-24c6-7883-b6a3" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="551b-e0b6-7c95-335b" name="Terminator Sergeant" hidden="false" collective="false" import="true" targetId="4c64-f195-7269-1fff" type="selectionEntry">
<infoLinks>
<infoLink id="6b59-2db7-4c5a-4ea8" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d621-0f45-9aa3-b951" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
<categoryLink id="b68c-50c8-add0-f50a" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f0f4-5b20-0fff-8d72" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="63bd-a549-b67e-98be" name="Terminator Sergeant" hidden="false" collective="false" import="true" targetId="4c64-f195-7269-1fff" type="selectionEntry">
<infoLinks>
<infoLink id="233c-bbc0-72c7-49c2" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e8be-663b-b6c7-589f" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
<categoryLink id="c3f3-1672-9e59-da14" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f782-b97a-c621-5c26" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="ddb5-4723-2d55-314a" name="Terminator Sergeant" hidden="false" collective="false" import="true" targetId="4c64-f195-7269-1fff" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="718f-2feb-8411-d0a0" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2a43-0d7f-3923-75cf" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
<categoryLink id="bb6e-a325-75fa-2088" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="62bc-e49a-8e57-77ea" name="Captain in Terminator Armour" hidden="false" collective="false" import="true" targetId="1cac-4ecd-8a86-6833" type="selectionEntry">
<categoryLinks>
<categoryLink id="cf4d-3cb9-4fd1-df96" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="80eb-7ce7-f2b4-e1ce" name="Specialism" hidden="false" collective="false" import="true" targetId="09fb-bc3f-6568-3928" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="0bee-0045-4329-fb3b" name="Chaplain in Terminator Armour" hidden="false" collective="false" import="true" targetId="72df-333f-d44f-e598" type="selectionEntry">
<categoryLinks>
<categoryLink id="5842-6208-fe87-1a1a" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="2d81-072b-75d7-b105" name="Specialism" hidden="false" collective="false" import="true" targetId="09fb-bc3f-6568-3928" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="05db-02fa-06fa-e2e7" name="Librarian in Terminator Armour" hidden="false" collective="false" import="true" targetId="337a-f2e3-2598-1b94" type="selectionEntry">
<categoryLinks>
<categoryLink id="d268-0b4f-eb85-4cef" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="60dc-1925-e888-231f" name="Specialism" hidden="false" collective="false" import="true" targetId="09fb-bc3f-6568-3928" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="6fdd-819b-a0f6-eb6e" name="Vanguard Veteran" hidden="false" collective="false" import="true" targetId="a7e2-4c13-d51c-1551" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="84eb-4553-67dc-0c18" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="aedd-2a96-fd6a-ed54" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
<categoryLink id="e438-35cc-d7e7-cf89" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7f62-0426-22a7-e7e9" name="Vanguard Veteran" hidden="false" collective="false" import="true" targetId="a7e2-4c13-d51c-1551" type="selectionEntry">
<infoLinks>
<infoLink id="4604-003d-5e07-15dc" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5a3a-c962-5161-3e5e" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
<categoryLink id="e5ac-1605-1b95-9d73" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="aa77-eb4a-1045-299b" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="513d-0c45-3690-f470" name="Terminator Fire Team" hidden="false" collective="false" import="true" targetId="9eaf-a6a5-3a42-1c9f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="63d1-f433-8ad4-32b5" name="Veteran Fire Team" hidden="false" collective="false" import="true" targetId="c4b2-a796-c564-64de" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7774-41d9-8342-e90d" name="Inquisitor Eisenhorn" hidden="false" collective="false" import="true" targetId="0fd3-65bd-a18e-1a30" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="6c39-c66b-0b15-60bb" name="Mission Tactics" hidden="false">
<description>At the beginning of the first battle round, choose a datasheet to be your kill team’s priority target (e.g. Tyranid Warrior). You can re-roll wound rolls of 1 for attacks made by models in your kill team that target a model from the datasheet that is your kill team’s priority target (so if you chose Tyranid Warrior, this ability would apply to attacks that targeted Tyranid Warriors and Tyranid Warrior Gunners).</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="bdd0-e085-dacc-1f66" name="Veteran" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<profiles>
<profile id="13c4-aa56-8fa5-51a2" name="Veteran" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5c80-0e13-c2e9-4d2c" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="88b5-f620-529f-3520" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2679-dcc4-c6d7-0fab" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="1319-8fed-08c8-947a" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="d3af-d7ae-e35d-93c4" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
<categoryLink id="efdb-94a6-1744-f1e0" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="4e06-3e9c-6698-d290" name="Deathwatch Veteran" hidden="false" targetId="4fba-7c76-7dc8-8a49" primary="false"/>
<categoryLink id="0763-251b-54db-b75e" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e34b-075a-ec94-abf5" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="33a8-ed2c-5ce1-9774" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="4566-2b5b-e494-bffc" name="Deathwatch Weapons" hidden="false" collective="false" import="true" targetId="31da-cb72-0cd0-4450" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="14.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fe35-3207-26cd-c3ce" name="Veteran Gunner" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="822d-22dc-828a-e4ae" value="4">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="822d-22dc-828a-e4ae" type="max"/>
</constraints>
<profiles>
<profile id="2e6c-37a4-5868-725f" name="Veteran Gunner" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c502-a937-38b6-895a" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="885c-38ad-0b14-b0db" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="38b1-d28b-d5fc-8686" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="418f-005f-26b4-802e" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="76de-dcda-e34b-5915" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
<categoryLink id="f399-9992-a6e3-9724" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="07ed-f68f-1580-05a8" name="Deathwatch Veteran" hidden="false" targetId="4fba-7c76-7dc8-8a49" primary="false"/>
<categoryLink id="7c1f-b869-01f1-0c42" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8a9a-4425-27ba-52db" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="eb5d-1925-3c87-a79f" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="31f7-fad7-5f8a-5907" name="Deathwatch Weapons" hidden="false" collective="false" import="true" targetId="31da-cb72-0cd0-4450" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7bf0-9686-9554-6193" name="Black Shield" page="90" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="0170-1b6d-8eda-a8c5" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0170-1b6d-8eda-a8c5" type="max"/>
</constraints>
<profiles>
<profile id="6639-ddf9-4300-8617" name="Black Shield" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">3</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
<profile id="5e1e-b030-e9dd-e557" name="Atonement Through Honour" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">You can re-roll failed charge rolls for a Black Shield.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="37f9-5b91-e327-995e" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="beaa-78d1-ddf2-4b19" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2787-05c5-8478-2328" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="b88d-1087-0494-b183" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="a2ef-c3ed-50c8-588a" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
<categoryLink id="065a-74cc-0c7b-a414" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="460f-a805-7f90-d7f6" name="Deathwatch Veteran" hidden="false" targetId="4fba-7c76-7dc8-8a49" primary="false"/>
<categoryLink id="d607-afbd-7888-5d25" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="e4a7-e3cf-107c-a759" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="46de-ed69-38a7-4d5d" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="0f96-9c3f-b2cc-b78f" name="Deathwatch Weapons" hidden="false" collective="false" import="true" targetId="31da-cb72-0cd0-4450" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3a43-b32d-507b-c8d3" name="Watch Sergeant" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="bb08-15c8-8735-089d" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bb08-15c8-8735-089d" type="max"/>
</constraints>
<profiles>
<profile id="3e65-0b35-4964-5f22" name="Watch Sergeant" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">3</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">9</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f378-0877-e09d-61ec" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="605d-04a3-c153-9b05" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9b53-73ee-f09b-e0e0" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="da0c-8903-a279-a983" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="8cc8-eb38-ba11-f3bd" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
<categoryLink id="183d-17cb-798a-d493" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="b315-cd0f-12ee-b970" name="Deathwatch Veteran" hidden="false" targetId="4fba-7c76-7dc8-8a49" primary="false"/>
<categoryLink id="1e62-6f48-beba-bb73" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="4fb5-8f7c-ebe6-88a5" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="9238-7958-299a-68fc" name="Deathwatch Weapons" hidden="false" collective="false" import="true" targetId="31da-cb72-0cd0-4450" type="selectionEntryGroup"/>
<entryLink id="144e-cda8-a74d-0aa2" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b9cb-fbbf-51e9-41e5" name="Boltgun" 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="2a96-f363-4e8f-fb1f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ac10-8b46-f1b8-3348" name="Boltgun" hidden="false" targetId="cbc8-1d8f-9bb1-e659" type="profile"/>
<infoLink id="c7b5-98d8-8665-8ad8" name="Special Issue Ammunition (Standard)" hidden="false" targetId="0d8c-55e8-2b4f-0a25" type="profile"/>
<infoLink id="a3af-4d0b-858f-263c" name="Kraken bolt" hidden="false" targetId="6d7b-d730-68fd-06fb" type="profile"/>
<infoLink id="138c-e7b8-f69a-6a03" name="Vengeance round" hidden="false" targetId="a906-43c0-8e5d-7d1e" type="profile"/>
<infoLink id="3ae7-ebeb-f425-1847" name="Dragonfire bolt" hidden="false" targetId="f29e-115d-082d-4a64" type="profile"/>
<infoLink id="1114-a2ce-bf87-5ca7" name="Hellfire round" hidden="false" targetId="267f-bd63-4497-bccd" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc75-b2ca-11ae-5e7f" name="Frag and krak grenades" 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="708a-6ea0-13e9-0fd7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb21-c1d2-8fe6-dc10" type="min"/>
</constraints>
<profiles>
<profile id="4641-dd3c-9d92-0fe2" name="Frag grenade" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">6"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Grenade D6</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">3</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
<profile id="955c-7aca-94d3-fc77" name="Krak grenade" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">6"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Grenade 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">6</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">D3</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4713-0bf7-a9f9-4523" name="Deathwatch Veteran Fire Team" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c3fe-29cb-6163-fba1" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="2e00-504b-a96f-0b31" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="ae4b-c484-006a-1bcf" name="Models" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="2d27-b87c-0af2-d4d6" name="Black Shield" hidden="false" collective="false" import="true" targetId="7bf0-9686-9554-6193" type="selectionEntry"/>
<entryLink id="d144-3f10-16a7-ca17" name="Watch Sergeant" hidden="false" collective="false" import="true" targetId="3a43-b32d-507b-c8d3" type="selectionEntry"/>
<entryLink id="85c5-7808-0186-7893" name="Veteran Gunner" hidden="false" collective="false" import="true" targetId="fe35-3207-26cd-c3ce" type="selectionEntry"/>
<entryLink id="9816-c310-0e4c-359a" name="Veteran" hidden="false" collective="false" import="true" targetId="bdd0-e085-dacc-1f66" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5cd0-66d4-f889-7c4b" name="Fire Team Advances" hidden="false" collective="false" import="true" targetId="ed6d-4175-51ed-c1d3" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="07d5-2fb7-ab3c-64dd" name="Intercessor" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<profiles>
<profile id="f899-daab-ea7f-ceb9" name="Intercessor" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4f2d-2ec9-7f11-9625" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="e223-349c-2c5e-20e1" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8008-1a1a-5678-1430" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="2440-de89-d86b-f4bf" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="e719-aeb9-0804-19c7" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="88af-776f-b3f9-0d0f" name="Primaris" hidden="false" targetId="31e1-8ec4-0707-f4e2" primary="false"/>
<categoryLink id="3a45-7df5-b890-70d5" name="Intercessor" hidden="false" targetId="f9cc-54d5-6a6b-55d7" primary="false"/>
<categoryLink id="e6a1-538d-5c23-e64c" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="95b9-ebc1-d53b-d946" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="58bd-4b69-1299-ad65" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="768c-074d-56b8-aa0c" name="Intercessor weapons" hidden="false" collective="false" import="true" targetId="3c6e-fe09-0910-09a7" type="selectionEntryGroup"/>
<entryLink id="cf6a-282f-b138-899e" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="3454-125d-8cc4-e87c" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="cfb4-7791-2e49-9f10" type="selectionEntry"/>
<entryLink id="72bb-a86e-81cd-844f" name="Auspex" hidden="false" collective="false" import="true" targetId="0591-71c0-964e-7617" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="be83-2d58-a86b-c773" name="Intercessor Gunner" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="4502-967f-0d25-fd1a" value="2">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4502-967f-0d25-fd1a" type="max"/>
</constraints>
<profiles>
<profile id="195e-a2ba-7a35-f5c3" name="Intercessor Gunner" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="44b5-0499-4db8-83d0" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="3896-209b-2641-1dea" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8787-7bf8-20c3-268b" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="1b72-599b-5078-13b7" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="3358-a071-59ea-8a92" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="1139-60a1-00d6-d70f" name="Primaris" hidden="false" targetId="31e1-8ec4-0707-f4e2" primary="false"/>
<categoryLink id="2fa5-5f72-da22-49d9" name="Intercessor" hidden="false" targetId="f9cc-54d5-6a6b-55d7" primary="false"/>
<categoryLink id="2f9f-a6bf-9b6f-4788" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="5bcd-4eca-2e50-f831" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f49c-d866-ddb2-1f9b" name="Auxiliary grenade launcher" 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="728b-0db5-0ffd-80a8" type="max"/>
</constraints>
<profiles>
<profile id="0b72-57fb-2297-8107" name="Auxiliary grenade launcher" hidden="false" typeId="0883-432d-b2ca-f11a" typeName="Wargear">
<characteristics>
<characteristic name="Ability" typeId="8b56-49a8-40e5-242a">If a model is armed with an auxiliary grenade launcher, increase the range of any Grenade weapons they have to 30". This model's Grenade weapons are affected by the Long Range rule.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c0fc-8e99-e364-5ca2" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="1580-cdcc-7a73-6129" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="964c-9c11-cebc-9602" name="Intercessor weapons" hidden="false" collective="false" import="true" targetId="3c6e-fe09-0910-09a7" type="selectionEntryGroup"/>
<entryLink id="8c3c-1974-6e64-ac05" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="cfb4-7791-2e49-9f10" type="selectionEntry"/>
<entryLink id="a8da-9fd1-5975-0c88" name="Auspex" hidden="false" collective="false" import="true" targetId="0591-71c0-964e-7617" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf1d-d0f5-b708-5bca" name="Intercessor Sergeant" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="f6fe-e53a-777e-05df" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f6fe-e53a-777e-05df" type="max"/>
</constraints>
<profiles>
<profile id="9e28-a23c-9dfb-355e" name="Intercessor Sergeant" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">3</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5e6a-a4d8-cdda-7f6e" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="7819-2f36-d927-4c8a" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="693c-5382-ffa2-a4f5" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="57d1-1d6e-0a47-3438" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="9f8f-0dcd-16d9-1a47" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="d1c7-1567-c9e7-07a5" name="Primaris" hidden="false" targetId="31e1-8ec4-0707-f4e2" primary="false"/>
<categoryLink id="26d1-92c9-1f4f-8dc1" name="Intercessor" hidden="false" targetId="f9cc-54d5-6a6b-55d7" primary="false"/>
<categoryLink id="2523-993a-00f9-1817" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="2bac-3e09-61e8-361a" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="315a-9c96-4c4d-0b73" name="Melee 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="76f7-01c6-00aa-4af5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6dce-3ead-b012-33b1" name="Power fist" hidden="false" collective="false" import="true" targetId="1689-c138-0775-3587" type="selectionEntry"/>
<entryLink id="2d52-2c2b-a93c-e468" name="Power sword" hidden="false" collective="false" import="true" targetId="ecb3-8447-db60-da63" type="selectionEntry">
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="2.0"/>
</costs>
</entryLink>
<entryLink id="f7b4-fb5b-0f17-a278" name="Thunder hammer" hidden="false" collective="false" import="true" targetId="0528-7cff-65ac-73f7" type="selectionEntry"/>
<entryLink id="8cb7-5442-4104-7296" name="Chainsword" hidden="false" collective="false" import="true" targetId="a4a3-5f51-7929-17df" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8cb4-c6bc-e9a5-66e0" name="Ranged weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="dc70-6ad3-6e34-1e23">
<modifiers>
<modifier type="set" field="26e0-1d32-b294-7b6a" value="0.0">
<conditions>
<condition field="selections" scope="cf1d-d0f5-b708-5bca" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a4a3-5f51-7929-17df" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ede2-f41d-2ea1-7142" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26e0-1d32-b294-7b6a" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="c429-c2dd-96ce-d988" name="Hand flamer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4e32-30bc-28ff-f69e" name="Hand flamer" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">8"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Pistol D3</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">3</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">This weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d246-e884-bb08-70ce" name="Auto bolt rifle" hidden="false" collective="false" import="true" targetId="4fd5-97ec-a360-9b25" type="selectionEntry"/>
<entryLink id="dc70-6ad3-6e34-1e23" name="Bolt rifle" hidden="false" collective="false" import="true" targetId="68da-1d94-e214-6391" type="selectionEntry"/>
<entryLink id="03c9-1f09-b80b-7e8c" name="Stalker bolt rifle" hidden="false" collective="false" import="true" targetId="1adb-10d2-c501-9343" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b68e-1a09-9371-5f0e" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="1d55-da3a-1077-de96" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="f4f4-d82b-cf7e-5f25" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="cfb4-7791-2e49-9f10" type="selectionEntry"/>
<entryLink id="ba6b-a5dd-68ac-392d" name="Auspex" hidden="false" collective="false" import="true" targetId="0591-71c0-964e-7617" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="83cd-6b72-2282-9826" name="Reiver" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<profiles>
<profile id="39c4-b2dd-508c-3636" name="Reiver" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e7cd-f23f-9fda-082b" name="And They Shall Know No Fear" hidden="false" targetId="2a62-fe9f-eb95-da50" type="profile"/>
<infoLink id="0167-c830-8964-16fe" name="Transhuman Physiology" hidden="false" targetId="4ad3-50ea-e31d-70a1" type="profile"/>
<infoLink id="1c5b-4ad8-9909-6959" name="Terror Troops" hidden="false" targetId="dd09-f8dd-95ed-a0e4" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="144e-f997-a5fa-ac3e" name="Faction: Deathwatch" hidden="false" targetId="5714-620f-5af3-6b91" primary="false"/>
<categoryLink id="e1ad-17bb-1342-4f50" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="3972-bc87-1f37-0283" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="e691-b03d-73a3-513f" name="Primaris" hidden="false" targetId="31e1-8ec4-0707-f4e2" primary="false"/>
<categoryLink id="e7a3-0a99-2e5b-34f7" name="Reiver" hidden="false" targetId="faaf-ba3e-797f-0c06" primary="false"/>
<categoryLink id="48bf-e396-3edc-50c0" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="7a6c-52bb-23ec-b218" name="Adeptus Astartes" hidden="false" targetId="76f9-f77f-8300-3b37" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e500-e0ef-fedf-4ac7" name="Weapon option" hidden="false" collective="false" import="true" defaultSelectionEntryId="e2d0-dc2c-3c4d-4c88">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9681-f45a-bf43-44e7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7161-6e52-183b-fa25" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e2d0-dc2c-3c4d-4c88" name="Bolt carbine" hidden="false" collective="false" import="true" targetId="2455-819c-8571-9dda" type="selectionEntry"/>
<entryLink id="4a14-ca4e-c96b-6d74" name="Combat knife" hidden="false" collective="false" import="true" targetId="d524-db7a-cc6d-c960" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4d7f-4ea3-af87-dbc8" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="cc75-b2ca-11ae-5e7f" type="selectionEntry"/>
<entryLink id="a000-bc45-8853-9b58" name="Specialism" hidden="false" collective="false" import="true" targetId="e124-5805-2258-ee20" type="selectionEntryGroup"/>
<entryLink id="d413-d9d4-d73f-5aa4" name="Heavy bolt pistol" hidden="false" collective="false" import="true" targetId="0ec3-47fa-dfc1-1398" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af8e-3434-cc83-3427" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a14-c260-a63b-b440" type="min"/>
</constraints>
</entryLink>
<entryLink id="b014-08e3-f088-073c" name="Grapnel Launcher" hidden="false" collective="false" import="true" targetId="de4d-afc7-7672-1a32" type="selectionEntry"/>
<entryLink id="033d-230c-a8f6-52cb" name="Grav-chute" hidden="false" collective="false" import="true" targetId="d4ce-279c-aaa9-f7de" type="selectionEntry"/>
<entryLink id="b5ec-459e-7c57-4332" name="Shock grenades" hidden="false" collective="false" import="true" targetId="3fe3-a784-dc29-cc33" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9864-ccc9-9751-806f" name="Reiver Sergeant" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="bb65-1f6e-4c34-0355" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c0f7-c442-b695-bf07" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bb65-1f6e-4c34-0355" type="max"/>
</constraints>
<profiles>
<profile id="c882-de3f-8169-5a64" name="Reiver Sergeant" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">3</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>