generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 12
/
T'au Empire.cat
9162 lines (9157 loc) · 677 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="b60f-8159-b5d0-66ab" name="T'au Empire" revision="5" battleScribeVersion="2.03" authorName="BSData Developers" authorUrl="https://discord.gg/3QtaU2g" library="false" gameSystemId="18f7-26e1-8fbb-f7fa" gameSystemRevision="7" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="6e11-42ed-c084-ce74" name="Datasheet T'au Empire"/>
<publication id="e282-a216-345a-e73a" name="Datasheet FW T'au Empire"/>
</publications>
<categoryEntries>
<categoryEntry id="0ab2-e0c9-6254-5de7" name="Faction: T'au Empire" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="13b0-eb31-2aeb-6a2b" name="Faction: <Sept>" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="9810-74b4-8f85-fc9a" name="Faction: T'au Sept" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="d6bc-c960-d9be-925a" name="Faction: Farsight Enclaves" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="9cc3-8fbd-371a-e622" name="Faction: Vior'la Sept" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="3892-f72e-b0ab-21bc" name="Faction: Kroot" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="553b-0c29-feed-1103" name="Faction: Vespid" publicationId="6e11-42ed-c084-ce74" hidden="false"/>
<categoryEntry id="cddc-e90c-2a2c-cc25" name="Battlesuit" hidden="false"/>
<categoryEntry id="b9f7-43d5-dd6a-0b50" name="Jet Pack" hidden="false"/>
<categoryEntry id="ba97-8cad-a18a-626d" name="Commander (T'au)" hidden="false"/>
<categoryEntry id="4d69-8ede-1cbf-6421" name="XV22 Stalker" hidden="false"/>
<categoryEntry id="ae13-43d2-8a9b-6a49" name="Shadowsun" hidden="false"/>
<categoryEntry id="97ee-28ed-a428-0145" name="Farsight" hidden="false"/>
<categoryEntry id="c963-64d3-9786-afec" name="XV8 Crisis" hidden="false"/>
<categoryEntry id="2986-dbe1-0ca8-5a2c" name="Ethereal" hidden="false"/>
<categoryEntry id="ef60-afbc-6e56-324b" name="Ethereal Guard" hidden="false"/>
<categoryEntry id="9ecd-5434-8be8-cc2e" name="Aun'Va" hidden="false"/>
<categoryEntry id="22a3-9554-3dd0-a261" name="Aun'Shi" hidden="false"/>
<categoryEntry id="ce4a-3042-cfc9-6629" name="Cadre Fireblade" hidden="false"/>
<categoryEntry id="5451-86bf-4530-22a3" name="Darkstrider" hidden="false"/>
<categoryEntry id="7d56-45f3-f549-9161" name="TX7 Hammerhead Gunship" hidden="false"/>
<categoryEntry id="21ce-d54b-bad6-d121" name="Longstrike" hidden="false"/>
<categoryEntry id="a620-d290-7923-43fd" name="Breacher Team" hidden="false"/>
<categoryEntry id="6481-a477-5ee3-f372" name="Strike Team" hidden="false"/>
<categoryEntry id="d226-8a1d-03b0-1660" name="Kroot Carnivores" hidden="false"/>
<categoryEntry id="2f39-07ec-282d-5dc1" name="Kroot Shaper" hidden="false"/>
<categoryEntry id="4ea8-7b64-9ccb-592a" name="Krootox Riders" hidden="false"/>
<categoryEntry id="3013-36d5-0ea1-06be" name="XV25 Stealth Battlesuits" hidden="false"/>
<categoryEntry id="7b64-bf70-4709-bf19" name="XV8 Crisis Battlesuits" hidden="false"/>
<categoryEntry id="6732-8a2f-bfa8-7ef0" name="XV8 Crisis Bodyguards" hidden="false"/>
<categoryEntry id="b120-fa97-63af-c2b4" name="Firesight Marksman" hidden="false"/>
<categoryEntry id="5633-0022-6ebc-fd78" name="XV95 Ghostkeel Battlesuit" hidden="false"/>
<categoryEntry id="f0ff-bfca-b3ea-415e" name="XV104 Riptide Battlesuit" hidden="false"/>
<categoryEntry id="989b-759a-3abe-1da7" name="Pathfinder Team" hidden="false"/>
<categoryEntry id="ddfc-9202-35d1-82f2" name="TX4 Piranhas" hidden="false"/>
<categoryEntry id="e9a5-e6bb-6ebf-b9fd" name="Tactical Drones" hidden="false"/>
<categoryEntry id="9a1d-130a-8e1d-09fd" name="Vespid Stingwings" hidden="false"/>
<categoryEntry id="f82f-cdf4-3b57-8a68" name="Kroot Hounds" hidden="false"/>
<categoryEntry id="0134-ea00-29c1-1629" name="XV88 Broadside Battlesuit" hidden="false"/>
<categoryEntry id="0dab-28b9-63a9-4ce7" name="TX78 Sky Ray Gunship" hidden="false"/>
<categoryEntry id="632f-0f37-c4ae-b78b" name="MV71 Sniper Drones" hidden="false"/>
<categoryEntry id="7951-c030-bfbd-48da" name="TY7 Devilfish" hidden="false"/>
<categoryEntry id="5063-7671-8d82-aec4" name="AX3 Razorshark Strike Fighter" hidden="false"/>
<categoryEntry id="e4fa-1359-63cf-eeaf" name="AX39 Sun Shark Bomber" hidden="false"/>
<categoryEntry id="4249-838e-afe3-1b43" name="Tidewall Shieldline" hidden="false"/>
<categoryEntry id="355f-a783-b2b0-2eb0" name="Tidewall Droneport" hidden="false"/>
<categoryEntry id="eb98-5122-a9cc-2615" name="Tidewall Gunrig" hidden="false"/>
<categoryEntry id="5ba9-9309-9f65-e31f" name="KV128 Stormsurge" hidden="false"/>
<categoryEntry id="97d8-f94f-74c4-3881" name="Drone" hidden="false"/>
<categoryEntry id="e52e-ca49-457b-b0bf" name="XV85 Enforcer" hidden="false"/>
<categoryEntry id="997e-85b7-b0aa-3b65" name="XV86 Coldstar" hidden="false"/>
<categoryEntry id="324c-1111-7214-00e2" name="Faction: Dal'yth" publicationId="e282-a216-345a-e73a" hidden="false"/>
<categoryEntry id="b609-58b5-5a26-045c" name="Shas'o R'myr" publicationId="e282-a216-345a-e73a" hidden="false"/>
<categoryEntry id="1288-81c2-ae48-6093" name="Faction: Ke'lShan" publicationId="e282-a216-345a-e73a" hidden="false"/>
<categoryEntry id="c92e-04c6-04cd-3639" name="Shas'o R'alai" publicationId="e282-a216-345a-e73a" hidden="false"/>
<categoryEntry id="cf7c-ae7e-d2a7-3128" name="Commander in XV81 Crisis Battlesuit" publicationId="e282-a216-345a-e73a" hidden="false"/>
<categoryEntry id="b3c5-7cc6-036f-d7d6" name="DX-4 Technical Drones" hidden="false"/>
<categoryEntry id="4a41-f97e-27c5-268b" name="Commander in XV84 Crisis Battlesuit" hidden="false"/>
<categoryEntry id="23ac-74a9-7d4f-72fb" name="XV9 Hazard Support Team" hidden="false"/>
<categoryEntry id="17ba-1002-2708-b7ef" name="XV109 Y'vahra Battlesuit" hidden="false"/>
<categoryEntry id="6816-6588-e482-955a" name="XV107 R'varna Battlesuit" hidden="false"/>
<categoryEntry id="e8e2-7b26-2f5b-bae9" name="KX139 Ta'unar Supremacy Armour" hidden="false"/>
<categoryEntry id="cea2-677c-2b28-cc41" name="Tetra Scout Speeder Team" hidden="false"/>
<categoryEntry id="bf39-ebc4-edd5-2a33" name="Piranha TX-42 Light Skimmers" hidden="false"/>
<categoryEntry id="cc51-b9ae-efab-8f0c" name="Heavy Gun Drone Squadron" hidden="false"/>
<categoryEntry id="7c9a-9d12-7f79-ca2a" name="TX7 Heavy Bombardment Hammerhead Gunship" hidden="false"/>
<categoryEntry id="6364-7fdd-86ee-01d1" name="TX7 Fire Support Hammerhead Gunship" hidden="false"/>
<categoryEntry id="62fc-1dd1-ffaf-6ea1" name="DX-6 Remora Stealth Drone Squadron" hidden="false"/>
<categoryEntry id="426f-14d1-58c8-4bbd" name="Barracuda AX-5-2" hidden="false"/>
<categoryEntry id="eb22-d8d0-008a-d693" name="Tiger Shark Fighter-Bomber" hidden="false"/>
<categoryEntry id="6225-6f51-fe83-62c2" name="Tiger Shark AX-1-0" hidden="false"/>
<categoryEntry id="5cc2-e8dd-56dc-3ee3" name="Orca Dropship" hidden="false"/>
<categoryEntry id="6378-7e55-095e-0771" name="Manta Super-Heavy Dropship" hidden="false"/>
<categoryEntry id="9303-5fa6-3e1f-fab9" name="Remote Sensor Tower" hidden="false"/>
<categoryEntry id="b412-7096-555b-6d1f" name="Drone Sentry Turret" hidden="false"/>
<categoryEntry id="205f-ea21-7aa4-f51d" name="Knarloc Riders" hidden="false"/>
<categoryEntry id="8b55-92b1-52d4-b39d" name="Great Knarloc" hidden="false"/>
<categoryEntry id="3353-9ce0-97e3-e5d5" name="Hammerhead" publicationId="e282-a216-345a-e73a" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="1b3c-ffd5-59f4-28b7" name="Commander Shadowsun" hidden="false" collective="false" import="true" targetId="ccb7-9961-bfa0-718f" type="selectionEntry"/>
<entryLink id="60c5-e844-b67e-53a6" name="Commander Farsight" hidden="false" collective="false" import="true" targetId="9b32-1123-1cf0-6714" type="selectionEntry"/>
<entryLink id="52ec-3506-4f0c-23e8" name="Commander" hidden="false" collective="false" import="true" targetId="9044-4216-a621-0d1a" type="selectionEntry"/>
<entryLink id="fd6d-26bf-3748-0b7c" name="Ethereal" hidden="false" collective="false" import="true" targetId="8a85-cdb3-e89c-52ea" type="selectionEntry"/>
<entryLink id="6bef-2e4c-e1cb-53a5" name="Cadre Fireblade" hidden="false" collective="false" import="true" targetId="1675-2edd-b2c3-6ecd" type="selectionEntry"/>
<entryLink id="4fd9-01f6-fca6-0ee6" name="Darkstrider" hidden="false" collective="false" import="true" targetId="0be5-d2af-5555-9676" type="selectionEntry"/>
<entryLink id="b643-609b-3661-f73f" name="Aun'Shi" hidden="false" collective="false" import="true" targetId="b763-de60-1c55-d78d" type="selectionEntry"/>
<entryLink id="6c2b-f477-bdf4-f44b" name="Aun'Va" hidden="false" collective="false" import="true" targetId="4369-6680-249a-223b" type="selectionEntry"/>
<entryLink id="3a81-e1d4-e3f3-9def" name="Longstrike" hidden="false" collective="false" import="true" targetId="c0db-3dcb-9e77-bead" type="selectionEntry"/>
<entryLink id="91dc-0b7d-de6e-c39f" name="Breacher Team" hidden="false" collective="false" import="true" targetId="8fdd-e4ec-3053-84b3" type="selectionEntry"/>
<entryLink id="4b7d-e22b-6520-68d5" name="Strike Team" hidden="false" collective="false" import="true" targetId="248a-af9d-cd8e-f3f8" type="selectionEntry"/>
<entryLink id="4b05-6423-9be9-30ad" name="Kroot Carnivores" hidden="false" collective="false" import="true" targetId="1552-d7b8-2ff8-938c" type="selectionEntry"/>
<entryLink id="7f0c-c990-dd21-54d2" name="Kroot Shaper" hidden="false" collective="false" import="true" targetId="ceb6-a16f-b5af-ee1e" type="selectionEntry"/>
<entryLink id="3705-17c2-0ee5-ea5b" name="Krootox Riders" hidden="false" collective="false" import="true" targetId="d505-d441-b527-9315" type="selectionEntry"/>
<entryLink id="fdf5-9156-0df2-1482" name="XV25 Stealth Battlesuits" hidden="false" collective="false" import="true" targetId="b582-714f-c28e-6f6a" type="selectionEntry"/>
<entryLink id="d1cc-c2c2-157f-b93f" name="Firesight Marksman" hidden="false" collective="false" import="true" targetId="665b-3ca2-f381-67b6" type="selectionEntry"/>
<entryLink id="573c-d206-d15f-e35a" name="XV95 Ghostkeel Battlesuit" hidden="false" collective="false" import="true" targetId="d40a-c9b4-107b-ef10" type="selectionEntry"/>
<entryLink id="b010-5fa9-3601-4b34" name="XV104 Riptide Battlesuit" hidden="false" collective="false" import="true" targetId="56ec-7f9d-d440-bf7a" type="selectionEntry"/>
<entryLink id="5501-3a85-6586-4d42" name="Pathfinder Team" hidden="false" collective="false" import="true" targetId="de3d-8155-6a93-8ce0" type="selectionEntry"/>
<entryLink id="23b9-9144-c1e0-6062" name="TX4 Piranhas" hidden="false" collective="false" import="true" targetId="e1e7-a443-94a5-a0a1" type="selectionEntry"/>
<entryLink id="21b2-9dd8-d6d1-f728" name="Tactical Drones" hidden="false" collective="false" import="true" targetId="4516-afed-f00c-bbb8" type="selectionEntry"/>
<entryLink id="be2d-99f2-9d2b-53b5" name="Vespid Stingwings" hidden="false" collective="false" import="true" targetId="2927-e93c-b881-e561" type="selectionEntry"/>
<entryLink id="b836-8ac0-2b6c-941a" name="Kroot Hounds" hidden="false" collective="false" import="true" targetId="bb8e-db81-b1a4-f268" type="selectionEntry"/>
<entryLink id="3e69-d070-a816-d983" name="TX7 Hammerhead Gunship" hidden="false" collective="false" import="true" targetId="964d-0b30-009f-2095" type="selectionEntry"/>
<entryLink id="2cca-3e84-67f5-48e8" name="TX78 Sky Ray Gunship" hidden="false" collective="false" import="true" targetId="b7d9-434a-7b7b-f1d8" type="selectionEntry"/>
<entryLink id="8526-bf4e-b632-d3ed" name="MV71 Sniper Drones" hidden="false" collective="false" import="true" targetId="fb9d-ca4a-6d1e-2350" type="selectionEntry"/>
<entryLink id="a863-40ca-82c0-1874" name="TY7 Devilfish" hidden="false" collective="false" import="true" targetId="2e13-e0a8-d776-6c07" type="selectionEntry"/>
<entryLink id="3225-61b2-599e-067d" name="Barracuda AX-5-2" hidden="false" collective="false" import="true" targetId="651d-7466-1bed-9a8a" type="selectionEntry"/>
<entryLink id="c9eb-cd51-2dd6-86eb" name="AX39 Sun Shark Bomber" hidden="false" collective="false" import="true" targetId="d779-f370-1603-177a" type="selectionEntry"/>
<entryLink id="47e2-ab93-2d4e-189f" name="Tidewall Shieldline (slot)" hidden="false" collective="false" import="true" targetId="ca0d-9690-4244-bacc" type="selectionEntry"/>
<entryLink id="2024-ca92-8630-70ae" name="Tidewall Droneport" hidden="false" collective="false" import="true" targetId="5f9b-0297-c7bc-7e6c" type="selectionEntry"/>
<entryLink id="b1f2-6169-2db3-6c31" name="Tidewall Gunrig" hidden="false" collective="false" import="true" targetId="5a84-5836-00a2-7bdd" type="selectionEntry"/>
<entryLink id="b516-d97b-21fe-6791" name="KV128 Stormsurge" hidden="false" collective="false" import="true" targetId="4dee-a775-0380-6b96" type="selectionEntry"/>
<entryLink id="946f-804d-f625-03e3" name="XV8 Crisis Battlesuits" hidden="false" collective="false" import="true" targetId="fa7a-9ba1-fcc4-b47f" type="selectionEntry"/>
<entryLink id="6109-b638-6b79-042f" name="XV8 Crisis Bodyguards" hidden="false" collective="false" import="true" targetId="3dca-5c02-78a2-bc20" type="selectionEntry"/>
<entryLink id="db67-5adf-01a4-fe2e" name="XV88 Broadside Battlesuits" hidden="false" collective="false" import="true" targetId="0872-9cc4-b270-199a" type="selectionEntry"/>
<entryLink id="8ecf-1798-f076-766b" name="Shas'o R'Myr" hidden="false" collective="false" import="true" targetId="3fa2-0fca-00dc-0d49" type="selectionEntry"/>
<entryLink id="d050-45ec-773f-c34b" name="Shas'o R'alai" hidden="false" collective="false" import="true" targetId="c80b-071f-b284-84fd" type="selectionEntry"/>
<entryLink id="5dd7-5701-a6f4-8c01" name="Great Knarloc" hidden="false" collective="false" import="true" targetId="036d-7cf6-1f57-30dc" type="selectionEntry"/>
<entryLink id="bdef-8368-0e61-0959" name="Knarloc Riders" hidden="false" collective="false" import="true" targetId="e252-9214-a45b-881c" type="selectionEntry"/>
<entryLink id="eefe-2009-c99b-fa51" name="Tiger Shark AX-1-0" hidden="false" collective="false" import="true" targetId="3efa-b7b1-8cf0-1106" type="selectionEntry"/>
<entryLink id="6cf6-691e-2e20-165c" name="AX3 Razorshark Strike Fighter" hidden="false" collective="false" import="true" targetId="9d79-1092-249d-7f8a" type="selectionEntry"/>
<entryLink id="3d20-11e3-f727-a5ad" name="DX-6 Remora Stealth Drone Squadron" hidden="false" collective="false" import="true" targetId="3ae2-0f03-847b-c01e" type="selectionEntry"/>
<entryLink id="4683-db77-9ed0-e688" name="Tiger Shark Fighter-Bomber" hidden="false" collective="false" import="true" targetId="4011-220b-f418-2a0a" type="selectionEntry"/>
<entryLink id="6992-7d36-66b0-b5b6" name="Manta Super-Heavy Dropship" hidden="false" collective="false" import="true" targetId="ba95-be6a-ee22-9ae7" type="selectionEntry"/>
<entryLink id="57da-fbaf-532e-1e2f" name="Orca Dropship" hidden="false" collective="false" import="true" targetId="3880-e803-d576-7f8d" type="selectionEntry"/>
<entryLink id="5601-b228-6ab5-305b" name="Remote Sensor Tower" hidden="false" collective="false" import="true" targetId="0ab3-8385-0be7-62da" type="selectionEntry"/>
<entryLink id="9e6b-435c-4020-2eda" name="Drone Sentry Turrets" hidden="false" collective="false" import="true" targetId="1d21-307c-187b-ed63" type="selectionEntry"/>
<entryLink id="64f5-db4c-e876-1937" name="TX7 Heavy Bombardment Hammerhead Gunship" hidden="false" collective="false" import="true" targetId="45b4-15fa-e594-bde0" type="selectionEntry"/>
<entryLink id="1ce1-e62b-029c-d1ca" name="TX7 Fire Support Hammerhead Gunship" hidden="false" collective="false" import="true" targetId="ed22-7125-fbf9-3f63" type="selectionEntry"/>
<entryLink id="4fd3-dcca-8e57-8919" name="Heavy Gun Drone Squadron" hidden="false" collective="false" import="true" targetId="577e-f8b4-42a8-ccf1" type="selectionEntry"/>
<entryLink id="22ea-6f9a-f1ee-e6d9" name="Piranha TX-42 Light Skimmers" hidden="false" collective="false" import="true" targetId="5b35-736a-6681-e1b4" type="selectionEntry"/>
<entryLink id="c8cd-bc2b-49b6-4806" name="Tetra Scout Speeder Team" hidden="false" collective="false" import="true" targetId="cde2-64f1-fad8-3dc6" type="selectionEntry"/>
<entryLink id="af54-6498-b490-4647" name="KX139 Ta'unar Supremacy Armour" hidden="false" collective="false" import="true" targetId="663c-3c40-e160-5654" type="selectionEntry"/>
<entryLink id="7a78-dc30-078f-d731" name="XV109 Y'vahra Battlesuit" hidden="false" collective="false" import="true" targetId="47a1-e920-109a-5bab" type="selectionEntry"/>
<entryLink id="417e-fa48-0dd6-ab7e" name="XV107 R'varna Battlesuit" hidden="false" collective="false" import="true" targetId="8abd-2bf1-d346-2361" type="selectionEntry"/>
<entryLink id="b701-381c-1f47-a818" name="XV9 Hazard Support Team" hidden="false" collective="false" import="true" targetId="2076-2b76-3ade-c420" type="selectionEntry"/>
<entryLink id="f381-e7e9-80fc-017c" name="Commander In XV81 Crisis Battlesuit" hidden="false" collective="false" import="true" targetId="2ffb-0c89-c69f-90b2" type="selectionEntry"/>
<entryLink id="576f-29ff-dcbc-de03" name="Commander In XV84 Crisis Battlesuit" hidden="false" collective="false" import="true" targetId="1ca8-12b4-8ce6-5bbb" type="selectionEntry"/>
<entryLink id="fbea-1d65-79ee-ee56" name="DX-4 Technical Drones" hidden="false" collective="false" import="true" targetId="d159-bffe-6ef1-ef2a" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="2a43-fe14-7278-383b" name="For the Greater Good" publicationId="8df9-0b3e-abea-3c15" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ba0-7df9-3f27-d4b1" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0d22-806b-bfc5-db54" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2bc-37e7-468c-5e76" type="instanceOf"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5642-ce25-4f9d-5cb3" type="instanceOf"/>
<condition field="selections" scope="force" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="unit" type="lessThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8f70-4411-2a13-96bf" type="instanceOf"/>
<condition field="selections" scope="force" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="unit" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>If this Detachment is carrying out an Aimed Fire order, then until the end of the turn, T'AU EMPIRE units in this Detachment can still make a shoot action if enemy units are in base contact with them, and they can target enemy units in base contact with friendly T'AU EMPIRE units from this Detachment. However, if they do either, subtract 1 from hit rolls for attacks made by those units when resolving those attacks.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="ccb7-9961-bfa0-718f" name="Commander Shadowsun" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="fd89-4825-353b-4fb3" type="max"/>
</constraints>
<profiles>
<profile id="d4fc-ed0b-7f71-629f" name="Commander Shadowsun" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<modifiers>
<modifier type="set" field="a56f-38ae-3917-aadc" value="4+">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c9a-c952-e65d-03e6" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">8"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
<profile id="d20a-3e1c-566a-a02f" name="Genius of Kauyon" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Once per battle, at the start of the Action phase, this unit can declare Kauyon even if Kauyon or Mont’ka has already been declared. Mont’ka and Kauyon cannot be both declared in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="86c6-9bb1-22f3-6945" name="Master of War" hidden="false" targetId="a04c-f866-5ae9-ab55" type="profile"/>
<infoLink id="db13-e83b-88c4-7606" name="Infiltrators" hidden="false" targetId="f07d-6c22-ac83-604c" type="rule"/>
<infoLink id="886f-349f-eac6-3e87" name="Stealth" hidden="false" targetId="b133-8e04-3e7b-9fd6" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5b2d-768e-a710-70fc" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="bb4a-976a-0f36-7f7a" name="Faction: T'au Sept" hidden="false" targetId="9810-74b4-8f85-fc9a" primary="false"/>
<categoryLink id="5867-ffee-e116-c469" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="455d-fde6-4c79-886c" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="e322-b370-dacc-e547" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="0e65-d6c1-1467-a005" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
<categoryLink id="49d1-3172-a2dd-2588" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="43a8-2075-7723-19f3" name="Battlesuit" hidden="false" targetId="cddc-e90c-2a2c-cc25" primary="false"/>
<categoryLink id="d65a-a371-7551-3cf0" name="Commander" hidden="false" targetId="ba97-8cad-a18a-626d" primary="false"/>
<categoryLink id="afb8-880e-8ac0-d9fd" name="XV22 Stalker" hidden="false" targetId="4d69-8ede-1cbf-6421" primary="false"/>
<categoryLink id="2a8a-4820-e229-8b35" name="Shadowsun" hidden="false" targetId="ae13-43d2-8a9b-6a49" primary="false"/>
<categoryLink id="d403-59d4-93bd-2ee4" name="Jet Pack" hidden="false" targetId="b9f7-43d5-dd6a-0b50" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7f6b-2425-7fe8-aed2" name="Fusion Blasters" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6be3-1a45-03a2-e51f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="46e4-81ad-ed3f-9380" type="min"/>
</constraints>
<profiles>
<profile id="2b29-da2d-11da-99b4" name="Fusion Blasters" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Heavy</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">18"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">2</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">10+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">4+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9036-3219-4ac3-cd6c" name="Close Combat Weapons" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31d4-aee4-a6cf-391f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf24-8a6b-cd22-7e10" type="max"/>
</constraints>
<profiles>
<profile id="7405-9bae-df51-dd61" name="Close Combat Weapons" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">9+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">10+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee08-4c5b-8605-576d" name="Command-link Drone" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="33cf-8a2b-14ab-7916" type="max"/>
</constraints>
<profiles>
<profile id="0f80-635f-6fcb-9d8c" name="Command-link" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">If this unit has a Command-link Drone, then after this unit makes a Move action, you can select one friendly T’au Empire unit within 6" of this unit. Until the end of the phase, re-roll hit rolls of 1 for attacks made with ranged weapons by that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c9a-c952-e65d-03e6" name="Shield Drones" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae37-cb01-e5e2-40ee" type="max"/>
</constraints>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="35e5-2a9d-533f-281e" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="11.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9b32-1123-1cf0-6714" name="Commander Farsight" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="1687-934a-01d1-5bbd" type="max"/>
</constraints>
<profiles>
<profile id="c4db-a918-357d-6fce" name="Commander Farsight" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">8"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
<profile id="cc80-f2ef-d8e9-0e7e" name="Genius of Mont'ka" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Once per battle, at the start of the Action phase, this unit can declare Mont'ka even if Kauyon or Mont’ka has already been declared. Mont’ka and Kauyon cannot be both declared in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="a8cf-3797-6ed5-6c86" name="Way of the Short Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Re-roll hit rolls of 1 made for friendly Farsight Enclave units when using melee weapons whilst they are within 6" of this unit (and ranged weapons, if the target is an Orks unit).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e2f1-f429-da59-c6ac" name="Master of War" hidden="false" targetId="a04c-f866-5ae9-ab55" type="profile"/>
<infoLink id="8041-489d-6665-2b29" name="Deep Strike" hidden="false" targetId="8fc3-5045-3aa5-00ce" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3f2b-ffe2-d403-4a9e" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="24fb-9f7d-0d8c-ed53" name="Faction: Farsight Enclaves" hidden="false" targetId="d6bc-c960-d9be-925a" primary="false"/>
<categoryLink id="7de1-84a1-4f4c-5e49" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="8162-2347-422c-b1a1" name="Jet Pack" hidden="false" targetId="b9f7-43d5-dd6a-0b50" primary="false"/>
<categoryLink id="df15-919b-c96c-08a9" name="Battlesuit" hidden="false" targetId="cddc-e90c-2a2c-cc25" primary="false"/>
<categoryLink id="2e70-d5c6-d554-1e09" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="592d-3655-07f7-1633" name="Commander" hidden="false" targetId="ba97-8cad-a18a-626d" primary="false"/>
<categoryLink id="ebb2-1ae0-d99c-8cb8" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
<categoryLink id="17fd-2b01-93ba-87b1" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="9cc0-2b1c-99a4-9700" name="Farsight" hidden="false" targetId="97ee-28ed-a428-0145" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7f9f-7c63-9b4e-a6d4" name="High-intensity Plasma Rifle" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9568-4d3a-b94a-22a2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45d7-7d80-0f31-d63c" type="max"/>
</constraints>
<profiles>
<profile id="4166-4f5e-e13d-95cf" name="High-intensity Plasma Rifle" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Heavy </characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">30"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">1</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">6+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">6+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Rapid Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7e0f-1ab6-e6d5-cdc8" name="Rapid Fire" hidden="false" targetId="5b2f-f499-bdcd-e45d" type="rule"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8088-e843-3ed0-9b37" name="The Dawn Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c25d-62f9-f19c-189c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f69-d046-4369-270e" type="max"/>
</constraints>
<profiles>
<profile id="36ec-cbcb-b776-f0ba" name="The Dawn Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">x2</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">7+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f715-97ce-5a5c-127f" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="13.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9044-4216-a621-0d1a" name="Commander" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="1466-da3f-0d27-dace" value="1.0">
<conditions>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="216b-f9d7-a388-0310" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="45b4-9048-c00d-4b82" name="Commander" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<modifiers>
<modifier type="set" field="a56f-38ae-3917-aadc" value="5+">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3e32-b52d-4fb6-9a61" type="equalTo"/>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="904a-178c-f29c-e404" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="a56f-38ae-3917-aadc" value="4+">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3e32-b52d-4fb6-9a61" type="equalTo"/>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="904a-178c-f29c-e404" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="606d-344a-bc3d-9dce" value="20"">
<conditions>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2ab-de33-66b9-c2bd" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">8"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9fb9-1d87-fa28-06da" name="Deep Strike" hidden="false" targetId="8fc3-5045-3aa5-00ce" type="profile"/>
<infoLink id="bec0-fdf6-f7b1-9013" name="Master of War" hidden="false" targetId="a04c-f866-5ae9-ab55" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a247-b448-1610-3b6a" name="Battlesuit" hidden="false" targetId="cddc-e90c-2a2c-cc25" primary="false"/>
<categoryLink id="4ebf-feb2-84b9-98ad" name="Commander" hidden="false" targetId="ba97-8cad-a18a-626d" primary="false"/>
<categoryLink id="2915-edf7-289e-819b" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="0b88-e452-c68f-0189" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="2830-beb6-49f7-e53c" name="Faction: <Sept>" hidden="false" targetId="13b0-eb31-2aeb-6a2b" primary="false"/>
<categoryLink id="9143-896e-bc63-3b7a" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="60c9-1c2c-2033-bca5" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="4a3a-d1e7-428b-694c" name="Jet Pack" hidden="false" targetId="b9f7-43d5-dd6a-0b50" primary="false"/>
<categoryLink id="bc19-731a-d9cc-b13f" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="5276-f7af-ada1-d89f" name="Close Combat Weapons" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8640-2d37-20c6-b951" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d12f-c573-08ca-9006" type="max"/>
</constraints>
<profiles>
<profile id="771b-ce96-b69d-97ef" name="Close Combat Weapons" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">9+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">10+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="b777-5839-cba0-dce3" name="Battlesuit" hidden="false" collective="false" import="true" defaultSelectionEntryId="c02e-38f7-7eaf-c396">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6288-ea01-0bd0-6792" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ef5-aac0-3666-9d32" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="c02e-38f7-7eaf-c396" name="XV8 Crisis Battlesuit" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="198a-33be-3c94-d770" name="XV8 Crisis" hidden="false" targetId="c963-64d3-9786-afec" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3e32-b52d-4fb6-9a61" name="XV8-02 Crisis Iridium Battlesuit" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="f47c-f1fc-f9b9-0255" name="XV8 Crisis" hidden="false" targetId="c963-64d3-9786-afec" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b3ea-4ccf-5f9d-554e" name="XV85 Enforcer Battlesuit" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a324-31b9-6516-6d8b" name="Enforcer Battlesuit" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">At the start of the Damage phase, if this unit has an XV85 Enforcer Battlesuit, you can remove one blast marker from this unit. Small blast markers must be removed before large blast markers.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5931-bf98-bd27-255e" name="XV85 Enforcer" hidden="false" targetId="e52e-ca49-457b-b0bf" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c2ab-de33-66b9-c2bd" name="XV86 Coldstar Battlesuit" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="f691-a7f0-81d1-fe0e" name="XV86 Coldstar" hidden="false" targetId="997e-85b7-b0aa-3b65" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="b318-b656-3fc2-7cb6" name="Commander Weapons (2-4)" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" defaultSelectionEntryId="6fd6-8878-78ee-ad16">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d68-1b1f-291d-9303" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c9f6-d67f-7eb8-6bc9" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7aef-9aad-8044-c0ea" name="High-output Burst Cannon" publicationId="6e11-42ed-c084-ce74" hidden="true" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2ab-de33-66b9-c2bd" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="c01d-179f-a499-60ef" value="1.0"/>
<modifier type="set" field="hidden" value="false"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="194e-65d0-5531-8405" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c01d-179f-a499-60ef" type="min"/>
</constraints>
<profiles>
<profile id="4c49-36d4-aa07-6ee7" name="High-output Burst Cannon" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Heavy</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">18"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">4</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">8+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6372-c914-9106-3ece" name="Airbursting Fragmentation Projector" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f6c-3001-b90f-fa6e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9488-d5ee-5f2a-9d8e" name="Airbursting Fragmentation Projector" hidden="false" targetId="a0f6-4fcc-64b0-ab22" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="30a6-e86b-9333-bbaf" name="Fusion Blaster" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a17-58e0-ee71-bf11" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6e08-80f1-135c-1c8b" name="Fusion Blaster" hidden="false" targetId="0f4e-ab4d-4ae5-3382" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6fd6-8878-78ee-ad16" name="Missile Pod" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a69e-2aff-8923-4d05" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3208-6ad6-aa59-aced" name="Missile Pod" hidden="false" targetId="e5db-08f5-e1d6-fc6b" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d0e1-7b19-57f9-035b" name="Burst Cannon" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4dd-0bbe-674a-5d60" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8b4d-cb6f-2fe4-e0f7" name="Burst Cannon" hidden="false" targetId="6b5f-7c5d-595e-2c2d" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b458-0d9e-8986-ddd8" name="Cyclic Ion Blaster" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="3198-54aa-83fd-56c2" value="0.0">
<conditions>
<condition field="selections" scope="9044-4216-a621-0d1a" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2ab-de33-66b9-c2bd" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3198-54aa-83fd-56c2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2352-8af2-6194-9606" name="Cyclic Ion Blaster" hidden="false" targetId="317b-ee9c-836d-c55d" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a7d-8396-70bb-67cd" name="Flamer" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df24-f0ae-ee13-5cf9" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4291-718a-99fc-6a80" name="Flamer" hidden="false" targetId="8ab4-d68e-4164-1448" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b4e3-84e7-1d60-5712" name="Plasma Rifle" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae1d-2b63-7b06-b2e0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3058-aee5-f707-f1bd" name="Plasma Rifle" hidden="false" targetId="32bf-abd8-f77b-a925" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="216b-f9d7-a388-0310" name="Drones (Power Rating +1) (0-2)" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="21ed-e9d2-1d72-ac7f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="819a-31b7-d3c1-5329" name="Marker Drone" hidden="false" collective="false" import="true" targetId="5494-c173-ce18-d106" type="selectionEntry"/>
<entryLink id="0806-7cff-3c2d-a5af" name="Gun Drone" hidden="false" collective="false" import="true" targetId="fc45-6ff1-407e-3515" type="selectionEntry"/>
<entryLink id="1b67-e2b6-5e4e-f9b9" name="Shield Drone" hidden="false" collective="false" import="true" targetId="904a-178c-f29c-e404" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4cc4-c106-cc7b-6dcf" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4369-6680-249a-223b" name="Aun'Va" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="59c2-fbc5-b312-4114" type="max"/>
</constraints>
<profiles>
<profile id="38dc-f9ea-2dd6-7dd8" name="Aun'Va (3 models)" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">2</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">2</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">10+</characteristic>
</characteristics>
</profile>
<profile id="e07d-2f7d-fa9c-6c2f" name="Supreme Loyalty" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">You can re-roll Morale tests taken for T’au Empire units in this unit’s Detachment whilst this unit is on the battlefield.</characteristic>
</characteristics>
</profile>
<profile id="a9aa-c0f9-00d6-c00c" name="Paradox of Duality" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Subtract 1 from wound rolls for attacks that target this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c5ae-3464-8643-0eab" name="Failure Is Not an Option" hidden="false" targetId="786b-87a7-09ef-d92c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="208a-a90d-d9bb-196a" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="5b0b-5e94-f88d-228e" name="Faction: T'au Sept" hidden="false" targetId="9810-74b4-8f85-fc9a" primary="false"/>
<categoryLink id="df99-d14d-2965-ceef" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="fe44-9d42-c9bd-204d" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="2f4e-7987-80f5-b4db" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="7b6a-f76e-d969-23ad" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="a71a-8a97-00fa-8f04" name="Aun'Va" hidden="false" targetId="9ecd-5434-8be8-cc2e" primary="false"/>
<categoryLink id="7961-d3e5-a3d2-0dad" name="Ethereal" hidden="false" targetId="2986-dbe1-0ca8-5a2c" primary="false"/>
<categoryLink id="fda0-f835-fad8-c35b" name="Ethereal Guard" hidden="false" targetId="ef60-afbc-6e56-324b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8434-1971-add6-6220" name="Honour Blades" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9954-0d40-fca4-4f93" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe54-8562-4c3a-2a67" type="max"/>
</constraints>
<profiles>
<profile id="c86c-04e6-0e70-f5f6" name="Honour Blades" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">8+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1851-5b85-b241-6ed0" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b763-de60-1c55-d78d" name="Aun'Shi" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="318b-2c2a-88d5-e3ca" type="max"/>
</constraints>
<profiles>
<profile id="6a71-a2dd-452a-4614" name="Aun'Shi" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">4+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
<profile id="aa1e-f41d-74c9-ce28" name="Blademaster" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Re-roll wound rolls of 1 for attacks made with melee weapons by this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a9a5-c4d6-eb9e-6976" name="Failure Is Not an Option" hidden="false" targetId="786b-87a7-09ef-d92c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="49fa-6bef-61ca-fb0b" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="a582-26a2-3cdf-b3f0" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="4235-69c3-d06e-484a" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="b3df-5061-7cb4-30f9" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="9132-1626-c847-b12d" name="Ethereal" hidden="false" targetId="2986-dbe1-0ca8-5a2c" primary="false"/>
<categoryLink id="4002-7a80-c6d0-b7dd" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="7368-ccec-7b4c-cf92" name="Faction: Vior'la Sept" hidden="false" targetId="9cc3-8fbd-371a-e622" primary="false"/>
<categoryLink id="c2bc-9392-720d-6cf7" name="Aun'Shi" hidden="false" targetId="22a3-9554-3dd0-a261" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f0e7-fdec-d384-c165" name="Honour Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4fe-7b19-ed32-36cd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b305-2e33-cc63-93e5" type="max"/>
</constraints>
<profiles>
<profile id="87f5-51ba-e473-b446" name="Honour Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1435-9966-33c3-0a07" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="4.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a85-cdb3-e89c-52ea" name="Ethereal" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="1466-da3f-0d27-dace" value="1.0">
<conditions>
<condition field="selections" scope="8a85-cdb3-e89c-52ea" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c4ad-ffc9-007c-9a5d" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="e3d2-ef38-ada8-eeb2" name="Ethereal" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="8"">
<conditions>
<condition field="selections" scope="8a85-cdb3-e89c-52ea" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="6c93-751a-7871-e1f0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="a56f-38ae-3917-aadc" value="9+">
<conditions>
<condition field="selections" scope="8a85-cdb3-e89c-52ea" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="904a-178c-f29c-e404" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">4+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">10+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="db02-964a-928b-a61f" name="Failure Is Not an Option" hidden="false" targetId="786b-87a7-09ef-d92c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e9fd-ceb4-20b7-eeb9" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="952c-3133-26a3-639e" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="f0fb-a705-7c49-9f14" name="Faction: <Sept>" hidden="false" targetId="13b0-eb31-2aeb-6a2b" primary="false"/>
<categoryLink id="db18-1b9a-1af7-8a68" name="Ethereal" hidden="false" targetId="2986-dbe1-0ca8-5a2c" primary="false"/>
<categoryLink id="0b34-52f2-88c7-9582" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="074e-54bc-ce9a-ed49" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="3fbf-93d9-f81b-ffbe" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ec3f-8ef9-7651-9ab8" name="Honour Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e63d-f857-d560-c0b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e979-1f11-1d46-7b05" type="max"/>
</constraints>
<profiles>
<profile id="7b07-184b-7472-f604" name="Honour Blade" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">8+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6c93-751a-7871-e1f0" name="Hover Drone" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d066-60fa-d550-3578" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="ea12-a8de-0ba3-f711" name="Jet Pack" hidden="false" targetId="b9f7-43d5-dd6a-0b50" primary="false"/>
<categoryLink id="c6d6-61f4-f1f7-74c2" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c4ad-ffc9-007c-9a5d" name="Drones (Power Rating +1) (0-2)" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="934c-7dce-ea0c-c15a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="9cbe-0ec4-ee1d-92e1" name="Gun Drone" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ed0-732d-524d-6856" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e5a1-5e5a-3996-1207" name="Pulse Carbine" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a00-c882-b9b8-0572" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9809-f3f7-24f3-0f55" type="max"/>
</constraints>
<infoLinks>
<infoLink id="dbe2-d1a6-82c0-1e41" name="Pulse Carbine" hidden="false" targetId="d21d-dac9-9750-3132" type="infoGroup"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c531-8ad4-97a4-74c8" name="Marker Drone" hidden="false" collective="false" import="true" targetId="5494-c173-ce18-d106" type="selectionEntry"/>
<entryLink id="5314-7419-a480-e656" name="Shield Drone" hidden="false" collective="false" import="true" targetId="904a-178c-f29c-e404" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5acc-19d2-81aa-fb0d" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1675-2edd-b2c3-6ecd" name="Cadre Fireblade" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="1466-da3f-0d27-dace" value="1.0">
<conditions>
<condition field="selections" scope="1675-2edd-b2c3-6ecd" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0a51-771b-2524-a131" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="7c94-fbf6-faa9-8306" name="Cadre Fireblade" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<modifiers>
<modifier type="set" field="a56f-38ae-3917-aadc" value="7+">
<conditions>
<condition field="selections" scope="1675-2edd-b2c3-6ecd" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="904a-178c-f29c-e404" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">2+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">6</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">8+</characteristic>
</characteristics>
</profile>
<profile id="22be-ae10-a954-77ee" name="Volley Fire" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Add 1 to the Attacks characteristic of <Sept> units within 6" of any friendly <Sept> Cadre Fireblades whilst they are making attacks with Pulse Carbines and Pulse Rifles that target a unit within half range of the weapon being used for that attack.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c680-299f-255d-9dfd" name="Cadre Fireblade" hidden="false" targetId="ce4a-3042-cfc9-6629" primary="false"/>
<categoryLink id="8b2f-da2e-259f-8fe7" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="3f6c-671c-16f1-93fe" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="745e-89d6-732b-2cc1" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="b0ae-68b1-dd8c-c789" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="ed4b-58a4-a865-1aab" name="Faction: T'au Empire" hidden="false" targetId="0ab2-e0c9-6254-5de7" primary="false"/>
<categoryLink id="40c0-71c7-888e-da00" name="Faction: <Sept>" hidden="false" targetId="13b0-eb31-2aeb-6a2b" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d364-2a07-30af-fbab" name="Pulse Rifle" publicationId="6e11-42ed-c084-ce74" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5fe-a177-94fb-265d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eefe-e541-fcb6-47fc" type="max"/>
</constraints>
<profiles>
<profile id="cb4b-4934-7004-66f5" name="Pulse Rifle" publicationId="6e11-42ed-c084-ce74" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Small Arms</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">30"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">9+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">10+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Rapid Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b010-6a39-f757-f47d" name="Rapid Fire" hidden="false" targetId="5b2f-f499-bdcd-e45d" type="rule"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>