forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrder - Seraphon.cat
5830 lines (5827 loc) · 447 KB
/
Order - Seraphon.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="3721-70d4-3f5f-4609" name="Order - Seraphon" revision="41" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="3721-70d4-pubN65537" name="Order Battletime - Seraphon"/>
<publication id="3721-70d4-pubN73248" name="Battletome: Seraphon Errata, June 2018"/>
<publication id="3721-70d4-pubN74661" name="Battletime: Seraphon; Official Errata, December 2018"/>
<publication id="3721-70d4-pubN76169" name="Battletome: Seraphon, Errata July 2018"/>
<publication id="3721-70d4-pubN76194" name="Order Official FAQs and errata, Version 1.4"/>
</publications>
<profileTypes>
<profileType id="b2f2-0f78-6242-9249" name="Cosmic Engine">
<characteristicTypes>
<characteristicType id="8daf-9834-9a87-a2b4" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="405e-e534-dd84-1f2d" name="Carnosaur">
<characteristicTypes>
<characteristicType id="ba6f-1fdc-93e3-e395" name="Move"/>
<characteristicType id="2444-4a40-ee7e-6b5b" name="Clawed Forelimbs"/>
<characteristicType id="acd1-e427-2031-2e3f" name="Massive Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="98ed-33ff-64e7-1768" name="Stegadon">
<characteristicTypes>
<characteristicType id="89b7-8e41-f374-6a72" name="Move"/>
<characteristicType id="58b0-5135-004a-3ece" name="Massive Horns"/>
<characteristicType id="e1d1-8889-2d6d-129e" name="Crushing Stomps"/>
</characteristicTypes>
</profileType>
<profileType id="72a0-8c74-4a91-4287" name="Engine of The Gods">
<characteristicTypes>
<characteristicType id="bdc5-04c9-966b-ad8e" name="Move"/>
<characteristicType id="4169-1130-e205-f377" name="Crushing Stomps"/>
<characteristicType id="ed96-a72e-51c3-cdf3" name="Cosmic Engine"/>
</characteristicTypes>
</profileType>
<profileType id="5286-4cd3-c253-13eb" name="Dread Saurian">
<characteristicTypes>
<characteristicType id="7735-d4f7-7357-6f91" name="Move"/>
<characteristicType id="6a1b-05e0-e5ea-b7e1" name="Gargantuan Jaws"/>
<characteristicType id="8813-f356-4a94-9eca" name="Raking Claws"/>
</characteristicTypes>
</profileType>
<profileType id="9b0b-1e4e-345a-0ced" name="Troglodon">
<characteristicTypes>
<characteristicType id="7640-a039-3f40-ebf7" name="Move"/>
<characteristicType id="a8cd-ef3c-4147-9671" name="Noxious Spittle"/>
<characteristicType id="cdeb-ce96-a92a-c18a" name="Venomous Bite"/>
</characteristicTypes>
</profileType>
<profileType id="6f06-d1b5-d5b4-cbd9" name="Celestial Configuration">
<characteristicTypes>
<characteristicType id="18d1-50f1-0e9d-da53" name="Ascendent Constellation"/>
</characteristicTypes>
</profileType>
<profileType id="2cdf-a2d5-5f6c-b79f" name="Celestial Conjuration Table">
<characteristicTypes>
<characteristicType id="d190-6fda-fd91-619c" name="Seraphon Unit"/>
<characteristicType id="af3e-79ca-8ec2-6782" name="Cost"/>
</characteristicTypes>
</profileType>
<profileType id="b4d1-f203-0afd-7bcb" name="A Celestial Conjuration">
<characteristicTypes>
<characteristicType id="6efb-c03e-f050-612c" name="Description"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="7c69-4225-cf08-7991" name="CELESTIAL" hidden="false"/>
<categoryEntry id="d83a-c159-6a24-5964" name="DREAD SAURIAN" hidden="false"/>
<categoryEntry id="76a4-7384-9cec-5702" name="SLANN" hidden="false"/>
<categoryEntry id="c625-77e8-621c-478f" name="SLANN STARMASTER" hidden="false"/>
<categoryEntry id="a3a3-74d0-e26c-1f80" name="LORD KROAK" hidden="false"/>
<categoryEntry id="8ed5-c845-09e2-7ebd" name="SAURUS" hidden="false"/>
<categoryEntry id="87b5-7495-34d8-ccd6" name="SAURUS OLDBLOOD" hidden="false"/>
<categoryEntry id="6e2b-9f87-43b7-0a8d" name="SAURUS SUNBLOOD" hidden="false"/>
<categoryEntry id="553f-480c-9fa9-246b" name="CARNASAUR" hidden="false"/>
<categoryEntry id="d067-6a41-5d7a-e68d" name="SAURUS ETERNITY WARDEN" hidden="false"/>
<categoryEntry id="76eb-150a-d807-c0f5" name="SAURUS GUARD" hidden="false"/>
<categoryEntry id="7525-4df1-0974-34ee" name="SAURUS SCAR-VETERAN" hidden="false"/>
<categoryEntry id="01f5-8180-27e5-ac6a" name="SAURUS SCAR-VETERAN ON COLD ONE" hidden="false"/>
<categoryEntry id="5e4b-8648-b851-4b64" name="SAURUS WARRIORS" hidden="false"/>
<categoryEntry id="c933-6940-5dcf-edc7" name="SAURUS ASTROLITH BEARER" hidden="false"/>
<categoryEntry id="a341-b9bb-2ea1-6a85" name="SAURUS KNIGHTS" hidden="false"/>
<categoryEntry id="23b5-63b2-a761-9206" name="SKINK" hidden="false"/>
<categoryEntry id="3feb-4730-6179-6c32" name="SKINK STARSEER" hidden="false"/>
<categoryEntry id="2d38-3553-41ac-7413" name="SKINK STARPRIEST" hidden="false"/>
<categoryEntry id="9e47-44bd-bf11-f5e7" name="TROGLODON" hidden="false"/>
<categoryEntry id="21c5-232a-57f2-0b96" name="CHAMELEON SKINKS" hidden="false"/>
<categoryEntry id="e8a1-25c1-0976-c3f7" name="SALAMANDERS" hidden="false"/>
<categoryEntry id="7935-0086-3e84-d6dd" name="RAZORDONS" hidden="false"/>
<categoryEntry id="29b7-c4d9-d2ab-7315" name="SKINK HANDLERS" hidden="false"/>
<categoryEntry id="9278-b9b4-74b1-8845" name="KROXIGOR" hidden="false"/>
<categoryEntry id="df51-dc6d-7ad6-c5af" name="BASTILADON" hidden="false"/>
<categoryEntry id="11cb-108c-7dff-fbd9" name="TERRADON RIDERS" hidden="false"/>
<categoryEntry id="eb18-cee4-4a4b-c2f1" name="RIPPERDACTYL RIDERS" hidden="false"/>
<categoryEntry id="9055-39f4-b038-1e22" name="STEGADON" hidden="false"/>
<categoryEntry id="bcb4-fdaf-e29e-358a" name="ENGINE OF THE GODS" hidden="false"/>
<categoryEntry id="765a-c9ac-533a-0204" name="SKINK PRIEST" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="7332-f387-438b-852c" name="Allegiance" hidden="false" collective="false" import="true" targetId="9392-2a0a-99ca-28fe" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d6b1-f59c-1b14-c85d" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="82e0-2d29-7e5b-e667" name="Razordons" hidden="false" collective="false" import="true" targetId="c7a2-671d-0225-6b08" type="selectionEntry"/>
<entryLink id="1f4d-5663-f84f-cb6f" name="Ripperdactyl Riders" hidden="false" collective="false" import="true" targetId="59d6-54e3-b800-14f5" type="selectionEntry"/>
<entryLink id="35a5-429d-9da6-3499" name="Salamanders" hidden="false" collective="false" import="true" targetId="4ec3-a2b6-0f8e-7323" type="selectionEntry"/>
<entryLink id="ff7f-6502-c24d-fca8" name="[SERA] Terradon Riders" hidden="false" collective="false" import="true" targetId="706d-3ffd-e3db-27bd" type="selectionEntry"/>
<entryLink id="0a58-b3f9-1786-4c8a" name="Bastiladon" hidden="false" collective="false" import="true" targetId="679f-9d2b-b08e-0369" type="selectionEntry"/>
<entryLink id="b65c-1896-b12b-2ca3" name="Engine of the Gods" hidden="false" collective="false" import="true" targetId="d762-819b-29c9-ac17" type="selectionEntry"/>
<entryLink id="2aa5-49ec-3a9e-eebc" name="Stegadon" hidden="false" collective="false" import="true" targetId="fc3e-4365-6025-9ab6" type="selectionEntry"/>
<entryLink id="48f6-33f9-f534-5dda" name="Troglodon" hidden="false" collective="false" import="true" targetId="989e-904b-6bff-17ad" type="selectionEntry"/>
<entryLink id="b3ea-8838-cc91-ece7" name="Lord Kroak" hidden="false" collective="false" import="true" targetId="6e20-8b6e-8d9e-affc" type="selectionEntry"/>
<entryLink id="3f52-5c86-15ec-fc7d" name="Saurus Astrolith Bearer" hidden="false" collective="false" import="true" targetId="edfc-b6e7-ad62-c2d2" type="selectionEntry"/>
<entryLink id="d419-337e-fb01-a9d3" name="Saurus Eternity Warden" hidden="false" collective="false" import="true" targetId="ef93-ac9e-ae7f-ac6d" type="selectionEntry"/>
<entryLink id="4608-1f86-1be9-fcea" name="Saurus Oldblood" hidden="false" collective="false" import="true" targetId="fb13-beda-22dd-b479" type="selectionEntry"/>
<entryLink id="c4c2-5323-5616-9287" name="Saurus Scar-Veteran on Cold One" hidden="false" collective="false" import="true" targetId="da5b-7d0d-ec19-7014" type="selectionEntry"/>
<entryLink id="00f3-d8c9-8477-1e84" name="[SERA] Saurus Sunblood" hidden="false" collective="false" import="true" targetId="bff2-3651-061e-399c" type="selectionEntry"/>
<entryLink id="cc81-faa0-30d7-9760" name="[SERA] Skink Priest" hidden="false" collective="false" import="true" targetId="d1f4-b364-c443-efad" type="selectionEntry"/>
<entryLink id="35a9-7b98-c00b-22ab" name="[SERA] Skink Starpriest" hidden="false" collective="false" import="true" targetId="ffbf-0ff8-fd22-3513" type="selectionEntry"/>
<entryLink id="c292-8f31-84b1-3522" name="Skink Starseer" hidden="false" collective="false" import="true" targetId="bbfd-f102-3ea2-9be6" type="selectionEntry"/>
<entryLink id="3a94-2891-2e73-efae" name="Slann Starmaster" hidden="false" collective="false" import="true" targetId="ff46-b044-1292-762b" type="selectionEntry"/>
<entryLink id="1ccb-f42e-490d-dda5" name="Saurus Oldblood on Carnosaur" hidden="false" collective="false" import="true" targetId="3d28-8e8e-9bf3-948b" type="selectionEntry"/>
<entryLink id="9eaa-0e03-6e3c-878d" name="Saurus Scar-Veteran on Carnosaur" hidden="false" collective="false" import="true" targetId="59df-abd4-0c6b-92a1" type="selectionEntry"/>
<entryLink id="c2f4-8c5b-3c21-3074" name="Kroxigor" hidden="false" collective="false" import="true" targetId="0df2-7203-d8e4-aa17" type="selectionEntry"/>
<entryLink id="b1a1-a0fb-ed4a-9a52" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="cadc-7cee-683e-2d27" type="selectionEntry"/>
<entryLink id="5a7d-cfd3-58fe-2990" name="Saurus Knights" hidden="false" collective="false" import="true" targetId="009b-8ce8-ffd9-6e54" type="selectionEntry"/>
<entryLink id="1469-2136-d88f-e5f3" name="Battalion: Bloodclaw Starhost (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="5a55-c96b-902e-6c33" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1469-2136-d88f-e5f3-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e6ed-2e5a-fdfa-4bcd" name="Battalion: Eternal Starhost" hidden="false" collective="false" import="true" targetId="0f2e-1ec4-98a8-8d1d" type="selectionEntry"/>
<entryLink id="5503-73e9-12a2-a0eb" name="Battalion: Firelance Starhost" hidden="false" collective="false" import="true" targetId="aa3d-e30e-f152-6d01" type="selectionEntry"/>
<entryLink id="6a0c-3675-6d27-a628" name="Battalion: Heavenswatch Starhost (OPEN PLAY)" hidden="false" collective="false" import="true" targetId="ff7c-ef72-bca9-3788" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ca54-0d07-72c2-d26f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6a0c-3675-6d27-a628-be17-6bbd-b857-3f43" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a197-7c8d-5b4c-c3be" name="Battalion: Shadowstrike Starhost" hidden="false" collective="false" import="true" targetId="3b04-0c95-52ca-1ca3" type="selectionEntry"/>
<entryLink id="098a-e842-fabb-2ac1" hidden="false" collective="false" import="true" targetId="8ae0-34ea-0dfc-5657" type="selectionEntry"/>
<entryLink id="a941-c6ae-12af-f82a" name="Battalion: Sunclaw Starhost" hidden="false" collective="false" import="true" targetId="3827-0232-b50d-da4c" type="selectionEntry"/>
<entryLink id="97d3-da16-ac8a-0af6" hidden="false" collective="false" import="true" targetId="4464-1982-3083-783f" type="selectionEntry"/>
<entryLink id="d813-b5aa-1fa5-6fab" name="Dread Saurian" hidden="false" collective="false" import="true" targetId="b68f-a523-1ee5-5173" type="selectionEntry"/>
<entryLink id="29d3-a02e-63d4-9d67" name="Chameleon Skinks" hidden="false" collective="false" import="true" targetId="99f3-0152-aa8c-41ff" type="selectionEntry"/>
<entryLink id="21b6-89bb-3022-4fe4" name="Skink Handlers" hidden="false" collective="false" import="true" targetId="26d0-e465-fd8a-4fe2" type="selectionEntry"/>
<entryLink id="7e70-9810-decd-5ba1" name="Saurus Warriors" hidden="false" collective="false" import="true" targetId="30aa-c696-5aba-545b" type="selectionEntry"/>
<entryLink id="21cc-766e-d68c-6e99" name="Skinks" hidden="false" collective="false" import="true" targetId="71f7-5d3f-645e-a2f6" type="selectionEntry"/>
<entryLink id="604e-4853-a659-0d07" name="Battalion: Dracothian's Tail" hidden="false" collective="false" import="true" targetId="f129-8055-6879-e634" type="selectionEntry"/>
<entryLink id="1efb-2349-ffab-1dd3" name="Battalion: Fangs of Sotek" hidden="false" collective="false" import="true" targetId="50f8-b223-0e2b-0750" type="selectionEntry"/>
<entryLink id="17ca-e1ae-ab88-f91d" name="Battalion: Klaq-Tor's Talons" hidden="false" collective="false" import="true" targetId="d908-6603-1a10-65d0" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="9392-2a0a-99ca-28fe" name="Allegiance" 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="dcab-3034-f776-022e" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="2769-f63b-fc02-fd64">
<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="2769-f63b-fc02-fd64" name="Allegiance: Seraphon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f517-e2ff-6a76-1a0f" name="Master of Order" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">SLANN WIZARDS can attempt to unbind enemy spells that are cast anywhere on the battlefield, and attempt to dispell endless spells anywhere on the battlefield.</characteristic>
</characteristics>
</profile>
<profile id="f704-0788-0496-48d0" name="Lords of Space and Time" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">In your hero phase, you can pick 1 friendly SERAPHON unit anywhere on the battlefield to be transported through space and time. If you do so, remove that unit from the battlefield, and then set it up on the battlefield anywhere that is more than 9" from any enemy unit. This counts as that unit's move for the following movement phase.</characteristic>
</characteristics>
</profile>
<profile id="1ea8-4c07-510e-93e9" name="Contemplations of the Ancient Ones" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">At the end of your hero phase, you can pick 1 friendly SLANN WIZARD and replace the spell they know from the Seraphon Spell Lore table with a new spell from that table. Choose or roll for the new spell, rolling again if you generate the spell the unit had before.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="4b20-16f6-eb11-f5ee" name="Celestial Conjuration" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e1b-e74e-ce5c-5de4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7cab-f625-1fb4-a348" type="max"/>
</constraints>
<profiles>
<profile id="419b-8064-8ad5-ced3" name="01" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Bastiladon</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">24</characteristic>
</characteristics>
</profile>
<profile id="5fee-1910-2f75-f32b" name="02" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Old Blood On Carnosaur</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">24</characteristic>
</characteristics>
</profile>
<profile id="a4a0-f53a-7c37-2ee9" name="03" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Scar-Veteran on Carnosaur</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">24</characteristic>
</characteristics>
</profile>
<profile id="13b7-b2d7-1756-9d57" name="04" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Stegadon</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">24</characteristic>
</characteristics>
</profile>
<profile id="8af0-987e-f15a-7179" name="05" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Engine of the Gods</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">18</characteristic>
</characteristics>
</profile>
<profile id="77e2-c1fc-b2d3-1c41" name="06" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">3 Kroxigor</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">18</characteristic>
</characteristics>
</profile>
<profile id="43de-77ac-489b-d3dd" name="07" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Astrolith Bearer</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">18</characteristic>
</characteristics>
</profile>
<profile id="ad23-32e9-7649-7ecd" name="08" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">20 Saurus Warriors</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">18</characteristic>
</characteristics>
</profile>
<profile id="c7a4-03cd-2684-02c4" name="09" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Skink Starseer</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">18</characteristic>
</characteristics>
</profile>
<profile id="6da7-a26b-c7dc-7ba0" name="10" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Troglodon</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">18</characteristic>
</characteristics>
</profile>
<profile id="720f-3acb-6ce9-c784" name="11" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">5 Chameleon Skinks</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="9f46-3680-0dfb-934c" name="12" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">3 Ripperdactyls</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="2f1e-dbdb-43ac-ebba" name="13" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Eternity Warden</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="ed96-7926-12d3-a4da" name="14" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">5 Saurus Guard</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="2256-1485-0556-57a0" name="15" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">5 Saurus Knights</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="efba-cf25-4f06-86c5" name="16" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Oldblood</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="59f9-96e6-43e0-c4e6" name="17" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Scar-Veteran on Cold One</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="2a24-9c24-f40c-9fc8" name="18" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Saurus Sunblood</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="6f54-b51e-8450-1cfd" name="19" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">10 Saurus Warriors</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="50be-4492-5d26-cc14" name="20" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Skink Priest</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="0dd0-f10a-c20d-bf0d" name="21" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Skink Starpriest</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="8a2d-0536-e3b8-14ca" name="22" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">3 Terradon Riders</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">12</characteristic>
</characteristics>
</profile>
<profile id="3a80-6abe-4505-7717" name="23" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">3 Skink Handlers</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">6</characteristic>
</characteristics>
</profile>
<profile id="191c-075b-f278-e0cf" name="24" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">10 Skinks</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">6</characteristic>
</characteristics>
</profile>
<profile id="de56-bb63-d813-e4f6" name="25" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Razordon</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">6</characteristic>
</characteristics>
</profile>
<profile id="bcc2-2ff7-98d3-4f5e" name="26" hidden="false" typeId="2cdf-a2d5-5f6c-b79f" typeName="Celestial Conjuration Table">
<characteristics>
<characteristic name="Seraphon Unit" typeId="d190-6fda-fd91-619c">1 Salamander</characteristic>
<characteristic name="Cost" typeId="af3e-79ca-8ec2-6782">6</characteristic>
</characteristics>
</profile>
<profile id="853a-1568-f73e-6f44" name="Celestial Conjuration" hidden="false" typeId="b4d1-f203-0afd-7bcb" typeName="A Celestial Conjuration">
<characteristics>
<characteristic name="Description" typeId="6efb-c03e-f050-612c">You can summon units of SERAPHON to the battlefield if you collect enough Celestial Conjuration Points. In your hero phase, before attempting to cast a spell with a SLANN general, you can say that it will carry out Celestial Conjuration instead. If you do so, you receive 3 Celestial Conjuration points instead of being able to attempt to cast that spell. In addition, at the end of your hero phase you receive 1 Celestial Conjuration point if your general is a SLANN and is on the battlefield, and D3 Celestial Conjuration points if there are one or more friendly SAURUS ASTROLITH BEARERS on the battlefield. If you have 6 or more Celestial Conjuration points at the end of your movement phase, you can summon one or more units from the list onto the battlefield, and add them to your army. Each unit you summon costs a number of Celestial Conjuration points, as shown on the list, and you can only summon a unit if you have enough Celestial Conjuration points to pay its cost. Summoned units must be set up wholly within 12" of a friendly SLANN or a friendly SAURUS ASTROLITH BEARER , and more than 9" from any enemy units. Subtract the cost of the summoned unit from the number of Conjuration Points you have immediately after the summoned unit has been set up.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1819-5e57-783b-70d0" name="Allegiance: *Order*" hidden="false" collective="false" import="true" type="upgrade">
<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="679f-9d2b-b08e-0369" name="Bastiladon" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="d4ba-2fda-bd7b-2ac8" name="Bastiladon" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="1140-1089-6f4f-774d" name="Impervious Defence" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When you make save rolls for a Bastiladon, ignore the attacker's Rend characteristic. In addition, roll a die whenever it suffers a mortal wound. On a result of 4 or higher, the wound is ignored.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a58c-6c8f-afad-660e" name="New CategoryLink" hidden="false" targetId="df51-dc6d-7ad6-c5af" primary="false"/>
<categoryLink id="060b-ef42-ec69-bb02" name="New CategoryLink" hidden="false" targetId="7c69-4225-cf08-7991" primary="false"/>
<categoryLink id="0c8b-452a-e19f-c8cb" name="New CategoryLink" hidden="false" targetId="1418-9a68-9f9e-e9a7" primary="false"/>
<categoryLink id="deec-2d57-bf46-a52c" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="dea1-75fe-8398-b6d2" name="New CategoryLink" hidden="false" targetId="23b5-63b2-a761-9206" primary="false"/>
<categoryLink id="09a5-a579-9b3f-4ed0" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="d67d-2470-db50-eea7" name="New CategoryLink" hidden="false" targetId="461d-c7cb-74f1-84e8" primary="false"/>
<categoryLink id="8d5a-1770-5199-fc71" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4618-7a1d-f1fc-ef8c" name="Bludgeoning Tail" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47d7-fac5-4cc4-0149" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2cfe-bda1-c055-4f25" type="min"/>
</constraints>
<profiles>
<profile id="12f9-6fef-c74f-7b28" name="Bludgeoning Tail" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c26c-5923-f8fa-3141" name="Meteoric Javelins" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a49c-364c-1157-6656" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae76-db50-1af5-3a7d" type="min"/>
</constraints>
<infoLinks>
<infoLink id="0b44-8b7f-3b78-5cca" name="Meteoric Javelins (Stegadon)" hidden="false" targetId="b722-623c-858a-2d67" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="2aa3-cbf5-0292-069b" name="Weapon Options" hidden="false" collective="false" import="true" defaultSelectionEntryId="135b-0d63-c92b-126c">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8dc4-2506-4369-1dde" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db8b-282b-5f16-c959" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4075-c29d-890f-6fc9" name="Ark of Sotek" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5da0-2cc9-affc-963b" type="max"/>
</constraints>
<profiles>
<profile id="940e-cd22-6e92-e546" name="Tide of Snakes" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of each combat phase, a Bastiladon carrying an Ark of Sotek can unlease a tide of venemous serpents. Pick up to size enemy units within 8" and mark each on with a dice showing a different number. Then roll twelve dive to see where the snakes go. Each enemy unit suffers one mortal wound for each roll that matches the number on its dice. Any dice that do not roll a matching number have no effect as the snakes slither away.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="135b-0d63-c92b-126c" name="Solar Engine" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6dd-710a-b95a-eaf3" type="max"/>
</constraints>
<profiles>
<profile id="5b9f-e80f-65c4-d3ed" name="Searing Beam" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">20"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="1399-c93b-f64d-ced2" name="Light of the Heavens" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this model's Searing Beam targets a unit of CHAOS DAEMONS, its Damage characteristic is 3 rather than 2.</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="280.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5a55-c96b-902e-6c33" name="Battalion: Bloodclaw Starhost (OPEN PLAY)" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="32e9-ea1b-add5-8f5f" name="Predatory Fighters" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Saurus Warriors, Knights or Guard from this batallion make one additional attack with their Powerful Jaws and Stardrake Shields in the combat phase.</characteristic>
</characteristics>
</profile>
<profile id="b0bc-7876-41c9-c109" name="Strategic Mastery" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">The Saurus Oldblood, and any other HEROES from its starhost that are within 20" in the hero phase, can use the command abilities on their warscrolls even if they are not your general.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0449-104b-a1f7-c377" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2c21-b01d-81c7-747f" name="Oldblood or Oldblood on Carnosaur" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b738-02ad-b7d3-b9aa" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="867f-9115-0578-94c9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fdcb-c616-893b-3bcf" name="Saurus Oldblood on Carnosaur" hidden="false" collective="false" import="true" targetId="3d28-8e8e-9bf3-948b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3175-7f64-30b1-9b26" type="max"/>
</constraints>
</entryLink>
<entryLink id="4ae3-e7a4-78a9-3b82" name="Saurus Oldblood" hidden="false" collective="false" import="true" targetId="fb13-beda-22dd-b479" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b97-9497-dfb4-b6df" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="78a6-2852-4887-8f98" name="Sunblood, Scar-Veteran on Cold One, Scar-Veteran on Carnosaur, Eternity Warden" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6781-8658-6b5d-6989" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7583-6233-bca9-9f2c" type="min"/>
</constraints>
<entryLinks>
<entryLink id="120c-847c-5b9f-61a5" name="Saurus Eternity Warden" hidden="false" collective="false" import="true" targetId="ef93-ac9e-ae7f-ac6d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2b5-a21a-a52e-c2aa" type="max"/>
</constraints>
</entryLink>
<entryLink id="8875-bbd1-3ca4-690d" name="Saurus Scar-Veteran on Carnosaur" hidden="false" collective="false" import="true" targetId="59df-abd4-0c6b-92a1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3c94-2916-8491-bf18" type="max"/>
</constraints>
</entryLink>
<entryLink id="0fbb-a315-f28b-0c84" name="Saurus Scar-Veteran on Cold One" hidden="false" collective="false" import="true" targetId="da5b-7d0d-ec19-7014" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd50-3528-73a7-9a09" type="max"/>
</constraints>
</entryLink>
<entryLink id="42b3-67c8-3323-1fed" name="Saurus Sunblood" hidden="false" collective="false" import="true" targetId="bff2-3651-061e-399c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="185d-86f7-515d-aeac" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6d29-9a6f-a202-d060" name="Warriors, Knights, Guard" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="09bd-7fe4-f837-7525" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b53b-3e32-51fa-a893" type="max"/>
</constraints>
<entryLinks>
<entryLink id="971f-e0ea-01b0-78fc" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="cadc-7cee-683e-2d27" 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="2769-f63b-fc02-fd64" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b41b-cbc3-cfb2-7cd5" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8ab3-c441-a631-3547" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="cadc-7cee-683e-2d27" 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="2769-f63b-fc02-fd64" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="475c-bff3-4634-3b80" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9c32-3c1f-1e58-fd24" name="Saurus Knights" hidden="false" collective="false" import="true" targetId="009b-8ce8-ffd9-6e54" 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="2769-f63b-fc02-fd64" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="73d8-8bff-f7e2-9670" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1a26-6ce5-0168-0075" name="Saurus Knights" hidden="false" collective="false" import="true" targetId="009b-8ce8-ffd9-6e54" 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="2769-f63b-fc02-fd64" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b9b2-3168-96aa-4476" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0a73-2dd0-2b4c-93e5" name="Saurus Warriors" hidden="false" collective="false" import="true" targetId="30aa-c696-5aba-545b" 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="62e4-370f-3318-cdbd" type="notInstanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b78c-c342-c8aa-aa45" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2cc5-4a85-2cf9-0653" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6bb5-fe53-d139-9745" name="Saurus Warriors" hidden="false" collective="false" import="true" targetId="30aa-c696-5aba-545b" 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="62e4-370f-3318-cdbd" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b78c-c342-c8aa-aa45" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="23a4-872e-207d-045f" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0f2e-1ec4-98a8-8d1d" name="Battalion: Eternal Starhost" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4bb3-349a-b5e6-03a1" name="Drakescale Shieldwall" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the result of any save rolls for the Eternal Starhost's Saurus Guard while they are within 10" of their Eternity Warden.</characteristic>
</characteristics>
</profile>
<profile id="5e34-1f84-158d-7055" name="Patient Guardians" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If a unit of Saurus Guard from an Eternal Starhost does not move in its movement or charge phases, its Celestite Polearms have a Damage characterisic of D3 rather than 1 in the following combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8828-ec26-005b-e91b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1b22-dc7b-1085-d383" name="1 Eternity Warden" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8be5-915a-748f-2ce6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4058-fb3b-8725-f9cd" type="min"/>
</constraints>
<entryLinks>
<entryLink id="6c13-32e1-5d40-291f" name="Saurus Eternity Warden" hidden="false" collective="false" import="true" targetId="ef93-ac9e-ae7f-ac6d" type="selectionEntry">
<categoryLinks>
<categoryLink id="67e9-dece-2402-e74f" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f437-f002-413d-0cf0" name="3 Saurus Guard Units" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d17-5804-2c4b-9162" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a80-ec16-e5cf-435f" type="min"/>
</constraints>
<entryLinks>
<entryLink id="b126-db45-417d-d002" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="cadc-7cee-683e-2d27" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="150.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aa3d-e30e-f152-6d01" name="Battalion: Firelance Starhost" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="def7-ef1a-e764-67d7" name="Azyrite Hunters" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 3 to the result of any run and charge rolls for Saurus Knights that are within 10" of their Scar-Veteran.</characteristic>
</characteristics>
</profile>
<profile id="2b7a-7e8a-4d83-f972" name="Blazing Cohort" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If the wound roll for a Celestite weapon carried by a model from a Firelance Starhost is 6 or higher and it charged in the same turn, the attack inflicts an additional mortal wound, as well as any caused by the Saurus Knight's Blazing Lances ability.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cf8a-c639-b0b9-665a" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="32c6-5764-f763-6130" name="1 Scar-Vet on Cold one or Scar-Vet on Carnosaur" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="64b4-6215-c8a8-7905" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6322-a9b8-6e30-2c5e" type="min"/>
</constraints>
<entryLinks>
<entryLink id="abab-0bf8-d7ad-52cf" name="Saurus Scar-Veteran on Carnosaur" hidden="false" collective="false" import="true" targetId="59df-abd4-0c6b-92a1" type="selectionEntry">
<categoryLinks>
<categoryLink id="89d0-8c2e-7ca1-7d49" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="8977-3ae5-22e3-1517" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b89c-9b8e-7e53-c558" name="Saurus Scar-Veteran on Cold One" hidden="false" collective="false" import="true" targetId="da5b-7d0d-ec19-7014" type="selectionEntry">
<categoryLinks>
<categoryLink id="3d9f-8f6b-a75a-9319" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="eb66-101c-d16c-33c0" name="Saurus Knights" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0afa-69c8-f8a8-9c73" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b3b-3207-9427-3259" type="min"/>
</constraints>
<entryLinks>
<entryLink id="9748-1a5c-7204-d3f5" name="Saurus Knights" hidden="false" collective="false" import="true" targetId="009b-8ce8-ffd9-6e54" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="150.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff7c-ef72-bca9-3788" name="Battalion: Heavenswatch Starhost (OPEN PLAY)" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="30e4-d884-2894-7fea" name="The Trap is Sprung" 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, pick an enemy unit that is visible to the Heavenswatch's Skink Starseer. Until your next hero phase, you can re-roll hit and wound rolls of 1 for units from this battalion that attack the unit you picked.</characteristic>
</characteristics>
</profile>
<profile id="387a-a60e-e57d-940f" name="Celestial Surge" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">The great beasts of the Seraphon are almost invincible when they march forth in a pack. In your hero phase each MONSTER from this batallion heals a wound.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="693d-e9f8-4b39-5a30" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="da2a-9ba8-a452-9e7b" name="2 Heroes" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4461-4eb0-2477-2262" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f0d-9866-4d14-662e" type="min"/>
</constraints>
<entryLinks>
<entryLink id="2810-8a08-6b76-ca0f" name="Skink Starpriest" hidden="false" collective="false" import="true" targetId="ffbf-0ff8-fd22-3513" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9479-6a43-1feb-9ce3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bf8d-bff1-650b-52a4" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4a80-1a43-72f1-2b5e" name="Skink Priest" hidden="false" collective="false" import="true" targetId="d1f4-b364-c443-efad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="839a-8c28-e14c-0ac1" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3b4f-c105-5bc8-4d81" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bad6-37d1-4757-c5d4" name="Troglodon" hidden="false" collective="false" import="true" targetId="989e-904b-6bff-17ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d2d-1fe0-6eba-7891" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="2f05-97a0-4ba3-312c" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b349-5134-4ae2-ba8a" name="3-6 Skinks, Terradon Riders, Ripperdactyl Riders, Bastiladon, Stegadon, Engine of the Gods, Kroxigor, Hunting Pack" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f23-443c-7aea-a57a" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="41d1-b549-2f9c-9f1d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f0f6-eeff-2e30-98bc" name="Skinks" hidden="false" collective="false" import="true" targetId="71f7-5d3f-645e-a2f6" 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="62e4-370f-3318-cdbd" type="notInstanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="notInstanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b78c-c342-c8aa-aa45" type="notInstanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e7e1-18eb-576d-3478" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="1d24-604d-e996-4f4a" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="da48-7f45-cd61-e112" name="Skinks" hidden="false" collective="false" import="true" targetId="71f7-5d3f-645e-a2f6" 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="62e4-370f-3318-cdbd" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b78c-c342-c8aa-aa45" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac39-652a-310f-581d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a2db-eaa5-d8e3-8aba" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f249-05ad-d6a3-6de8" name="Terradon Riders" hidden="false" collective="false" import="true" targetId="706d-3ffd-e3db-27bd" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="126e-117d-fc0e-5979" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a808-c9c5-de3b-aada" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0410-8e72-7bb5-b4fd" name="Ripperdactyl Riders" hidden="false" collective="false" import="true" targetId="59d6-54e3-b800-14f5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="edd5-e89f-7c93-f0b0" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0828-23fc-b3ea-e3e6" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b958-5ecf-a0c6-aca4" name="Bastiladon" hidden="false" collective="false" import="true" targetId="679f-9d2b-b08e-0369" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bdc9-9f1b-9b92-8381" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0221-01d6-ac36-b6ba" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="076f-6e88-44e2-7fda" name="Stegadon" hidden="false" collective="false" import="true" targetId="fc3e-4365-6025-9ab6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97ac-7ebe-40e3-4792" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f993-8f22-c8bd-4890" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8674-93bd-d7c2-15d4" name="Engine of the Gods" hidden="false" collective="false" import="true" targetId="d762-819b-29c9-ac17" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4d0d-acbd-40a6-750a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7481-ab44-1867-2751" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="dd63-4654-004f-031b" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="65ca-69c6-8248-4512" name="Kroxigor" hidden="false" collective="false" import="true" targetId="0df2-7203-d8e4-aa17" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b85-2ce9-1eff-3293" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7ba1-71a7-af70-8d39" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8771-896f-c024-fc78" name="Hunting Pack" hidden="false" collective="false" import="true" targetId="1d53-2047-0556-b918" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8030-d498-fd8f-b904" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d946-1156-ccb2-0fb2" name="Skink Starseer" hidden="false" collective="false" import="true" targetId="bbfd-f102-3ea2-9be6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b8d-62d1-2ed0-aa54" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae4e-8614-552b-551a" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="d816-687e-fe5f-b907" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3b04-0c95-52ca-1ca3" name="Battalion: Shadowstrike Starhost" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="20ba-5d3c-5621-2587" name="Stealthy Advance" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">After set-up is complete, you can roll two dice for each unit in a Shadowstrike Starhost and move all of that unit's models up to that many inches.</characteristic>
</characteristics>
</profile>
<profile id="b9d5-8732-40eb-1b8f" name="The Trap is Sprung" 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, pick a unit that is visible to the starhost's Skink Priest or Starpriest. Until your next hero phase, you can re-roll hit and wound rolls of 1 for units from the Shadowstrike Starhost that attack the unit you picked.</characteristic>
</characteristics>
</profile>
<profile id="60a4-141a-8885-531a" name="Strike from the Skies" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Instead of setting up the flying unit from this battalion on the battlefield, you can place it to one side and say that it is hidden amid the clouds. In any of your movement phases, the unit can plummet from the skies to assail the foe. When it does so, you can set it up anywhere more than 3" from the enemy. In the following combat phase, add 1 to the result of any wound rolls made for models from that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6d9f-c124-09d2-0f49" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="6a1b-a351-8e60-05ca" name="1 Skink Starpriest or Skink Priest" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4812-9e35-af3c-373c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2c53-f2a3-f0f5-c39a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9053-7ac7-3c31-c977" name="Skink Starpriest" hidden="false" collective="false" import="true" targetId="ffbf-0ff8-fd22-3513" type="selectionEntry">
<categoryLinks>
<categoryLink id="1de2-3a37-5faf-75f4" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2ba2-c8a9-90e7-abac" name="Skink Priest" hidden="false" collective="false" import="true" targetId="d1f4-b364-c443-efad" type="selectionEntry">
<categoryLinks>
<categoryLink id="89d9-971e-92c8-c1c3" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="017b-6a0c-7b82-1a47" name="2 Skinks or Chameleon Skinks" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75a2-ae97-879b-c5c3" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9f50-af45-0e6e-ef54" type="min"/>
</constraints>
<entryLinks>
<entryLink id="9acb-af10-e181-f52e" name="Skinks" hidden="false" collective="false" import="true" targetId="71f7-5d3f-645e-a2f6" type="selectionEntry"/>
<entryLink id="fae2-c051-f1c8-a917" name="Chameleon Skinks" hidden="false" collective="false" import="true" targetId="99f3-0152-aa8c-41ff" type="selectionEntry">
<categoryLinks>
<categoryLink id="cb53-f055-b1fc-fc0a" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3ed2-e903-8db4-2a6d" name="1 Terradon Riders or Ripperdactyl Riders" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="161c-14c7-c731-56c6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e21-8db8-396c-3fc2" type="min"/>
</constraints>
<entryLinks>
<entryLink id="0fb7-7fff-1a00-55d0" name="Terradon Riders" hidden="false" collective="false" import="true" targetId="706d-3ffd-e3db-27bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="0d31-c834-3798-5a28" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>