-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Pathfinder.cat
2298 lines (2291 loc) · 190 KB
/
2021 - Pathfinder.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="50fd-3b1c-0a95-233b" name="Pathfinder" revision="12" battleScribeVersion="2.03" authorName="Mad-Spy" authorUrl="https://bsdata.net" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="5" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<profileTypes>
<profileType id="3394-cf2d-5727-164a" name="Markerlight Tokens">
<characteristicTypes>
<characteristicType id="2847-4422-7864-de3a" name="Benefit"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="2264-7983-2036-f5aa" name="PATHFINDER" hidden="false"/>
<categoryEntry id="3eee-9410-8e65-0c32" name="T'au" hidden="false"/>
<categoryEntry id="8bd2-268c-8eec-fdf6" name="Shas'ui Pathfinder" hidden="false"/>
<categoryEntry id="0018-186d-a0f2-cd57" name="Shas'la Pathfinder" hidden="false"/>
<categoryEntry id="397e-ce2d-6add-9e7a" name="Blooded Pathfinder" hidden="false"/>
<categoryEntry id="11a4-0e45-640a-6376" name="Drone Controller Pathfinder" hidden="false"/>
<categoryEntry id="6b2a-729a-d0c7-6e07" name="Assault Grenadier Pathfinder" hidden="false"/>
<categoryEntry id="fdfa-b47d-d74e-e874" name="Medical Technician Pathfinder" hidden="false"/>
<categoryEntry id="6723-e2e2-45c5-22d8" name="Transpectral Interference Pathfinder" hidden="false"/>
<categoryEntry id="746d-205b-b5e2-b09b" name="Communications Specialist Pathfinder" hidden="false"/>
<categoryEntry id="3c95-fe6f-7405-6b46" name="Weapons Expert Pathfinder" hidden="false"/>
<categoryEntry id="7707-b0da-22a2-c0aa" name="Marksman Pathfinder" hidden="false"/>
<categoryEntry id="b44f-3991-99c6-f72b" name="MB3 Recon Drone" hidden="false"/>
<categoryEntry id="009b-539b-3f18-bdcb" name="MV33 Grav-inhibitor Drone" hidden="false"/>
<categoryEntry id="ea6f-c852-b66f-a45a" name="MV31 Pulse Accelerator Drone" hidden="false"/>
<categoryEntry id="2be6-45e6-393e-3756" name="MV1 Gun Drone" hidden="false"/>
<categoryEntry id="40f4-3de2-0602-62d7" name="MV4 Shield Drone" hidden="false"/>
<categoryEntry id="e9c1-e605-4ab9-2205" name="MV7 Marker Drone" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="43e5-75bb-298d-bec2" name="Pathfinder Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="49cd-39b0-ac5d-1eef" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="584f-0735-d32a-76b5" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="5e46-cdeb-71db-41c1" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="274e-b035-e9d9-47ed" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea71-bdb2-c82d-f0a6" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="72ed-819f-85af-f8c9" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="11" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c28e-24b4-4f70-bff7" type="max"/>
<constraint field="selections" scope="parent" value="11" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b15-3108-8578-8ac4" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="f962-934b-dfb9-0b47" name="Shas'la Pathfinder" hidden="false" targetId="0018-186d-a0f2-cd57" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="12" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7cf4-91c4-95d7-ed59" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cd32-ef0b-9f87-e7dd" name="Communications Specialist Pathfinder" hidden="false" targetId="746d-205b-b5e2-b09b" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81d8-3f4b-3ce4-924a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="16af-4e52-2310-fcdd" name="Drone Controller Pathfinder" hidden="false" targetId="11a4-0e45-640a-6376" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dff1-a2e3-a1e2-0105" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="37d2-4856-e333-03a1" name="Marksman Pathfinder" hidden="false" targetId="7707-b0da-22a2-c0aa" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bcc3-85b3-f70f-6391" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c8c9-2b8a-73d9-0ba4" name="Medical Technician Pathfinder" hidden="false" targetId="fdfa-b47d-d74e-e874" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1494-123d-ddea-8ad2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9354-019b-12aa-1d35" name="Transpectral Interference Pathfinder" hidden="false" targetId="6723-e2e2-45c5-22d8" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb6c-78be-da8f-3a4c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="91e6-cdf1-4875-f58e" name="Weapons Expert Pathfinder" hidden="false" targetId="3c95-fe6f-7405-6b46" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="98ca-8ace-c66a-d413" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6aa4-061a-ef32-42f8" name="Blooded Pathfinder" hidden="false" targetId="397e-ce2d-6add-9e7a" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c4d-7df0-7cea-2839" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0b3c-c9f5-6eb6-9414" name="Assault Grenadier Pathfinder" hidden="false" targetId="6b2a-729a-d0c7-6e07" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ae3-d341-0648-fe69" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="dedd-42f0-f848-bddd" name="MV33 Grav-inhibitor Drone" hidden="false" targetId="009b-539b-3f18-bdcb" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b271-277d-6bd2-35ac" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7418-2a69-ff14-dd9d" name="MV1 Gun Drone" hidden="false" targetId="2be6-45e6-393e-3756" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7aa5-542f-fe90-3574" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="df02-35dd-b9dc-a3da" name="MV31 Pulse Accelerator Drone" hidden="false" targetId="ea6f-c852-b66f-a45a" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0055-1308-b525-f4e0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a793-c943-dd4b-0358" name="MV4 Shield Drone" hidden="false" targetId="40f4-3de2-0602-62d7" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9332-672b-f2fb-fc31" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b64d-e2f7-d9cc-4d0c" name="MV7 Marker Drone" hidden="false" targetId="e9c1-e605-4ab9-2205" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="435f-2e9c-6828-37de" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ef22-6a09-5d29-d37f" name="MB3 Recon Drone" hidden="false" targetId="b44f-3991-99c6-f72b" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d052-253c-862d-6a0f" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="d83e-1c68-3861-b6cd" name="Shas'ui Pathfinder" hidden="false" collective="false" import="true" targetId="f810-2a42-1eb3-67fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="3615-b419-9082-b3bb" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2fe8-3492-40f7-22b2" name="Reference - Art of War" hidden="false" collective="false" import="true" targetId="d690-33e9-ec16-933b" type="selectionEntry">
<categoryLinks>
<categoryLink id="aa36-4d77-3077-90bc" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a12f-0ed9-b3db-78b9" name="Reference - Markerlights" hidden="false" collective="false" import="true" targetId="c72a-32d9-fe32-24c4" type="selectionEntry">
<categoryLinks>
<categoryLink id="162a-1cc4-9f30-666f" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c044-ec61-f19b-f146" name="Shas'la Pathfinder" hidden="false" collective="false" import="true" targetId="be32-7240-8245-a05f" type="selectionEntry">
<categoryLinks>
<categoryLink id="e093-d701-e8cc-638d" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3125-3229-e013-b197" name="Transpectral Interference Pathfinder" hidden="false" collective="false" import="true" targetId="2b20-a1a7-f9b4-fe8b" type="selectionEntry">
<categoryLinks>
<categoryLink id="f119-1e37-bb27-83bd" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c108-3292-bca9-37c1" name="Drone Controller Pathfinder" hidden="false" collective="false" import="true" targetId="99ec-8071-9b47-3c2d" type="selectionEntry">
<categoryLinks>
<categoryLink id="9fe4-7e1c-8395-badd" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Focused EMP Override" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="61cd-1a8c-ae32-33ea">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">If this operative is in the killzone, friendly DRONE operatives can perform the Operate Hatch action (ignore the first bullet point of Artificial Intelligence to do so).</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="1d79-ee72-b5f8-c945" name="Weapons Expert Pathfinder" hidden="false" collective="false" import="true" targetId="ed2e-621f-02a0-9659" type="selectionEntry">
<categoryLinks>
<categoryLink id="d1eb-d4ce-5c89-7ab4" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fc32-6684-3438-9ee1" name="Blooded Pathfinder" hidden="false" collective="false" import="true" targetId="d53b-769d-268b-cf25" type="selectionEntry">
<categoryLinks>
<categoryLink id="fece-c3bd-cd1c-1161" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6520-5418-934c-db6b" name="Communications Specialist Pathfinder" hidden="false" collective="false" import="true" targetId="dd21-a771-1f5a-e066" type="selectionEntry">
<categoryLinks>
<categoryLink id="28d3-9ac3-7894-8f5a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3a85-9132-633e-9cfe" name="Medical Technician Pathfinder" hidden="false" collective="false" import="true" targetId="8c4e-c7ab-558a-1eff" type="selectionEntry">
<categoryLinks>
<categoryLink id="2731-db7d-02f6-e3fc" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2d6f-0389-069c-fe6c" name="Marksman Pathfinder" hidden="false" collective="false" import="true" targetId="e7b4-da2d-bab3-5ba6" type="selectionEntry">
<categoryLinks>
<categoryLink id="61c1-6e02-b998-05e3" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5d62-545e-f497-4a6e" name="Assault Grenadier Pathfinder" hidden="false" collective="false" import="true" targetId="97a4-eba8-936b-a6b2" type="selectionEntry">
<categoryLinks>
<categoryLink id="7859-3a57-db5b-46b2" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="272e-54f3-e5d2-e02d" name="MV1 Gun Drone" hidden="false" collective="false" import="true" targetId="2472-ac00-0203-3720" type="selectionEntry">
<categoryLinks>
<categoryLink id="8367-4cab-07c7-c52c" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cd95-b261-5097-266b" name="MB3 Recon Drone" hidden="false" collective="false" import="true" targetId="3d0f-31ba-0ed9-e72a" type="selectionEntry">
<categoryLinks>
<categoryLink id="5b9f-db8c-6fe6-051e" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1d61-3d93-cdcb-e23e" name="MV4 Shield Drone" hidden="false" collective="false" import="true" targetId="75a5-d8a6-64ee-d989" type="selectionEntry">
<categoryLinks>
<categoryLink id="c1bb-7040-1c84-b671" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="da90-7a1d-67a6-6367" name="MV7 Marker Drone" hidden="false" collective="false" import="true" targetId="a8b5-a818-362b-8c75" type="selectionEntry">
<categoryLinks>
<categoryLink id="f5d2-24eb-6ba8-6164" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0ee8-eacd-79d0-a4c0" name="MV31 Pulse Accelerator Drone" hidden="false" collective="false" import="true" targetId="c215-e7f9-986f-273d" type="selectionEntry">
<categoryLinks>
<categoryLink id="ae93-0376-4390-3b04" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="aa7e-7592-e4f3-e325" name="MV33 Grav-inhibitor Drone" hidden="false" collective="false" import="true" targetId="9d70-5307-4f09-4053" type="selectionEntry">
<categoryLinks>
<categoryLink id="b914-5829-28fb-938b" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="f810-2a42-1eb3-67fc" name="Shas'ui Pathfinder" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="88cb-deb3-dd61-4dd1" name="Shas'ui Pathfinder" 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="bd7d-e7b4-e8f3-6fff" name="Art of War" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per battle, when it is your turn to use a Strategic Ploy, if this operative is in the killzone, it can use this ability. If it does, select one Art of War to be in effect until the end of the Turning Point.</characteristic>
</characteristics>
</profile>
<profile id="4c82-30cf-75e2-2478" name="Holographic Readout" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per battle, when a friendly PATHFINDER operative (excluding a DRONE operative) is activated within ⬛ of and is Visible to this operative, this operative can use this ability. If it does, until the end of the friendly PATHFINDER operative's activation, it can perform one mission action for one less AP (to a minimum of 0AP).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b147-56e6-7634-f6af" name="Markerlight (1AP)" hidden="false" targetId="64b9-e7f5-ffaa-c596" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bd1b-dd52-70d5-bf57" name="PATHFINDER" hidden="false" targetId="2264-7983-2036-f5aa" primary="false"/>
<categoryLink id="5243-b9cd-28ef-dc45" name="T'au" hidden="false" targetId="3eee-9410-8e65-0c32" primary="false"/>
<categoryLink id="c646-192e-2300-fcaf" name="Shas'ui Pathfinder" hidden="false" targetId="8bd2-268c-8eec-fdf6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e580-8c09-4000-ee4b" name="Bonding knife" 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="f0f1-1bae-fcdd-df4d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="44c1-5bc6-eda0-3b70" type="max"/>
</constraints>
<profiles>
<profile id="597c-b0c8-6001-0c06" name="⚔ Bonding knife" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Balanced</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1b0b-552f-ab0d-2977" name="Balanced" hidden="false" targetId="547c-e6e5-64d4-a519" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="ab24-baea-35f6-4165" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="f810-2a42-1eb3-67fc" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f9f5-a502-b352-1576" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8983-84e9-b46a-2b56" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="f238-9dae-2b56-d567" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="3001-16fc-61dd-4fce" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="421f-f3af-2c42-34fc" type="selectionEntry"/>
<entryLink id="78f2-18c5-b4b8-4323" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="638b-8ec3-4a4d-a550" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="5288-dfda-ea6f-1df9" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="01eb-4296-6895-e051" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="9dc0-38ed-0647-7639" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="6fd4-13ed-b9ac-b724" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="b58e-8c1e-4e39-2cb5" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="a653-faea-7807-616c" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="f237-d806-bd17-9ad8" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="3a42-c311-14c5-d76e" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="4bb0-a813-e61a-4907" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="d164-5a37-3535-a1fc" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="4ac8-38af-e313-d95a" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="0bac-756d-4bb3-e96f" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="1625-b8ab-e91e-e2d6" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
<entryLink id="31d0-c753-0761-ce59" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="d1bb-3893-07b3-9f56" name="Equipment" hidden="false" collective="false" import="true" targetId="7784-0737-ca59-f234" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="421f-f3af-2c42-34fc" name="Pulse carbine" 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="6ca4-86fd-6a57-2c36" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="598d-8e07-3c2d-9224" type="max"/>
</constraints>
<profiles>
<profile id="b3eb-9ac5-cc2a-7cf6" name="⌖ Pulse carbine" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="3+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8bd2-268c-8eec-fdf6" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">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="c72a-32d9-fe32-24c4" name="Reference - Markerlights" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c692-ef92-76a7-7f75" name="1+" hidden="false" typeId="3394-cf2d-5727-164a" typeName="Markerlight Tokens">
<characteristics>
<characteristic name="Benefit" typeId="2847-4422-7864-de3a">In the Roll Attack Dice step of that shooting attack, you can re-roll one of your attack dice.</characteristic>
</characteristics>
</profile>
<profile id="e460-1bba-7f22-2b3c" name="2+" hidden="false" typeId="3394-cf2d-5727-164a" typeName="Markerlight Tokens">
<characteristics>
<characteristic name="Benefit" typeId="2847-4422-7864-de3a">For that shooting attack, the active operative's ranged weapons gain the No Cover special rule.</characteristic>
</characteristics>
</profile>
<profile id="2f81-24eb-2636-b3e4" name="Markerlights" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Operatives gain Markerlight tokens as specifed by the Markerlight action. In the Ready Operatives step of each Initiative phase, remove one Markerlight token that each operative has.
Each time a friendly PATHFINDER operative makes a shooting attack, it gains a number of cumulative benefits for that shooting attack depending on how many Markerlight tokens the target operative has. Operatives gain no Markerlight benefits for shooting attacks made with EMP and fusion grenades.</characteristic>
</characteristics>
</profile>
<profile id="7d52-68ec-30d1-67f8" name="3+" hidden="false" typeId="3394-cf2d-5727-164a" typeName="Markerlight Tokens">
<characteristics>
<characteristic name="Benefit" typeId="2847-4422-7864-de3a">For that shooting attack, improve the Ballistic Skill characteristic of ranged weapons the active operative is equipped with by 1.</characteristic>
</characteristics>
</profile>
<profile id="b227-bfac-bc73-e877" name="4+" hidden="false" typeId="3394-cf2d-5727-164a" typeName="Markerlight Tokens">
<characteristics>
<characteristic name="Benefit" typeId="2847-4422-7864-de3a">In the Select Valid Target step of that shooting attack, the enemy operative is not Obscured.</characteristic>
</characteristics>
</profile>
<profile id="c500-8a30-2f4b-48bc" name="5+" hidden="false" typeId="3394-cf2d-5727-164a" typeName="Markerlight Tokens">
<characteristics>
<characteristic name="Benefit" typeId="2847-4422-7864-de3a">In the Select Valid Target step of that shooting attack, the enemy operative is treated as if it has an Engage order unless it's in Cover provided by Heavy terrain.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d690-33e9-ec16-933b" name="Reference - Art of War" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9300-d5c0-6966-adc7" name="Mont'ka" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time a friendly PATHFINDER operative is activated, if it has an Engage order for that activation, it can perform a free Dash action during that activation.</characteristic>
</characteristics>
</profile>
<profile id="3ab9-87b2-81b4-db62" name="Kauyon" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time a shooting attack is made against a friendly PATHFINDER operative, before rolling your defence dice, if it is in Cover, one additional dice can be retained as a successful normal save as a result of Cover.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3f4a-4246-779e-51c8" name="Pathfinder 1 - For the Greater Good" 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="a7b0-00ac-a763-fe90" type="max"/>
</constraints>
<profiles>
<profile id="b8f8-cfa3-236f-a104" name="For the Greater Good" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">This operative can perform the Markerlight action twice during its activation. In addition, when this operative is incapacitated, it can perform a free Markerlight action, even if it is within Engagement Range of an enemy operative. If this operative cannot perform the Markerlight action, determine a different Battle Honour for it.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5bf-1300-bb1f-b3a6" name="Pathfinder 2 - Reliant Support" 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="4e95-cebc-7578-ef5f" type="max"/>
</constraints>
<profiles>
<profile id="3cca-c5bf-d1ea-013a" name="Reliant Support" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time you would use the Suppressing Fire Tactical Ploy and select this operative, that Tactical Ploy costs 0CP for that use.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bad2-07c1-af8d-5fce" name="Pathfinder 3 - Cunning Hunter" 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="2fe9-a129-0e83-8a4e" type="max"/>
</constraints>
<profiles>
<profile id="084e-e8ce-ecc2-f1b9" name="Cunning Hunter" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative makes a shooting attack, before rolling your attack dice, if it has not performed a Normal Move, Fall Back, Dash or Charge action during that activation, you can retain one as a successful normal hit without rolling it. You cannot use this ability and the Merciless Hunter ability during the same shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7d92-cd69-4f1a-50a5" name="Pathfinder 4 - Merciless Hunter" 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="4943-5234-794f-388a" type="max"/>
</constraints>
<profiles>
<profile id="c56a-b430-2e26-117f" name="Merciless Hunter" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative makes a shooting attack, before rolling your attack dice, if the target is within ⬟ of it, you can retain on as a successful normal hit without rolling it. You cannot use this ability and the Cunning Hunter ability during the same shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e35a-54fb-ae16-ac1e" name="Pathfinder 5 - Martial Philosopher" 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="1b43-9fbf-da25-8252" type="max"/>
</constraints>
<profiles>
<profile id="ead0-55fc-2a3d-533e" name="Martial Philosopher" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">When a friendly SHAS'UI operative uses its Art of War ability, you can select which Art of War this operative benefits from (it can be a different Art of War to what other friendly operatives benefit from).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d920-19e2-bc81-cb3d" name="Pathfinder 6 - Capable Under Fire" 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="b284-d917-50dc-10d1" type="max"/>
</constraints>
<profiles>
<profile id="4428-67ef-c893-3690" name="Capable Under Fire" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">If this operative has a Conceal order and is in Cover provided by Light terrain, enemy operatives cannot treat it as being on an Engage order as a result of a Vantage Point.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="be32-7240-8245-a05f" name="Shas'la Pathfinder" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="f951-36ee-7dd6-88f3" name="Markerlight (1AP)" hidden="false" targetId="64b9-e7f5-ffaa-c596" type="profile"/>
<infoLink id="ad5f-2a8e-ca37-2d99" name="Shas'la Pathfinder" hidden="false" targetId="ad78-424e-0d47-4aac" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="592c-d990-1517-daff" name="PATHFINDER" hidden="false" targetId="2264-7983-2036-f5aa" primary="false"/>
<categoryLink id="36f5-d26f-c03d-d7f3" name="T'au" hidden="false" targetId="3eee-9410-8e65-0c32" primary="false"/>
<categoryLink id="8afd-a260-4601-4b89" name="Shas'la Pathfinder" hidden="false" targetId="0018-186d-a0f2-cd57" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5620-2f89-7e36-403b" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5768-3685-e715-3dcf" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5d8f-479b-f540-df7f" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="65f0-12d0-afea-ceb5" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e732-5038-1606-d9fc" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="421f-f3af-2c42-34fc" type="selectionEntry"/>
<entryLink id="cb5c-12a9-830f-a4ed" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="b865-d2e6-1c89-5c42" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="a249-4ab3-b2f2-503a" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f5e1-e990-8742-d554" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="bca8-7013-da6e-844a" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="7e8f-f8a1-97ab-d6d5" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="2b11-6f88-a9e0-e2d4" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="3546-a6e4-1209-51f1" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="4306-dee5-e43c-a44a" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="3c49-bf0b-4555-d1b5" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="4986-731e-08ab-bb14" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="f47d-6536-e555-dc0d" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="6a9f-074a-7a5c-d976" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="09ac-50f6-aa45-f298" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="51e5-2b33-b58d-d69c" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
<entryLink id="f462-8a89-fab1-c4fe" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="36f6-43ee-3988-6faa" name="Fists" hidden="false" collective="false" import="true" targetId="211e-8056-1d46-0686" type="selectionEntry"/>
<entryLink id="fa9e-246a-72ce-c260" name="Equipment" hidden="false" collective="false" import="true" targetId="7784-0737-ca59-f234" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="211e-8056-1d46-0686" name="Fists" 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="5bf9-27e8-91ca-010e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73e8-c409-f53a-d200" type="max"/>
</constraints>
<profiles>
<profile id="cca8-b6b5-c061-e4c3" name="⚔ Fists" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">5+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d53b-769d-268b-cf25" name="Blooded Pathfinder" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="475f-4128-d44d-f5f1" name="Blooded Pathfinder" 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">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="205d-f3cc-3dca-5a02" name="Markerlight (1AP)" hidden="false" targetId="64b9-e7f5-ffaa-c596" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="76a0-8470-0e9a-5234" name="PATHFINDER" hidden="false" targetId="2264-7983-2036-f5aa" primary="false"/>
<categoryLink id="86b3-e980-b7a3-32ab" name="T'au" hidden="false" targetId="3eee-9410-8e65-0c32" primary="false"/>
<categoryLink id="1f22-c7f5-cb89-6871" name="Blooded Pathfinder" hidden="false" targetId="397e-ce2d-6add-9e7a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fb21-bbf4-aa32-3b07" name="Bionic arm" 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="ad94-7128-0372-ea94" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1835-29b4-5b11-a953" type="max"/>
</constraints>
<profiles>
<profile id="e0bd-67d1-f192-2698" name="⚔ Bionic arm" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0360-a69f-ad95-ba22" name="Suppressed pulse carbine" 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="bb4e-d9f8-b137-6e70" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a260-b1db-3517-fd45" type="max"/>
</constraints>
<profiles>
<profile id="34ab-4a71-caf3-738e" name="⌖ Suppressed 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">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Silent</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>
<selectionEntryGroups>
<selectionEntryGroup id="a760-69c5-6aba-d8a1" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="d53b-769d-268b-cf25" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2034-97a6-ebd2-48c4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="94a4-b39f-6422-8cc3" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="a60d-3f49-7e04-154a" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
<entryLink id="e9ba-717a-ae75-9d36" name="Staunch" hidden="false" collective="false" import="true" targetId="eb50-055a-4cd2-e1d5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ae4b-2978-dfb0-c5e6" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="36b3-eace-e16f-5abd" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="eb2e-8aa3-af64-2b1a" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="60ef-5113-75de-17c2" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="89b0-3a52-8dbb-7a5b" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="1573-110b-e4a9-f627" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="bfb7-9d29-76c5-bc16" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="8776-8169-3ddc-fa66" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="d8ab-190b-b949-d363" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8406-18a7-bfa8-cf73" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="bdbb-67d1-5337-dcc2" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="2954-46e2-af74-e6bc" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="9651-6b61-4bdd-396f" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="92a5-004d-8213-dd22" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="6482-fc24-5dc4-fd17" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
<entryLink id="8f6d-bf59-a870-25db" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="edc8-470a-825d-a875" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="36cb-7f92-1f9f-b34e" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="8207-1ab5-84c5-244f" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="4860-bfb6-bbe0-a089" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="4139-5fc1-242c-7063" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="1f70-235f-90fe-cee6" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="3c48-2cf0-51a2-25ea" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="da6c-d043-88b5-bd07" name="Equipment" hidden="false" collective="false" import="true" targetId="7784-0737-ca59-f234" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="99ec-8071-9b47-3c2d" name="Drone Controller Pathfinder" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="aa39-23e9-7c3c-f0be" name="Drone Scout" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">During deployment, if this operative was selected for deployment, you can set up one friendly PATHFINDER DRONE operative with a Conceal order anywhere in the killzone that is wholly within ⬟ of your dropzone, more than ⬟ from enemy operatives and more than ⬛ from the enemy dropzone. In a battle that uses Hazardous Areas rules, the DRONE operative must be set up wholly within 2⬤ of your drop zone. In a battle that uses Close Quarters rules, you cannot set up the DRONE operative as specified. Instead, at the end of the Scouting step, if that DRONE operative is wholly within your drop zone and has a Conceal order, it can perform a free Normal Move and/or operate Hatch action and its order cannot be changed in the first Turning Point.</characteristic>
</characteristics>
</profile>
<profile id="ab12-24bc-74de-9613" name="Control Drone (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly PATHFINDER DRONE operative, then select one of the following:
- If that DRONE operative is Ready, after this activation ends, you can activate that DRONE operative and until the end of the Turning Point, it is not considered to have the first three bullet points of its Artificial Intelligence ability.
- If that DRONE operative has been activated during this Turning Point, perform a free Dash or Shoot action with it. If you perform a Shoot action, for that action's shooting attack, worsen the Ballistic Skill characteristic of its ranged weapons by 1.
This operative cannot perform this action if it is within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="75bd-8287-2270-b881" name="Markerlight (1AP)" hidden="false" targetId="64b9-e7f5-ffaa-c596" type="profile"/>
<infoLink id="e1ea-e85e-ac1a-dffb" name="Shas'la Pathfinder" hidden="false" targetId="ad78-424e-0d47-4aac" type="profile">
<modifiers>
<modifier type="set" field="name" value="Drone Controller Pathfinder"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="3ae7-d630-caa4-8f01" name="PATHFINDER" hidden="false" targetId="2264-7983-2036-f5aa" primary="false"/>
<categoryLink id="a64c-b6f0-14ef-ee25" name="T'au" hidden="false" targetId="3eee-9410-8e65-0c32" primary="false"/>
<categoryLink id="d525-887f-867a-5f84" name="Drone Controller Pathfinder" hidden="false" targetId="11a4-0e45-640a-6376" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c675-56fd-42b4-3335" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5681-1d53-dcc6-5871" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fbfe-2ac7-7601-a80e" name="Staunch" hidden="false" collective="false" import="true" targetId="eb50-055a-4cd2-e1d5" type="selectionEntry"/>
<entryLink id="f653-e0db-0ca0-2421" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9010-2d29-9d4c-8d64" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="421f-f3af-2c42-34fc" type="selectionEntry"/>
<entryLink id="595d-f0ca-b143-e14a" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="c8b5-cc07-1de7-9d21" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="19d9-63fb-6f55-f1f0" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="eb9e-4bc7-cd44-9c46" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="3bba-a42e-cdb3-a2f8" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="1b37-79c9-3568-9822" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="29e1-456e-07d9-9cd6" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="6207-722d-00a2-e1e8" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="83e4-d2b6-f499-7bc5" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f7ad-c361-11e6-6bfd" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f241-c078-421e-d5ec" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="29ff-4842-6059-8488" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="4a3d-67f0-ad60-9235" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="5c21-a7bf-25f5-0924" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="85ca-a858-a89e-56b4" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
<entryLink id="3c83-8757-5260-17b6" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="7725-8d66-197d-01e2" name="Fists" hidden="false" collective="false" import="true" targetId="211e-8056-1d46-0686" type="selectionEntry"/>
<entryLink id="a5f8-a67c-792b-47b0" name="Equipment" hidden="false" collective="false" import="true" targetId="7784-0737-ca59-f234" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b20-a1a7-f9b4-fe8b" name="Transpectral Interference Pathfinder" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="343e-8b3b-e66f-b37c" name="Multi-spectral Sensor" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack, when selecting a valid target for that shooting attack, enemy operatives are not Obscured.</characteristic>
</characteristics>
</profile>
<profile id="d4cf-4d05-f342-5777" name="System Jam (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. Subtract 1 from its APL. This operative cannot perform this action if it has a Conceal order or if it is within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="52b5-ac93-8884-fc5d" name="Markerlight (1AP)" hidden="false" targetId="64b9-e7f5-ffaa-c596" type="profile"/>
<infoLink id="2661-1006-25e4-1064" name="Shas'la Pathfinder" hidden="false" targetId="ad78-424e-0d47-4aac" type="profile">
<modifiers>
<modifier type="set" field="name" value="Transpectral Interference Pathfinder"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="2782-80f6-55c7-3c97" name="PATHFINDER" hidden="false" targetId="2264-7983-2036-f5aa" primary="false"/>
<categoryLink id="a2a2-9743-e435-c293" name="T'au" hidden="false" targetId="3eee-9410-8e65-0c32" primary="false"/>
<categoryLink id="5e90-808e-bb79-b2d6" name="Transpectral Interference Pathfinder" hidden="false" targetId="6723-e2e2-45c5-22d8" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7d56-d36f-d117-27af" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8897-8b09-63fc-1545" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2683-e97c-6a5a-e39d" name="Marksman" hidden="false" collective="false" import="true" targetId="715c-810e-df05-01ad" type="selectionEntry"/>
<entryLink id="2d40-2461-afe6-cf3c" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e9f1-ab8c-310b-0646" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="421f-f3af-2c42-34fc" type="selectionEntry"/>
<entryLink id="ed07-4ac3-b752-4ed3" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="aeff-e091-29b6-4361" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="e40b-1d77-0d8a-fdde" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="407e-2324-508d-95d2" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="78bc-9d06-479c-3253" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="158a-c176-f062-dd84" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="23a4-6ea8-64a2-c8ac" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="233f-86ae-0c82-4ebf" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="ec4d-ad15-4fef-0af0" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="76bb-5c30-36d7-9a57" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c552-db55-d221-aecb" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="35d5-3f95-3cd3-8e40" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="849c-4079-2b4f-d16f" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="2c71-204b-0f25-8e5b" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="f061-2d58-ddd3-3c35" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
<entryLink id="3b5d-d62b-2926-ad90" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="3c67-efbb-e662-e923" name="Fists" hidden="false" collective="false" import="true" targetId="211e-8056-1d46-0686" type="selectionEntry"/>
<entryLink id="683b-8e99-e383-26c4" name="Equipment" hidden="false" collective="false" import="true" targetId="7784-0737-ca59-f234" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="97a4-eba8-936b-a6b2" name="Assault Grenadier Pathfinder" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="08ac-e712-bee2-294c" name="Grenadier" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative is equipped with EMP, fusion and photon grenades and they do not cost any equipment points.</characteristic>
</characteristics>
</profile>
<profile id="5717-7a11-3c9c-a30e" name="Nanocrystalline Headgear" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">You can ignore any or all modifiers to this operative's APL and to the Weapon Skill and Ballistic Skill characteristics of its melee and ranged weapons respectively.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0c31-0b13-5561-d00f" name="Markerlight (1AP)" hidden="false" targetId="64b9-e7f5-ffaa-c596" type="profile"/>
<infoLink id="f642-63bf-7978-5798" name="Shas'la Pathfinder" hidden="false" targetId="ad78-424e-0d47-4aac" type="profile">
<modifiers>
<modifier type="set" field="name" value="Assault Grenadier Pathfinder"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="c0d9-0a33-a76e-a56b" name="PATHFINDER" hidden="false" targetId="2264-7983-2036-f5aa" primary="false"/>
<categoryLink id="6431-c203-b85f-808c" name="T'au" hidden="false" targetId="3eee-9410-8e65-0c32" primary="false"/>
<categoryLink id="cda0-3388-db09-0332" name="Assault Grenadier Pathfinder" hidden="false" targetId="6b2a-729a-d0c7-6e07" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="ef90-55df-fd03-d7be" name="Specialism" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82af-b9b8-518f-aaf1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce52-a1e2-4e90-ee5e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b9de-16dd-f7f5-6904" name="Staunch" hidden="false" collective="false" import="true" targetId="eb50-055a-4cd2-e1d5" type="selectionEntry"/>
<entryLink id="63c6-8e60-05bd-1f02" name="Scout" hidden="false" collective="false" import="true" targetId="9118-a98b-0ffe-9e3d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f5c3-c421-0b2c-8d95" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="421f-f3af-2c42-34fc" type="selectionEntry"/>
<entryLink id="ecfd-5326-a3ec-40af" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="f4e3-b988-2a32-9414" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="c96b-6e55-de3f-ed62" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5e93-cdc7-5100-5384" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="381e-3630-cac3-f68e" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="fbdc-9eb6-2d25-7815" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="497e-15d3-9685-387c" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="e86f-731f-c9cd-84ff" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
<entryLink id="7d97-846a-197a-ad61" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8380-a3bb-acc4-fadc" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="ee6b-e0cc-5bbd-74c0" name="Pathfinder 1 - For the Greater Good" hidden="false" collective="false" import="true" targetId="3f4a-4246-779e-51c8" type="selectionEntry"/>
<entryLink id="2ea3-4f41-d793-ce2d" name="Pathfinder 2 - Reliant Support" hidden="false" collective="false" import="true" targetId="c5bf-1300-bb1f-b3a6" type="selectionEntry"/>
<entryLink id="8d16-115e-3913-c3f6" name="Pathfinder 4 - Merciless Hunter" hidden="false" collective="false" import="true" targetId="7d92-cd69-4f1a-50a5" type="selectionEntry"/>
<entryLink id="c422-f79b-8d45-5e05" name="Pathfinder 3 - Cunning Hunter" hidden="false" collective="false" import="true" targetId="bad2-07c1-af8d-5fce" type="selectionEntry"/>
<entryLink id="47e1-069e-50be-bcef" name="Pathfinder 5 - Martial Philosopher" hidden="false" collective="false" import="true" targetId="e35a-54fb-ae16-ac1e" type="selectionEntry"/>
<entryLink id="b16f-88b9-9284-6708" name="Pathfinder 6 - Capable Under Fire" hidden="false" collective="false" import="true" targetId="d920-19e2-bc81-cb3d" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="e670-04bb-58fe-f86a" name="Fists" hidden="false" collective="false" import="true" targetId="211e-8056-1d46-0686" type="selectionEntry"/>
<entryLink id="5f12-3503-9127-11a1" name="EMP Grenade" hidden="false" collective="false" import="true" targetId="7548-4ef8-745a-7772" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="69a8-c70a-c27d-fe0c" type="min"/>
</constraints>
</entryLink>
<entryLink id="56c9-8705-ddda-14d4" name="Photon Grenade" hidden="false" collective="false" import="true" targetId="0aed-a104-88c1-6e3e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba19-b6ef-ca21-c820" type="min"/>
</constraints>
</entryLink>
<entryLink id="bceb-8a0a-91e8-db6e" name="Fusion Grenade" hidden="false" collective="false" import="true" targetId="6552-81bf-a748-4431" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1afc-5ee5-49dc-d1b8" type="min"/>
</constraints>
</entryLink>
<entryLink id="5603-8da6-c8f8-cad1" name="Equipment" hidden="false" collective="false" import="true" targetId="7784-0737-ca59-f234" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6552-81bf-a748-4431" name="Fusion Grenade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d1e9-025e-c575-a435" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6479-6ed8-d25b-1486" type="max"/>
</constraints>
<profiles>
<profile id="d6f0-8292-b7b9-457d" name="Fusion grenade" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Indirect, AP2, Limited</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="373f-f4d7-7b0f-e59e" name="Indirect" hidden="false" targetId="653d-16a5-eefb-8b71" type="rule"/>
<infoLink id="5f13-d285-2f06-490b" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="9bdd-9d93-dd2d-7769" name="Limited" hidden="false" targetId="1eb0-6ad3-3e5a-d8ec" type="rule"/>
<infoLink id="d193-2ff1-c0c0-c403" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="f3d5-160c-2ce6-831a" 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>
<selectionEntry id="0aed-a104-88c1-6e3e" name="Photon Grenade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d7e6-a692-8462-3748" type="max"/>
</constraints>
<profiles>
<profile id="e579-6ce8-563f-2c23" 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+, that enemy operative gains a Photon token. While an operative has any Photon tokens, subtract ⬤ from its Movement characteristic and it cannot perform Dash actions. At the end of an operative's activation, remove all Photon tokens it has. This operative can only perform this action once, and cannot perform this action if it is within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7548-4ef8-745a-7772" name="EMP Grenade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47ea-4d8e-46ec-83d4" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4ec4-5dc6-9529-40d0" type="max"/>
</constraints>
<profiles>
<profile id="0f9b-351b-cf4d-83c5" name="EMP grenade" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>