forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2021 - Veteran Guardsmen.cat
2342 lines (2339 loc) · 196 KB
/
2021 - Veteran Guardsmen.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="8e62-da18-67f9-c594" name="Veteran Guardsmen" revision="14" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="5" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="6790-22ed-c8fa-6309" name="Comms Veteran" hidden="false"/>
<categoryEntry id="e2e3-78d3-0b08-9d27" name="VETERAN GUARDSMAN" hidden="false"/>
<categoryEntry id="ef4a-6883-982a-2b4b" name="Trooper Veteran" hidden="false"/>
<categoryEntry id="2de5-ea5c-3735-de87" name="Sergeant Veteran" hidden="false"/>
<categoryEntry id="5e0d-a324-98e7-6fb7" name="Zealot Veteran" hidden="false"/>
<categoryEntry id="dc5e-7a69-2c1d-12bb" name="Demolition Veteran" hidden="false"/>
<categoryEntry id="b590-f8ac-02b1-a5e5" name="Bruiser Veteran" hidden="false"/>
<categoryEntry id="3e9d-eaef-1b8e-d9c5" name="Hardened Veteran" hidden="false"/>
<categoryEntry id="9255-8bf6-7b07-e2a0" name="Spotter Veteran" hidden="false"/>
<categoryEntry id="5cae-0173-65fc-4139" name="Confidant Veteran" hidden="false"/>
<categoryEntry id="c44a-2ec6-3764-e5f4" name="Medic Veteran" hidden="false"/>
<categoryEntry id="b1ff-4296-787b-39c3" name="Sniper Veteran" hidden="false"/>
<categoryEntry id="900c-91f5-1f16-b811" name="Gunner Veteran" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="23da-9b6a-4eeb-a87e" name="Veteran Guardsman Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="8cc2-68e8-1757-efba" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="7f00-a331-e0f2-b17b" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="3fae-a477-9ae8-2a61" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2318-54c1-a964-dcbf" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f4bf-9648-d583-d024" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false"/>
<categoryLink id="8e10-84f1-74b1-8efd" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false">
<modifiers>
<modifier type="increment" field="da7d-89fb-f716-6396" value="4.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e147-08fc-a35d-ac3a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da7d-89fb-f716-6396" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ed9c-25d0-ce15-06e9" name="Bruiser Veteran" hidden="false" targetId="b590-f8ac-02b1-a5e5" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4ae-41b6-ec11-0863" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="bf96-d832-5bc6-c4ab" name="Confidant Veteran" hidden="false" targetId="5cae-0173-65fc-4139" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c4b-cfa0-c3a9-0b08" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="61d1-0b50-535a-bfb1" name="Demolition Veteran" hidden="false" targetId="dc5e-7a69-2c1d-12bb" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c98d-8c0d-5f9d-693b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0075-20b2-fc82-3793" name="Hardened Veteran" hidden="false" targetId="3e9d-eaef-1b8e-d9c5" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="06d2-f171-366a-851d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8951-d5d0-6a61-6887" name="Medic Veteran" hidden="false" targetId="c44a-2ec6-3764-e5f4" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff6b-3eae-2d9a-409a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="96a2-bc02-bbd7-da50" name="Sniper Veteran" hidden="false" targetId="b1ff-4296-787b-39c3" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c16-75a1-d96a-be51" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="90a2-9ef8-59ab-7899" name="Spotter Veteran" hidden="false" targetId="9255-8bf6-7b07-e2a0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc63-6664-7007-69bf" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="800b-38f6-251b-708b" name="Zealot Veteran" hidden="false" targetId="5e0d-a324-98e7-6fb7" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d88-46b6-80d5-62d6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f476-5a6e-b6b5-f900" name="Comms Veteran" hidden="false" targetId="6790-22ed-c8fa-6309" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7425-00a8-25fc-0f3e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0b3d-436f-a1ac-392a" name="Trooper Veteran" hidden="false" targetId="ef4a-6883-982a-2b4b" primary="false">
<modifiers>
<modifier type="set" field="10a4-98b0-e27a-85d8" value="4.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e147-08fc-a35d-ac3a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10a4-98b0-e27a-85d8" type="min"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="e147-08fc-a35d-ac3a" name="Ancillary Support - Trooper Veterans" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7138-2b60-74ce-a90b" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1d04-69a3-c311-9943" name="New CategoryLink" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="true"/>
</categoryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7ea3-2fdd-781f-d8b1" name="Hardened Veteran" hidden="false" collective="false" import="true" targetId="78b0-3547-6240-9f90" type="selectionEntry">
<categoryLinks>
<categoryLink id="4311-62f2-3e8a-3189" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3acc-6fff-1437-6c2c" name="Comms Veteran" hidden="false" collective="false" import="true" targetId="fd80-a323-bec1-ab9e" type="selectionEntry">
<categoryLinks>
<categoryLink id="edd2-3fbd-e72b-6aeb" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7523-ccdf-2755-7e4d" name="Trooper Veteran" hidden="false" collective="false" import="true" targetId="0cf8-8e64-3967-af72" type="selectionEntry">
<categoryLinks>
<categoryLink id="c09c-1a0e-17fa-57e5" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a01b-0a0e-c3e7-0a31" name="Sergeant Veteran w/ boltgun" hidden="false" collective="false" import="true" targetId="8bea-0aad-f2b9-f1ed" type="selectionEntry">
<categoryLinks>
<categoryLink id="4003-60d2-cabf-4000" name="New CategoryLink" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="41aa-f484-95a8-5804" name="Sergeant Veteran w/ pistol and melee weapon" hidden="false" collective="false" import="true" targetId="9c02-7fdc-44e5-af95" type="selectionEntry">
<categoryLinks>
<categoryLink id="a253-9498-aa82-6f69" name="New CategoryLink" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee89-dc98-84d9-b447" name="Sniper Veteran" hidden="false" collective="false" import="true" targetId="592b-b629-b07e-b4ed" type="selectionEntry">
<categoryLinks>
<categoryLink id="84c2-ccb5-20b0-3856" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5ea8-af5d-5372-0c48" name="Gunner Veteran w/ flamer" hidden="false" collective="false" import="true" targetId="d5ad-e160-1114-2ea5" type="selectionEntry">
<categoryLinks>
<categoryLink id="6ef7-57f9-0321-0082" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="193b-36cf-f9c7-d392" name="Gunner Veteran w/ grenade launcher" hidden="false" collective="false" import="true" targetId="36e7-6831-da22-9496" type="selectionEntry">
<categoryLinks>
<categoryLink id="4682-ebf6-f91e-433b" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="95d0-ba1a-8397-b0b9" name="Gunner Veteran w/ meltagun" hidden="false" collective="false" import="true" targetId="d0f7-1b0f-3dee-cec7" type="selectionEntry">
<categoryLinks>
<categoryLink id="448c-7c71-1f7d-eab4" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a781-aa48-d4dd-7845" name="Gunner Veteran w/ plasma gun" hidden="false" collective="false" import="true" targetId="f6e0-202d-7d02-90ab" type="selectionEntry">
<categoryLinks>
<categoryLink id="bc55-8a10-0a84-ccbb" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ecbb-fc36-ecf4-eb3a" name="Confidant Veteran w/ rifle" hidden="false" collective="false" import="true" targetId="2e50-f929-a80b-3dba" type="selectionEntry">
<categoryLinks>
<categoryLink id="5f08-4083-8a9b-f928" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cc3d-8c08-0058-1b24" name="Confidant Veteran w/ pistol and chainsword" hidden="false" collective="false" import="true" targetId="b2c4-4375-2b45-7be9" type="selectionEntry">
<categoryLinks>
<categoryLink id="b56a-5069-8650-5cb7" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="59ba-a570-4bc1-158b" name="Demolition Veteran" hidden="false" collective="false" import="true" targetId="f8ae-452c-1257-3db1" type="selectionEntry">
<categoryLinks>
<categoryLink id="1fd1-7739-9308-336b" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e2bd-71a3-e189-64bf" name="Medic Veteran" hidden="false" collective="false" import="true" targetId="6923-10c2-770e-29ce" type="selectionEntry">
<categoryLinks>
<categoryLink id="2f5f-afea-7edb-d388" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="113e-458a-896b-e2b6" name="Bruiser Veteran" hidden="false" collective="false" import="true" targetId="1d6a-b33a-0a6a-1b3f" type="selectionEntry">
<categoryLinks>
<categoryLink id="5769-8178-3c2a-1ccb" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8e4c-45b1-1d38-27e3" name="Spotter Veteran" hidden="false" collective="false" import="true" targetId="ab09-d50d-5447-42ed" type="selectionEntry">
<categoryLinks>
<categoryLink id="c9c6-b66b-380b-ca52" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee22-1789-af8d-6739" name="Zealot Veteran" hidden="false" collective="false" import="true" targetId="43af-6f5c-2ced-9e37" type="selectionEntry">
<categoryLinks>
<categoryLink id="1a9a-521a-bab7-89d0" name="New CategoryLink" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="54a1-e038-b31c-5c31" name="Tactical Assets Reference" hidden="false" collective="false" import="true" targetId="1c7c-5467-5174-bba4" type="selectionEntry"/>
<entryLink id="9ed8-28ec-d7d1-468f" name="Guardsmen Order Reference" hidden="false" collective="false" import="true" targetId="a06c-10ae-cb63-b501" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="d4e8-fa0c-0ead-0ed8" name="Bayonet" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ec8d-7b47-bfd8-7c5e" name="⚔ Bayonet" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="111c-c0ee-38c1-b67b" name="Lasgun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1df2-2525-5533-26de" name="⌖ Lasgun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="337a-2e5b-e4e3-f489" value="3/4">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="13f8-5e7f-04ee-5e26" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fd80-a323-bec1-ab9e" name="Comms Veteran" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="aca6-2011-3503-39fa" name="Comms Veteran" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="5d38-3867-4719-9213" name="Signal (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly VETERAN GUARDSMAN💀 that is within ⬟ of and Visible to this operative. Add 1 to its APL. This operative cannot perform this action if it is within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile id="ab24-77dc-3f0e-34cd" name="Relay Orders" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once in each Turning Point, when this operative is issued a Guardsman Order, it can relay it. If an order is relayed, subtract one from this operative's APL and all friendly VETERAN GUARDSMAN💀 operatives in the Kill Team are issued that order.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="475f-0fd2-4bb0-fd50" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="a5c3-c2d6-bf70-d3cd" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="1fa9-1442-9eae-9105" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="4650-d5a7-5ada-dc2a" name="Comms Veteran" hidden="false" targetId="6790-22ed-c8fa-6309" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="0a20-cd4c-b119-3c1b" name="Lasgun" hidden="false" collective="false" import="true" targetId="111c-c0ee-38c1-b67b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b385-e72f-bb69-dda4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9f1b-16fd-0e8d-33cc" type="max"/>
</constraints>
</entryLink>
<entryLink id="7c14-f155-f9f7-f6cd" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8971-3480-4470-220c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="daf4-597c-67a1-30cd" type="max"/>
</constraints>
</entryLink>
<entryLink id="ff8e-5782-bfa0-888e" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="a90c-0671-fd63-e487" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="20ac-d321-990a-c90c" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="1bea-e5bf-702c-c736" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="0e01-c809-f8bb-f3e0" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="b681-648c-bd53-17c6" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="7e28-2960-8e8b-d786" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="a48b-3470-266f-4e85" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="e38a-4f03-49a6-c42a" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="d082-797a-21d7-43f2" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="30e6-c56c-942c-4b29" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ec0a-7f99-b912-02cf" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="61d1-a04d-a3f3-7245" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="4b89-651b-9d4e-c993" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="3ab3-81d1-ec6f-6db9" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="a8ea-1794-819a-6ea6" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="5aa2-1a96-2666-5e30" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="b812-1b96-8d53-b4ec" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="78b0-3547-6240-9f90" name="Hardened Veteran" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4fc0-b760-0dec-86dd" name="Hardened Veteran" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="ffbd-01bf-b1e7-a5b7" name="Hardened by War" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative would lose a wound, roll one D6; on a 5+, that wound is not lost. You can ignore any or all modifiers to this operative's APL.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5bc8-0748-f092-d837" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="0d91-2bf4-ac7d-a9c4" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="e7f8-05ab-a000-9f8d" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="20e9-f9ea-eb4a-59cb" name="Hardened Veteran" hidden="false" targetId="3e9d-eaef-1b8e-d9c5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="aa21-7188-6084-2811" name="Bionic arm" 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="d340-7051-e6cd-9852" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="21bb-641a-108a-37b4" type="max"/>
</constraints>
<profiles>
<profile id="5058-e7dc-fac1-c660" name="⚔ Bionic arm" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1d2f-e2f0-1dad-8a49" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="56c8-c82a-4d0e-2978" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa1b-8d80-a0a7-eea8" type="max"/>
</constraints>
</entryLink>
<entryLink id="73c8-487c-9a85-e189" name="Lasgun" hidden="false" collective="false" import="true" targetId="111c-c0ee-38c1-b67b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa05-c392-e135-8228" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8006-69be-45aa-2124" type="max"/>
</constraints>
</entryLink>
<entryLink id="02b4-9228-cd3e-6497" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="f8fb-eed9-a765-1d3b" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="2b64-7aec-02f4-9382" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="586f-0452-03c5-a560" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="6844-5d2e-eb3c-df8b" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3ca6-dec6-1833-bcb8" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="117d-73b1-e00e-8730" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="6c5e-8189-cfcc-1ab1" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="e229-bc4f-f2d0-17ce" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="1cac-9569-f58e-2167" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="9bfb-6bdc-9205-2238" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a268-19f7-42e4-5e6d" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1d6a-b33a-0a6a-1b3f" name="Bruiser Veteran" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="3284-0f7f-0a66-889d" name="Bruiser Veteran" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="47d9-83e1-4c48-7253" name="Bruiser" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, when this operative fights in combat, in the Resolve Successful Hits step of that combat, you can ignore the damage inflicted on it from one normal hit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="da28-66e3-a894-d38a" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="3366-1258-ca9c-5914" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="4194-d56c-dd05-5b98" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="dd7b-9b45-6ad5-217c" name="Bruiser Veteran" hidden="false" targetId="b590-f8ac-02b1-a5e5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="180c-73b7-2ab3-ecea" name="Trench club" 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="8552-2b4c-f555-3496" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="efa9-7885-888e-b512" type="max"/>
</constraints>
<profiles>
<profile id="2f0d-b0fa-618f-c890" name="Trench club" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0340-b94e-b01f-872c" name="Stun" hidden="false" targetId="a1e3-4e0b-f7c2-eb59" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c420-1825-272f-e962" name="Lasgun" hidden="false" collective="false" import="true" targetId="111c-c0ee-38c1-b67b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="917c-4249-80cf-d5fa" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0b97-f99b-fb0f-a3b3" type="max"/>
</constraints>
</entryLink>
<entryLink id="02e0-f338-2b2a-6edc" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a10b-001e-4a4a-373e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f0a-aad6-a6f8-f92a" type="max"/>
</constraints>
</entryLink>
<entryLink id="80ff-c8fc-3b3f-775c" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="165c-5f21-9f2c-8595" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="3fe0-43a8-375d-24d4" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="b954-2383-ddc9-0c84" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="b2f1-6d7a-d958-53e5" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="fb6c-538e-4ecc-7cb6" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="75d4-68f3-3aba-cdf2" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="9ec4-a954-8988-e07e" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="c180-9409-710f-894d" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="0b10-0850-c8e3-8716" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="44ae-3dde-79a4-ed6c" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="2c94-33ab-e153-a336" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d581-ac46-a05d-5d98" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="5a28-5e2c-de6a-faf6" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="25ff-8c3c-d464-8b38" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="5685-c193-f28d-474a" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="f981-1de3-f800-b45d" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="e355-d814-b6a2-6718" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0cf8-8e64-3967-af72" name="Trooper Veteran" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9d57-8ed2-b0e7-6068" name="Trooper Veteran" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">2</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="44b2-191a-c672-028e" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="01fe-93cb-80cc-360c" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="b68b-75d1-cfb1-cdd9" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="7ad0-b9d1-a004-0d4d" name="Trooper Veteran" hidden="false" targetId="ef4a-6883-982a-2b4b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="ef13-15be-4285-4de1" name="Lasgun" hidden="false" collective="false" import="true" targetId="111c-c0ee-38c1-b67b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9811-c72f-75fb-fbd7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7769-1652-00f8-a7a4" type="max"/>
</constraints>
</entryLink>
<entryLink id="4753-38b2-85cc-18b6" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d2c-8ff7-c025-88ce" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d495-4762-0fe3-402b" type="max"/>
</constraints>
</entryLink>
<entryLink id="2f7c-ecb5-d264-a237" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="1e80-9789-6b52-afb4" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="4750-2fb2-886f-6219" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="536f-edd3-ea1f-7ad4" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="309f-f361-a516-9e13" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="26a7-0b22-9d12-e778" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="25a1-8182-f54c-7f83" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="0922-a5d5-1f26-a45c" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="0b96-2ac0-cb17-41e0" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="b1fe-0d2e-064e-4d77" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="f1cc-0d84-1d6e-65e9" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="491a-5987-2006-b48c" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="260e-12f4-3685-aabc" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="0919-2323-8724-acfd" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="3028-2ac4-0080-661b" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="969e-d76d-e54c-b933" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="0207-5463-54fc-4453" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="231f-078c-f11f-ac24" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8bea-0aad-f2b9-f1ed" name="Sergeant Veteran w/ boltgun" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="203b-0b90-d46a-6bcb" name="Sergeant Veteran" hidden="false" targetId="ec83-eec3-126a-6207" type="profile"/>
<infoLink id="33a4-a137-fe13-eb4a" name="Guardsman Orders" hidden="false" targetId="8152-db38-7fc8-8011" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1e8e-8fc3-9756-bb57" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="8c73-19ac-7a12-e356" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="98c4-3fca-79b1-3c85" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="47d0-665b-1bfa-e21e" name="Sergeant Veteran" hidden="false" targetId="2de5-ea5c-3735-de87" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a90f-6ec9-bd8b-d66d" name="Boltgun and bayonet" 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="701a-9358-6a69-11f1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc8c-3904-635b-36c1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d5e9-937d-1707-64f2" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8531-679a-fa73-93a2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="36d4-42a1-87b3-b20a" type="max"/>
</constraints>
</entryLink>
<entryLink id="ab86-69cd-92a6-29d1" name="Boltgun" hidden="false" collective="false" import="true" targetId="1268-0bd0-941a-1685" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="999b-0fa7-4043-89de" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47c2-9323-e0dc-5e06" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a413-c961-79b3-9ec3" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="ac3d-0955-162a-d243" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="4b52-831a-de51-2b2d" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="c36f-9658-c1cd-2446" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="3937-6aad-c198-a2b7" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8a26-6e82-9579-12ad" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="4c72-057c-f32f-93f5" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="cdc8-a49a-dac7-4b88" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="d7b3-53b1-a12c-481e" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="927e-5cc8-476c-7652" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="4d8a-8784-18b8-9f48" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="24f0-790b-f43d-c2ce" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d31c-175a-a21f-afb1" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="4747-e74f-bb04-5cbd" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="bfed-e8c6-4f60-2960" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="4cb1-8d76-93ea-d439" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="0537-cb24-4d9d-286d" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="efb4-1924-c915-6906" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="4689-451f-2d5a-8755" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="27d1-8b01-4ec8-481c" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="3f49-8764-9163-aa37" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="bac0-f10f-3763-14dd" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="df5c-efec-2035-7f82" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="0b2d-d397-569c-992a" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="6565-f82a-d59b-baea" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="43af-6f5c-2ced-9e37" name="Zealot Veteran" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2cf3-938c-544f-5a22" name="Zealot Veteran" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="2e37-28e8-9b7c-8d70" name="The Emperor Protects" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time a shooting attack is made against this operative, in the Roll Defence Dice step of that shooting attack, you can re-roll any or all of your defence dice.</characteristic>
</characteristics>
</profile>
<profile id="eadf-d5b7-2ea5-811c" name="Uplifting Primer (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Until the end of the Turning Point, while a friendly VETERAN GUARDSMAN operative is within ⬛ of this operative, that friendly operative is uplifted. While an operative is uplifted, each time it fights in combat or makes a shooting attack, in the Roll Attack Dice step of that combat or shooting attack, you can select one of your results of 5+ to be retained as a critical hit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="41db-25c4-0592-8d62" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="46f0-226b-e5ae-c2dd" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="e799-beed-c241-536d" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="da52-f038-1f5d-82c1" name="Zealot Veteran" hidden="false" targetId="5e0d-a324-98e7-6fb7" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="ff93-6a07-7ed7-e219" name="Lasgun" hidden="false" collective="false" import="true" targetId="111c-c0ee-38c1-b67b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4320-b23e-4a68-b5d7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b84-ea42-61bb-e2f0" type="max"/>
</constraints>
</entryLink>
<entryLink id="0f43-b635-fd09-4836" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c0e9-3b95-4173-38a6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f7c-6b6e-6deb-1933" type="max"/>
</constraints>
</entryLink>
<entryLink id="cd32-c2c2-423f-cd25" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="013f-bbd3-efde-11cd" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="556e-a07b-3921-d22f" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="fabe-7f4e-2226-4ea0" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="1434-10b1-ecf3-7d01" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="edda-eaeb-f56d-9983" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="dc79-bb8e-012d-f88e" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="fc89-1f43-3f00-30f0" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="1da0-f15d-5899-2fa8" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="ea0c-bf5a-46c1-045a" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="7f67-ee39-6868-8e11" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9c02-7fdc-44e5-af95" name="Sergeant Veteran w/ pistol and melee weapon" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="38ed-e2c5-b2c2-1970" name="Sergeant Veteran" hidden="false" targetId="ec83-eec3-126a-6207" type="profile"/>
<infoLink id="bddb-cb84-a595-ff18" name="Guardsman Orders" hidden="false" targetId="8152-db38-7fc8-8011" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="553e-2b5d-3116-b37b" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="6ba2-5ddd-bab4-64db" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="0c04-b36c-4b12-c593" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="c30c-f3b1-5d24-e538" name="Sergeant Veteran" hidden="false" targetId="2de5-ea5c-3735-de87" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c9dc-71a1-b5a6-dd8f" name="Pistol" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a86f-b298-a421-755b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ae1-2537-9764-49af" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e914-deaa-da56-a4c3" name="Plasma pistol" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cd03-bfea-f96b-2db1" name="⌖ Plasma pistol - Standard" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="e047-0937-52a4-5585" name="⌖ Plasma pistol - Supercharge" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP2, Hot</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="526d-6f0f-dd42-604e" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="1682-66cf-5a1a-3e59" name="Hot" hidden="false" targetId="83c3-fce7-8ac1-9872" type="rule"/>
<infoLink id="f770-d410-9cf8-b9e9" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f043-3d35-fdd8-b762" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="9019-3398-6f94-0046" type="selectionEntry"/>
<entryLink id="1ba6-40da-68e1-01b5" name="Laspistol" hidden="false" collective="false" import="true" targetId="e502-3f08-2a1a-5d74" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f12e-2379-69f7-0b20" 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="2b2a-a718-69fb-ae7b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2636-5253-dfc7-4403" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="9493-3bf5-fcb7-7478" name="Power weapon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="611e-715a-161e-8b64" name="⚔ Power weapon" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4664-9b79-f7d4-fad5" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="cdfd-fefb-3851-7bb9" name="Chainsword" hidden="false" collective="false" import="true" targetId="0439-847d-fdf0-c405" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9139-1f3f-8189-7c2c" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="6474-ea4d-228f-6fa5" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="6354-976d-3a11-b029" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="e2fd-e00c-09be-cea8" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="e3d1-90f2-c99b-23e2" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="a41f-f341-30c4-7cd9" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="19df-9d8a-62ff-d11c" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="f9e1-49a2-ba9a-5d17" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="47d6-b87f-af35-75fd" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="43f8-de91-e5ed-a3e8" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="25e6-b20a-6e68-47df" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ae59-7f2e-1750-5411" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5dd5-1435-8ab4-9bd1" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="1170-1599-cb66-dbb6" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="2d5a-979e-1315-4eb6" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="f7d4-a7b4-2988-823e" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="b83c-b9b8-284f-e1fa" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="ca6c-b351-c7a1-7fe2" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="9db3-6333-9052-8897" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3fc2-5eba-eb11-fc13" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
<entryLink id="1c3a-34f1-a66a-cf30" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="0c7f-ee55-f77d-ba7f" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="8a1d-1f66-0f7c-3805" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="0587-5d2b-c54a-84d6" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="8215-d3fc-568e-3853" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9019-3398-6f94-0046" name="Bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="85e4-0962-9269-8773" name="⌖ Bolt pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="896b-1de9-099d-a414" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e502-3f08-2a1a-5d74" name="Laspistol" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="57fc-3070-c560-864c" name="⌖ Laspistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="337a-2e5b-e4e3-f489" value="3/4">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="13f8-5e7f-04ee-5e26" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a810-bbf0-43df-7233" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1268-0bd0-941a-1685" name="Boltgun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="54d6-1bf4-c3d6-048a" name="⌖ Boltgun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="3+">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2de5-ea5c-3735-de87" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0439-847d-fdf0-c405" name="Chainsword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7c01-b549-7c49-5ba5" name="⚔ Chainsword" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="3+">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2de5-ea5c-3735-de87" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Balanced</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9da2-2320-e89a-9d8d" name="Balanced" hidden="false" targetId="547c-e6e5-64d4-a519" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="592b-b629-b07e-b4ed" name="Sniper Veteran" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4256-3829-1634-e981" name="Sniper Veteran" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="eaab-601f-0cb3-66d3" name="Sniper" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative is activated, so long as it does not perform a Normal Move, Charge or Fall Back action during that activation, its long-las gains the Silent rule for that activation.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b216-d675-50c6-a2e7" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="21ce-48eb-b604-0667" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="32c3-2184-f5f8-1ba1" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="71f7-2d27-fe43-99ed" name="Sniper Veteran" hidden="false" targetId="b1ff-4296-787b-39c3" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6eb6-b242-a3b8-775e" name="Long-las" 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="b7b1-9041-211e-63c8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97cc-d46b-9e52-2ba1" type="max"/>
</constraints>
<profiles>
<profile id="cfb3-b969-361a-cbd2" name="⌖ Long-las" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cd16-a5b6-c8e6-0c9f" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
<infoLink id="bb98-5d6b-7fca-214d" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
</infoLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ac1d-3a07-1380-a5be" name="Bayonet" hidden="false" collective="false" import="true" targetId="d4e8-fa0c-0ead-0ed8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b755-e1f1-d91b-5980" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0608-0c46-0827-9513" type="max"/>
</constraints>
</entryLink>
<entryLink id="414a-d8d4-a400-4abf" name="Equipment" hidden="false" collective="false" import="true" targetId="7509-328c-ba71-6725" type="selectionEntryGroup"/>
<entryLink id="a6d0-2540-366d-e49e" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="04c9-acbc-3e74-7d0b" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="1b60-912e-0e44-c481" name="Specialism" hidden="false" collective="false" import="true" targetId="4c89-5f1c-1aa4-d614" type="selectionEntryGroup"/>
<entryLink id="3f14-d5b0-e96c-0c40" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5e6d-019b-9ab9-6e37" name="2 - Brash" hidden="false" collective="false" import="true" targetId="c972-f6f1-dec7-74db" type="selectionEntry"/>
<entryLink id="0c94-dc9d-85a0-e51e" name="3 - Siege Specialist" hidden="false" collective="false" import="true" targetId="b72b-0987-56f0-7850" type="selectionEntry"/>
<entryLink id="0988-8923-8e6d-ac8b" name="4 - Grit and Determination" hidden="false" collective="false" import="true" targetId="6def-fae8-4b4a-ec20" type="selectionEntry"/>
<entryLink id="088a-f4aa-39f0-a40f" name="5 - Decorated Veteran" hidden="false" collective="false" import="true" targetId="4270-ce70-8f0e-eb2c" type="selectionEntry"/>
<entryLink id="b52c-6776-f0a0-88b7" name="6 - Final Litany" hidden="false" collective="false" import="true" targetId="9b9e-0e7c-4073-ee3b" type="selectionEntry"/>
<entryLink id="d063-40c0-6496-9863" name="1 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="210a-435b-6c35-d8a3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" EP" typeId="c61a-51a3-370d-bf55" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d0f7-1b0f-3dee-cec7" name="Gunner Veteran w/ meltagun" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="39b2-e236-5827-a6e9" value="1.0">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="23da-9b6a-4eeb-a87e" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="39b2-e236-5827-a6e9" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2e12-efbf-383f-1a72" name="Gunner Veteran" hidden="false" targetId="7e09-61f7-e55b-ff2d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ee47-a119-c8c7-e550" name="Veteran Guardsman" hidden="false" targetId="e2e3-78d3-0b08-9d27" primary="false"/>
<categoryLink id="7ca7-2787-2e8f-efbe" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="c697-45a7-6e53-a882" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="a529-ac30-0b5f-b590" name="Gunner Veteran" hidden="false" targetId="900c-91f5-1f16-b811" primary="false"/>
</categoryLinks>