-
Notifications
You must be signed in to change notification settings - Fork 92
/
2024 - Farstalker Kinband.cat
1001 lines (1001 loc) · 70.8 KB
/
2024 - 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 library="false" id="1846-3fbb-36f1-6e36" name="Farstalker Kinband" gameSystemId="c521-ad27-44df-f959" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<forceEntries>
<forceEntry name="Farstalker Kinband Kill Team" id="b7d5-def4-9f07-444f" hidden="false">
<categoryLinks>
<categoryLink name="Leader" hidden="false" id="efdc-d2c9-e117-670a" targetId="d999-8cad-8145-4efe"/>
<categoryLink name="Operative" hidden="false" id="ec36-e843-2d7b-f1f9" targetId="cf83-4496-b58e-ac82">
<constraints>
<constraint type="min" value="11" field="selections" scope="force" shared="true" id="8446-8eae-aa1c-3e24-min"/>
<constraint type="max" value="11" field="selections" scope="force" shared="true" id="8446-8eae-aa1c-3e24-max"/>
</constraints>
</categoryLink>
<categoryLink name="Configuration" hidden="false" id="f012-d856-89d6-05aa" targetId="874b-0390-e5e2-1daa"/>
<categoryLink name="Reference" hidden="false" id="6912-bb8e-7551-7793" targetId="b318-a8d7-2d38-99a3"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Faction Equipment" id="a7ea-69e1-e32e-d753" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Piercing Shot" hidden="false" id="175a-331e-686d-0282">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d383-a50e-b5d1-a463"/>
</constraints>
<profiles>
<profile name="Piercing Shot" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="6572-d8ff-55f1-aa5b">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Once per turning point, when a friendly **FARSTALKER KINBAND** operative is performing the **Shoot** action and you select a Kroot rifle, Kroot scattergun or dual Kroot pistols (focused), you can use this rule. If you do, until the end of that action, that weapon has the Piercing 1 weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Piercing x" id="e9e0-ec54-fba9-1897" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Trophy" hidden="false" id="f531-0e6c-a6e4-46c3">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="60fd-9630-c4ab-efce"/>
</constraints>
<profiles>
<profile name="Trophy" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="e887-00fd-9c99-e1de">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Once per battle, when a friendly **FARSTALKER KINBAND** operative (excluding **HOUND**) is activated, if it’s not within control range of enemy operatives, you can use this rule. If you do, add 1 to that friendly operative’s APL stat until the end of its activation.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Meat" hidden="false" id="b60a-29ba-320e-30f6">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="148d-d1e3-d015-c78c"/>
</constraints>
<profiles>
<profile name="Meat" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="7b6b-dc2a-f1dc-4dcf">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Once per turning point, when a friendly **FARSTALKER KINBAND** operative (excluding **HOUND**) is activated, if it’s not within control range of enemy operatives, you can use this rule. If you do, that friendly operative regains D3+1 lost wounds.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Toxin Shot" hidden="false" id="98bd-1346-2175-5dd3">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="96a2-bbfd-b6c1-38b5"/>
</constraints>
<profiles>
<profile name="Toxin Shot" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="3f86-aba4-e4f9-acb7">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Once per turning point, when a friendly **FARSTALKER KINBAND** operative is performing the **Shoot** action and you select a Kroot rifle, Kroot scattergun or dual Kroot pistols (focused), you can use this rule. If you do, until the end of that action, that weapon has the Lethal 5+ and Stun weapon rules.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="0bba-d377-975b-b66b" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
<infoLink name="Stun" id="80ae-ff39-cb3b-3f1a" hidden="false" type="rule" targetId="5ae2-3f29-8635-fd02"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<selectionEntries>
<selectionEntry type="model" import="true" name="Kroot Kill-Broker" hidden="false" id="f753-c4df-4138-6559">
<profiles>
<profile name="Kroot Kill-Broker" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="f418-729f-3bac-2a23">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">9</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Ranged Weapon" id="ebad-b372-7eb5-12b7" hidden="false">
<entryLinks>
<entryLink import="true" name="Kroot Rifle" hidden="false" id="503d-9299-5f26-4bfb" type="selectionEntry" targetId="f58d-96f9-0a12-8d00"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="59a2-f427-057e-f84a-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="59a2-f427-057e-f84a-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Pulse weapon" hidden="false" id="c064-588c-d310-c325">
<profiles>
<profile name="⌖ Pulse weapon" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="23c7-5fc2-6b51-bf22">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ritual blade" hidden="false" id="6526-fb53-8d7c-adb5">
<profiles>
<profile name="⚔ Ritual blade" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c4dd-5379-db1a-8029">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8051-ce94-660d-0860-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8051-ce94-660d-0860-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Call The Kill" hidden="false" id="e17f-9183-ed2a-374d">
<profiles>
<profile name="Call The Kill" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="0a7d-6724-7c91-9003">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">**STRATEGIC GAMBIT**. Select one enemy operative to be your mark for the turning point. Whenever a friendly **FARSTALKER KINBAND** operative is shooting against, fighting against or retaliating against your mark, that friendly operative’s weapons have the Accurate 1 weapon rule. Whenever your mark is incapacitated, you can select a new enemy operative to be your mark for the turning point (and can continue to do so during this turning point).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Accurate x" id="85ec-1ddd-6722-db09" hidden="false" type="rule" targetId="ba48-6452-4bf6-e9fa"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3600-d35b-47e4-59fa-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3600-d35b-47e4-59fa-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Victory Shriek" hidden="false" id="da86-dd38-4cf9-4092">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f8b0-cfab-6c08-660f-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f8b0-cfab-6c08-660f-max"/>
</constraints>
<profiles>
<profile name="Victory Shriek" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="1571-3748-835c-cc6f">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever your mark is incapacitated, you can select one friendly **FARSTALKER KINBAND** operative within 6" of this operative. Until the end of the battle, that operative’s weapons have the Accurate 1 weapon rule. Each friendly operative can only be selected for this rule once per battle.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Accurate x" id="db64-ee70-b7d7-a7f2" hidden="false" type="rule" targetId="ba48-6452-4bf6-e9fa"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="324e-0aa1-ebe1-94aa" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="324e-0aa1-ebe1-94aa">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="e10d-92db-1d6c-fad5" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Leader" hidden="false" id="1f44-4433-4de0-0d70" targetId="d999-8cad-8145-4efe" primary="true"/>
<categoryLink name="T'au Empire" hidden="false" id="4b8e-5b6e-5780-caf9" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="3240-065d-4741-82e1" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Kill-Broker" hidden="false" id="1733-c0e0-2e88-1090" targetId="3513-58e1-128a-94f9" primary="false"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Bow-Hunter" hidden="false" id="f36e-f5f3-ebd5-d194">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="d637-3f81-4280-89ab" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="22be-53eb-c510-6273" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="7bf4-ef7a-dcd9-d151" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="T'au Empire" hidden="false" id="2c59-abb6-6218-0e56" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Bow-Hunter" hidden="false" id="0cc5-81e7-e4d1-8310" targetId="1b40-d08b-b9c6-03e8" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Bow-Hunter" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="6318-b914-5316-419e">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Blade" hidden="false" id="2857-7efe-c8e7-3411" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a5dd-ad9a-e834-9c89-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a5dd-ad9a-e834-9c89-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Accelerator bow" hidden="false" id="faf6-6640-e0c0-a515">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b6d5-18a1-ed93-dee5-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b6d5-18a1-ed93-dee5-max"/>
</constraints>
<profiles>
<profile name="⌖ Accelerator bow (fused arrow)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="750d-bc29-45b6-c93c">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Piercing 1</characteristic>
</characteristics>
</profile>
<profile name="⌖ Accelerator bow (glide arrow)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c2bf-0c98-14c5-bbd7">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Silent</characteristic>
</characteristics>
</profile>
<profile name="⌖ Accelerator bow (voltaic arrow)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="740c-4170-0c28-bb1d">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Blast 1"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Piercing x" id="a1ce-bada-a02c-cde3" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Silent" id="f25f-b68f-8fad-022e" hidden="false" type="rule" targetId="1e3c-23c9-c6e2-9f62"/>
<infoLink name="Blast x" id="2b6a-3b3a-4d23-918f" hidden="false" type="rule" targetId="0d74-0977-b481-bd13"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Energise" hidden="false" id="de5d-2471-92c4-c2cb">
<profiles>
<profile name="Energise (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="0df0-4b66-c0d4-8c32">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Until the end of the turning point or until this operative has shot with its accelerator bow (whichever comes first), all profiles of its accelerator bow have the Lethal 5+ weapon rule.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="44b5-7e0e-119b-c3ff" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d3f2-59bb-a85d-0b5f-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d3f2-59bb-a85d-0b5f-max" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="6028-0dac-9210-9ad0" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="6028-0dac-9210-9ad0">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Cold-Blood" hidden="false" id="a448-c1c8-dee5-7c71">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="ccc8-657e-06d1-56c0" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="T'au Empire" hidden="false" id="3868-e549-11b0-4153" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="0b0c-c2ea-3968-6d1d" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Cold-Blood" hidden="false" id="b5d0-4ab7-7e25-a7e4" targetId="30ae-6496-04cf-f2a5" primary="false"/>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="f485-96da-12c6-01fe" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Cold-Blood" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="0d16-13d5-e24d-cfd9">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">9</characteristic>
</characteristics>
</profile>
<profile name="Hardy" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="ca10-731b-2b4f-4031">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an attack dice would inflict Critical Dmg on this operative, you can choose for that attack dice to inflict Normal Dmg instead.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="404f-daac-d22f-7cde" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="404f-daac-d22f-7cde">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Kroot Rifle" hidden="false" id="1281-45f1-613d-fd63" type="selectionEntry" targetId="f58d-96f9-0a12-8d00">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6653-d638-9a06-d66d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6653-d638-9a06-d66d-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Blade" hidden="false" id="a41f-00e7-f77c-e72c" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1a27-8c3b-779a-d1cc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1a27-8c3b-779a-d1cc-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cold-blooded" hidden="false" id="cf68-2c43-0762-b618">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8c0f-0ceb-e20f-6527-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8c0f-0ceb-e20f-6527-max"/>
</constraints>
<profiles>
<profile name="Cold-blooded" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="e75e-c684-72f9-ca06">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is shooting against, fighting against or retaliating against a wounded enemy operative, this operative’s weapons have the Lethal 5+ weapon rule; if that enemy operative is also injured, this operative’s weapons also have the Rending weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="3bbc-bc57-4bd3-b446" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
<infoLink name="Rending" id="8f6c-846f-e4d0-e15c" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Cut-Skin" hidden="false" id="9ef6-6de8-0e18-83ee">
<categoryLinks>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="b888-9884-7008-7217" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Operative" hidden="false" id="9f7c-1c48-d0eb-2d5d" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Kroot" hidden="false" id="c3a5-0f1f-d46e-e7f3" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="T'au Empire" hidden="false" id="b5b4-1ad4-0775-b4de" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Cut-Skin" hidden="false" id="acea-1bed-17d9-a6f3" targetId="f90f-8381-0522-fbba" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Cut-Skin" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="eef0-fb54-57ab-4597">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Vicious Duellist" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="b2f9-3320-eaa3-5eb3">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is fighting or retaliating, for each attack dice your opponent discards as a fail, inflict 1 damage on the enemy operative in that sequence.</characteristic>
</characteristics>
</profile>
<profile name="Savage Assault" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="eab7-a71b-4437-b722">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">The first time this operative performs the **Fight** action during each of its activations, if neither it nor the enemy operative in that sequence is incapacitated, this operative can immediately perform a free **Fight** action afterwards, but it can only fight against that enemy operative (and only if it’s still valid to fight against). This takes precedence over action restrictions.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cut-skin's blades" hidden="false" id="93ec-5df5-0161-dc58">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="38c3-8933-9627-812b-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="38c3-8933-9627-812b-max"/>
</constraints>
<profiles>
<profile name="⚔ Cut-skin's blades" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="7156-f9f4-4411-89c7">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Ceaseless, Lethal 5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Ceaseless" id="1463-9216-21bf-0c39" hidden="false" type="rule" targetId="752d-ce38-c325-4b8a"/>
<infoLink name="Lethal x+" id="564f-8343-f26e-7095" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="379d-4ba7-9944-235e" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="379d-4ba7-9944-235e">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Heavy Gunner" hidden="false" id="a80e-56cb-efd8-e6fe">
<categoryLinks>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="1cfc-58a5-8dd1-5ccd" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Operative" hidden="false" id="d983-17a1-87b1-423c" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="T'au Empire" hidden="false" id="e18b-5ce6-f41f-082e" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="7fa0-c443-f45c-d2e3" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Heavy Gunner" hidden="false" id="7976-6e55-f3fd-50f2" targetId="73b9-55cd-a334-d65c" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Heavy Gunner" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="855e-bcf8-a960-d4de">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="4d78-8340-de88-f638" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="4d78-8340-de88-f638">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Blade" hidden="false" id="b051-fe3e-9e83-1a91" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1b6f-376b-f45e-462d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1b6f-376b-f45e-462d-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Ranged Weapon" id="3b67-768c-db97-08e8" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c133-03ea-3a82-887b-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c133-03ea-3a82-887b-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Dvorgite skinner" hidden="false" id="916e-231c-f49e-362e">
<profiles>
<profile name="⌖ Dvorgite skinner" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="d380-7dc9-b47a-45f5">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">5</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">33</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 6", Heavy (Reposition only), Piercing 2, Torrent 2"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="63c0-5f05-f9aa-5f70" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Heavy" id="4694-92e1-d06d-0f88" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Piercing x" id="4a38-ea06-acd4-8a9f" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Torrent x" id="388e-7f02-e9a4-a0f7" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Londaxi tribalest" hidden="false" id="ccfc-7fc8-46c5-5fa3">
<profiles>
<profile name="⌖ Londaxi tribalest" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="d772-2e2b-1c78-6e39">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">5</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Heavy (Reposition only), Piercing 1, Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Heavy" id="5512-195e-e400-39ac" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Piercing x" id="c0ce-08f5-5019-9bda" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Rending" id="7c79-c0c2-7858-9d2b" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Hound" hidden="false" id="369b-21f1-db19-e2f2">
<categoryLinks>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="145c-d6d8-8327-d705" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Operative" hidden="false" id="5fee-e476-022d-b436" targetId="cf83-4496-b58e-ac82" primary="false"/>
<categoryLink name="T'au Empire" hidden="false" id="ae85-ca2d-9ca6-ea2f" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="bf92-84a6-86ac-2ddc" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Hound" hidden="false" id="8821-ee84-6a21-ce43" targetId="9c58-1366-2998-c06e" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Hound" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="099a-8736-7194-e9a6">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">8"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Beast" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="26bb-de2e-a81d-0a52">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative cannot perform any actions other than **Charge**, **Dash**, **Fall Back**, **Fight**, **Gather**, **Guard**, **Reposition**, **Pick Up Marker** and **Place Marker**. It cannot use any weapons that aren’t on its datacard.</characteristic>
</characteristics>
</profile>
<profile name="Bad-tempered" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="adca-607e-af49-a43a">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an enemy operative performs the **Fight** action, if this operative is a valid operative to fight against, you can force them to select this operative to fight against instead. Whenever an enemy operative ends the **Charge** action within control range of another friendly **FARSTALKER KINBAND** operative within 3" of this operative, if this operative isn’t within control range of enemy operatives, this operative can immediately perform a free **Charge** action, but must end that move within control range of that enemy operative.</characteristic>
</characteristics>
</profile>
<profile name="Gather (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="e4c1-da1b-43cf-0c06">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Perform a free **Dash** or **Reposition** action with this operative. During that move, you can perform a free **Pick Up Marker** or **Place Marker** action with this operative (you can determine control during that action to do so), and any remaining move distance it had from the **Dash** or **Reposition** action can be used after it does so.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ripping fangs" hidden="false" id="7281-9954-7fe4-1bf5">
<profiles>
<profile name="⚔ Ripping fangs" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="14d1-bb37-23c1-5310">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rending" id="e48e-9196-7fa4-257c" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="eacb-75b2-191e-7cb4" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="2" field="eacb-75b2-191e-7cb4">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Long-Sight" hidden="false" id="4612-943d-ba79-3595">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="28c8-a55e-73e1-7ffa" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="c0e6-f13f-d456-114c" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="8417-0fcc-2f39-ede9" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="T'au Empire" hidden="false" id="3f17-9980-56e6-7a27" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Long-Sight" hidden="false" id="2df6-f816-7910-ca1e" targetId="dabb-dbd6-da6d-1077" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Long-Sight" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="5b9a-c27f-9b59-3777">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="1" field="17e0-355c-9aae-3d00">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="17e0-355c-9aae-3d00" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Blade" hidden="false" id="7853-c6fc-bf25-1a60" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cfcc-b7c8-68a2-f7ff-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cfcc-b7c8-68a2-f7ff-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Kroot hunting rifle" hidden="false" id="569b-ad33-7bc8-fd0d">
<profiles>
<profile name="⌖ Kroot hunting rifle (concealed)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="dc5a-14f7-1b7e-fd8a">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Heavy, Devastating 3, Silent, Concealed Position*</characteristic>
</characteristics>
</profile>
<profile name="⌖ Kroot hunting rifle (mobile)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="d881-d849-d6f7-4ea6">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
<profile name="⌖ Kroot hunting rifle (stationary)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="0254-c5d6-4c4d-9433">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Heavy, Devastating 3</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="902e-4d6c-4b93-00d3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="902e-4d6c-4b93-00d3-max"/>
</constraints>
<infoLinks>
<infoLink name="Heavy" id="24eb-fc1d-e516-5b3d" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Devastating x" id="6099-1b50-b8d2-f16d" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
<infoLink name="Silent" id="4db2-ac28-9a75-9bca" hidden="false" type="rule" targetId="1e3c-23c9-c6e2-9f62"/>
</infoLinks>
<rules>
<rule name="*Concealed Position" id="9090-b071-fd8c-8376" hidden="false">
<description>This operative can only use this weapon the first time it’s performing the **Shoot** action during the battle.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Long-Sight" hidden="false" id="0c84-7508-dcab-9825">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9b1c-6108-2413-dba2-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9b1c-6108-2413-dba2-max"/>
</constraints>
<profiles>
<profile name="Long-Sight (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="2b8f-25ee-4e98-625e">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Until the start of this operative’s next activation:
- The concealed and stationary profiles of its Kroot hunting rifle have the Lethal 5+ weapon rule.
- Whenever it’s shooting with its Kroot hunting rifle, enemy operatives cannot be obscured.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="6505-78d1-d323-5a68" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Pistolier" hidden="false" id="ddd7-ee44-409f-2788">
<categoryLinks>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="9920-9e81-e9a2-49b5" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Operative" hidden="false" id="3ac2-940e-94ce-6b9e" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="T'au Empire" hidden="false" id="4c81-9a0f-c6c9-1492" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="d52f-23c2-9390-b33d" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Pistolier" hidden="false" id="756d-7751-af97-aaf5" targetId="b42e-594c-ccdf-cbfe" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Pistolier" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="23bd-d611-05cc-9c11">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Quick Draw" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="47ac-4a08-08ae-090b">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once per turning point, when an enemy operative is performing the **Shoot** action and this operative is selected as the valid target (or if it will be a secondary target from the Blast weapon rule), if this operative is ready, you can interrupt that action to use this rule. If you do, this operative can immediately perform a free **Shoot** action with its dual Kroot pistols (focused) against that enemy operative (you can change its order to Engage to do so), but that enemy operative must be a valid target.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="1" field="ca54-e1ee-2f83-d0ee">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="ca54-e1ee-2f83-d0ee" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Blade" hidden="false" id="91ff-d079-b48b-a911" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5672-8f84-bab9-3a05-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5672-8f84-bab9-3a05-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Dual Kroot pistols" hidden="false" id="022c-8985-966f-eb8a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4cf4-2532-db56-ca02-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4cf4-2532-db56-ca02-max"/>
</constraints>
<profiles>
<profile name="⌖ Dual Kroot pistols (focused)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="6f69-d8e4-aa5f-123f">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 8", Ceaseless, Lethal 5+</characteristic>
</characteristics>
</profile>
<profile name="⌖ Dual Kroot pistols (salvo)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="fd8f-4fe3-f3a9-96b6">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 8", Salvo*</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="2867-d02e-c226-2b45" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Ceaseless" id="d799-504c-ce32-5a8c" hidden="false" type="rule" targetId="752d-ce38-c325-4b8a"/>
<infoLink name="Lethal x+" id="0d38-b46d-27b7-3d69" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
<rules>
<rule name="*Salvo" id="35a3-de4c-1746-65c9" hidden="false">
<description>Select up to two valid targets. Shoot with this weapon against both of them in an order of your choice (roll each sequence separately).</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Stalker" hidden="false" id="6933-c66d-b238-261c">
<categoryLinks>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="2c4b-c1de-4d7c-a458" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="Operative" hidden="false" id="52c5-a653-61ba-502b" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="T'au Empire" hidden="false" id="907a-076f-f042-07ca" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="efb9-47db-d6c9-b976" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Stalker" hidden="false" id="3a52-19aa-c82a-f57a" targetId="cf47-8e72-c37b-02d3" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Kroot Stalker" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="0d34-b60f-c13e-1276">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Stalker" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="a223-2dfc-452a-4e40">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative can perform the **Charge** action while it has a Conceal order.</characteristic>
</characteristics>
</profile>
<profile name="Kroot Stalker" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="f324-ee10-7c5d-056b">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Perform a free **Charge** action with this operative, but don’t exceed its Move stat (i.e. don’t add 2"). Then immediately perform a free Fight action with this operative. The first time you strike during that action, you can immediately resolve another of your successes as a strike (before your opponent).
◆ This operative cannot perform this action while it has an Engage order, while within control range of an enemy operative, or if it isn’t within 1" of Light or Heavy terrain.</characteristic>
</characteristics>
<alias>Steath Attack (1AP)</alias>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Kroot scattergun" hidden="false" id="63f3-b642-2cf9-01b6">
<profiles>
<profile name="⌖ Kroot scattergun" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="4c0d-5664-80de-01ed">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 6"</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9899-0acd-642a-fae3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9899-0acd-642a-fae3-max"/>
</constraints>
<infoLinks>
<infoLink name="Range x" id="1b37-4ec5-589f-e892" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Stalker's blade" hidden="false" id="f56e-61a4-9cfc-a795">
<profiles>
<profile name="⚔ Stalker's blade" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c6da-25b1-f692-3500">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Balanced, Rending</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bba4-6ae5-a4a1-30ae-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bba4-6ae5-a4a1-30ae-max"/>
</constraints>
<infoLinks>
<infoLink name="Balanced" id="b2cd-0bc5-1af2-5ce3" hidden="false" type="rule" targetId="28f7-0d96-d1fc-f75b"/>
<infoLink name="Rending" id="b632-f084-fbff-e776" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="1" field="937a-f343-af99-5676">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="937a-f343-af99-5676" includeChildSelections="false"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Tracker" hidden="false" id="61a9-b22b-7f5a-59f6">
<profiles>
<profile name="Kroot Tracker" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="6467-8a9a-7bca-737d">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="From the Eye Above (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="5636-0788-ab9f-ccb8">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ **SUPPORT**. Select one other friendly **FARSTALKER KINBAND** operative visible to and within 6" of this operative. Until the end of that operative’s next activation, add 1 to its APL stat.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="da37-7380-595d-58b5" includeChildSelections="false"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="da37-7380-595d-58b5">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="force" childId="b7d5-def4-9f07-444f" shared="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Kroot Rifle" hidden="false" id="26e8-c109-5322-9137" type="selectionEntry" targetId="f58d-96f9-0a12-8d00">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fb2e-1f74-64bb-0374-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fb2e-1f74-64bb-0374-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Blade" hidden="false" id="0374-133d-ba35-21b2" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ee74-e8d3-6bf3-59ea-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ee74-e8d3-6bf3-59ea-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Marked for the Hunt" hidden="false" id="4c0f-5838-f3cf-6822">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7097-df5c-d16e-e46c-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7097-df5c-d16e-e46c-max"/>
</constraints>
<profiles>
<profile name="Marked for the Hunt (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="4bb1-7518-8f7e-75e9">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Remove your Pech’ra marker from the killzone (if any). Then place your Pech’ra marker visible to this operative, or on Vantage terrain of a terrain feature that’s visible to this operative. Whenever a friendly **FARSTALKER KINBAND** operative is shooting an enemy operative that has that marker within its control range, that friendly operative’s ranged weapons have the Seek Light weapon rule.
▶ At the start of this operative’s next activation or if it’s removed from the killzone (whichever comes first), remove your Pech’ra marker from the killzone.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Seek" id="0933-08cf-24c8-2f76" hidden="false" type="rule" targetId="a33d-4e90-5794-6e20"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="daa7-2b81-fc69-9ed7" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="3dfc-62bc-92c3-2ded" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="T'au Empire" hidden="false" id="b7f7-ab6c-95a4-2332" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="066c-67df-f761-deac" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Tracker" hidden="false" id="4b6f-3a42-4ad8-f295" targetId="4ed3-87e9-897a-a9d0" primary="false"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Kroot Warrior" hidden="false" id="032a-c865-9473-f59f">
<entryLinks>
<entryLink import="true" name="Blade" hidden="false" id="2487-0ac5-2fa5-b335" type="selectionEntry" targetId="9c42-815e-d021-0c45">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="845d-15ac-c555-995d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="845d-15ac-c555-995d-max"/>
</constraints>
</entryLink>
</entryLinks>
<profiles>
<profile name="Kroot Warrior" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="ef2b-8dd6-1250-275d">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">8</characteristic>
</characteristics>
</profile>
<profile name="Ready for Anything" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="d107-58c0-8b12-5a6d">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once per turning point, during a friendly **WARRIOR** operative’s activation, you can use the Meat, Piercing Shot or Toxin Shot rule (see faction equipment) for that operative. Doing so doesn’t count for its once per turning point limit.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Ranged Weapon" id="93be-979b-7a52-886a" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ee8a-f3f5-f18f-9009-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ee8a-f3f5-f18f-9009-max"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Kroot Scattergun" hidden="false" id="24a4-40fa-c284-e960" type="selectionEntry" targetId="57b1-b252-1ed4-e007"/>
<entryLink import="true" name="Kroot Rifle" hidden="false" id="80ee-bf07-a3b1-055c" type="selectionEntry" targetId="f58d-96f9-0a12-8d00"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="3d51-3461-c851-6f32" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="FARSTALKER KINBAND" hidden="false" id="f478-0b7e-0e7e-77bb" targetId="bb27-50ee-1ccc-1d80" primary="false"/>
<categoryLink name="T'au Empire" hidden="false" id="d63b-78b7-f2eb-c9df" targetId="20d3-6a95-40e4-de61" primary="false"/>
<categoryLink name="Kroot" hidden="false" id="5dd0-ccd0-a430-f01f" targetId="2370-e24e-8acd-2701" primary="false"/>
<categoryLink name="Warrior" hidden="false" id="ea30-80a7-0ea2-b479" targetId="2b69-f2aa-bd5c-70b2" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Equipment Reference" hidden="false" id="c024-607c-c6fa-a96b" type="selectionEntry" targetId="e004-a0c4-8a03-0b8b">
<entryLinks>
<entryLink import="true" name="Faction Equipment" hidden="false" id="7bc7-28ba-307a-1436" type="selectionEntryGroup" targetId="a7ea-69e1-e32e-d753"/>
</entryLinks>
</entryLink>
</entryLinks>
<rules>
<rule name="Farstalker" id="b566-44ae-7465-7f3c" hidden="false">
<description>In the Ready step of each Strategy phase, you can change the order of up to three friendly **FARSTALKER KINBAND** operatives that are not within control range of enemy operatives.
Whenever it’s your turn to counteract, you can change the order of one friendly **FARSTALKER KINBAND** operative that’s not within control range of enemy operatives instead. This still counts as you counteracting (so activation alternates back to your opponent afterwards), but doesn’t count as that friendly operative’s counteraction for this turning point.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Blade" hidden="false" id="9c42-815e-d021-0c45">
<profiles>
<profile name="⚔ Blade" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="5f15-04f3-3d91-495d">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">3</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Kroot Rifle" hidden="false" id="f58d-96f9-0a12-8d00">
<profiles>
<profile name="⌖ Kroot Rifle" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="3674-fac8-61b8-5305">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="8044-2517-4ef7-33de">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="3513-58e1-128a-94f9" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="30ae-6496-04cf-f2a5" childId="any" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Kroot Scattergun" hidden="false" id="57b1-b252-1ed4-e007">
<profiles>
<profile name="⌖ Kroot Scattergun" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="b335-92a9-fabe-0361">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 6"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="d08c-4262-0bfc-a8df" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
</infoLinks>
</selectionEntry>
</sharedSelectionEntries>
<categoryEntries>
<categoryEntry name="Kill-Broker" id="3513-58e1-128a-94f9" hidden="false"/>
<categoryEntry name="Cold-Blood" id="30ae-6496-04cf-f2a5" hidden="false"/>
<categoryEntry name="FARSTALKER KINBAND" id="bb27-50ee-1ccc-1d80" hidden="false"/>
<categoryEntry name="Kroot" id="2370-e24e-8acd-2701" hidden="false"/>
<categoryEntry name="Bow-Hunter" id="1b40-d08b-b9c6-03e8" hidden="false"/>
<categoryEntry name="Cut-Skin" id="f90f-8381-0522-fbba" hidden="false"/>
<categoryEntry name="Hound" id="9c58-1366-2998-c06e" hidden="false"/>
<categoryEntry name="Long-Sight" id="dabb-dbd6-da6d-1077" hidden="false"/>
<categoryEntry name="Pistolier" id="b42e-594c-ccdf-cbfe" hidden="false"/>
<categoryEntry name="Stalker" id="cf47-8e72-c37b-02d3" hidden="false"/>
<categoryEntry name="Tracker" id="4ed3-87e9-897a-a9d0" hidden="false"/>
</categoryEntries>