forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
T'au Empire.cat
3406 lines (3405 loc) · 250 KB
/
T'au Empire.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="7ac4-f90b-e0a6-ae72" name="T'au Empire" revision="21" battleScribeVersion="2.03" authorUrl="https://battlescribedata.appspot.com/#/repo/wh40k-killteam" library="false" gameSystemId="a467-5f42-d24c-6e5b" gameSystemRevision="39" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="580b-8df1-70dc-452b" name="Drone" hidden="false"/>
<categoryEntry id="fd6f-ea1b-53af-11ab" name="Battlesuit" hidden="false"/>
<categoryEntry id="2ed3-4683-ef2f-117f" name="XV25 Stealth Battlesuit" hidden="false"/>
<categoryEntry id="cf63-3236-04d7-9a6d" name="Fire Warrior Breacher" hidden="false"/>
<categoryEntry id="68ce-4791-39e0-d5e2" name="Pathfinder" hidden="false"/>
<categoryEntry id="6abe-382b-3cd5-c6d4" name="Fire Warrior" hidden="false"/>
<categoryEntry id="138d-868c-de29-1351" name="DS8 Tactical Support Turret" hidden="false"/>
<categoryEntry id="66f2-ed47-c749-e425" name="XV8 Crisis Battlesuit" hidden="false"/>
<categoryEntry id="053c-2b80-e82e-db20" name="Darkstrider" hidden="false"/>
<categoryEntry id="c830-fd11-7cc5-b88b" name="Bork'an Sept" hidden="false"/>
<categoryEntry id="00f6-59fc-8b40-ca1c" name="Dal'yth Sept" hidden="false"/>
<categoryEntry id="739b-2a62-fe3c-f12f" name="Farsight Enclaves" hidden="false"/>
<categoryEntry id="68d1-4795-69e2-2300" name="Sa'cea Sept" hidden="false"/>
<categoryEntry id="f4ce-9f2e-40d5-46bb" name="T'au Sept" hidden="false"/>
<categoryEntry id="d2b1-0562-1a1a-fb68" name="Vior'la Sept" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="4340-dab1-7330-f462" name="XV25 Stealth Battlesuit Shas'ui" hidden="false" collective="false" import="true" targetId="7fa5-5063-e682-a11a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1a39-3050-98e5-5ff7" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8cc0-8f7e-0c24-b8f6" name="XV25 Stealth Battlesuit Shas'vre" hidden="false" collective="false" import="true" targetId="9121-9617-86d0-8997" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="89fc-d8b4-eb67-8be6" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5a4b-74ad-6ca6-e01c" name="Fire Warrior Shas'la" hidden="false" collective="false" import="true" targetId="e5a8-5953-c927-081d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="253f-ab32-81be-6302" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7c16-62c2-ef98-a049" name="Fire Warrior Shas'ui" hidden="false" collective="false" import="true" targetId="0901-c4f9-d88d-de28" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5947-d3e9-ebf8-40b6" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e83a-37f1-c284-3557" name="Pathfinder Shas'ui" hidden="false" collective="false" import="true" targetId="3992-4431-9edb-6e15" type="selectionEntry">
<categoryLinks>
<categoryLink id="b227-762e-7ab5-2000" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8a19-dcb6-49b1-a509" name="Fire Warrior Breacher Shas'la" hidden="false" collective="false" import="true" targetId="9a37-1782-bc24-54be" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0c48-bdc7-1b8e-26af" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="41f8-ac5b-7b7a-79cd" name="Pathfinder" hidden="false" collective="false" import="true" targetId="79c4-3e23-66af-4cdf" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d958-abbb-c5d5-2f9b" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0a83-d5f6-c68f-3f7a" name="Pathfinder Gunner" hidden="false" collective="false" import="true" targetId="83c5-f23b-de87-b5c1" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c4d0-5189-1f79-2508" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d419-f56b-b832-ee58" name="Fire Warrior Breacher Shas'ui" hidden="false" collective="false" import="true" targetId="6d2b-c7bd-a239-adca" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d6e3-4873-e6d1-6f46" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="60d2-9f39-99d7-1879" name="MB3 Recon Drone" hidden="false" collective="false" import="true" targetId="1122-65af-80de-fd2a" type="selectionEntry"/>
<entryLink id="2d43-6230-00d1-4fdf" name="MV36 Guardian Drone" hidden="false" collective="false" import="true" targetId="b739-d739-faa1-b222" type="selectionEntry"/>
<entryLink id="2601-88a5-6e6f-d791" name="MV33 Grav-inhibitor Drone" hidden="false" collective="false" import="true" targetId="7b5e-818f-31be-c2d3" type="selectionEntry"/>
<entryLink id="dd4e-2338-09fe-71b6" name="MV7 Marker Drone" hidden="false" collective="false" import="true" targetId="0cfa-c4d3-6e31-166a" type="selectionEntry"/>
<entryLink id="cc5c-3a5b-6e90-0001" name="MV31 Pulse Accelerator Drone" hidden="false" collective="false" import="true" targetId="28be-4e98-da83-ad41" type="selectionEntry"/>
<entryLink id="3333-ee6a-a3e6-9cd9" name="MV4 Shield Drone" hidden="false" collective="false" import="true" targetId="edc9-dca6-96f5-c3ac" type="selectionEntry"/>
<entryLink id="b04b-2b5a-8583-102d" name="MV1 Gun Drone" hidden="false" collective="false" import="true" targetId="7a62-e3b5-b04f-af7b" type="selectionEntry"/>
<entryLink id="8e90-fe96-3c56-829b" name="Fire Warrior Breacher Shas'la" hidden="false" collective="false" import="true" targetId="9a37-1782-bc24-54be" type="selectionEntry">
<categoryLinks>
<categoryLink id="6df7-6455-b4bc-ad63" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8aaf-4076-bbcd-fbb7" name="Fire Warrior Breacher Shas'ui" hidden="false" collective="false" import="true" targetId="6d2b-c7bd-a239-adca" type="selectionEntry">
<categoryLinks>
<categoryLink id="fe91-55f9-5e06-c672" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="92d8-d916-6a26-f50d" name="Pathfinder" hidden="false" collective="false" import="true" targetId="79c4-3e23-66af-4cdf" type="selectionEntry">
<categoryLinks>
<categoryLink id="b6a6-66e3-3162-f729" name="Specialist" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0056-0d04-55fe-9d63" name="Pathfinder Gunner" hidden="false" collective="false" import="true" targetId="83c5-f23b-de87-b5c1" type="selectionEntry">
<categoryLinks>
<categoryLink id="b0ac-b78b-2528-0e2f" name="Specialist" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63bb-9e4c-26b4-107c" name="Pathfinder Shas'ui" hidden="false" collective="false" import="true" targetId="3992-4431-9edb-6e15" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="31c3-f371-15a2-a2e5" name="Non-specialist" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d94a-4ca1-0139-1329" name="Fire Warrior Shas'la" hidden="false" collective="false" import="true" targetId="e5a8-5953-c927-081d" type="selectionEntry">
<categoryLinks>
<categoryLink id="4bf1-ec70-f8a1-b3a4" name="Specialist" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="59d7-7b86-053d-9bed" name="Fire Warrior Shas'ui" hidden="false" collective="false" import="true" targetId="0901-c4f9-d88d-de28" type="selectionEntry">
<categoryLinks>
<categoryLink id="fc27-f8e7-c8ab-6764" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6ace-177f-5b8a-339e" name="XV25 Stealth Battlesuit Shas'ui" hidden="false" collective="false" import="true" targetId="7fa5-5063-e682-a11a" type="selectionEntry">
<categoryLinks>
<categoryLink id="dad6-895f-05a9-ec77" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0f9b-83f2-92b8-69f6" name="XV25 Stealth Battlesuit Shas'vre" hidden="false" collective="false" import="true" targetId="9121-9617-86d0-8997" type="selectionEntry">
<categoryLinks>
<categoryLink id="aa05-9165-eaf9-41c2" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="259f-abd2-757e-ec68" name="Fire Warrior Shas'ui" hidden="false" collective="false" import="true" targetId="0901-c4f9-d88d-de28" type="selectionEntry">
<categoryLinks>
<categoryLink id="658a-a12e-f4c4-873b" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9239-e2cf-56b2-72f9" name="Pathfinder Shas'ui" hidden="false" collective="false" import="true" targetId="3992-4431-9edb-6e15" type="selectionEntry">
<categoryLinks>
<categoryLink id="a672-24e8-06da-37b1" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="44a4-8f27-829b-3771" name="Fire Warrior Breacher Shas'ui" hidden="false" collective="false" import="true" targetId="6d2b-c7bd-a239-adca" type="selectionEntry">
<categoryLinks>
<categoryLink id="6116-eaf9-e127-0178" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bb60-a729-694c-9fbd" name="XV25 Stealth Battlesuit Shas'vre" hidden="false" collective="false" import="true" targetId="9121-9617-86d0-8997" type="selectionEntry">
<categoryLinks>
<categoryLink id="789d-5dad-b96d-9a73" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e655-d426-04e5-ea99" name="Fire Warrior Breacher Fire Team" hidden="false" collective="false" import="true" targetId="6121-1ea5-58dc-3db3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="770c-a80a-6cf8-4f39" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7b05-6566-7c34-06ca" name="Fire Warrior Fire Team" hidden="false" collective="false" import="true" targetId="b637-1374-71b3-7997" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5857-edf6-1686-1e94" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f054-c176-de09-2781" name="Pathfinder Fire Team" hidden="false" collective="false" import="true" targetId="c9fc-551a-7dd5-723f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f3b9-c324-221d-c5c7" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7302-396c-6200-1e46" name="XV25 Stealth Battlesuit Fire Team" hidden="false" collective="false" import="true" targetId="02ca-bd08-d933-61e4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cec2-2f2a-4bf9-8792" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d7c8-8c91-c186-a39d" name="Cadre Fireblade" hidden="false" collective="false" import="true" targetId="ffb5-d906-9b6e-d51c" type="selectionEntry"/>
<entryLink id="eb55-2e96-55c5-6afe" name="Ethereal" hidden="false" collective="false" import="true" targetId="d728-4ad3-598e-7f4b" type="selectionEntry"/>
<entryLink id="7e2f-aad8-0add-ebde" name="Dahyak Grekh" hidden="false" collective="false" import="true" targetId="d4e8-9748-e8a2-b829" type="selectionEntry"/>
<entryLink id="e341-369b-b531-fe6c" name="Kroot Carnivore Fire Team" hidden="false" collective="false" import="true" targetId="306e-b1b9-faba-0020" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a0dc-dd86-db73-0b9d" name="Non-specialist" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="df98-63a1-c648-6d43" name="Kroot Carnivore" hidden="false" collective="false" import="true" targetId="36c9-84e1-2296-8655" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1de5-574c-133e-91b5" name="Non-specialist" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
<categoryLink id="8529-bbdf-39c7-cfae" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3ad3-5b81-362d-bf0e" name="Kroot Carnivore" hidden="false" collective="false" import="true" targetId="36c9-84e1-2296-8655" type="selectionEntry">
<categoryLinks>
<categoryLink id="ab04-ac5d-45c7-71a5" name="Specialist" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
<categoryLink id="b03f-71da-3297-289e" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5cc4-a365-db15-f6d7" name="Kroot Carnivore" hidden="false" collective="false" import="true" targetId="36c9-84e1-2296-8655" type="selectionEntry">
<categoryLinks>
<categoryLink id="6b1c-1e9e-01d8-0d75" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
<categoryLink id="34d5-ea8d-f963-98a4" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ae9d-660d-14b0-05a3" name="Commander in XV85 Enforcer Battlesuit" hidden="false" collective="false" import="true" targetId="fcbe-0fbe-0258-f4ff" type="selectionEntry"/>
<entryLink id="6386-73e6-35cd-3c29" name="XV8 Crisis Battlesuit Shas'ui" hidden="false" collective="false" import="true" targetId="ba7e-b670-8d86-fa8f" type="selectionEntry">
<categoryLinks>
<categoryLink id="eac0-c0fe-56fc-d817" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cef3-3bef-cf5f-06e9" name="XV8 Crisis Battlesuit Shas'ui" hidden="false" collective="false" import="true" targetId="ba7e-b670-8d86-fa8f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2dc7-5e20-d62a-5e5e" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0578-6011-c54e-5f7d" name="XV8 Crisis Battlesuit Shas'vre" hidden="false" collective="false" import="true" targetId="2046-70f1-50aa-7d33" type="selectionEntry">
<categoryLinks>
<categoryLink id="9f45-042b-8518-9f36" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c84b-52ca-9337-567f" name="XV8 Crisis Battlesuit Shas'vre" hidden="false" collective="false" import="true" targetId="2046-70f1-50aa-7d33" type="selectionEntry">
<categoryLinks>
<categoryLink id="db1a-5fdc-3f9c-fab6" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4934-6023-217b-18af" name="XV8 Crisis Battlesuit Shas'vre" hidden="false" collective="false" import="true" targetId="2046-70f1-50aa-7d33" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8344-ae3f-1f5d-1659" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2b57-3a89-5abe-3b55" name="XV8 Crisis Battlesuit Fire Team" hidden="false" collective="false" import="true" targetId="7d09-5453-3af0-2bec" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6d03-efac-b6c6-34a6" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="52f9-c98a-e3ce-c039" name="Darkstrider" hidden="false" collective="false" import="true" targetId="e8e4-13b9-f87f-33b1" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="38b4-5a35-39d0-dfc3" name="Superior Craftsmanship (Bork'an)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0ac0-ccb7-5170-d235" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Models in your kill team do not suffer the penalty to hit rolls for their attacks that target enemy models at long range.</description>
</rule>
<rule id="3570-5c27-79c1-8e1f" name="Adaptive Camouflage (Dal'yth)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0ac0-ccb7-5170-d235" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>If a model in your kill team does not move in the Movement phase, for the remainder of the battle round it is considered to be obscured to enemy models that target it.</description>
</rule>
<rule id="0446-c032-e2a4-2655" name="Devastating Counter-strike (Farsight Enclaves)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0ac0-ccb7-5170-d235" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Re-roll hit and wound rolls of 1 for shooting attacks made by models in your kill team that target an enemy model that is within 6" of the firing model.</description>
</rule>
<rule id="5543-2652-4943-3dc0" name="Calm Discipline (Sa'cea)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0ac0-ccb7-5170-d235" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Add 1 to the Leadership characteristic of models in your kill team. In addition, you can re-roll hit rolls of 1 for shooting attacks made by models in your kill team.</description>
</rule>
<rule id="7d82-a3ba-8fc3-5b46" name="Coordinated Fire Arcs (T'au)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0ac0-ccb7-5170-d235" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>When a model in your kill team uses their For the Greater Good ability, or when they fire Overwatch whilst they are within 6" of a friendly model, they successfully hit on a roll of 5 or 6.</description>
</rule>
<rule id="f4dc-04ab-b156-21d7" name="Strike Fast (Vior'la)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d2b1-0562-1a1a-fb68" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c830-fd11-7cc5-b88b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00f6-59fc-8b40-ca1c" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="739b-2a62-fe3c-f12f" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="68d1-4795-69e2-2300" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f4ce-9f2e-40d5-46bb" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0ac0-ccb7-5170-d235" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Models in your kill team can shoot Rapid Fire weapons as if they were Assault weapons in the Shooting phase of a battle round in which they Advanced (e.g. a Rapid Fire 1 weapon would be used as if it were an Assault 1 weapon). In addition, these models do not suffer the penalty to their hit rolls for shooting Assault weapons during a battle round in which they Advanced.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="e5a8-5953-c927-081d" name="Fire Warrior Shas'la" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="453b-646c-c75f-7377" name="Shas'la" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">1</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">6</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">4+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2c57-45bb-ec70-1faa" name="Bonding Knife Ritual (Fire Warrior)" hidden="false" targetId="5b50-1024-ab9b-44f7" type="profile"/>
<infoLink id="cfc2-b946-a893-b3b0" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4b6c-d83e-3191-4a03" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="62c0-ca34-6d7e-9b04" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="59c4-e043-ddf8-b237" name="Fire Warrior" hidden="false" targetId="6abe-382b-3cd5-c6d4" primary="false"/>
<categoryLink id="a9e0-da86-5408-ab20" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="76b3-f346-f9c3-e321" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="6642-d4f3-ee9c-1ff9">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1332-8029-09cd-4ce4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa45-16c2-856c-7342" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6642-d4f3-ee9c-1ff9" name="Pulse rifle" hidden="false" collective="false" import="true" targetId="f331-756c-ee59-d14f" type="selectionEntry"/>
<entryLink id="1ddd-a466-0400-6af9" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="34b4-b2bf-01d2-1645" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="aba0-d873-4757-39ea" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="ba96-0098-7329-e8e9" name="Pulse pistol" hidden="false" collective="false" import="true" targetId="610a-d5ff-5b16-9636" type="selectionEntry"/>
<entryLink id="4957-63c0-3ed7-0b99" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="28be-2636-e9ad-6658" name="DS8 Tactical Support Turret" hidden="false" collective="false" import="true" targetId="c326-255b-59ee-42b8" type="selectionEntry">
<modifiers>
<modifier type="set" field="f746-e3c2-5345-f429" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="f746-e3c2-5345-f429" type="max"/>
</constraints>
</entryLink>
<entryLink id="fc67-38bd-8595-0bcd" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0901-c4f9-d88d-de28" name="Fire Warrior Shas'ui" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="e067-7f1f-d375-8b55" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="e067-7f1f-d375-8b55" type="max"/>
</constraints>
<profiles>
<profile id="c476-4715-2b50-0911" name="Shas'ui" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">4+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f961-4c3a-2ebf-5f09" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
<infoLink id="fdc7-bb7b-0091-f501" name="Bonding Knife Ritual (Fire Warrior)" hidden="false" targetId="5b50-1024-ab9b-44f7" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c293-68cd-23ff-06d6" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="65cc-c7c3-b53b-17bb" name="Fire Warrior" hidden="false" targetId="6abe-382b-3cd5-c6d4" primary="false"/>
<categoryLink id="e730-3f61-4120-5b7b" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="d2c4-ecd3-69a1-9657" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c55f-6843-a51a-86ea" name="Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="a843-2720-9b18-f7ef">
<modifiers>
<modifier type="set" field="5692-d693-524c-27cd" value="2">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="610a-d5ff-5b16-9636" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e24-9fd2-f7bf-4365" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5692-d693-524c-27cd" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a843-2720-9b18-f7ef" name="Pulse rifle" hidden="false" collective="false" import="true" targetId="f331-756c-ee59-d14f" type="selectionEntry"/>
<entryLink id="7805-8efe-d84e-6191" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="34b4-b2bf-01d2-1645" type="selectionEntry"/>
<entryLink id="a2fc-eb22-98c0-d49f" name="Pulse pistol" hidden="false" collective="false" import="true" targetId="610a-d5ff-5b16-9636" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cb6a-761d-26ac-0517" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="3258-9c93-e977-241c" name="Markerlight" hidden="false" collective="false" import="true" targetId="6038-3ed8-159d-da29" type="selectionEntry"/>
<entryLink id="050b-928e-8985-ca1b" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="d404-5f6f-f67c-fff0" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c326-255b-59ee-42b8" name="DS8 Tactical Support Turret" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4989-0887-2311-b4bb" type="max"/>
</constraints>
<profiles>
<profile id="df9c-434b-a7b4-a629" name="DS8 Tactical Support Turret" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">-</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">-</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">0</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">4</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">4+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
<profile id="2724-f3ba-31ef-996b" name="DS8 Tactical Support Turret" hidden="false" typeId="0883-432d-b2ca-f11a" typeName="Wargear">
<characteristics>
<characteristic name="Ability" typeId="8b56-49a8-40e5-242a">A Tactical Support Turret is set up within 2" of the model it accompanies when that model is set up on the battlefield. It is treated as a separate model, but cannot move for any reason. If this model is more than 2" from the model it accompanies at any point, it is removed from the battlefield. It does not count as having been taken out of action. Tactical Support Turrets may not be specialists, are not part of a fire team (pg 204) and do not gain experience.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8dd8-352d-1f85-c590" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="7ab1-8571-f06c-0be4" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="7099-01d5-27af-69e0" name="DS8 Tactical Support Turret" hidden="false" targetId="138d-868c-de29-1351" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="983c-1f52-107b-3cd3" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="fffe-46d4-f373-c7c7">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="293c-5814-46c3-5d5c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9f9d-67c8-b8f0-30bb" type="min"/>
</constraints>
<entryLinks>
<entryLink id="fffe-46d4-f373-c7c7" name="Smart missile system" hidden="false" collective="false" import="true" targetId="c3db-04b6-0636-2ee7" type="selectionEntry"/>
<entryLink id="7fbc-360f-a81b-5c53" name="Missile pod" hidden="false" collective="false" import="true" targetId="7d12-90e7-95cb-c0e2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d69-7f12-d9f1-2d02" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="79c4-3e23-66af-4cdf" name="Pathfinder" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2e8a-1440-de8b-41dd" name="Pathfinder" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">7"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">1</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">6</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">5+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a785-b0cf-17b7-1089" name="Bonding Knife Ritual (Pathfinder)" hidden="false" targetId="54df-f8eb-92f5-87fb" type="profile"/>
<infoLink id="e04e-3413-9a66-a2c3" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f19a-bfcc-c783-bbe5" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="09ad-9fff-09ba-62df" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="2f8d-04ee-12f1-c534" name="Pathfinder" hidden="false" targetId="68ce-4791-39e0-d5e2" primary="false"/>
<categoryLink id="9718-7736-e7e9-0d74" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="cbc6-5deb-47dc-0d43" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="8eed-8ee4-c50e-3509" name="Pulse carbine w/Markerlight" hidden="false" collective="false" import="true" targetId="94a0-f018-fb53-c85a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3de-9a65-dbc8-84e7" type="min"/>
</constraints>
</entryLink>
<entryLink id="6fcf-1827-82cb-807d" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="276f-ab4c-15c0-e8e6" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="6.0"/>
</costs>
</selectionEntry>
<selectionEntry id="83c5-f23b-de87-b5c1" name="Pathfinder Gunner" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="6ca4-b281-fcb2-8634" value="3">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6ca4-b281-fcb2-8634" type="max"/>
</constraints>
<profiles>
<profile id="51b0-136f-24c0-ea8b" name="Pathfinder Gunner" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">7"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">1</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">6</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">5+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dbba-4b52-11d1-ea44" name="Bonding Knife Ritual (Pathfinder)" hidden="false" targetId="54df-f8eb-92f5-87fb" type="profile"/>
<infoLink id="f38e-4f9e-d3f4-e1fd" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f164-bcd7-3f70-ac81" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="52ba-e2b2-e54f-cf6e" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="8d9d-027e-009b-9e73" name="Pathfinder" hidden="false" targetId="68ce-4791-39e0-d5e2" primary="false"/>
<categoryLink id="c591-9ab8-3acf-e680" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7c11-d8ca-5453-38ba" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="f4fc-6059-616d-bd72">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b938-32db-b32c-8239" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afd4-68f9-72ca-840e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f4fc-6059-616d-bd72" name="Pulse carbine w/Markerlight" hidden="false" collective="false" import="true" targetId="94a0-f018-fb53-c85a" type="selectionEntry"/>
<entryLink id="aaad-ce9b-1214-9f97" name="Ion rifle" hidden="false" collective="false" import="true" targetId="f3b1-6e27-c68b-f2a1" type="selectionEntry"/>
<entryLink id="9177-6b8a-09d7-59c6" name="Rail rifle" hidden="false" collective="false" import="true" targetId="513b-6721-3a8a-b4bb" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="a827-c22d-42e3-2e0a" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="ef62-4b7f-c511-707f" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="54ec-4cbb-d113-fc7f" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3992-4431-9edb-6e15" name="Pathfinder Shas'ui" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="717b-8b89-0842-7708" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="717b-8b89-0842-7708" type="max"/>
</constraints>
<profiles>
<profile id="7603-12e6-5316-f063" name="Pathfinder Shas'ui" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">7"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">5+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4c40-9224-1518-21c9" name="Bonding Knife Ritual (Pathfinder)" hidden="false" targetId="54df-f8eb-92f5-87fb" type="profile"/>
<infoLink id="2ddb-4857-dd32-7289" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fccb-d72f-8581-8779" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="8dd5-f1ea-c9e8-0afb" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="a5c4-4278-ee4c-8e47" name="Pathfinder" hidden="false" targetId="68ce-4791-39e0-d5e2" primary="false"/>
<categoryLink id="72ed-e0c7-b573-ebc4" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="c8ab-1761-3be9-12dd" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="a181-b4c6-0285-f968" name="Pulse pistol" hidden="false" collective="false" import="true" targetId="610a-d5ff-5b16-9636" type="selectionEntry"/>
<entryLink id="bb12-e002-30bd-3e72" name="Pulse carbine w/Markerlight" hidden="false" collective="false" import="true" targetId="94a0-f018-fb53-c85a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dc41-4c61-db20-4524" type="min"/>
</constraints>
</entryLink>
<entryLink id="bc8b-0f49-f8d2-ec2e" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="877b-bbda-648b-64f2" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a37-1782-bc24-54be" name="Fire Warrior Breacher Shas'la" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d5bd-4482-2417-e631" name="Breacher Shas'la" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">1</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">6</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">4+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="376d-5f81-7f82-96d6" name="Bonding Knife Ritual (Breacher)" hidden="false" targetId="ce01-6069-67c3-65a6" type="profile"/>
<infoLink id="6af5-b828-23d6-27ea" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8e26-721a-d097-e101" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="4d55-2100-0991-85dc" name="Fire Warrior Breacher" hidden="false" targetId="cf63-3236-04d7-9a6d" primary="false"/>
<categoryLink id="1979-65ac-6b87-0ff6" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="1384-a27b-58bb-61a3" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f428-7cc8-c4d4-547d" name="Pulse blaster" hidden="false" collective="false" import="true" targetId="63d7-a453-3a27-76a3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a55-d707-7751-3a12" type="min"/>
</constraints>
</entryLink>
<entryLink id="679d-7bdc-01c5-f9e4" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="ecc1-0307-bf1f-ce09" name="Pulse pistol" hidden="false" collective="false" import="true" targetId="610a-d5ff-5b16-9636" type="selectionEntry"/>
<entryLink id="072b-f42c-9a8e-449d" name="DS8 Tactical Support Turret" hidden="false" collective="false" import="true" targetId="c326-255b-59ee-42b8" type="selectionEntry">
<modifiers>
<modifier type="set" field="babd-aeae-552a-388c" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="babd-aeae-552a-388c" type="max"/>
</constraints>
</entryLink>
<entryLink id="d1ce-cf6b-814b-39f0" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="595f-c96e-bc11-32c0" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6d2b-c7bd-a239-adca" name="Fire Warrior Breacher Shas'ui" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="108e-d846-d297-d667" value="1">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c0f7-c442-b695-bf07" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="108e-d846-d297-d667" type="max"/>
</constraints>
<profiles>
<profile id="31b8-077c-56d0-9df4" name="Breacher Shas'ui" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">4+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="05bf-e272-122f-357a" name="Bonding Knife Ritual (Breacher)" hidden="false" targetId="ce01-6069-67c3-65a6" type="profile"/>
<infoLink id="3084-5c57-1eaa-7a2c" name="For the Greater Good" hidden="false" targetId="7084-9ac7-95d2-a29f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3adf-4fb0-7c1a-dca6" name="Faction: T'au Empire" hidden="false" targetId="7b37-ac1c-f776-37a2" primary="false"/>
<categoryLink id="4bff-92d6-2c53-14dc" name="Fire Warrior Breacher" hidden="false" targetId="cf63-3236-04d7-9a6d" primary="false"/>
<categoryLink id="7ce1-86e7-9bfc-7871" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="874e-83b6-3c12-d493" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7697-c236-63c8-4c8f" name="Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="2f53-2234-4c98-4a03">
<modifiers>
<modifier type="set" field="29b5-88af-2847-d3f3" value="2">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="610a-d5ff-5b16-9636" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a761-2152-11f2-6e5d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29b5-88af-2847-d3f3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2f53-2234-4c98-4a03" name="Pulse blaster" hidden="false" collective="false" import="true" targetId="63d7-a453-3a27-76a3" type="selectionEntry"/>
<entryLink id="1ae3-e162-495c-3186" name="Pulse pistol" hidden="false" collective="false" import="true" targetId="610a-d5ff-5b16-9636" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="baa6-e751-57ec-c6ff" name="Photon grenade" hidden="false" collective="false" import="true" targetId="1f76-6a16-1e9d-e519" type="selectionEntry"/>
<entryLink id="93fb-8347-2bc9-9b80" name="Markerlight" hidden="false" collective="false" import="true" targetId="6038-3ed8-159d-da29" type="selectionEntry"/>
<entryLink id="8b79-acbf-261a-29e8" name="Specialism" hidden="false" collective="false" import="true" targetId="a33d-4f89-1be1-c88b" type="selectionEntryGroup"/>
<entryLink id="ff52-dfbd-48b0-0b5e" name="Sept" hidden="false" collective="false" import="true" targetId="b174-5a4a-deb1-047f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7fa5-5063-e682-a11a" name="XV25 Stealth Battlesuit Shas'ui" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="bc10-e108-8af1-f2a2" name="Stealth Shas'ui" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">8"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">5+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">4+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">2</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="48c9-0282-8c33-16b4" name="Stealth Team Bonding Knife Ritual" hidden="false" targetId="0f37-d6f7-1dcf-ca23" type="profile"/>