-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Farstalker Kinband.cat
1892 lines (1891 loc) · 153 KB
/
2021 - Farstalker Kinband.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="3cd3-7d31-f105-e415" name="Farstalker Kinband" revision="7" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="5" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="53d9-aee4-991f-1f73" name="FARSTALKER KINBAND" hidden="false"/>
<categoryEntry id="0b91-407c-2178-9392" name="Kroot" hidden="false"/>
<categoryEntry id="8849-52f5-8ddf-0699" name="Kill-broker" hidden="false"/>
<categoryEntry id="f25f-97c7-f917-9943" name="Bow-hunter" hidden="false"/>
<categoryEntry id="5d2c-7ab8-c748-dc64" name="Cold-blood" hidden="false"/>
<categoryEntry id="1e70-e101-e63b-776e" name="Cut-skin" hidden="false"/>
<categoryEntry id="3d4d-360e-fa8f-785e" name="Hound" hidden="false"/>
<categoryEntry id="5040-f504-79ae-64e6" name="Stalker" hidden="false"/>
<categoryEntry id="f8cc-9240-278b-7bae" name="Long-sight" hidden="false"/>
<categoryEntry id="f3fc-27fc-93c2-cfcf" name="Pistolier" hidden="false"/>
<categoryEntry id="6467-0adb-e2d5-46aa" name="Tracker" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="8ed6-3bbe-0269-a512" name="Farstalker Kinband Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="529e-f762-6999-36ef" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="fbaf-25a5-2242-ee23" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="b765-c123-fbd9-2d4c" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="947f-1292-0435-2ced" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0efe-1666-4c45-575e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="bba6-4b7d-98e5-b779" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="11" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d6c-e8b2-2b8e-1e53" type="min"/>
<constraint field="selections" scope="parent" value="11" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3b3-83e7-dbd9-c267" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0241-7d97-f3ab-1289" name="Heavy Gunner" hidden="false" targetId="0e59-07ae-65c2-2de6" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a7c0-ba7d-416c-7ca0" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="f9f1-33ec-cd5c-3ddb" name="Kill-broker" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2a25-2cda-9f74-cded" name="Kill-broker" 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">9</characteristic>
</characteristics>
</profile>
<profile id="57d4-b00b-c0cf-be00" name="Call the Kill" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once in each Strategy phase, when it is your turn to use a Strategic Ploy or pass, you can select one enemy operative in the killzone. Until the end of the Turning Point, each time a friendly FARSTALKER KINBAND operative fights in combat or makes a shooting attack against that enemy operative, in the Roll Attack Dice step of that combat or shooting attack, before rolling your attack dice, you can choose one of the following effects:
- Retain one attack dice as a successful normal hit without rolling it
- The weapon gains the Ceaseless special rule
- The weapon gains the P1 critical hit rule</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f135-76a6-1eaf-a51e" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7633-425d-ca49-5afa" name="New CategoryLink" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="c767-6901-06f0-6c71" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="58ad-0bf6-ec60-7d3d" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="c53c-e636-e0c3-252a" name="Kill-broker" hidden="false" targetId="8849-52f5-8ddf-0699" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="be69-1e30-e189-60c4" name="Blade" 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="06ec-3e89-fa93-a530" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e051-05e2-2b51-ca83" type="max"/>
</constraints>
<infoLinks>
<infoLink id="513b-602f-bddb-5fe2" name="⚔ Blade" hidden="false" targetId="59f2-ce0d-aa90-437f" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="f9f1-33ec-cd5c-3ddb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0fa-ec54-1f66-18f2" type="equalTo"/>
<condition field="selections" scope="f9f1-33ec-cd5c-3ddb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="388a-a1de-5673-35df" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="3028-9903-0d72-bf58" name="Ranged weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea27-3f5e-a077-5642" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ba6-3625-6963-2e11" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3d3b-362b-ebad-fbd7" name="Pulse rifle" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="54bc-12cb-009b-7dfd" name="⌖ Pulse rifle" 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">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"/>
</costs>
</selectionEntry>
<selectionEntry id="4145-22a6-1f4f-11b2" name="Pulse carbine" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3ef5-5c3a-0149-dcc5" name="Photon Grenade (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative Visible to this operative. Roll one D6, subtracting 1 from the result as follows:
- if that enemy operative is not in this operative's Line of Sight.
- if that enemy operative is more than ⬟ from this operative.
On a 2+, subtract ⬤ from that enemy operative's Movement characteristic and it cannot perform Dash actions. This operative can only perform this action once, only if it is equipped with a pulse carbine and cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile id="6f19-98ef-19d2-71d8" name="⌖ Pulse carbine" 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">4/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"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a3c6-0498-fa9f-5c5a" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="8255-2f10-816b-00fc" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="55af-b768-83be-ea55" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="8b24-429c-3257-2e90" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="9469-82a6-1e68-81c7" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="6863-14cd-e732-c8c2" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="184e-3006-0e41-3774" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="6e65-5a95-246b-48d8" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="ec32-713a-54b2-f2f9" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="dac6-53d5-4faf-82f2" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="5347-294a-9f74-e784" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="7eca-36e8-a704-9358" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="5807-af54-58cb-7105" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3528-1486-bca4-73d8" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="08eb-769d-7db8-a6f7" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="bfdb-cd69-3b72-5128" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="336b-55ed-64d7-3279" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="a8d5-967f-338c-ea57" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="b011-edce-793e-dd03" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="e6b2-38ea-8000-1e6b" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c73d-ad0f-320a-eae7" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="5da9-e15a-200e-7c84" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="c18a-bd3e-2c96-c90c" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="5452-8075-8f89-2301" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="69fb-f2e4-54a0-519e" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="9af7-7456-4334-7a95" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="aeb9-bd6b-384e-f103" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3824-6dba-d69c-1786" name="Bow-hunter" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="038f-514f-e51c-38a4" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="038f-514f-e51c-38a4" type="max"/>
</constraints>
<profiles>
<profile id="89c4-f715-6d67-8856" name="Bow-hunter" 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">8</characteristic>
</characteristics>
</profile>
<profile id="a133-2323-13aa-670b" name="Energize (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, all profiles of the accelerator bow this operative is equipped with gain the Lethal 5+ special rule. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="da8a-104d-08d0-526d" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="15fb-0db2-9799-c888" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="2c02-3b71-96be-b936" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="7d6c-c80f-444f-20a9" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="6b3d-973e-122a-0cd4" name="Bow-hunter" hidden="false" targetId="f25f-97c7-f917-9943" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8d63-161e-3927-8e86" name="Accelerator bow" 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="8050-a38b-5347-8b32" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f2a-6365-cc02-d4a6" type="max"/>
</constraints>
<profiles>
<profile id="968a-e9ae-e031-1f59" name="⌖ Accelerator bow - Fused" 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">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="8ead-cc8d-bb77-f4e5" name="⌖ Accelerator bow - Glide" 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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="c65a-e995-b2a2-b862" name="⌖ Accelerator bow - Voltaic" 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">3/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Splash 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="43e1-deb6-7523-2556" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="1a5b-1fc4-d7da-dcf3" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
<infoLink id="fc6c-6ae7-9550-b33f" name="Splash x" hidden="false" targetId="eab8-73f5-feed-5924" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="fa8d-f3b1-7e45-86ca" name="Blade" hidden="false" collective="false" import="true" targetId="4097-0a14-2867-79f2" type="selectionEntry"/>
<entryLink id="3b16-b7f3-e23c-00ee" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="8663-73fa-5216-cabe" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="71c1-b815-a9d3-b2f2" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="2016-f910-59a2-1872" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="0118-4a70-c1cd-75a3" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6663-4f13-ad12-f230" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="3924-f8ac-ee41-f085" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="6ace-5331-f08c-7586" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="5f11-0776-f765-9ad3" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="99e3-8612-3bfe-567c" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="6308-3cb1-1730-d019" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ed1e-c160-a2d0-1678" name="Cut-skin" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="f40c-013e-71bf-1397" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f40c-013e-71bf-1397" type="max"/>
</constraints>
<profiles>
<profile id="2416-d571-5c07-cc85" name="Cut-skin" 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">8</characteristic>
</characteristics>
</profile>
<profile id="6ee6-5d2d-5cba-62cf" name="Vicious Duellist" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat, in the Roll Attack Dice step of that combat, for each attack dice your opponent discards, the enemy operative in that combat suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="a35c-c480-f6bb-7c02" name="Savage Assault (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Fight action with this operative. After completing that action's fight sequence, if this operative or the target operative have not been incapacitated, fight in combat with this operative against the same target using the same weapon again.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fbb9-3173-33c6-0a5a" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1c80-0cfd-c0f9-51c7" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="2378-5500-2bde-08fb" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="3a9e-7ed3-dcb9-a92f" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="3de5-6d12-7909-d1f0" name="Cut-skin" hidden="false" targetId="1e70-e101-e63b-776e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="41f9-c466-23bf-288b" name="Cut-skin's blades" 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="a432-e339-c8a4-670c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="44b9-e8ae-1395-fef3" type="max"/>
</constraints>
<profiles>
<profile id="9f48-f807-f7b6-a56b" name="⚔ Cut-skin's blades" 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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Balanced, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9456-99cf-e701-c4e3" name="Balanced" hidden="false" targetId="547c-e6e5-64d4-a519" type="rule"/>
<infoLink id="038d-1db7-4d51-803e" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0b57-cae4-65c7-da05" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="fb25-453d-4038-1ddb" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="ee79-da65-b6bc-c4d6" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="bd91-9d82-eb7e-df06" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="ff81-5fdc-e3ee-edfe" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f471-4aef-8158-1ab4" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="72c7-71da-4b67-af1d" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="b7fe-2d35-4113-3881" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="257d-50ce-e4f7-b59c" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="a7dc-7c44-9f07-d585" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="40dc-2731-5497-ef65" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5357-ed37-80f2-4c15" name="Cold-blood" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="2714-a4ad-f6f1-df93" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2714-a4ad-f6f1-df93" type="max"/>
</constraints>
<profiles>
<profile id="332b-563d-a516-efdb" name="Cold-blood" 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">9</characteristic>
</characteristics>
</profile>
<profile id="88c6-bb8e-cbd9-d0b8" name="Hardy" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat or a shooting attack is made against it, in the Resolve Successful Hits step of that combat or shooting attack, each time an attack dice would inflict critical damage on this operative, you can choose for that attack dice to inflict normal damage instead.</characteristic>
</characteristics>
</profile>
<profile id="349b-54b0-56a5-4532" name="Well-equipped" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative is equipped with piercing shot and toxin shot and they do not cost any equipment points for this operative. Those weapons can be selected for this operative's use twice, instead of once.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="119f-9e20-fe78-d2df" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="03f9-91bf-996d-9a87" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="6175-dfd9-d4ec-f6d2" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="e124-d01d-3c15-4103" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="8a0b-b045-8390-60af" name="Cold-blood" hidden="false" targetId="5d2c-7ab8-c748-dc64" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="185a-a127-5cff-0152" name="Blade" hidden="false" collective="false" import="true" targetId="4097-0a14-2867-79f2" type="selectionEntry"/>
<entryLink id="872d-b313-8844-64d7" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="2ec9-63c1-ee80-13bb" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="9ea1-02ce-f59b-8bc5" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="c3ee-5aaf-0ac1-5444" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="8255-2f10-816b-00fc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ad3-525a-7135-fc2c" type="min"/>
</constraints>
</entryLink>
<entryLink id="243e-0800-7582-f63f" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="e73e-ac6b-1a85-bffc" name="Piercing Shot" hidden="false" collective="false" import="true" targetId="01ab-69e4-a4ae-7399" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52d5-7826-418e-7e53" type="min"/>
</constraints>
</entryLink>
<entryLink id="1738-19a9-5034-0059" name="Toxin Shot" hidden="false" collective="false" import="true" targetId="6d40-a875-1660-1b60" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="243e-94b1-4be2-6a79" type="min"/>
</constraints>
</entryLink>
<entryLink id="442c-696d-b070-f42e" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="1207-7e58-2024-53ee" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="03b8-2ef0-6607-a409" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="f46f-2032-f3e7-921c" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="be6a-5caa-9fbb-a956" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="11db-9661-6e99-9c6e" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="da47-832f-0233-496e" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="4062-3b0e-44f9-f328" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6053-15c2-d36f-88b3" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="9c7f-9ba4-3cbd-f591" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="f60b-5f3f-8650-b0e1" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="662e-1071-f7b6-7008" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="e87c-808f-7a2d-9d49" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="c70a-37a6-4390-1d8b" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8b50-93bf-7739-5d71" name="Heavy Gunner w/ tribalest" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4ad4-5531-33a1-191a" name="Heavy Gunner" 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">8</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fb9b-2066-f040-20c8" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="baa0-0130-e8b0-0c6a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="8d28-e88a-db80-f954" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="94ed-ecc2-7e2e-804f" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="8116-15b2-7a11-e8af" name="Heavy Gunner" hidden="false" targetId="0e59-07ae-65c2-2de6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4265-b591-b94b-5d8c" name="Londaxi tribalest" 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="546a-2524-ec6c-05bf" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31d3-f6d6-0b82-594d" type="max"/>
</constraints>
<profiles>
<profile id="0ab9-9457-37f7-5b33" name="⌖ Londaxi tribalest" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1, Cumbersome*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6d4a-1131-4a34-3a7b" name="Rending" hidden="false" targetId="0550-3332-7a93-ab5b" type="rule"/>
<infoLink id="f419-d1f3-7696-99be" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="ff2d-7251-9911-b7d0" name="*Cumbersome" hidden="false" targetId="a4b8-e5e1-a673-f0e3" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f59f-e386-889d-5129" name="Blade" hidden="false" collective="false" import="true" targetId="4097-0a14-2867-79f2" type="selectionEntry"/>
<entryLink id="2c12-b9cc-721e-44ff" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="20fd-111d-8e3d-5eeb" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="550f-9f46-9ce4-87dd" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="78d5-9a49-e368-5d0c" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="fb39-5c2a-fcf4-8ce7" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="b511-a22d-3b38-af37" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="cc5b-5dfc-ed48-be85" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="9454-5b15-25d9-432c" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="c117-1f96-058f-b779" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="fc06-8499-baa6-269b" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="23a7-7957-1aaf-5f14" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f008-83d7-ef2c-e3d7" name="Hound" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="70c3-07d3-b309-8d5b" name="Hound" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">4⬤</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="6a11-1204-2f28-bedf" name="Gather (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Dash, Fall Back or Normal Move action with this operative. At any point during that move, you can perform the Pick Up action for free with this operative, and any remaining increments of movement can be used after it does so.</characteristic>
</characteristics>
</profile>
<profile id="28b1-bfea-fb18-f7f9" name="Beast" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative cannot perform mission actions and cannot be equipped with equipment.</characteristic>
</characteristics>
</profile>
<profile id="6445-8c31-bbc2-8697" name="Bad-tempered" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time an enemy operative performs a Fight action, if this operative is a valid target, you can select this operative as the target instead. Each time an enemy operative finishes a Charge action within Engagement Range of another friendly FARSTALKER KINBAND operative within ⬛ of this operative, if this operative is not within Engagement Range of an enemy operative, this operative can perform a free Charge action, but must finish that move within Engagement Range of that enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f19f-6cd3-f093-c18f" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8fed-0578-b3db-cc28" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="196b-c562-8131-3a7e" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="4cc2-e498-96c0-4d74" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="1111-6e0a-83a4-f3f7" name="Hound" hidden="false" targetId="3d4d-360e-fa8f-785e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fe99-e048-ff65-6028" name="Ripping fangs" 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="a1ca-901a-be1c-78a6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a6ef-91cf-bb92-8345" type="max"/>
</constraints>
<profiles>
<profile id="17f2-1a9b-4c2d-9671" name="Ripping fangs" 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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0163-fb55-5a9d-7dbf" name="Rending" hidden="false" targetId="0550-3332-7a93-ab5b" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9d66-e28d-8a96-305f" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="95e2-a602-fca2-84e7" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="49d1-4043-d9b3-19ae" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="dc34-3feb-680a-095b" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5380-f381-9601-412f" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="20fd-70e0-1381-81e3" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="151f-e569-7afa-110c" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="292b-d42a-bede-de87" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="d526-6ecd-9b54-9a29" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="141a-b75c-676b-95dd" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ba91-29fe-50a7-c378" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5775-395a-ab6e-8fda" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="3745-e7c6-37b2-a5b4" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="d48a-504f-fbf4-6173" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="c157-4021-f6cb-59b9" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="1452-b069-41f4-3cdf" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="82be-4530-0e32-101c" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="49ef-f7b0-1273-659f" name="Long-sight" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="be4c-cb6a-3bb4-e96e" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="be4c-cb6a-3bb4-e96e" type="max"/>
</constraints>
<profiles>
<profile id="ae68-0859-86f4-d092" name="Long-sight" 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">8</characteristic>
</characteristics>
</profile>
<profile id="e394-0a8e-508b-d284" name="Long-sight (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:
- The Kroot hunting rifle this operative is equipped with gains the Lethal 5+ and Silent special rules.
- If this operative makes a shooting attack with the Kroot hunting rifle it is equipped with, enemy operatives are not Obscured for that shooting attack.
This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4b2f-06bf-7749-4116" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
<infoLink id="083b-cbb8-4b7b-751c" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
<infoLink id="d177-3003-1e73-b7f2" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1d94-1e69-a735-7760" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="5838-cc76-d018-cb92" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="b92d-f3bd-429a-fd4f" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="3b95-40de-53c1-ba64" name="Long-sight" hidden="false" targetId="f8cc-9240-278b-7bae" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="61eb-72bc-7511-1700" name="Kroot hunting rifle" 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="9032-c397-4ca9-5ce4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="026e-e44b-4248-f03c" type="max"/>
</constraints>
<profiles>
<profile id="054f-fbeb-11bb-bb35" name="⌖ Kroot hunting rifle" 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">Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3277-cd2c-78c8-efd2" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
<infoLink id="f5a7-8ede-1274-bec9" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5884-b765-5e4b-c023" name="Blade" hidden="false" collective="false" import="true" targetId="4097-0a14-2867-79f2" type="selectionEntry"/>
<entryLink id="b4e1-ad1f-d59c-839c" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="d773-24bf-429a-9a5e" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="2063-013a-b865-9be8" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="e23a-ed71-ca0a-1572" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="2360-b7b6-72c5-efa0" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7392-7168-6f37-623d" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="3596-c71b-4f1f-358e" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="3faa-6718-26fc-318d" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="228b-7f9d-d2f3-0f87" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="98b1-6b29-b720-8ecb" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="263f-7e36-39ad-95b1" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a0c4-a33d-115f-e0da" name="Pistolier" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="caf7-ee39-ca59-5f60" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="caf7-ee39-ca59-5f60" type="max"/>
</constraints>
<profiles>
<profile id="d5f0-7543-4513-54ec" name="Pistolier" 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">8</characteristic>
</characteristics>
</profile>
<profile id="0a60-f1e3-d424-efe5" name="Gunslinger Salvo (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Shoot action with this operative with the dual Kroot pistols it is equipped with. After that shooting attack, you can make another attack with the dual Kroot pistols this operative is equipped with. This operative cannot perform this action if it has a Conceal order or while within Engagement Range of an enemy operative. It cannot perform a Charge, Fall Back or Normal Move action in the same activation in which it performs this action.</characteristic>
</characteristics>
</profile>
<profile id="b072-9924-f83e-21eb" name="Quick draw" 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 is selected as the target of a shooting attack, if this operative is ready, you can interrupt this action to perform a free Shoot action with this operative with the dual Kroot pistols it is equipped with against that enemy operative (that enemy operative must be a valid target). If that enemy operative is not incapacitated or revived as a result, finish its shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4d9e-75fb-5cb1-a36c" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="752f-72b7-e254-76b3" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="5cdc-ccd3-da5f-dc97" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="4082-f7b1-0bb3-84ed" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="f652-93db-71cb-07f4" name="Pistolier" hidden="false" targetId="f3fc-27fc-93c2-cfcf" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6d9c-1c6a-53ad-20a0" name="Dual Kroot pistols" 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="1c88-3f1c-5de6-020c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fbf6-7618-b799-3de1" type="max"/>
</constraints>
<profiles>
<profile id="6685-cfa1-ca77-25e5" name="⌖ Dual Kroot pistols" 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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Balanced, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0554-62b2-5349-f31d" name="Balanced" hidden="false" targetId="547c-e6e5-64d4-a519" type="rule"/>
<infoLink id="2492-36f6-c0ed-0a30" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="bf81-23b6-19aa-4c0f" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d35b-5bdb-6077-0d38" name="Blade" hidden="false" collective="false" import="true" targetId="4097-0a14-2867-79f2" type="selectionEntry"/>
<entryLink id="6078-1bdd-6a39-8564" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a58f-1dab-edf4-e854" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="6de8-436d-009f-d75b" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="2da4-2f8c-2ca1-7a46" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="be95-8c9d-d33b-76b0" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8015-3295-6eaa-a7c7" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="37a4-cd8a-d2b1-fbed" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="c72e-1db7-2a7a-e6fc" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="13fb-6947-c0d2-34b7" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="56b7-7680-3fab-57b9" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="8617-fac8-75ef-84f1" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="d24e-0233-cc3c-f0cc" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6949-0d14-483a-f3ce" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="ddea-08e2-b252-a219" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="de1f-1e31-248b-83ec" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="67f1-704a-cfc4-e8e0" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="5c04-22f0-0864-954e" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="4f68-31a9-e999-dc22" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cae7-f392-994d-6506" name="Stalker" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="3b38-c77b-da7f-08a9" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3b38-c77b-da7f-08a9" type="max"/>
</constraints>
<profiles>
<profile id="5b34-b003-aae8-31bc" name="Stalker" 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">8</characteristic>
</characteristics>
</profile>
<profile id="0efb-c309-484f-bd4f" name="Stealth Attack (2AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">This operative can perform this action if it has a Conceal order, is within ▲ of a terrain feature and not within Engagement Range of an enemy operative.
- Perform a free Charge action with this operative, but do not exceed its Movement characteristic (i.e. do not add ⬤).
- Perform a free Fight action with this operative.
- In the Resolve Successful Hits step of that combat, the first time you resolve one of your successful hits, you can immediately resolve another of your successful hits.</characteristic>
</characteristics>
</profile>
<profile id="4e4f-9103-82c8-f583" name="Stalker" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative can perform a Charge action if it has a Conceal order.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cec5-4256-928f-4897" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a04c-647c-09c2-3d5f" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="168a-6e2b-4193-8426" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="32a9-547d-65ad-2ba2" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="b57e-b569-c6e1-5f78" name="Stalker" hidden="false" targetId="5040-f504-79ae-64e6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="409d-b282-f06a-6216" name="Stalker's blade" 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="2609-3b1e-5974-155e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f947-846b-2284-08f1" type="max"/>
</constraints>
<profiles>
<profile id="9ca1-6887-2bc4-58ab" name="⚔ Stalker's blade" 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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Balanced</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="14de-5225-83be-d158" name="Balanced" hidden="false" targetId="547c-e6e5-64d4-a519" type="rule"/>
<infoLink id="86c7-6081-ad07-4c29" name="Rending" hidden="false" targetId="0550-3332-7a93-ab5b" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c5d0-2cc2-bbe7-eb95" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="f086-b459-0d4f-d906" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="18cb-e60c-8785-5cff" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="43a7-56d2-d2f5-9b8a" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="c98f-8ea2-8a13-0528" name="Kroot scattergun" hidden="false" collective="false" import="true" targetId="6f8e-6b58-5a73-00b9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="113e-63ef-a2de-0634" type="min"/>
</constraints>
</entryLink>
<entryLink id="76a5-286e-e7ce-30b9" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c364-9182-259f-b7cd" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="1cea-c639-02ea-bc46" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="7424-ba5e-399e-51a2" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="4680-b272-9051-0145" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="9186-9e04-2cd7-8f03" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="dc4b-ef59-6a96-9bbc" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="9db6-4ab2-a5d2-e723" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="2746-b80d-2090-e410" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="4e4b-3445-43b8-3947" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="3893-888c-613d-23b8" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="1138-4b75-6fa6-c306" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="8cd3-5b1f-3d53-6dfb" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="4e36-1f83-67bb-cebd" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4609-aade-c68a-1b72" name="Tracker" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="1b60-703d-6d32-1dec" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ed6-3bbe-0269-a512" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1b60-703d-6d32-1dec" type="max"/>
</constraints>
<profiles>
<profile id="5eb1-3b0e-8552-71fe" name="Tracker" 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">8</characteristic>
</characteristics>
</profile>
<profile id="4647-dcc9-6fea-7805" name="Pech'ra" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">The first time this operative is activated during the battle, place your Pech'ra token within ⬟ horizontally and any distance vertically of this operative. Each time this operative is activated thereafter, you can move your Pech'ra token up to ⬟ horizontally and any distance vertically. If this operative is incapacitated and removed from the killzone, remove your Pech'ra token.</characteristic>
</characteristics>
</profile>
<profile id="7993-255a-1c8c-eb61" name="Marked for the Hunt (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative. Until the end of the Turning Point, while that enemy operative is within ⬟ horizontally and any distance vertically of your Pech'ra token, it is marked for the hunt. Until the end of the Turning Point, each time a friendly FARSTALKER KINBAND operative within ⬟ horizontally and any distance vertically of your Pech'ra token makes a shooting attack against an enemy operative marked for the hunt, that enemy operative cannot use Light terrain as Cover for that shooting attack. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile id="b1ea-77bb-91b0-f27e" name="From the Eye Above (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly operative Visible to and within ⬟ of this operative. Add 1 to its APL. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a7e9-3169-d2e2-f4e2" name="Rogue" hidden="false" targetId="9ad8-b75c-bfa7-f42e" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="697a-de5a-928f-5644" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="8d35-519f-f87b-48b0" name="FARSTALKER KINBAND" hidden="false" targetId="53d9-aee4-991f-1f73" primary="false"/>
<categoryLink id="a6a5-0ce9-89f9-7e94" name="Kroot" hidden="false" targetId="0b91-407c-2178-9392" primary="false"/>
<categoryLink id="3ada-32b8-633f-4413" name="Tracker" hidden="false" targetId="6467-0adb-e2d5-46aa" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="06e8-c16d-e704-b0b1" name="Blade" hidden="false" collective="false" import="true" targetId="4097-0a14-2867-79f2" type="selectionEntry"/>
<entryLink id="79ca-8530-722b-05e6" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="ebec-b7c3-23ab-cf12" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="6927-e804-fec5-f282" name="Equipment" hidden="false" collective="false" import="true" targetId="141e-5b01-a4b4-e8ef" type="selectionEntryGroup"/>
<entryLink id="4bbf-05ca-5afd-8677" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="8255-2f10-816b-00fc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3ed-6cbb-fdfd-bef6" type="min"/>
</constraints>
</entryLink>
<entryLink id="07a7-77cd-f57c-8c59" name="Specialism" hidden="false" collective="false" import="true" targetId="d4ab-70eb-6d0f-e6c3" type="selectionEntryGroup"/>
<entryLink id="a406-7bca-21ee-c617" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="289c-b0f0-02de-c6af" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="667d-2074-c0dd-545d" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="58c6-0e3a-d173-b573" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>
<entryLink id="f6b2-4ad0-5476-4c18" name="Farband 5 - Leathery Hide" hidden="false" collective="false" import="true" targetId="703b-675b-938c-b495" type="selectionEntry"/>
<entryLink id="af74-4da1-cc70-e0b2" name="Farband 6 - Clandestine" hidden="false" collective="false" import="true" targetId="54b8-70cb-8bde-ed7a" type="selectionEntry"/>
<entryLink id="ff02-5743-ce05-cc51" name="Farband 1 - Savage" hidden="false" collective="false" import="true" targetId="6a78-4666-5697-5763" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f8d7-f96f-b99f-1767" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="a19b-0251-8735-75b8" name="Farband 3 - Trapper" hidden="false" collective="false" import="true" targetId="a06e-8b1c-45c9-3672" type="selectionEntry"/>
<entryLink id="4029-8e5a-c8f4-80ff" name="Farband 2 - Eye on the Mark" hidden="false" collective="false" import="true" targetId="4489-beb0-1594-8ce1" type="selectionEntry"/>
<entryLink id="f02a-9c4d-000b-a855" name="Farband 4 - Wiry" hidden="false" collective="false" import="true" targetId="b884-1b45-5612-27a7" type="selectionEntry"/>