forked from BSData/wh40k-7th-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tau - Codex.cat
11503 lines (11493 loc) · 717 KB
/
Tau - Codex.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="3c888d8a-9391-6ae0-9af3-c2d7587098c2" revision="33" gameSystemId="e1ebd931-a209-3ce4-87b4-d9918d25530b" gameSystemRevision="23" battleScribeVersion="1.15" name="Tau Empire: Codex (2013)" authorName="Amadeusz Sadowski" authorContact="[email protected]" authorUrl="http://battlescribedata.appspot.com/#/repo/wh40k" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<entries>
<entry id="fb367433-58d4-8e73-798d-a739f074020a" name="Air Superiority Wing" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Apocalypse" page="177">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="6f4e88f6-df35-df4d-bdfc-6b02851048f2" name="Air Superiority" hidden="false">
<description>Models form this formation have +1 To Hit when shooting at enemy Flyers, Super-heavy Flyers, Jetbikes, Flying Monstrous Creatures, or Flying Gargantuan Creatures.</description>
<modifiers/>
</rule>
<rule id="f5a36a65-4b47-e710-1290-9b8fbb320fd9" name="Networking Drones" hidden="false">
<description>As long as at least one model from the formation is on the battlefield, then at start of the Tau Shooting phase, the Tau player gains D3 markerlight counters that can be placed on any enemy units.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="1103-46b3-c774-3ac0" targetId="13602f3a-b73f-1b41-17a0-dca7782d4bf0" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="5.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="624c35d9-cb7e-26b8-1d3a-77a4bc324d57" name="Ambush Spearhead" points="75.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="11">
<entries/>
<entryGroups>
<entryGroup id="d1b74523-ab8b-5937-d056-dc93e603ae99" name="Tanks" minSelections="1" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="7296e9fd-a1e6-ea61-d199-40f4f8820f49" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers/>
</link>
<link id="3d17ea13-c0af-7cd3-5d0c-2fed107ea2b0" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="170f928d-d3e7-3035-d813-4622f7226b2d" name="Ambush" hidden="false" book="Spearhead_Expansion.pdf" page="11">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="b8ba50d8-5435-cfca-ba05-3ef88f0d2392" name="Archeotech Spearhead" points="30.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="13">
<entries/>
<entryGroups>
<entryGroup id="524010ee-5173-9634-44bc-876ff74198b7" name="Tanks" minSelections="1" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="30d0b43a-591a-f65d-d63b-6d3783993dc0" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers/>
</link>
<link id="320b2bfa-95df-e991-916a-5a4ea7fa4ec0" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="3500c91f-b67c-4bbe-490f-33282d8b193b" name="Experimental Upgrades" hidden="false" book="Spearhead_Expansion.pdf" page="13">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="d041ab2d-f3dd-7cb1-3af2-06d55adfb0cb" name="Armoured Spearhead" points="60.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="11">
<entries/>
<entryGroups>
<entryGroup id="dc14dc0c-437b-84b2-f9f1-13a7a5b977c3" name="Tanks" minSelections="1" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="d27f8b92-adc7-e9f7-ebe9-e46d885da00f" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers/>
</link>
<link id="e988ae73-017c-df8d-3ab0-c490e26fdbd2" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="50b3d863-dd35-3aca-cca7-6ee3f3521de4" name="Armoured Behemoths" hidden="false" book="Spearhead_Expansion.pdf" page="11">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="bc32b577-d8d4-85ce-6a7c-5bf755e0c854" name="Counterstrike Cadre" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Apocalypse" page="178">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="cffd8b68-ecc6-da50-b3c1-9e158064dbff" name="Tactical Surge" hidden="false">
<description>In their first turn, or the turn when they deploy if placed in Strategic Reserve, all vehicles in the formation are Fast Vehicles.</description>
<modifiers/>
</rule>
<rule id="b5998508-d35c-1fbb-6214-91603ffc7f39" name="Precision Guidance" hidden="false">
<description>All units in the formation that are shooting at enemies that are within 12" of Strategic Objective ca re-roll failed To Hit rolls.</description>
<modifiers/>
</rule>
<rule id="327f-2f28-5d31-b53f" name="Formation Restrictions (Counterstrike Cadre)" hidden="false">
<description>Each unit in the formation must take a Devilfish.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="81d8-1504-0e90-3b3f" targetId="b4b37bde-b8c3-48f4-af53-bdc989ad2cfd" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="ffd0-20e6-16e5-0335" targetId="2559412b-ba0a-4a9b-9ded-581e828cb142" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="4.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="fbf7a142-7a38-74fa-0813-e21336ebfa41" name="Destroyer Spearhead" points="75.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="18">
<entries/>
<entryGroups>
<entryGroup id="486e2689-c36b-222c-246a-3ef42d5324bd" name="Choices" minSelections="1" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="33300892-dc2b-bc19-2030-d52a6ec16c0a" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers/>
</link>
<link id="ef73a4c7-78fb-2e25-0cf8-63e8c2ca4e9a" targetId="bfd56338-fe82-4182-9e79-ca579c29e949" linkType="entry">
<modifiers/>
</link>
<link id="617bd4d5-5dca-e868-9b15-b924775d51ee" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers/>
</link>
<link id="b0e817ee-c9ec-4029-0980-9a703518d72f" targetId="0ce87ee0-0210-4c87-96da-a3bba62ce7bd" linkType="entry">
<modifiers/>
</link>
<link id="9ae1a17c-9416-cd84-4797-0bc36a72e252" targetId="12563cfa-cb76-45d0-8a7e-5664309a8de9" linkType="entry">
<modifiers/>
</link>
<link id="51b51cf5-d257-21e7-e5a8-363fd406fa5c" targetId="e224a425-6590-2af5-ae2d-e0fd4bdf1fda" linkType="entry">
<modifiers/>
</link>
<link id="ead75e2b-5119-d6a6-582c-f4033d7608cd" targetId="5b99a20b-1940-60df-c927-a74e8a5678a7" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="8451319c-0e32-f4ef-ad17-3854c96f93bb" name="Preparatory Barrage" hidden="false" book="Spearhead_Expansion.pdf" page="18">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="567fd298-c39c-da31-8947-5fcc857bff5e" name="Drone Perimeter Defence Team" points="25.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Imperial Armour Apocalypse" page="86">
<entries>
<entry id="f5202b3a-efc8-be5b-19ab-e13bbb0700cd" name="DX-4 Technical Drone" points="20.0" categoryId="(No Category)" type="model" minSelections="0" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Imperial Armour Apocalypse" page="86">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="25ae-4693-1afb-4420" profileTypeId="2d6001b0-980e-46d2-bcc2-a9fc60109afd" name="DX-4 Technical Drone" hidden="false" book="">
<characteristics>
<characteristic characteristicId="c2b4b061-a0fd-499d-8a3d-6ee52587cbd5" name="Unit Type" value="Jet Pack Infantry (Drone)"/>
<characteristic characteristicId="5ee4ff0b-b244-4670-9d05-91d10f80c32e" name="WS" value="2"/>
<characteristic characteristicId="f6f92f00-8bb1-4afa-8ccb-46310b7dd5e5" name="BS" value="2"/>
<characteristic characteristicId="da036dbb-32c2-430a-9dd5-aa74e0c4f74b" name="S" value="3"/>
<characteristic characteristicId="3f9ed75c-36cd-4169-9cef-48391bb55cfd" name="T" value="4"/>
<characteristic characteristicId="17ee558f-3014-4bd2-afc1-b474d8d2b7a8" name="W" value="1"/>
<characteristic characteristicId="a558b3ef-04d0-440e-a312-bac3255bf592" name="I" value="4"/>
<characteristic characteristicId="5dff3e7c-e024-4030-a71d-03195ec06ea7" name="A" value="1"/>
<characteristic characteristicId="4a42059d-12cd-4c1f-a4c7-bb569d13eeea" name="Ld" value="7"/>
<characteristic characteristicId="b215fe72-dbce-4ad6-89ec-c4bb3962c39d" name="Save" value="4+"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="333cf3f3-a09a-295b-c04f-089404012761" name="Networked Defence" hidden="false" book="Imperial Armour Apocalypse" page="86">
<description>Each unit in this formation must be placed within 12" of another unit in this formation.</description>
<modifiers/>
</rule>
<rule id="2527775e-ea32-7b09-d895-02970d5d5548" name="Technical Support" hidden="false" book="Imperial Armour Apocalypse" page="86">
<description>A DX-4 Technical Drone that spends a turn in base contact with a damaged Sentry Turret can repair a destroyed weapon on a roll of 5+.</description>
<modifiers/>
</rule>
<rule id="471edf56-1fc1-d8ca-cb43-bb1d80177f9e" name="Hold the Line" hidden="false" book="Imperial Armour Apocalypse" page="86">
<description>Drones in this formation are allowed to re-group regardless of the amount of casualties they have sustained.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="6b208531-6a4e-d17c-2fe4-3dbdf6e95569" targetId="c1b99bf8-9ffb-401d-ab07-bba47e5cb4a6" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="a66b6bc7-1d46-d272-cb83-680f14d7980e" targetId="80e30ae0-8ca0-938d-81bf-87532c1599e5" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="2e5e72e1-5121-6087-5b90-222ac763d72a" targetId="12563cfa-cb76-45d0-8a7e-5664309a8de9" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="8d791142-157a-cc83-5217-99a69a92b388" targetId="2cd4e583-478c-4c23-893d-d49f426df7f3" linkType="entry">
<modifiers/>
</link>
</links>
</entry>
<entry id="211a-1498-588b-616a" name="Drone-net VX1-0" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Damocles" page="58">
<entries/>
<entryGroups>
<entryGroup id="7b30-2866-a8fe-82f4" name="Gun, Marker and Shield Drones" minSelections="12" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="7cd3-c8d3-80d3-1daa" targetId="7919-95f8-49d5-c07e" linkType="entry">
<modifiers/>
</link>
<link id="b39b-f097-3be3-62b2" targetId="16dc-e048-6fca-21a1" linkType="entry">
<modifiers/>
</link>
<link id="0db1-17f1-be48-4301" targetId="e529-028c-7c50-c786" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="0bc6-9eeb-ed0d-dbef" name="Formation Restrictions (Drone-net VX1-0)" hidden="false">
<description>All drones that are taken must be organized into units of 4 or more drones. These units may include different types of drones if desired.</description>
<modifiers/>
</rule>
<rule id="d76e-b0ed-bbaf-c38f" name="Improved Firing Solutions" hidden="false">
<description>All drones in this formation add 1 to their BS.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="02eb-aec2-c21d-e7f9" targetId="0f18-7ce8-a629-d984" linkType="entry">
<modifiers/>
</link>
<link id="a931-fd3e-47fe-34fb" targetId="1d9d-b1b5-115d-3419" linkType="entry">
<modifiers/>
</link>
<link id="b4f8-3bd9-0c39-4c21" targetId="0513-b918-84d1-c3ea" linkType="entry">
<modifiers/>
</link>
<link id="5040-3ac7-a3a1-8971" targetId="1b7b-ade1-37c4-914b" linkType="entry">
<modifiers/>
</link>
<link id="7c25-fd30-d5eb-12ea" targetId="28c2-26a3-980b-1a06" linkType="entry">
<modifiers/>
</link>
</links>
</entry>
<entry id="c958-546d-88aa-8cbd" name="Ethereal Council" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Damocles" page="55">
<entries/>
<entryGroups>
<entryGroup id="954c-e7a6-3dca-2ba4" name="Ethereals" defaultEntryId="a42f-ba08-3172-b831" minSelections="3" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="ec87-1b84-9b20-c6a2" targetId="dbd1d210-a812-6578-d6a5-677e45e0fe22" linkType="entry">
<modifiers/>
</link>
<link id="edb0-8a46-056b-333d" targetId="c37adcc6-69a3-4281-be3b-afc70cbafa52" linkType="entry">
<modifiers/>
</link>
<link id="a42f-ba08-3172-b831" targetId="d5af2c1a-5356-4fc7-8b77-b059c362c47c" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="5.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="4838-0028-e6e1-ec22" name="Formation Restrictions (Ethereal Council)" hidden="false">
<description>The council must contain at least three characters.</description>
<modifiers/>
</rule>
<rule id="2ad3-f63c-1d90-f43d" name="Fanatical Fervour" hidden="false">
<description>The range of the Failure Is Not An Option special rule is increased from 12" to 24" for all of the models in the Ethereal Council that have the rule. However, if all of the characters in the council are removed as casualties in a mission that uses Strategic Victory Points, then the opposing side receives one additional Strategic Victory Point.</description>
<modifiers/>
</rule>
<rule id="e09f-1ab5-8d98-8917" name="Collective Elemental Power" hidden="false">
<description>Each character in this formation may invoke one additional elemental power when they use the Invocation of the Elements special rule.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="5f7f5874-5c19-f14d-4e3b-87cb732f9834" name="Firebase Support Cadre" points="0.0" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Tau Firebase Support Cadre Dataslate">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="908f7a34-8ac3-8541-d211-2272533dc272" name="Bane of Angels" hidden="false" book="Tau Firebase Support Cadre Dataslate">
<description>All units in this formation have the Preferred Enemy (Space Marines) special rule. However, all enemy Space Marine units have the Hatred (Tau Firebase Support Cadre) special rule. The category ‘Space Marines’ comprises all units taken from the following codexes: Space Marines, Blood Angels, Dark Angels, Grey Knights and Space Wolves.</description>
<modifiers/>
</rule>
<rule id="30ea-59f2-59af-b70d" name="Formation Restrictions (Firebase Support Cadre)" hidden="false">
<description>All XV88 Broadside Teams must have 3 models (excluding Drones).</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="34d30b9c-9f2c-297d-f32d-ecd54c9c24f4" targetId="cecabc47-5a5d-64d4-6e99-5755d4907be2" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="4ae11e3c-dd89-ca13-aa97-dacd398e434b" targetId="13fd870c-6856-b7d4-aba7-2a50e2c1a634" linkType="rule">
<modifiers/>
</link>
<link id="c470-4d4e-027a-596d" targetId="bfd56338-fe82-4182-9e79-ca579c29e949" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="f5bb-43b1-6188-db51" name="Hammerhead Interdiction Cadre" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Damocles" page="59">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="1226-ee97-9411-c6b9" name="Markerlight Targeting Array" hidden="false">
<description>As long as the Command Vehicle of this formation has not been wrecked or suffererd an Explodes! result, the Tau Empire player gains D3+1 markerlight counters per turn. These are placed at the start of the Tau Empire Shooting phase on any enemy unit within line of sight of the Command Vehicle.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="bb9d-a6a2-1677-2f9f" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="5.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="f4c0-69d0-2021-8371" name="Hunter Cadre" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Damocles" page="56">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="5d99-e4fb-7d50-12d9" name="Efficient Command Structure" hidden="false">
<description>If the Strategic Reserves mission special rule is being used, this formation may arrive from Strategic Reserve from the first game turn onwards.</description>
<modifiers/>
</rule>
<rule id="4157-146c-f2ac-6dbe" name="Optimized Organisation" hidden="false">
<description>The range of the Supporting Fire special rule is increased from 6" to 12" for all of the models in the formation that have the rule, as long as they are firing in support of a unit from the same formation.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="d8e8-6e4d-5079-6263" targetId="7316b9dd-cd51-4e03-b198-f7492f3cb15a" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="5685-19e1-8df2-63fb" targetId="5b84d7be-d9ac-0795-54b8-9fa60a2c4da6" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="9d19-005c-d739-bebd" targetId="467cef28-773c-943d-0ab1-51ce65a9d623" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="63da-35eb-1222-c800" targetId="2559412b-ba0a-4a9b-9ded-581e828cb142" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="fdee-b504-7e9d-3707" targetId="c69c39d1-4421-4f54-be76-62c811b72428" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="dab4-7bda-33fb-c15e" targetId="f0fbbf26-a0db-4f38-8a3b-fd549232910e" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="6.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="ab3b-6f95-f410-685a" targetId="490bcf2a-9457-48c1-aa7d-8180048b2d1b" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="54d7-f5a5-1370-8456" targetId="b4b37bde-b8c3-48f4-af53-bdc989ad2cfd" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="5405-4d43-7fef-d628" targetId="01578968-6d8c-473b-90b9-25e21b08797b" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="2b94-3ced-8267-3d04" targetId="2cd4e583-478c-4c23-893d-d49f426df7f3" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="b774-1dcf-1d83-9476" targetId="4a90e450-d04c-4f28-9f69-a2f43f9d4d8e" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="6.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="927e-b185-7c2c-4dcc" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="6.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="5f2f-420b-ce8d-906b" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="6f34-17e9-ffd3-af0e" targetId="0ce87ee0-0210-4c87-96da-a3bba62ce7bd" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="90cb-6478-8fbe-13be" targetId="2aa527e2-c420-4192-80f6-deedf1106c06" linkType="rule">
<modifiers/>
</link>
<link id="f1a1-5336-d518-c3bf" targetId="bfd56338-fe82-4182-9e79-ca579c29e949" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="2.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="6.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="06d06089-6d2f-ef60-3bc3-bdd12d41dcdf" name="Kroot Hunting Pack" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Apocalypse" page="179">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="62fb8410-d764-9c30-e5a7-47693d9ff6f3" name="Crafty Fighters" hidden="false">
<description>The Hunting Pack has the Outflank special rule. There is no need to roll for the table edge on which they arrive - the owning player decides.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="ec7d-bdf3-af97-9289" targetId="c69c39d1-4421-4f54-be76-62c811b72428" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="5.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="5.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="5f5b-861e-6e42-6a10" targetId="3f47-48e7-7d1b-176a" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="0617054f-6ddb-2b05-f818-4551c90e6076" name="Kroot Knarloc Raiders" points="50.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Imperial Armour Apocalypse" page="87">
<entries>
<entry id="248a350e-5169-80dd-2f34-7d66a561cf5a" name="Prey Shaper" points="0.0" categoryId="(No Category)" type="model" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="c12be7af-45df-d7b6-5c08-ea9894d08fc0" profileTypeId="2d6001b0-980e-46d2-bcc2-a9fc60109afd" name="Prey Shaper" hidden="false" book="Imperial Armour Apocalypse" page="87">
<characteristics>
<characteristic characteristicId="c2b4b061-a0fd-499d-8a3d-6ee52587cbd5" name="Unit Type" value="Cavalry"/>
<characteristic characteristicId="5ee4ff0b-b244-4670-9d05-91d10f80c32e" name="WS" value="4"/>
<characteristic characteristicId="f6f92f00-8bb1-4afa-8ccb-46310b7dd5e5" name="BS" value="3"/>
<characteristic characteristicId="da036dbb-32c2-430a-9dd5-aa74e0c4f74b" name="S" value="5"/>
<characteristic characteristicId="3f9ed75c-36cd-4169-9cef-48391bb55cfd" name="T" value="4"/>
<characteristic characteristicId="17ee558f-3014-4bd2-afc1-b474d8d2b7a8" name="W" value="3"/>
<characteristic characteristicId="a558b3ef-04d0-440e-a312-bac3255bf592" name="I" value="3"/>
<characteristic characteristicId="5dff3e7c-e024-4030-a71d-03195ec06ea7" name="A" value="2"/>
<characteristic characteristicId="4a42059d-12cd-4c1f-a4c7-bb569d13eeea" name="Ld" value="9"/>
<characteristic characteristicId="b215fe72-dbce-4ad6-89ec-c4bb3962c39d" name="Save" value="6+"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="6c4ca347-decf-d2aa-b615-1b79755c435d" targetId="2946ddd4-9b5f-878b-9e26-37d439c05c47" linkType="profile">
<modifiers/>
</link>
<link id="8b07aef2-d372-50f6-4ce4-bbaf930637af" targetId="68a7cc13-33b8-b179-e13d-d354c4172b1a" linkType="entry">
<modifiers/>
</link>
<link id="a379-c9bf-cdd6-bee1" targetId="d97e327f-efbf-647a-5f5e-15cd4ae6b179" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="cbf96772-39a8-e8c7-bba1-a8816b63ecf4" name="Prey Shaper" hidden="false" book="Imperial Armour Apocalypse" page="87">
<description>The raiding force is led by a Prey Shaper, who counts as a Knarloc rider with a LD of 9. The Prey Shaper is an IC who may join a Knarloc Rider herd. The cost of the Prey Shaper is already included in that of the formation.</description>
<modifiers/>
</rule>
<rule id="74c94432-e663-88c7-8a12-4702124f0a29" name="Battlefield Hunters" hidden="false" book="Imperial Armour Apocalypse" page="87">
<description>Guided by the instincts of the hunt and mounted on their swift and sure-footed beasts, Kroot Raiders are seldom out-manoeuvred on the battlefield. A Kroot Raider formation may make a Flank March (see Strategic Assets). This onlt affects the Knarloc Raiders.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="58668200-7888-863b-1a65-3fa02e548a07" targetId="3c8db5a2-c9d0-ee27-c81f-12dda2845c54" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="ad7e9d3d-d45b-64c2-eb01-35017dd0f49a" targetId="e224a425-6590-2af5-ae2d-e0fd4bdf1fda" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="7d4bfa0c-68f7-4500-bc81-3156262c8415" name="Manta Death Blow Cadre" points="100.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Imperial Armour Apocalypse" page="88">
<entries/>
<entryGroups>
<entryGroup id="a92a2da7-b4c5-1713-b566-b0374b21624a" name="Commander" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="dcbc3ed7-4d84-ec57-ab66-46f1efc5cf98" targetId="7316b9dd-cd51-4e03-b198-f7492f3cb15a" linkType="entry">
<modifiers/>
</link>
<link id="4d4733e1-bd80-9f96-9f60-b7983916ec3d" targetId="85da10b2-7258-4956-8129-7cf94ff97e16" linkType="entry">
<modifiers/>
</link>
<link id="d221d90f-562e-7f51-2a65-8c1b35b5ea6c" targetId="f76ebd89-ec8b-2586-182e-9bd08675426b" linkType="entry">
<modifiers/>
</link>
<link id="38ef4cb2-afd2-395b-3702-f9f41afb8e86" targetId="c82e082e-b355-47ec-8438-9ffe255d4f20" linkType="entry">
<modifiers/>
</link>
<link id="a36059e4-addf-36f2-b8c7-aa4e1807dbe9" targetId="0da554fb-3d60-ab13-10d1-d88443a25d0d" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="bee2193d-7f00-622c-15c7-87c49d6da24d" name="Brothers in Death" hidden="false" book="Imperial Armour Apocalypse" page="88">
<description>United in their cause, all the units in the Mont'ka Cadre are Fearless whilst the Tau Commander is alive.</description>
<modifiers/>
</rule>
<rule id="a5999e3d-7e27-f549-db65-1b99634b50ed" name="Darkens the Skies" hidden="false" book="Imperial Armour Apocalypse" page="88">
<description>The sight of the vast bulk of the Manta is not only heartening to the Tau forces, but can crush the morale of the staunchest enemy. All enemy models in the open within 24" of the Manta model must take a Morale check. If the unit failes, they must make an immediate Fall Back move. Fearless models, etc, are immune to this effect.</description>
<modifiers/>
</rule>
<rule id="a3e6-d061-7e96-e092" name="Formation Restrictions (Manta Death Blow Cadre)" hidden="false">
<description>This formation must include enough units and troops to fill the Manta to at least 75% capacity and must begin the game embarked onto the Manta.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="a0138783-ce37-fadb-1224-0a5669bac920" targetId="c5ea0e80-60a6-4f16-8810-de0b177c4111" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="5651c8ae-e6dc-5611-2136-736345b3f35a" name="Mass Attack Spearhead" points="90.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="15">
<entries/>
<entryGroups>
<entryGroup id="7ffc9920-ec56-53fe-2759-69a543efbbbd" name="Spearhead Troops" minSelections="1" maxSelections="6" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="d25cd608-d20f-2dbd-97ae-f080b2fb522a" targetId="c69c39d1-4421-4f54-be76-62c811b72428" linkType="entry">
<modifiers/>
</link>
<link id="1f2570b2-aa54-1c11-c4eb-e05b7c119718" targetId="2559412b-ba0a-4a9b-9ded-581e828cb142" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="4a0c908e-589e-50ff-eedd-4fafe7e2221f" name="Thermite Bombs" hidden="false" book="Spearhead_Expansion.pdf" page="15">
<modifiers/>
</rule>
<rule id="a52e71f3-013a-cd30-a2e0-841cf1bb4996" name="The Final Push" hidden="false" book="Spearhead_Expansion.pdf" page="15">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="35637d99-e288-e44a-bd0d-cf27a6a69145" name="Mechanised Assault Spearhead" points="60.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="12">
<entries/>
<entryGroups>
<entryGroup id="cf978714-ffd2-b1e6-0571-995d642d988c" name="Choices" minSelections="1" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="77c861cd-c303-386c-407f-249b2f7e4cec" name="Tank + Unit Set" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="a511de02-9061-a9cb-8b20-e13f5ad5baa8" name="Transported Unit" defaultEntryId="38db5f66-42ba-09a6-9388-d7157c135b30" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="f802d737-a290-6e0e-a0d3-0d79964b9757" targetId="d5af2c1a-5356-4fc7-8b77-b059c362c47c" linkType="entry">
<modifiers/>
</link>
<link id="38db5f66-42ba-09a6-9388-d7157c135b30" targetId="2559412b-ba0a-4a9b-9ded-581e828cb142" linkType="entry">
<modifiers/>
</link>
<link id="44ac167e-560b-75a0-ee7e-a4a914825ad9" targetId="c69c39d1-4421-4f54-be76-62c811b72428" linkType="entry">
<modifiers/>
</link>
<link id="433a3a73-fa78-7ead-0d18-59c9130e0d68" targetId="0ce87ee0-0210-4c87-96da-a3bba62ce7bd" linkType="entry">
<modifiers/>
</link>
<link id="39439710-c8f1-441e-72b5-86864ea36976" targetId="dbd1d210-a812-6578-d6a5-677e45e0fe22" linkType="entry">
<modifiers/>
</link>
<link id="a17cfe72-4ba4-acd7-85f2-2dd1272aa1e0" targetId="467cef28-773c-943d-0ab1-51ce65a9d623" linkType="entry">
<modifiers/>
</link>
<link id="09ad4d52-1bcf-fb3b-9b6b-35069f37d8d9" targetId="b2d843e2-6b48-64c5-2b5b-8f6f99e9db73" linkType="entry">
<modifiers/>
</link>
<link id="9c98a1b5-3f09-fcb9-a14a-f23c210757a8" targetId="2cd4e583-478c-4c23-893d-d49f426df7f3" linkType="entry">
<modifiers/>
</link>
<link id="e2011526-82bf-fdc4-144e-ee68fa9d6ee0" targetId="b4b37bde-b8c3-48f4-af53-bdc989ad2cfd" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="a3b60a13-b9da-9a31-c257-ad6c460b3530" targetId="b7cd5334-aab0-8f76-3cab-7bd6582c5183" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<links/>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="c40a70f7-1234-cd9f-8b52-e9b095e1ad4b" name="Flank Attack" hidden="false" book="Spearhead_Expansion.pdf" page="12">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="b1b9e894-bff3-65e0-4ad9-4ec7ac354284" name="Optimised Stealth Group" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Apocalypse" page="180">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="2318cee3-2ccf-c550-6aa0-94bd731f2bf9" name="Stealth Deployment" hidden="false">
<description>The Optimised Stealth Group halves the distance it must set up from enemy units if it deploys using the Infiltrate special rule.</description>
<modifiers/>
</rule>
<rule id="1ba68418-3a91-9198-f7bb-99215f622f08" name="Unexpected Attack" hidden="false">
<description>Weapons used by the Optimised Stealth Group have the Ignores Cover special rule.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="137a-3b61-6ccf-f254" targetId="490bcf2a-9457-48c1-aa7d-8180048b2d1b" linkType="entry">
<modifiers>
<modifier type="set" field="minSelections" value="3.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entry>
<entry id="535bafb9-4b96-5272-2dc3-5efcaaf7857e" name="Outrider Spearhead" points="60.0" categoryId="38cf4ccf-0665-45cb-a773-fea06ee1467a" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Spearhead_Expansion.pdf" page="13">
<entries/>
<entryGroups>
<entryGroup id="ab25e9b8-b7f9-da3d-fd95-11ddc2f798f6" name="Spearhead Tanks" minSelections="1" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="537c63f6-8776-d36d-65c4-4481b6725b45" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers/>
</link>
<link id="ac2a624c-25e2-9160-8e6c-cedc9c8c6b32" targetId="4a90e450-d04c-4f28-9f69-a2f43f9d4d8e" linkType="entry">
<modifiers/>
</link>
<link id="579f4b39-e5c3-1271-8748-2227e35f4a9e" targetId="5b61c7b4-d516-4f85-b013-45b5fb60589b" linkType="entry">
<modifiers/>
</link>
<link id="c1c42b3a-45d6-c9e3-9928-629154c7eef3" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers/>
</link>
<link id="6facc72f-1029-f49b-15f3-80efcbe5a492" targetId="16a9d2e5-41cf-4095-9446-0fe2edcc5f38" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="216677e0-6df9-781e-b085-f1f86ad0aa44" name="Spearhead Leader" defaultEntryId="6a2ae9be-0d80-8237-aba9-e788bdb2a21f" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="6a2ae9be-0d80-8237-aba9-e788bdb2a21f" targetId="7df70edf-5b9c-4e97-a6d3-dffc88367b29" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="535bafb9-4b96-5272-2dc3-5efcaaf7857e" childId="537c63f6-8776-d36d-65c4-4481b6725b45" field="selections" type="greater than" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="782a0f9d-df5f-527d-27c5-86ee6c306b4b" targetId="4a90e450-d04c-4f28-9f69-a2f43f9d4d8e" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="535bafb9-4b96-5272-2dc3-5efcaaf7857e" childId="ac2a624c-25e2-9160-8e6c-cedc9c8c6b32" field="selections" type="greater than" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="e31815a1-5fae-6076-87b2-3025e5cdfcea" targetId="5b61c7b4-d516-4f85-b013-45b5fb60589b" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="535bafb9-4b96-5272-2dc3-5efcaaf7857e" childId="579f4b39-e5c3-1271-8748-2227e35f4a9e" field="selections" type="greater than" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="c66a634b-7f51-8de5-b461-c02b91f89c0a" targetId="6672e4b0-711f-44a2-9a52-86d43a97874a" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="535bafb9-4b96-5272-2dc3-5efcaaf7857e" childId="c1c42b3a-45d6-c9e3-9928-629154c7eef3" field="selections" type="greater than" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</link>
<link id="7710157b-c2cb-fef1-16d0-8944371bd60c" targetId="16a9d2e5-41cf-4095-9446-0fe2edcc5f38" linkType="entry">
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="535bafb9-4b96-5272-2dc3-5efcaaf7857e" childId="6facc72f-1029-f49b-15f3-80efcbe5a492" field="selections" type="greater than" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="e48f1414-30e9-8c75-a75e-923ecc35af00" name="Protection Duty" hidden="false" book="Spearhead_Expansion.pdf" page="13">
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="d0ea-ad58-634a-4cf6" name="Paradox Squadron" points="0.0" categoryId="8dbf948c-125b-4886-b21e-3ccabc1e1188" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Damocles" page="60">