-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy path2021 - Scout Squad.cat
1287 lines (1285 loc) · 97 KB
/
2021 - Scout Squad.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 library="false" id="436e-aacd-780b-36f0" name="Scout Squad" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="8" revision="4" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry name="SCOUT SQUAD" hidden="false" id="3dd1-bcc9-1f99-2498"/>
<categoryEntry name="Scout" hidden="false" id="777a-84c5-8c7e-210d"/>
<categoryEntry name="Adeptus Astartes" hidden="false" id="6b87-cec1-8fba-766d"/>
<categoryEntry name="Sergeant" hidden="false" id="ebce-a888-1e3a-4e7f"/>
<categoryEntry name="Hunter" hidden="false" id="553b-bf95-bcdf-2f06"/>
<categoryEntry name="Sniper" hidden="false" id="88e9-c057-e2d5-feca"/>
<categoryEntry name="Tracker" hidden="false" id="a2d8-f12e-e944-7d50"/>
</categoryEntries>
<forceEntries>
<forceEntry name="Scout Squad Kill Team" hidden="false" id="bc38-e4bd-c012-e984">
<categoryLinks>
<categoryLink name="Configuration" hidden="false" id="3fcc-6300-cc5f-cba2" targetId="fb89-efb1-54e4-59c5"/>
<categoryLink name="Leader" hidden="false" id="b5a3-3c12-1a82-e2b9" targetId="3198-c1ce-dfd0-fb4f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fe9b-d62-f6d6-86a5-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fe9b-d62-f6d6-86a5-max"/>
</constraints>
</categoryLink>
<categoryLink name="Operative" hidden="false" id="bb7f-5179-49fe-80f1" targetId="f98b-0289-0f1f-b233">
<constraints>
<constraint type="min" value="9" field="selections" scope="parent" shared="true" id="ce2c-a514-612e-d07d-min" includeChildSelections="true"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="ce2c-a514-612e-d07d-max" includeChildSelections="true"/>
</constraints>
</categoryLink>
<categoryLink name="Heavy Gunner" hidden="false" id="eb64-784c-ac99-d8d9" targetId="0e59-07ae-65c2-2de6">
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="52b8-cff4-9c9-4d3d"/>
</constraints>
</categoryLink>
<categoryLink name="Hunter" hidden="false" id="ea79-6bc1-31da-d36" targetId="553b-bf95-bcdf-2f06">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="321c-62bd-cbb6-ef2b"/>
</constraints>
</categoryLink>
<categoryLink name="Sniper" hidden="false" id="d3c2-1894-1248-fc73" targetId="88e9-c057-e2d5-feca">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e747-70d1-dc71-17d7"/>
</constraints>
</categoryLink>
<categoryLink name="Tracker" hidden="false" id="edd7-91e-d85-2493" targetId="a2d8-f12e-e944-7d50">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5d41-1499-d1c6-7014"/>
</constraints>
</categoryLink>
<categoryLink name="Reference" hidden="false" id="94aa-9c2a-81f9-616b" targetId="322e-38ea-bf3e-c785"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt pistol" hidden="false" id="bd48-b918-b17a-5d10">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b322-792f-8a2f-18a9-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b322-792f-8a2f-18a9-max"/>
</constraints>
<profiles>
<profile name="⌖ Bolt pistol" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="4915-9c52-9529-8ee5">
<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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="2+" field="32b4-9a0e-e740-6031">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="ebce-a888-1e3a-4e7f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" hidden="false" type="rule" id="7195-835-4714-acde" targetId="92de-2ad3-3554-0b3e"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fists" hidden="false" id="be5e-89b7-52f3-58d0">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f008-5174-dcb-63f0-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f008-5174-dcb-63f0-max"/>
</constraints>
<profiles>
<profile name="⚔ Fists" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="caa7-3ffa-ab4b-290b">
<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/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="4" field="5f37-25bb-661b-5c9c"/>
<modifier type="set" value="2+" field="32b4-9a0e-e740-6031"/>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="ebce-a888-1e3a-4e7f" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Boltgun" hidden="false" id="62c2-a7c-6e2c-ec5f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="acd7-aee4-176e-f1c3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="acd7-aee4-176e-f1c3-max"/>
</constraints>
<profiles>
<profile name="⌖ Boltgun" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="4f4-5273-b08b-7454">
<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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="2+" field="32b4-9a0e-e740-6031">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="ebce-a888-1e3a-4e7f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Combat blade" hidden="false" id="5b8b-364f-3e6d-c617">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6cd9-caf6-2585-a846-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6cd9-caf6-2585-a846-max"/>
</constraints>
<profiles>
<profile name="⚔ Combat blade" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="781a-5811-eacf-28b5">
<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">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Astartes shotgun" hidden="false" id="a339-a627-66b5-865c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6e48-26f2-bf55-17f5-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e48-26f2-bf55-17f5-max"/>
</constraints>
<profiles>
<profile name="⌖ Astartes shotgun" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="5e7a-5cf2-48fb-cd98">
<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">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="Rng ⬟, Balanced" field="c9c0-f6c9-c787-e650">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="ebce-a888-1e3a-4e7f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" hidden="false" type="rule" id="f1fc-94b9-73f8-e72a" targetId="92de-2ad3-3554-0b3e"/>
<infoLink name="Balanced" hidden="false" type="rule" id="e09f-90dd-d1c4-e70c" targetId="547c-e6e5-64d4-a519">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="ebce-a888-1e3a-4e7f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heavy bolter" hidden="false" id="d6bb-3abb-d49a-d17f">
<profiles>
<profile name="⌖ Heavy bolter" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="c995-4b37-38c7-ad02">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Fusillade, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">P1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Fusillade" hidden="false" type="rule" id="8125-e182-97b1-3f3a" targetId="e2ae-574a-94ab-3550"/>
<infoLink name="Heavy" hidden="false" type="rule" id="b3d2-ceaa-149f-39f0" targetId="1e77-6974-cf90-6008"/>
<infoLink name="Px" hidden="false" type="rule" id="2b9c-ec09-f6d9-ac2e" targetId="1f11-c169-2746-13cf"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Climbing Equipment" hidden="false" id="6e6b-50c8-5228-67b6">
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
<profiles>
<profile name="Climbing Equipment" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="9c62-1c02-5d1c-91d2">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">- Each time this operative ascends or descends a terrain feature while climbing, the first vertical distance of up to 3⬤ it travels are counted as ⬤ for that climb.
- This operative only needs to be within ▲ horizontally of a terrain feature in order to climb it.
- Each time this operative drops, the intended location can be any vertical distance from the level it occupies.
- Each time this operative drops, it counts any vertical distance it travels as half for that drop.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="350b-1ded-6f39-ff77"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scout Squad 4 - Assassin" hidden="false" id="1704-975e-38ba-4fd3">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4d84-317c-341c-6b93"/>
</constraints>
<profiles>
<profile name="Scout Squad 4 - Assassin" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="30fb-8817-c3b7-f96">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">This operative can perform the Charge action while it has a conceal order.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scout Squad 2 - Expedient" hidden="false" id="76ca-c670-9fd9-35e7">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e0-8e42-ce09-5dfe"/>
</constraints>
<profiles>
<profile name="Scout Squad 2 - Expedient" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="26b5-2701-c067-71e0">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Add ▲ to this operative's Movement characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scout Squad 3 - Well-versed" hidden="false" id="848-12ff-7e97-81fe">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6c68-43fe-f211-1faf"/>
</constraints>
<profiles>
<profile name="Scout Squad 3 - Well-versed" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="8852-cf51-6267-3dbd">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">This operative does not have to be Visible to a Sergeant operative for the purposes of that operative's Guidance and Experience ability.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scout Squad 5 - Mobile" hidden="false" id="4311-b4ee-8dc0-2492">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="271f-3919-6b28-c7ad"/>
</constraints>
<profiles>
<profile name="Scout Squad 5 - Mobile" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="1d45-6779-d06d-d708">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">This operative can perform the Fall Back action for one less action point (to a minimum of 0AP).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scout Squad 6 - Raider" hidden="false" id="56fd-9d5d-d807-a8d5">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f4e1-5e30-d236-9e6c"/>
</constraints>
<profiles>
<profile name="Scout Squad 6 - Raider" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="b732-5a99-9dc3-57fe">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">This operative can perform the Charge action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Scout Squad 1 - Distinguished" hidden="false" id="1942-6631-1076-7ebe">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e7c-77a6-ffc7-c1ab"/>
</constraints>
<profiles>
<profile name="Scout Squad 1 - Distinguished" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="e7eb-306a-553f-8567">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Once per battle, during this operative's activation, you can use the Astartes Training Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Reference - Forward Scouting" hidden="false" id="6629-9136-cd7f-7778">
<categoryLinks>
<categoryLink targetId="322e-38ea-bf3e-c785" id="1af1-fc4e-96fa-ca20" primary="true" name="Reference"/>
</categoryLinks>
<profiles>
<profile name="Recon (2)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="c424-6589-8259-b10">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Resolve a Recon option as specified by the Scouting step of the mission sequence.</characteristic>
</characteristics>
</profile>
<profile name="Infiltrate (2)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="ddf7-96b2-53fc-29df">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Resolve an Infiltrate option as specified by the Scouting step of the mission sequence.</characteristic>
</characteristics>
</profile>
<profile name="Trip Alarm (2)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="6b82-fa5e-1403-ff13">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Place one of your Trip Alarm tokens anywhere in the killzone that is more than ⬟ from your opponent's drop zone. During the Firefight phase, the first time an enemy operative with a Conceal order moves within ⬤ of one of your Trip Alarm tokens:
- Remove that token.
- Until the start of that enemy operative's next activation, friendly operatives treat it as if it has an Engage order.</characteristic>
</characteristics>
</profile>
<profile name="Booby Trap (1)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="140-c9-c1a0-b9a7">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Place one of your Booby Trap tokens more than ⬟ from your opponent's drop zone and more than ⬤ from each objective marker. Each time an enemy operative moves within ⬤ of one of your Booby Trap tokens, interrupt that action to roll one D6, adding 1 to the result if the enemy operative's move is from a Charge or Dash action. Only roll once per action for each relevant token.
- On a 1-3, nothing happens and that enemy operative continues its action (the token is not removed).
- On a 4+, that enemy operative suffers a number of mortal wounds equal to the result of the D6, its move action ends and the token is removed.</characteristic>
</characteristics>
</profile>
<profile name="Diversion (1)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="df64-af84-3bdf-fee3">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Select one enemy operative. Subtract 1 from its APL.</characteristic>
</characteristics>
</profile>
<profile name="Devise Plan (1)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="b31f-8db8-bb11-f57a">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">You gain 1 CP.</characteristic>
</characteristics>
</profile>
<profile name="Designate Target (1)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="82b7-161f-bbac-dde2">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Select one enemy operative to gain your Target token. Each time a friendly SCOUT SQUAD operative fights in combat or makes a shooting attack against the enemy operative with your Target token, in the Roll Attack Dice step of that combat or shooting attack, you can re-roll one of your attack dice.</characteristic>
</characteristics>
</profile>
<profile name="Redeploy (5)" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="7275-5f4e-fb29-1ca4">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Change the set up of one of your operatives that is wholly within your drop zone and/or change its order.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Equipment" hidden="false" id="f237-69dc-dc4c-3f78">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Camo Cloak" hidden="false" id="a0ea-13a3-72be-6ddc">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c807-39e7-900d-8f93"/>
</constraints>
<infoLinks>
<infoLink name="Camo Cloak" hidden="false" type="profile" id="b80-4a38-3f71-4d7d" targetId="b418-b492-a4e8-f5da"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="88e9-c057-e2d5-feca" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Extra Blade" hidden="false" id="8e3d-597b-51de-8db3">
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ced3-f61f-f2a6-79c0"/>
</constraints>
<profiles>
<profile name="Extra Blade" typeId="ef4d-f12f-036e-9f14" typeName="Equipment" hidden="false" id="1c99-ce19-8852-b445">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select a combat blade the operative is equipped with. That weapon gains the Balanced special rule for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Balanced" hidden="false" type="rule" id="d800-f591-2676-d112" targetId="547c-e6e5-64d4-a519"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heavy Weapon Bipod" hidden="false" id="de21-3a74-aabf-ba8a">
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="parent" childId="d6bb-3abb-d49a-d17f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Heavy Weapon Bipod" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="472e-259c-cc0e-7fc7">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack with this weapon, in the Roll Attack Dice step of that shooting attack, if the operative has not moved during this activation, you can re-roll any or all of your attack dice results of one result (e.g. results of 2).</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3d91-7456-1d75-f14f"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Targeting Ocular*" hidden="false" id="2ffc-df57-e7f0-924a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6d3b-bfb-87ec-246f"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="976d-6e06-73b4-c822" type="max"/>
</constraints>
<profiles>
<profile name="Targeting Ocular" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="a992-dfdc-1c2b-35ff">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Ranged weapons on this operative's datacard that it's equipped with gain the No Cover special rule. Note that ranged weapons it's equipped with by other means (e.g. grenades from Equipment) are unaffected.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Smoke Grenade" hidden="false" id="e3f0-4343-8737-f0a8">
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="3"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f6f3-3a6-a0c-4855"/>
</constraints>
<profiles>
<profile name="Smoke Grenade" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions" hidden="false" id="52c4-9e52-ef2-1f4">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Place the centre of one of your Smoke tokens within ⬟ of this operative. That token creates an area of smoke with a ⬤ radius and unlimited upward height (but not below). Until the end of the Turning Point, an operative is Obscured if every Cover line drawn to it crosses an area of smoke. This operative can only perform this action once, and cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="607-489e-29d8-6552" name="Frag Grenade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="36e4-db72-d04c-8d2d" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2357-88a9-b261-8b0b" type="max"/>
</constraints>
<profiles>
<profile id="a53b-f694-da14-60ee" name="Frag grenade" 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">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Blast ⬤, Indirect, Limited</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d5a-7f70-1d98-5e94" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="a4a2-924c-6b95-bef7" name="Limited" hidden="false" targetId="1eb0-6ad3-3e5a-d8ec" type="rule"/>
<infoLink id="bae7-554a-a923-4973" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="4e6c-a105-2ac1-f649" name="Indirect" hidden="false" targetId="653d-16a5-eefb-8b71" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="5002-7d12-16a-b140" name="Krak Grenade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6456-68fe-c5ef-e943" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b925-c95f-a421-3b52" type="max"/>
</constraints>
<profiles>
<profile id="c6c-31ac-d743-24ff" name="Krak grenade" 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/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP1, Indirect, Limited</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="10f8-cf20-5e51-fd9c" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="e857-5fa0-3da5-164" name="Limited" hidden="false" targetId="1eb0-6ad3-3e5a-d8ec" type="rule"/>
<infoLink id="a570-5850-ab9d-ed27" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="4e2c-c39f-7b1a-b08c" name="Indirect" hidden="false" targetId="653d-16a5-eefb-8b71" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="f27d-3a51-e8e5-b2b4" name="Incendiary Shotgun Shells [RARE]" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b888-71c3-b9f6-b49d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87ee-14bb-bf91-9336" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2e4c-1d5d-c718-a4dc" type="max"/>
</constraints>
<profiles>
<profile id="13a3-92-4688-a262" name="Incendiary Shotgun Shells" hidden="false" typeId="ef4d-f12f-036e-9f14" typeName="Equipment">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select an Astartes shotgun the operative is equipped with. That weapon gains the Blast ▲ rule for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="1"/>
</costs>
<infoLinks>
<infoLink name="Blast x" hidden="false" type="rule" id="b337-cc67-f5ca-c5d1" targetId="d848-be09-6d6d-4708"/>
</infoLinks>
</selectionEntry>
<selectionEntry id="7eb8-5a8-58b9-9cbc" name="Polycam Cloak [RARE]" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b888-71c3-b9f6-b49d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="530b-9136-337f-18cb" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="cbd2-17df-590f-821f" type="max"/>
</constraints>
<profiles>
<profile id="e5c-e15b-1963-c900" name="Polycam Cloak" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">While this operative has a Conceal order, it's always treated as having a Conceal order, regardless of any other rules (e.g. Vantage Point).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="fa8d-9593-e8f5-2f61" name="High Explosive Warhead [RARE]" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b888-71c3-b9f6-b49d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="0e59-07ae-65c2-2de6" shared="true" id="eeed-e8c9-c359-f9a6"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b9e-bf1a-a944-35dd" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5064-f67-9e3-6c56" type="max"/>
</constraints>
<profiles>
<profile id="4998-eac6-3399-ae71" name="High Explosive Warhead" hidden="false" typeId="ef4d-f12f-036e-9f14" typeName="Equipment">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select a missile launcher the operative is equipped with. The frag profile of that weapon has its Blast ⬤ special rule changed to Blast ⬛ for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="7ed5-b06a-186f-11bc" name="Transpectral Lenses [RARE]" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b888-71c3-b9f6-b49d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5284-bb20-5a83-20db" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fcbd-77c4-6d32-24ea" type="max"/>
</constraints>
<profiles>
<profile id="1ebb-c3e7-c6da-655d" name="Transpectral Scan (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 activation, each time this operative makes a shooting attack, each enemy operative that has a Conceal order and is in Cover provided by Light terrain is treated as having an Engage order for that shooting attack instead. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="4"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Climbing Equipment" hidden="false" type="selectionEntry" id="63bc-ceed-533c-d94f" targetId="6e6b-50c8-5228-67b6">
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="1"/>
</costs>
</entryLink>
<entryLink import="true" name="Melee Weapons Rare Equipment" hidden="false" type="selectionEntryGroup" id="d7cd-28bf-5b2a-64d2" targetId="d419-7a47-04c4-e1d9"/>
<entryLink import="true" name="Ranged Weapons Rare Equipment" hidden="false" type="selectionEntryGroup" id="bb82-219c-d991-8b03" targetId="aaad-f73a-1e28-248c"/>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Tactical Scope [RARE]" hidden="false" id="5f90-2187-625f-c4df">
<selectionEntries>
<selectionEntry id="a85f-2d85-ba88-b40" name="Tactical Scope - Sniper rifle" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d8c-e22e-1a8e-e01d" name="Tactical Scope - Sniper rifle" hidden="false" typeId="ef4d-f12f-036e-9f14" typeName="Equipment">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select a sniper rifle this operative is equipped with. That weapon gains the Lethal 5+ special rule for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="4"/>
</costs>
</selectionEntry>
<selectionEntry id="ffb-7d8b-e1b4-eced" name="Tactical Scope - Boltgun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="dd9d-e9fc-da29-31a7" name="Tactical Scope - Boltgun" hidden="false" typeId="ef4d-f12f-036e-9f14" typeName="Equipment">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select a boltgun this operative is equipped with. That weapon gains the Lethal 5+ special rule for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8770-a4d0-4388-ead0" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4acc-d955-a80b-5e4e" type="max"/>
</constraints>
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b888-71c3-b9f6-b49d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
<selectionEntryGroup name="Suppressor [RARE]" hidden="false" id="d50f-b785-fc00-afa8">
<selectionEntries>
<selectionEntry id="772-e213-52be-a6b0" name="Suppressor - Bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="aa29-869a-5f20-14bb" name="Suppressor" hidden="false" typeId="ef4d-f12f-036e-9f14" typeName="Equipment">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select one bolt pistol the operative is equipped with. That weapon gains the Silent special rule for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="dbce-7eb3-d58b-df7b" name="Suppressor - Boltgun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="885d-a7ca-ec04-271b" name="Suppressor" hidden="false" typeId="ef4d-f12f-036e-9f14" typeName="Equipment">
<characteristics>
<characteristic name="Equipment" typeId="f20a-32bc-0370-b877">Select one boltgun the operative is equipped with. That weapon gains the Silent special rule for the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="3"/>
</costs>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b888-71c3-b9f6-b49d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7a6c-838a-8c24-fba4" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb82-a9b3-5e4c-be3b" type="max"/>
</constraints>
<infoLinks>
<infoLink name="Silent" hidden="false" type="rule" id="c64f-8b03-83b3-f3b5" targetId="ce60-8109-69c9-3908"/>
</infoLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
<selectionEntryGroup name="Specialism" hidden="false" id="4d2a-c73f-6053-864b">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="19f7-658e-e6f9-1acb" type="max"/>
</constraints>
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink id="f899-eea3-dd44-94a1" name="Combat" hidden="false" collective="false" import="true" targetId="97d8-19ec-143d-8aad" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="553b-bf95-bcdf-2f06" shared="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="ebce-a888-1e3a-4e7f" shared="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="b9a4-31a5-b4ed-b4c7" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="534b-3a72-63ce-5cc4" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="553b-bf95-bcdf-2f06" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="ea85-8f0d-1863-b07" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
<entryLink id="41db-48e7-20f3-bd11" name="Staunch" hidden="false" collective="false" import="true" targetId="eb50-055a-4cd2-e1d5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<rules>
<rule name="Forward Scouting" hidden="false" id="936a-b3de-b360-8abd">
<description>At the end of the Set Up Operatives step, you can select and resolve up to five Forward Scouting options. Each option has a number in brackets, which is the maximum number of times you can select and resolve it for the battle. For example, your five selections could be Recon x2, Trip Alarm, Booby Trap, and Diversion. If both players have this ability, alternate resolving, starting with the Defender.</description>
</rule>
</rules>
<sharedProfiles>
<profile name="Camo Cloak" hidden="false" id="b418-b492-a4e8-f5da" 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, before rolling your Defence Dice, if it is in Cover, one additional dice can be retained as a successful normal save as a result of Cover.</characteristic>
</characteristics>
</profile>
<profile id="6487-7490-bfab-2fbc" name="⚔ Shape Reference" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">▲</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">⬤</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">⬛</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">⬟</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">⌖</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">⚔</characteristic>
</characteristics>
</profile>
</sharedProfiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Scout Heavy Gunner" hidden="false" id="de65-382-9724-32ff">
<profiles>
<profile name="Scout Heavy Gunner" hidden="false" id="3bdb-45ad-6fda-c5ab" 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">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Heavy Weapon" hidden="false" id="30c8-311c-e65-eb05">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Missile launcher" hidden="false" id="1292-46ea-f3c6-7d9">
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6d5c-16a8-6b98-4134" type="max"/>
</constraints>
<modifiers>
<modifier type="set" field="6d5c-16a8-6b98-4134" value="1">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="bc38-e4bd-c012-e984" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="⌖ Missile launcher - Frag" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="2919-1643-b053-e37c">
<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">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬤, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile name="⌖ Missile launcher - Krak" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="f1be-1c9a-75a4-9a34">
<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/7</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast x" hidden="false" type="rule" id="7609-576c-7572-524" targetId="d848-be09-6d6d-4708"/>
<infoLink name="Heavy" hidden="false" type="rule" id="8316-9cc9-3da3-672" targetId="1e77-6974-cf90-6008"/>
<infoLink name="APx" hidden="false" type="rule" id="1238-9ce0-187f-18e0" targetId="db98-339e-d0a2-e042"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3539-db6f-4af5-c4fa-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3539-db6f-4af5-c4fa-max"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy bolter" hidden="false" type="selectionEntry" id="d71b-1d44-9377-901c" targetId="d6bb-3abb-d49a-d17f">
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d64f-1cdc-bcb3-98e6" type="max"/>
</constraints>
<modifiers>
<modifier type="set" field="d64f-1cdc-bcb3-98e6" value="1">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="bc38-e4bd-c012-e984" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Bolt pistol" hidden="false" type="selectionEntry" id="a4fd-1a26-5453-2389" targetId="bd48-b918-b17a-5d10">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1d8b-11b-5fa8-f6a6-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1d8b-11b-5fa8-f6a6-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" type="selectionEntry" id="7329-b006-5acd-173e" targetId="be5e-89b7-52f3-58d0">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d1ff-ea36-b563-27f7-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d1ff-ea36-b563-27f7-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Equipment" hidden="false" type="selectionEntryGroup" id="f5e6-38e6-2576-4e41" targetId="f237-69dc-dc4c-3f78"/>
<entryLink import="true" name="XP" hidden="false" type="selectionEntry" id="53bc-dc84-7e27-6a2e" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Specialism" hidden="false" type="selectionEntryGroup" id="fba9-6986-4526-f5ad" targetId="4d2a-c73f-6053-864b"/>
<entryLink import="true" name="Battle Scars" hidden="false" type="selectionEntryGroup" id="95a0-f9d5-803b-c221" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" type="selectionEntryGroup" id="59b8-5186-23c9-9029" targetId="e84e-ae34-82a8-57b0">
<entryLinks>
<entryLink import="true" name="Scout Squad 1 - Distinguished" hidden="false" type="selectionEntry" id="4f0e-74f5-f514-43b9" targetId="1942-6631-1076-7ebe"/>
<entryLink import="true" name="Scout Squad 2 - Expedient" hidden="false" type="selectionEntry" id="bcb5-8674-1360-c143" targetId="76ca-c670-9fd9-35e7"/>
<entryLink import="true" name="Scout Squad 3 - Well-versed" hidden="false" type="selectionEntry" id="13bf-d10f-3e62-5ae9" targetId="848-12ff-7e97-81fe"/>
<entryLink import="true" name="Scout Squad 4 - Assassin" hidden="false" type="selectionEntry" id="60d2-b2d7-9b32-5d73" targetId="1704-975e-38ba-4fd3"/>
<entryLink import="true" name="Scout Squad 5 - Mobile" hidden="false" type="selectionEntry" id="7fc-43ff-f7e9-6a26" targetId="4311-b4ee-8dc0-2492"/>
<entryLink import="true" name="Scout Squad 6 - Raider" hidden="false" type="selectionEntry" id="501d-74fb-7e28-a612" targetId="56fd-9d5d-d807-a8d5"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" type="selectionEntryGroup" id="8f22-13a-846-3141" targetId="94bd-d409-fda3-9f9f">
<entryLinks>
<entryLink import="true" name="Scout Squad 1 - Distinguished" hidden="false" type="selectionEntry" id="b8b2-3766-bd20-d6d7" targetId="1942-6631-1076-7ebe"/>
<entryLink import="true" name="Scout Squad 2 - Expedient" hidden="false" type="selectionEntry" id="cd23-f25d-76e9-4312" targetId="76ca-c670-9fd9-35e7"/>
<entryLink import="true" name="Scout Squad 3 - Well-versed" hidden="false" type="selectionEntry" id="3601-4d1-2ef8-cc96" targetId="848-12ff-7e97-81fe"/>
<entryLink import="true" name="Scout Squad 4 - Assassin" hidden="false" type="selectionEntry" id="8a2-7caa-8b1f-42e9" targetId="1704-975e-38ba-4fd3"/>
<entryLink import="true" name="Scout Squad 5 - Mobile" hidden="false" type="selectionEntry" id="9149-31cd-cada-c95c" targetId="4311-b4ee-8dc0-2492"/>
<entryLink import="true" name="Scout Squad 6 - Raider" hidden="false" type="selectionEntry" id="d0d0-d402-cf82-5c91" targetId="56fd-9d5d-d807-a8d5"/>
</entryLinks>
</entryLink>
</entryLinks>
<categoryLinks>
<categoryLink targetId="15ae-553e-01d1-23a9" id="c6a1-ec29-d63d-c907" primary="false" name="Imperium"/>
<categoryLink targetId="0e59-07ae-65c2-2de6" id="7902-3dab-dd5b-9150" primary="false" name="Heavy Gunner"/>
<categoryLink targetId="f98b-0289-0f1f-b233" id="cef5-d7d-2cf6-329d" primary="true" name="Operative"/>
<categoryLink targetId="6b87-cec1-8fba-766d" id="2551-ef0-3f1b-f0b1" primary="false" name="Adeptus Astartes"/>
<categoryLink targetId="777a-84c5-8c7e-210d" id="19a1-c8cd-309b-a672" primary="false" name="Scout"/>
<categoryLink targetId="3dd1-bcc9-1f99-2498" id="aeda-c945-a584-3100" primary="false" name="SCOUT SQUAD"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Scout Hunter" hidden="false" id="c91f-a313-22bc-1fc1">
<categoryLinks>
<categoryLink targetId="15ae-553e-01d1-23a9" id="234b-4157-1ed6-117a" primary="false" name="Imperium"/>
<categoryLink targetId="f98b-0289-0f1f-b233" id="2302-5e53-c178-a73b" primary="true" name="Operative"/>
<categoryLink targetId="6b87-cec1-8fba-766d" id="cdf5-8897-c466-46d1" primary="false" name="Adeptus Astartes"/>
<categoryLink targetId="777a-84c5-8c7e-210d" id="94a1-3a70-c699-a7d1" primary="false" name="Scout"/>
<categoryLink targetId="3dd1-bcc9-1f99-2498" id="c0c4-678d-fa39-6a12" primary="false" name="SCOUT SQUAD"/>
<categoryLink targetId="553b-bf95-bcdf-2f06" id="4929-da55-13f1-6bdb" primary="false" name="Hunter"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Bolt pistol" hidden="false" type="selectionEntry" id="9fc5-3ee3-2bb2-43ec" targetId="bd48-b918-b17a-5d10">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="864e-8d54-34f4-676c"/>
</constraints>
</entryLink>
<entryLink import="true" name="Combat blade" hidden="false" type="selectionEntry" id="32d9-cff4-f514-2d63" targetId="5b8b-364f-3e6d-c617">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5edd-6050-b0d4-dba9"/>
</constraints>
</entryLink>
<entryLink import="true" name="Climbing Equipment" hidden="false" type="selectionEntry" id="96db-f698-4c91-c2bd" targetId="6e6b-50c8-5228-67b6"/>
<entryLink import="true" name="Equipment" hidden="false" type="selectionEntryGroup" id="4dbd-9aa2-888d-30a5" targetId="f237-69dc-dc4c-3f78"/>
<entryLink import="true" name="XP" hidden="false" type="selectionEntry" id="f2b5-5fb-5ffd-e2c5" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Specialism" hidden="false" type="selectionEntryGroup" id="305e-fbca-83d9-e27" targetId="4d2a-c73f-6053-864b"/>
<entryLink import="true" name="Battle Scars" hidden="false" type="selectionEntryGroup" id="fd3-7527-cd82-9f64" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" type="selectionEntryGroup" id="fcd2-48b0-2da-1da4" targetId="94bd-d409-fda3-9f9f">
<entryLinks>
<entryLink import="true" name="Scout Squad 1 - Distinguished" hidden="false" type="selectionEntry" id="260f-7098-8707-9b7e" targetId="1942-6631-1076-7ebe"/>
<entryLink import="true" name="Scout Squad 2 - Expedient" hidden="false" type="selectionEntry" id="da55-7ef-965d-ced4" targetId="76ca-c670-9fd9-35e7"/>
<entryLink import="true" name="Scout Squad 3 - Well-versed" hidden="false" type="selectionEntry" id="3931-c7ed-57ed-41c0" targetId="848-12ff-7e97-81fe"/>
<entryLink import="true" name="Scout Squad 4 - Assassin" hidden="false" type="selectionEntry" id="5e7e-ce2e-fe09-73b3" targetId="1704-975e-38ba-4fd3"/>
<entryLink import="true" name="Scout Squad 5 - Mobile" hidden="false" type="selectionEntry" id="104f-a62a-8ff5-6186" targetId="4311-b4ee-8dc0-2492"/>
<entryLink import="true" name="Scout Squad 6 - Raider" hidden="false" type="selectionEntry" id="8ce9-7084-d70c-7342" targetId="56fd-9d5d-d807-a8d5"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" type="selectionEntryGroup" id="18cf-e519-b654-528d" targetId="ae2f-d9f3-a27c-cca6">
<entryLinks>
<entryLink import="true" name="Scout Squad 1 - Distinguished" hidden="false" type="selectionEntry" id="ab24-4821-ba51-2ac7" targetId="1942-6631-1076-7ebe"/>
<entryLink import="true" name="Scout Squad 2 - Expedient" hidden="false" type="selectionEntry" id="b405-712a-454-c99f" targetId="76ca-c670-9fd9-35e7"/>
<entryLink import="true" name="Scout Squad 3 - Well-versed" hidden="false" type="selectionEntry" id="a1a5-e84a-e9e6-bfaa" targetId="848-12ff-7e97-81fe"/>
<entryLink import="true" name="Scout Squad 4 - Assassin" hidden="false" type="selectionEntry" id="6b37-5b26-1e8b-297b" targetId="1704-975e-38ba-4fd3"/>
<entryLink import="true" name="Scout Squad 5 - Mobile" hidden="false" type="selectionEntry" id="b586-dd4e-5249-5eaa" targetId="4311-b4ee-8dc0-2492"/>
<entryLink import="true" name="Scout Squad 6 - Raider" hidden="false" type="selectionEntry" id="aff0-9bb2-33b5-f9e7" targetId="56fd-9d5d-d807-a8d5"/>
</entryLinks>
</entryLink>
</entryLinks>
<profiles>
<profile name="Scout Hunter" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="8ca1-e71b-7de6-63d8">
<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">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
<profile name="Grapnel Launcher" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="53eb-4596-5bc7-e4c6">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative is equipped with climbing equipment and it does not cost any equipment points for this operative.</characteristic>
</characteristics>
</profile>
<profile name="Grapnel Assault (1AP)" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions" hidden="false" id="eac1-73df-4246-5420">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Charge action with this operative. If, during that action, this operative climbs, drops, jumps, traverses or its base moves under a Vantage Point, its melee weapons gain the Lethal 3+ special rule until the end of the activation.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Scout Sergeant" hidden="false" id="f66e-aea7-a604-150b">
<categoryLinks>
<categoryLink targetId="15ae-553e-01d1-23a9" id="546a-a595-5436-bc9b" primary="false" name="Imperium"/>
<categoryLink targetId="3198-c1ce-dfd0-fb4f" id="bae1-3a77-b952-fe45" primary="true" name="Leader"/>
<categoryLink targetId="3dd1-bcc9-1f99-2498" id="192-da6c-2aab-4efa" primary="false" name="SCOUT SQUAD"/>
<categoryLink targetId="777a-84c5-8c7e-210d" id="7a5d-34d6-5d6b-2f08" primary="false" name="Scout"/>
<categoryLink targetId="6b87-cec1-8fba-766d" id="7078-85c6-4db4-e000" primary="false" name="Adeptus Astartes"/>
<categoryLink targetId="ebce-a888-1e3a-4e7f" id="4e24-16da-ffb0-9a3e" primary="false" name="Sergeant"/>
</categoryLinks>
<profiles>
<profile name="Scout Sergeant" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="cdfc-c683-d7f3-7b80">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">3</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">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">11</characteristic>
</characteristics>
</profile>
<profile name="Guidance and Experience" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="66d5-10a7-5e95-88e6">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative is activated, you can select one other friendly SCOUT SQUAD operative Visible to it. Add 1 to the selected operative's APL.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons" hidden="false" id="dea5-f347-a81b-cfa1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Astartes shotgun and fists" hidden="false" id="23bb-508c-7d7f-c83e">
<entryLinks>
<entryLink import="true" name="Astartes shotgun" hidden="false" type="selectionEntry" id="e367-38ee-301d-2af9" targetId="a339-a627-66b5-865c"/>
<entryLink import="true" name="Fists" hidden="false" type="selectionEntry" id="c2d9-d39a-be04-3224" targetId="be5e-89b7-52f3-58d0"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Boltgun and fists" hidden="false" id="45b1-b4ee-8073-e605">
<entryLinks>
<entryLink import="true" name="Boltgun" hidden="false" type="selectionEntry" id="f29e-adeb-d4db-fe1e" targetId="62c2-a7c-6e2c-ec5f"/>
<entryLink import="true" name="Fists" hidden="false" type="selectionEntry" id="2b6a-d273-f22-d771" targetId="be5e-89b7-52f3-58d0"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bolt pistol and chainsword" hidden="false" id="b4e0-1819-c567-6267">
<entryLinks>
<entryLink import="true" name="Bolt pistol" hidden="false" type="selectionEntry" id="bd0d-3cd8-dca1-1a10" targetId="bd48-b918-b17a-5d10"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Chainsword" hidden="false" id="e7d-1696-2581-1f6e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2911-827f-5f2b-7097-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2911-827f-5f2b-7097-max"/>
</constraints>
<profiles>
<profile name="⚔ Chainsword" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="564d-ef8a-9813-ce20">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</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>