forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrder - Stormcast Eternals - Data.cat
11892 lines (11892 loc) · 904 KB
/
Order - Stormcast Eternals - Data.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="82b4-f6e1-3e37-5ea1" name="Order - Stormcast Eternals - Data" revision="52" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="ed04-877b-pubN65537" name="Order Battletome: Stormcast Eternals (2nd Edition)"/>
<publication id="ed04-877b-pubN71576" name="Battletome: Stormcast Eternals (2nd Edition)"/>
<publication id="ed04-877b-pubN71830" name="Battletome: Stormcast Eternals, Errata July 2018"/>
<publication id="ed04-877b-pubN100815" name="Order Battletome Stormcast Eternals"/>
<publication id="ed04-877b-pubN101748" name="Order Official FAQs and errata, Version 1.4"/>
<publication id="ed04-877b-pubN110200" name="Blightwar"/>
<publication id="ed04-877b-pubN117503" name="Warhammer World Exclusive"/>
<publication id="ed04-877b-pubN126219" name="White Dwarf: Feb 2019"/>
</publications>
<profileTypes>
<profileType id="9cb4-15df-780d-f4ee" name="Crew Table">
<characteristicTypes>
<characteristicType id="16e7-fc98-da3d-921d" name="Variable1"/>
<characteristicType id="93ac-2863-3f94-b8ac" name="Variable2"/>
<characteristicType id="c11c-4fd8-5dac-cb38" name="Variable3"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="cd40-54e1-dd91-03fe" name="AETHERWINGS" hidden="false"/>
<categoryEntry id="c8c1-13d2-d41c-3b40" name="ANGELOS" hidden="false"/>
<categoryEntry id="acd1-2dbd-d3c6-a569" name="CELESTANT-PRIME" hidden="false"/>
<categoryEntry id="ded1-86b9-1046-02af" name="CONCUSSORS" hidden="false"/>
<categoryEntry id="c67f-3172-fdd7-513e" name="DECIMATORS" hidden="false"/>
<categoryEntry id="33a8-3886-c14e-c29a" name="DESOLATORS" hidden="false"/>
<categoryEntry id="d544-7b45-d32f-7f5a" name="DRACOTHIAN GUARD" hidden="false"/>
<categoryEntry id="9ac9-839c-4f1d-1232" name="DRAKESWORN-TEMPLAR" hidden="false"/>
<categoryEntry id="4ec8-0138-f319-9ceb" name="FULMINATORS" hidden="false"/>
<categoryEntry id="3fe6-f66d-87f3-973e" name="GRYPH-HOUNDS" hidden="false"/>
<categoryEntry id="47cd-ba11-d528-de85" name="JUDICATORS" hidden="false"/>
<categoryEntry id="e897-5e9b-1972-88b0" name="JUSTICAR" hidden="false"/>
<categoryEntry id="dd55-36f7-75c1-da72" name="KNIGHT-AZYROS" hidden="false"/>
<categoryEntry id="3aea-7c35-ada1-32f7" name="KNIGHT-HERALDOR" hidden="false"/>
<categoryEntry id="d11a-31c3-ed20-dcc9" name="KNIGHT-QUESTOR" hidden="false"/>
<categoryEntry id="a92c-7f5c-f4b1-c5a5" name="KNIGHT-VENATOR" hidden="false"/>
<categoryEntry id="656e-c585-9e53-d507" name="KNIGHT-VEXILLOR" hidden="false"/>
<categoryEntry id="9488-aaef-57c2-445b" name="KNIGHT-ZEPHYROS" hidden="false"/>
<categoryEntry id="49aa-82de-1300-332e" name="LIBERATORS" hidden="false"/>
<categoryEntry id="114b-7700-ac0f-0f11" name="LORD-AQUILOR" hidden="false"/>
<categoryEntry id="95b0-563e-a7fe-08b0" name="LORD-CASTELLANT" hidden="false"/>
<categoryEntry id="78f1-562f-011e-181e" name="LORD-CELESTANT" hidden="false"/>
<categoryEntry id="683a-4213-e600-479d" name="LORD-ORDINATOR" hidden="false"/>
<categoryEntry id="9f51-d140-8ff0-88a7" name="LORD-RELICTOR" hidden="false"/>
<categoryEntry id="b8e9-437c-c0ec-08e9" name="LORD-VERITANT" hidden="false"/>
<categoryEntry id="117d-046b-e454-464f" name="NEAVE BLACKTALON" hidden="false"/>
<categoryEntry id="5451-541e-ffa2-58b6" name="PALADIN" hidden="false"/>
<categoryEntry id="3e42-aa53-94bc-8757" name="PROSECUTORS" hidden="false"/>
<categoryEntry id="c587-6013-bd36-25f7" name="PROTECTORS" hidden="false"/>
<categoryEntry id="c945-c89f-4053-6479" name="REDEEMER" hidden="false"/>
<categoryEntry id="25d3-3325-4bf0-98da" name="RETRIBUTORS" hidden="false"/>
<categoryEntry id="9334-c292-162a-2242" name="STARDRAKE" hidden="false"/>
<categoryEntry id="3293-0e36-dbb8-bda4" name="TEMPESTORS" hidden="false"/>
<categoryEntry id="beb5-8696-1bdf-4947" name="VANDUS HAMMERHAND" hidden="false"/>
<categoryEntry id="b206-08e3-4402-220b" name="VANGUARD-HUNTERS" hidden="false"/>
<categoryEntry id="197d-9cf1-3ad9-05d8" name="VANGUARD-RAPTORS" hidden="false"/>
<categoryEntry id="2308-7db2-829e-94b3" name="HUMAN" hidden="false"/>
<categoryEntry id="7c69-4225-cf08-7991" name="CELESTIAL" hidden="false"/>
<categoryEntry id="99a3-27f1-227c-13a2" name="VANGUARD-PALLADORS" hidden="false"/>
<categoryEntry id="1bad-972d-8e30-39cc" name="GAVRIEL SUREHEART" hidden="false"/>
<categoryEntry id="b825-7b2f-9a1e-7c32" name="ENGINEER" hidden="false"/>
<categoryEntry id="db6e-b4df-35e6-1658" name="ORGAN GUN" hidden="false"/>
<categoryEntry id="7b6e-febe-0e9f-3d1a" name="STEELHEART'S CHAMPIONS" hidden="false"/>
<categoryEntry id="4175-c3fe-e3f5-be4a" name="THE FARSTRIDERS" hidden="false"/>
<categoryEntry id="3bc3-e214-6411-8f94" name="CASTIGATORS" hidden="false"/>
<categoryEntry id="c697-a15a-76d4-5329" name="SACROSANCT" hidden="false"/>
<categoryEntry id="b739-26fe-8dcc-2388" name="SEQUITORS" hidden="false"/>
<categoryEntry id="026b-506d-9fad-e6e0" name="EVOCATORS" hidden="false"/>
<categoryEntry id="e278-4f31-d3f9-2c34" name="LORD-ARCANUM" hidden="false"/>
<categoryEntry id="0151-9201-513d-e3ca" name="KNIGHT-INCANTOR" hidden="false"/>
<categoryEntry id="2bb9-a62f-3e50-200a" name="CELESTAR BALLISTA" hidden="false"/>
<categoryEntry id="233f-363e-768e-9332" name="ERRANT-QUESTOR" hidden="false"/>
<categoryEntry id="c83b-e760-c03a-7031" name="DRACOLINE" hidden="false"/>
<categoryEntry id="cf54-4907-2f8d-08bb" name="HAMMERS OF SIGMAR" hidden="false"/>
<categoryEntry id="2935-4acc-ca83-4f70" name="ASTREIA SOLBRIGHT" hidden="false"/>
<categoryEntry id="1a6f-7787-e943-5658" name="AVENTIS FIRESTRIKE" hidden="false"/>
<categoryEntry id="b60e-f9be-740a-d626" name="TAURALON" hidden="false"/>
<categoryEntry id="d478-600e-6e58-9c33" name="DRACOTH" hidden="false"/>
<categoryEntry id="1d20-b504-5741-30c0" name="GRYPH-CHARGER" hidden="false"/>
<categoryEntry id="23c1-58a3-fb87-cbfc" name="LORD-EXORCIST" hidden="false"/>
<categoryEntry id="b61f-e578-f720-2cd7" name="ORDINATOS" hidden="false"/>
<categoryEntry id="78eb-70ff-9106-e064" name="CORPUSCANT" hidden="false"/>
<categoryEntry id="26b6-2adb-25e9-361a" name="AZYR" hidden="false"/>
<categoryEntry id="a2b8-5b32-cd54-6eae" name="CELESTIAN VORTEX" hidden="false"/>
<categoryEntry id="9738-5867-c32d-a472" name="DAIS ARCANUM" hidden="false"/>
<categoryEntry id="b173-c181-cd14-e883" name="EVERBLAZE COMET" hidden="false"/>
<categoryEntry id="f8cb-7818-5839-8c92" name="AVERON STORMSIRE" hidden="false"/>
<categoryEntry id="35d7-5618-f3b9-79f2" name="STORMSIRE'S CURSEBREAKERS" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="c6a3-2acf-1e46-3896" name="Allegiance" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="minInForce" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="c054-2350-5f5d-85b4" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="81f4-ef16-b80c-6926">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="81f4-ef16-b80c-6926" name="Allegiance: Stormcast Eternals" publicationId="ed04-877b-pubN65537" page="116" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1de2-9aa8-2e5c-12d5" name="Scions of the Storm" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Instead of setting up a STORMCAST ETERNAL unit on the battlefield, you can place it to one side and say that it is set up in the Celestial Realm as a reserve unit. You can set up one reserve unit in the Celestial Realm for each unit you have set up on the battlefield. At the end of your movement phase, you can set up one or more of the reserve units in the Celestial Realm on the battlefield, more than 9" from any enemy units. Any reserve units in the Celestial Realm that are not set up on the battlefield before the start of the fourth battle round are slain.</characteristic>
</characteristics>
</profile>
<profile id="4681-2ff9-bf65-8bf0" name="Shock and Awe" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Subtract 1 from hit rolls for attacks that target friendly STORMCAST ETERNAL units that were set up on the battlefield during the same turn.</characteristic>
</characteristics>
</profile>
<profile id="b030-9956-546a-8c13" name="Stormhosts" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If your army is a Stormcast Eternals army, you can give it a Stormhost keyword. All STORMCAST ETERNAL units in your army gain that keyword. If a model already has a Stormhost keyword, it cannot gain another one, but this does not prevent other units in your army from having a different Stormhost keyword. You can either choose one of the Stormhosts in the list, or choose another Stormhost you've read about or created yourself. If you choose from the list below, all units with that keyword benefit from the extra abilities listed for that Stormhost. If you choose a different Stormhost, simply pick the Stormhost that most closely matches the nature of your own Stormhost.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="5290-420b-8ecc-556a" name="Stormhosts" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="055a-d57e-67fa-9a8d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e1f7-e793-9e75-079f" name="Hammers of Sigmar" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2082-db54-fec9-c847" name="First to be Forged" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to the Bravery characteristic of friendly HAMMERS OF SIGMAR units.</characteristic>
</characteristics>
</profile>
<profile id="97cd-9d51-e30b-d8fa" name="Soul of the Stormhost" publicationId="ed04-877b-pubN71830" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability when a friendly HAMMERS OF SIGMAR REDEEMER unit is destroyed. If you do so, roll a dice. On a 5+ a new unit identical to the one that was destroyed is added to your army. Set up the new unit anywhere on the battlefield, more than 9" from any enemy models. You cannot use this command ability more than once per phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="40d8-88f2-4d3f-3d9d" name="Hallowed Knights" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2bf5-68c5-17c4-4e84" name="Only the Faithful" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If a friendly HALLOWED KNIGHTS unit is affected by a spell or endless spell, roll a dice. On a 6+ ignore the effects of that spell on that unit.</characteristic>
</characteristics>
</profile>
<profile id="9386-4a0d-d24b-32d8" name="Holy Crusaders" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of your hero phase. If you do so, pick a friendly HALLOWED KNIGHTS unit wholly within 9" of a friendly HALLOWED KNIGHTS HERO, or wholly within 18" of a friendly HALLOWED KNIGHTS HERO that is a general. Add 1 to run rolls and charge rolls for that unit until your next hero phase. In addition, until your next hero phase, that unit can run and still charge later in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0854-7672-ff5c-bf29" name="Celestial Vindicators" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="695a-35d2-4c13-3125" name="Driven by Vengeance" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll hit rolls of 1 for attacks made by friendly CELESTIAL VINDICATORS units if they made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="2d44-84f6-63b2-9cc9" name="Righteous Hatred" publicationId="ed04-877b-pubN71830" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability the start of the combat phase. If you do so, you pick a friendly CELESTIAL VINDICATORS unit wholly within 9" of a friendly CELESTIAL VINDICATORS HERO, or wholly within 18" of a friendly CELESTIAL VINDICATORS HERO that is a general. Add 1 to the Attacks characteristic of that unit’s melee weapons until the end of that phase. You cannot pick the same unit to benefit from this command ability more than once per hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d526-d2c0-0c50-eb05" name="Anvils of the Heldenhammer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5b4d-cc6e-ecbf-12a9" name="No True Death" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll failed battleshock tests for friendly ANVILS OF THE HELDENHAMMER units.</characteristic>
</characteristics>
</profile>
<profile id="1fdc-46c3-fafa-e4f7" name="Heroes of Another Age" publicationId="ed04-877b-pubN71830" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your hero phase. If you do so, pick a friendly ANVILS OF THE HELDENHAMMER unit wholly within 9" of a friendly ANVILS OF THE HELDENHAMMER HERO, or wholly within 18" of a friendly ANVILS OF THE HELDENHAMMER HERO that is a general. That unit can attack with all of the missile weapons it is armed with, or make a pile-in move and attack with all of the melee weapons it is armed with. You cannot pick the same unit to benefit from this command ability more than once per hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="865a-c6f5-a656-32a6" name="Knights Excelsior" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b18e-966a-1679-e42f" name="Storm of Annihilation" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If a friendly KNIGHTS EXCELSIOR unit makes an attack that destroys an enemy unit, you can re-roll hit rolls of 1 for attacks made by that KNIGHTS EXCELSIOR unit for the rest of the battle.</characteristic>
</characteristics>
</profile>
<profile id="d872-c12d-f4fb-867a" name="No Mercy" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your hero phase. If you do so, pick a friendly KNIGHTS EXCELSIOR unit wholly within 9" of a friendly KNIGHTS EXCELSIOR HERO, or wholly within 18" of a friendly KNIGHTS EXCELSIOR HERO that is a general. You can re-roll wound rolls of 1 for attacks made by that unit until the end of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="37cb-a231-b229-cbed" name="Celestial Warbringers" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5edd-9c74-d96f-75ba" name="Fearless Foresight" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of the first battle round, after determining who has the first turn but before the first turn begins, you can pick up to D3 friendly CELESTIAL WARBRINGERS units and set them up again (any restrictions in the set-up instructions for the battleplan being used still apply).</characteristic>
</characteristics>
</profile>
<profile id="f6c4-f148-2b1a-170b" name="Astral Conjunction" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your hero phase. If you do so, pick a friendly CELESTIAL WARBRINGERS WIZARD wholly within 9" of a friendly CELESTIAL WARBRINGERS HERO, or wholly within 18" of a friendly CELESTIAL WARBRINGERS HERO that is a general. Add 1 to casting rolls for that unit until the end of that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8f0a-c098-002a-9c9b" name="Tempest Lords" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a82d-8e8c-2728-dc87" name="Grand Strategists" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the start of your hero phase, roll a dice. On a 4+ you receive 1 extra command point.</characteristic>
</characteristics>
</profile>
<profile id="e36a-3edb-b5ff-79d8" name="Rousing Oratory" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick a friendly TEMPEST LORDS unit wholly within 9" of a friendly TEMPEST LORDS HERO, or wholly within 18" of a friendly TEMPEST LORDS HERO that is a general. You can reroll wound rolls of 1 for attacks made by that unit until your next hero phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b59b-390c-5b4c-70a3" name="Astral Templars" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="17cf-9e26-e4e2-3d15" name="Beast Stalkers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Add 1 to hit rolls for attacks made by ASTRAL TEMPLARS units that target a MONSTER.</characteristic>
</characteristics>
</profile>
<profile id="251c-2555-7258-6a6c" name="Cut off the Head" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick an ASTRAL TEMPLARS unit that is wholly within 9" of a friendly ASTRAL TEMPLARS HERO, or wholly within 18" of a friendly ASTRAL TEMPLARS HERO that is a general. Until the end of that phase, add 1 to wound rolls for attacks made by that unit that target a HERO.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e1e3-968f-85d3-a2a8" name="Allegiance: Order" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d68d-cbc1-aa2a-5a48" name="Defiant Avengers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll battleshock tests for friendly ORDER units in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ac73-fd63-1eac-3469" name="Battalion: Devastation Brotherhood" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="96be-a878-4f6a-8737" name="Crushing Assault" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If an enemy unit suffers wounds from attacks made by all three units of PALADINS from this battalion in the same combat phase, that enemy unit suffers D6 mortal wounds at the end of that combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="51ed-d0d5-f51c-4833" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="de7d-bbbe-a2b3-fd79" name="1 unit of Decimators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="558c-1c6d-9b63-ed17" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="adec-177a-fe7d-f7bd" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0710-6a6c-1258-0256" name="Decimators" hidden="false" collective="false" import="true" targetId="5330-8a21-c53d-7aa3" type="selectionEntry">
<categoryLinks>
<categoryLink id="8dc5-51e4-a88e-598d" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2bc6-812a-4fb9-1ba0" name="1 unit of Judicators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="182c-9cad-ff72-8ece" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4645-286f-3059-b0b6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="59c7-314a-7bf7-0d77" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f4-ef16-b80c-6926" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a9a2-0357-8d45-c783" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2374-a8f8-2c71-f221" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f4-ef16-b80c-6926" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7981-9b62-a5e4-2984" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5eff-3b4b-fdc2-87d5" name="1 unit of Prosecutors" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd84-4c56-ba86-9d95" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e90d-b194-4b24-cad1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f115-7ad2-2bae-8d52" name="-Prosecutors with Celestial Hammers" hidden="false" collective="false" import="true" targetId="432b-fe7d-867c-7e7d" type="selectionEntry">
<categoryLinks>
<categoryLink id="0278-f22d-f70d-1140" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c926-32af-b424-342c" name="1 unit of Protectors" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="34c1-cee1-f5e4-d15b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="603f-ae2f-908b-1dda" type="max"/>
</constraints>
<entryLinks>
<entryLink id="cb81-8e7f-60aa-ac2a" name="Protectors" hidden="false" collective="false" import="true" targetId="5858-a948-c65e-b3b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="6703-9ed0-acc3-5390" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9e50-5f37-7965-b230" name="1 unit of Retributors" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="19e5-205b-0abf-713b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55bd-60f0-e50b-f182" type="max"/>
</constraints>
<entryLinks>
<entryLink id="dbf3-b255-b077-8c80" name="Retributors" hidden="false" collective="false" import="true" targetId="20ee-5f80-e899-a31b" type="selectionEntry">
<categoryLinks>
<categoryLink id="845a-2db1-008e-9cf4" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="110.0"/>
</costs>
</selectionEntry>
<selectionEntry id="983e-2e66-1d7a-cfaa" name="Battalion: Drakesworn Temple" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="07b8-62b9-ec34-3269" name="Nova Surge" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per battle, in your hero phase, you can summon a celestial wave. If you do so, each unit within 3" of any models from this battalion is caught in the celestial wave. Each enemy unit caught in the celestial wave suffers D3 mortal wounds. Heal D3 wounds allocated to each friendly STORMCAST ETERNAL unit caught in the celestial wave.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5814-3428-cc9d-39f6" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9d0b-1e03-1e84-f288" name="3 Drakesworn Templars" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4aec-b2d4-1a0a-4862" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="de6f-ffa1-d103-5e4b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c647-7f24-9c49-b2bc" name="Drakesworn Templar" hidden="false" collective="false" import="true" targetId="1090-dc26-d603-1103" type="selectionEntry">
<categoryLinks>
<categoryLink id="59fb-dca4-6af1-c8b0" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="ef74-114c-5de9-c9b2" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff72-27ce-5454-ddb7" name="Battalion: Exemplar Chamber" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="72d6-769b-e612-039d" name="Martial Bond" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If a unit from this battalion is destroyed in the combat phase, pick another unit from the same battalion. Add 1 to the Attacks characteristic of that unit’s melee weapons for the rest of the battle. A unit cannot be picked to benefit from this ability more than once per battle.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="dad6-d425-51bc-63f6" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f020-ad6b-f7ad-5211" name="1 Lords of the Storm" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a3c-b7a9-9441-43ce" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b425-2793-aa0f-43c5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="06eb-115e-5396-5d70" name="Battalion: Lords of the Storm" hidden="false" collective="false" import="true" targetId="2952-d3ab-822e-bc2d" type="selectionEntry">
<categoryLinks>
<categoryLink id="18b9-2da7-fe47-b8f0" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2eaa-4a84-a0f4-8a06" name="3 Devastation Brotherhoods" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2da1-be9d-b7c3-aa07" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="653b-cc17-e869-e9b6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="def7-2f2f-55d2-501f" name="Battalion: Devastation Brotherhood" hidden="false" collective="false" import="true" targetId="ac73-fd63-1eac-3469" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc29-08c4-7ccf-8a3e" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2c05-5952-538d-8f2c" name="Battalion: Extremis Chamber" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9bba-8435-a71f-63bc" name="Borne by the High Star" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your first hero phase, you can transport all reserve units from this battalion that are in the Celestial Realm to the battlefield. If you do so, pick a point on the battlefield and set up the units wholly within 24" of that point and more than 9" from any enemy units. Those units cannot move in the following movement phase. After setting up those units, roll a dice for each enemy unit within 18" of the point you picked. On a 4+ that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6eff-c805-40b3-98b2" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7a24-bc8a-d917-7324" name="1 Lord-Celestant on Stardrake or Lord-Celestant on Dracoth" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b3a-9704-721a-390a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f700-5537-f728-9065" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3afa-413e-f174-2df4" name="Lord-Celestant on Dracoth" hidden="false" collective="false" import="true" targetId="5232-9953-1b83-0097" type="selectionEntry">
<categoryLinks>
<categoryLink id="38a6-204b-3daa-62f6" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6d30-d9a5-edb5-e6df" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8be4-9003-a2bc-3eba" name="Lord-Celestant on Stardrake" hidden="false" collective="false" import="true" targetId="19ca-60d5-c3b7-9444" type="selectionEntry">
<categoryLinks>
<categoryLink id="d53e-f89b-9f13-a799" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="c377-7a5a-448b-3e26" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="309e-0dbf-750d-54a1" name="1 Drakesworn Temple Battalion" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7455-c73e-a64f-79f0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d613-54f6-3dee-cad3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fecc-c176-8d19-6152" name="Battalion: Drakesworn Temple" hidden="false" collective="false" import="true" targetId="983e-2e66-1d7a-cfaa" type="selectionEntry">
<categoryLinks>
<categoryLink id="2044-520b-1b7b-6909" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="433f-fc5c-bb2c-d094" name="1 Lightning Echelon Battalion" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ec7-6ece-7c96-3c32" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1baa-0df3-2cd5-b2ec" type="max"/>
</constraints>
<entryLinks>
<entryLink id="06d7-38ae-bbe8-2177" name="Battalion: Lightning Echelon" hidden="false" collective="false" import="true" targetId="4afb-8202-c231-ba96" type="selectionEntry">
<categoryLinks>
<categoryLink id="f54e-1213-25e3-d40a" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4342-844e-33f4-3d61" name="1 Thunderwave Echelon Battalion" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3034-089b-5348-04c6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="314b-6e8b-910e-5a31" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3c4a-a5ed-8089-ddd1" name="Battalion: Thunderwave Echelon" hidden="false" collective="false" import="true" targetId="695f-edd6-db5c-bbc3" type="selectionEntry">
<categoryLinks>
<categoryLink id="ee82-cbe7-ea16-1abe" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="063b-7290-fde1-ba0b" name="Battalion: Hammerstrike Force" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f622-01cd-2f9d-305f" name="Celestial Supercharge" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In your hero phase, you can pick one unit of PALADINS from this battalion that is wholly within 9" of the unit of PROSECUTORS from the same battalion. If you do so, add 1 to wound rolls for attacks made by the unit you pick until the end of the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="256c-f35a-ed42-3b69" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e902-281d-1632-3c2f" name="2 units of PALADINS" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbd8-a93a-6339-fa8b" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="439e-d49f-39dc-9b34" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0942-7237-eeb3-212f" name="Retributors" hidden="false" collective="false" import="true" targetId="20ee-5f80-e899-a31b" type="selectionEntry">
<categoryLinks>
<categoryLink id="93fb-90d3-1b58-e8e5" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ed16-a231-1761-2511" name="Decimators" hidden="false" collective="false" import="true" targetId="5330-8a21-c53d-7aa3" type="selectionEntry">
<categoryLinks>
<categoryLink id="b2a6-6ef4-7ca0-0241" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="41cc-515a-3b02-3230" name="Protectors" hidden="false" collective="false" import="true" targetId="5858-a948-c65e-b3b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="6521-2de0-5d0a-9cca" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="cdfb-1a65-9541-09c3" name="1 unit of Prosecutors" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="16f4-665f-3b47-3162" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5a4-ec86-9235-cca6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d50e-d520-770a-c51c" name="Prosecutors" hidden="false" collective="false" import="true" targetId="432b-fe7d-867c-7e7d" type="selectionEntry">
<categoryLinks>
<categoryLink id="db3c-730d-28bd-31cd" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a14f-bf85-c562-e1be" name="Battalion: Harbinger Chamber" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1508-086b-6399-3e8c" name="Celestial Numbus" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to hit rolls for attacks made by models from this battalion.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f89f-9c2d-29fd-c999" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="399b-e206-6350-80d9" name="1 Lords of the Storm" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45b8-e74c-005c-c335" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9251-fc41-f715-5d8b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="eda8-7e40-876b-ed65" name="Battalion: Lords of the Storm" hidden="false" collective="false" import="true" targetId="2952-d3ab-822e-bc2d" type="selectionEntry">
<categoryLinks>
<categoryLink id="5834-d460-d7be-2e3a" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="50e7-9e4e-8e6e-f6b4" name="3 Vanguard Wings" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a90-7827-0276-5153" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a27f-45c8-7e4c-3e17" type="min"/>
</constraints>
<entryLinks>
<entryLink id="a0a3-2fe1-083c-afa9" name="Battalion: Vanguard Wing" hidden="false" collective="false" import="true" targetId="37c1-f534-e5d8-3d4c" type="selectionEntry">
<categoryLinks>
<categoryLink id="975b-ac06-abd9-e09c" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4afb-8202-c231-ba96" name="Battalion: Lightning Echelon" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4997-642e-ef99-f488" name="Linebreaker Assault" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per battle, at the end of your charge phase, you can make a line-breaker assault with each unit from this battalion that made a charge move in that charge phase. Pick one enemy unit within 1" of each unit making a line-breaker assault. That enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="43c3-1a19-adeb-fc4b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b7f0-21a4-ae54-36bf" name="2 units of Fulminators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3cb-1b9f-69f3-057c" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07b4-8083-9bb9-7ee3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7148-df23-c3cb-e09b" name="Fulminators" hidden="false" collective="false" import="true" targetId="fed1-2388-810f-3ae7" type="selectionEntry">
<categoryLinks>
<categoryLink id="4eac-f644-c194-0b0a" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4e7f-86f8-123d-3f8e" name="2 units of Tempestors" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c32-65fb-1083-f832" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5279-0fbd-afa6-814b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ef01-f5c3-389d-3cfb" name="Tempestors" hidden="false" collective="false" import="true" targetId="4115-b86d-bbd9-69ab" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc94-f42f-37c3-b28c" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2952-d3ab-822e-bc2d" name="Battalion: Lords of the Storm" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d85f-3931-2134-630e" name="Storm-born Commanders" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the start of your hero phase, if any HEROES from this battalion are on the battlefield, roll a dice. On a 4+ you receive 1 additional command point.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="bd00-c685-08de-0eac" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="bbe1-e179-64da-fb6c" name="0-1 units of Gryph-hounds" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f847-5952-53c2-15f2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb7a-ddb7-f92a-3820" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c65c-391a-26ca-68dd" name="Gryph-Hounds" hidden="false" collective="false" import="true" targetId="d79a-14b4-5f86-76d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="df45-1e5e-79a3-06ce" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="717a-d6f5-1c28-e361" name="3-15 Knights-Heraldor, Knights-Vexillor, Knights-Azyros or Knights-Venator" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="03a4-a900-e2bb-2693" type="min"/>
<constraint field="selections" scope="parent" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6d0-4677-4161-8127" type="max"/>
</constraints>
<entryLinks>
<entryLink id="49c3-b62b-3f31-042f" name="Knight-Azyros" hidden="false" collective="false" import="true" targetId="afac-5154-99ae-ee3c" type="selectionEntry">
<categoryLinks>
<categoryLink id="f434-1f00-013f-27f0" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9add-f2a5-0649-d2c7" name="Knight-Heraldor" hidden="false" collective="false" import="true" targetId="3c2d-c00c-722b-36d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="31d6-9212-a787-fd9d" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2025-cd4d-3bfb-fec3" name="Knight-Venator" hidden="false" collective="false" import="true" targetId="aeb5-ae52-567b-5f8c" type="selectionEntry">
<categoryLinks>
<categoryLink id="a1ec-b412-262e-2308" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0fea-56ec-387d-0a3c" name="Knight-Vexillor" hidden="false" collective="false" import="true" targetId="9320-740f-eb76-c07b" type="selectionEntry">
<categoryLinks>
<categoryLink id="74d5-c825-d229-62e7" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="12d6-426b-2982-ef96" name="1-4 Lord-Castellants or Lord-Veritants" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a9d-d230-1183-0d35" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d19-bab8-ea3d-8c17" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6728-2831-9cab-e383" name="Lord-Castellant" hidden="false" collective="false" import="true" targetId="15e7-d7b5-5bed-3c54" type="selectionEntry">
<categoryLinks>
<categoryLink id="f472-4ab7-8925-8ded" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f0c1-926a-09eb-af59" name="Lord-Veritant" hidden="false" collective="false" import="true" targetId="7132-5dde-398e-d8a0" type="selectionEntry">
<categoryLinks>
<categoryLink id="bb45-5ef0-b7cf-6b20" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5d17-000c-c81e-dec8" name="1 LORD-CELESTANT" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2424-dab7-7b3e-fb7e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2d6-4e79-333e-912d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="51c7-edc3-7c27-4a01" name="Lord-Celestant" hidden="false" collective="false" import="true" targetId="425f-9d59-b2f6-b5f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="49a9-f5ba-deba-8ea8" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9847-9672-82da-6cac" name="Lord-Celestant on Dracoth" hidden="false" collective="false" import="true" targetId="5232-9953-1b83-0097" type="selectionEntry">
<categoryLinks>
<categoryLink id="0ac1-8528-5e0b-1eb2" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="572f-f4fe-8269-4c1d" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="fbeb-cb3b-b394-0646" name="Lord-Celestant on Stardrake" hidden="false" collective="false" import="true" targetId="19ca-60d5-c3b7-9444" type="selectionEntry">
<categoryLinks>
<categoryLink id="91a2-4900-6321-5201" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="3520-2ea0-7811-6e40" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="33dc-03f0-d594-342f" name="1 Lord-Relictor" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26bf-5543-9f31-4df1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc71-c1b5-898d-c832" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6f5c-c2e4-d6a7-6483" name="Lord-Relictor" hidden="false" collective="false" import="true" targetId="ce64-88a6-ce56-0940" type="selectionEntry">
<categoryLinks>
<categoryLink id="18da-f594-fc95-b24f" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aba7-e4f3-2224-86ab" name="Battalion: Skyborne Slayers" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6938-a0fc-61af-7b63" name="Honour of the God-King" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Such is their dedication to the duty that Sigmar himself has given them, units from the Skyborne Slayers never need to take battleshock tests.</characteristic>
</characteristics>
</profile>
<profile id="453b-d065-677b-7c60" name="Hurled by Sigmar's Hand" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Instread of setting up a unit from the Skyborne Slayers on the battlefield, you can place it to one side and say it that it is set up in the Celestial Realm. In any of your movement phases, you can transport all of the units from the Skyborne Slayers that you have placed to one side onto the battlefield. When you do so, pick a point anywhere on the battlefield, then set up all of the units within 12" of that point and more than 5" from any enemy models. This is their move for that movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0dc5-a29d-9ff3-c121" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="fad1-a921-0e19-3ba1" name="2 Judicator Units" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4ca-60df-e3b7-aee2" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="02a8-493b-88af-95a5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8cb2-81df-1dfc-fe47" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f4-ef16-b80c-6926" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="379c-7aa7-0813-217a" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="584a-16d2-f290-6d95" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f4-ef16-b80c-6926" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1514-358f-6d33-6baf" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="dd78-6736-e727-5a61" name="1 Decimators Unit" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df06-76c7-b6c4-2e78" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c84c-6c8b-82e5-993f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7606-41fa-e8cc-f97a" name="Decimators" hidden="false" collective="false" import="true" targetId="5330-8a21-c53d-7aa3" type="selectionEntry">
<categoryLinks>
<categoryLink id="deac-75ad-81ee-6758" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="d2bd-6942-6069-bf1a" name="1 Protectors Unit" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b6ce-2830-e3d3-0210" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="de3f-2ea1-1a1a-243c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6c3b-9fb9-2e4e-664b" name="Protectors" hidden="false" collective="false" import="true" targetId="5858-a948-c65e-b3b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="cb00-44eb-293b-629f" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="34e0-953b-3be0-5f0f" name="2 Liberator Units" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f9d-528c-c98f-97b2" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee08-a2a4-9126-f039" type="max"/>
</constraints>
<entryLinks>
<entryLink id="aeb9-c0fe-6111-da85" name="Liberators" hidden="false" collective="false" import="true" targetId="5b8e-b5ee-8df3-9f2f" type="selectionEntry">
<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="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0ea7-10f9-e120-d1b9" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9bd6-eaf2-8e61-1dcb" name="Liberators" hidden="false" collective="false" import="true" targetId="5b8e-b5ee-8df3-9f2f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ee7d-5cf5-311e-cd69" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8bee-616e-cbaf-d722" name="1 Lord-Celestant" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d122-3eb6-c731-4425" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b350-f1be-e224-0569" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6121-4d7f-dc28-fab7" name="Lord-Celestant" hidden="false" collective="false" import="true" targetId="425f-9d59-b2f6-b5f0" type="selectionEntry">
<categoryLinks>
<categoryLink id="e185-c588-8e37-913d" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="190.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7fb3-580c-8aca-03e0" name="Battalion: Thunderhead Brotherhood" publicationId="ed04-877b-pubN71576" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bd1d-3200-ddf4-5d99" name="Sigmarite Shield Wall" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll save rolls of 1 for attacks that target a unit of JUDICATORS from this battalion if that unit is wholly within 3" of a unit of LIBERATORS from the same battalion that has any models carrying a Sigmarite Shield.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="430a-0ae7-c0f6-a0ad" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="6eee-e2d3-5983-631d" name="3 units of Liberators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a051-910f-b08a-e844" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eff9-6334-67b2-b564" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fd20-648d-d4b2-1b50" name="Liberators" hidden="false" collective="false" import="true" targetId="5b8e-b5ee-8df3-9f2f" type="selectionEntry">
<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="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3cbe-bd45-3448-1c43" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4c14-96ba-a1e7-89e9" name="Liberators" hidden="false" collective="false" import="true" targetId="5b8e-b5ee-8df3-9f2f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e7da-4ca4-3f2f-0df2" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4ac5-33b1-0008-4124" name="2 units of Judicators" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7952-19e2-c01d-034b" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1914-18e3-c9d3-1723" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8d9a-1013-c682-cbf2" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81f4-ef16-b80c-6926" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8640-a841-6756-61f2" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="25a6-b799-b6d1-3251" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">