forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Seraphon.cat
8261 lines (8249 loc) · 624 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="50" 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="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<readme>To some they are the uncompromising, unfeeling vengeance of the heavens. To others they are a race of bloodthirsty reptilian monsters marching forth from the steaming jungles to bring death to those who would intrude upon their sacred grounds. Yet the Seraphon are both these things, and more besides. They are the true children of Azyr, filled with the light of the stars, and they fight to enact a cosmic plan that spans all of creation.
To create a Seraphon force, first choose your allegience. If you choose to align with the Seraphon, then choose your force type and constellation. These effect your unit choices and available relics of power.</readme>
<publications>
<publication id="3721-70d4-pubN65537" name="Order Battletome - Seraphon"/>
</publications>
<profileTypes>
<profileType id="5a09-8444-91ba-f131" name="(Wounds Suffered) Dread Saurian">
<characteristicTypes>
<characteristicType id="c11b-682c-43a6-b768" name="Move"/>
<characteristicType id="eede-09bc-2dbd-26a1" name="Gargantuan Jaws"/>
<characteristicType id="304c-c107-0e5b-1381" name="Raking Claws"/>
</characteristicTypes>
</profileType>
<profileType id="d4d0-eb7a-e2e3-98b6" name="(Wounds Suffered) Troglodon">
<characteristicTypes>
<characteristicType id="51b4-e3da-a716-db78" name="Move"/>
<characteristicType id="15f1-ef6f-3b5c-d848" name="Noxious Spittle"/>
<characteristicType id="856d-0281-154f-740b" name="Venomous Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="2ba5-2a89-3edb-eaf2" name="(Wounds Suffered) Stegadon">
<characteristicTypes>
<characteristicType id="c680-f8d6-c670-c239" name="Move"/>
<characteristicType id="caba-c40b-32b4-a5b9" name="Massive Horns"/>
<characteristicType id="e53f-732a-5ffc-021b" name="Crushing Stomps"/>
</characteristicTypes>
</profileType>
<profileType id="31e4-75dc-7d8f-246a" name="(Wounds Suffered) Bastiladon">
<characteristicTypes>
<characteristicType id="8b45-d9b9-e254-9b0c" name="Save"/>
<characteristicType id="4a4e-b77f-ec63-30a0" name="Solar Engine"/>
<characteristicType id="e9d9-988e-e18d-45b2" name="Ark of Sotek"/>
</characteristicTypes>
</profileType>
<profileType id="fa5c-7a84-fc58-1a28" name="Cosmic Engine Roll">
<characteristicTypes>
<characteristicType id="58fc-b114-56a8-bf9e" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="4958-8467-11bf-beb3" name="(Wounds Suffered) Carnosaur">
<characteristicTypes>
<characteristicType id="738d-4ed0-ca37-dc05" name="Move"/>
<characteristicType id="7285-51b8-b64b-3e7c" name="Clawed Forelimbs"/>
<characteristicType id="e475-ae05-8a45-6a5e" name="Massive Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="392b-293b-df9e-2f68" name="Secret Asterisms">
<characteristicTypes>
<characteristicType id="ef8e-d615-c22c-17ce" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="87af-8523-e104-0413" name="Starborne Summoned Unit">
<characteristicTypes>
<characteristicType id="883c-d046-cdbb-9dce" name="CCP Cost"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8ed5-c845-09e2-7ebd" name="SAURUS" hidden="false"/>
<categoryEntry id="6e2b-9f87-43b7-0a8d" name="SUNBLOOD" hidden="false"/>
<categoryEntry id="d067-6a41-5d7a-e68d" name="ETERNITY WARDEN" hidden="false"/>
<categoryEntry id="7525-4df1-0974-34ee" name="SAURUS SCAR-VETERAN" hidden="false"/>
<categoryEntry id="01f5-8180-27e5-ac6a" name="COLD ONE" hidden="false"/>
<categoryEntry id="c933-6940-5dcf-edc7" name="ASTROLITH BEARER" hidden="false"/>
<categoryEntry id="23b5-63b2-a761-9206" name="SKINK" hidden="false"/>
<categoryEntry id="2d38-3553-41ac-7413" name="STARPRIEST" hidden="false"/>
<categoryEntry id="21c5-232a-57f2-0b96" name="CHAMELEON SKINKS" hidden="false"/>
<categoryEntry id="e8a1-25c1-0976-c3f7" name="SALAMANDER" hidden="false"/>
<categoryEntry id="6ad6-b43a-da98-8a7a" name="REALMSHAPER ENGINE" hidden="false"/>
<categoryEntry id="9ad4-178f-49cc-2ec1" name="HUNTING PACK" hidden="false"/>
<categoryEntry id="f6d3-7f0a-a8a4-0559" name="RAZORDON" hidden="false"/>
<categoryEntry id="f756-9ddc-ec69-fc73" name="SAURUS WARRIORS" hidden="false"/>
<categoryEntry id="1515-c894-3a1a-369f" name="KROXIGOR" hidden="false"/>
<categoryEntry id="a960-67f1-35a1-77ca" name="STARMASTER" hidden="false"/>
<categoryEntry id="ade8-71f6-c225-1090" name="SLANN" hidden="false"/>
<categoryEntry id="ef15-e8e7-8069-3b74" name="CELESTIAL" hidden="false"/>
<categoryEntry id="cf31-fafc-c454-2972" name="DREAD SAURIAN" hidden="false"/>
<categoryEntry id="7475-491d-ae33-f513" name="LORD KROAK" hidden="false"/>
<categoryEntry id="f9ee-a3c8-06f4-422f" name="ORACLE" hidden="false"/>
<categoryEntry id="48a5-8a1e-a3c7-5b5f" name="TROGLODON" hidden="false"/>
<categoryEntry id="c5c6-2fef-106b-bb33" name="STEGADON" hidden="false"/>
<categoryEntry id="5480-5806-43c4-b74e" name="OLDBLOOD" hidden="false"/>
<categoryEntry id="a50e-f248-996b-5e66" name="RIPPERDACTYL" hidden="false"/>
<categoryEntry id="4850-3280-b2bf-8265" name="RIPPERDACTYL CHIEF" hidden="false"/>
<categoryEntry id="d558-70f2-2d1f-f64b" name="RIPPERDACTYL RIDERS" hidden="false"/>
<categoryEntry id="745f-fba0-2977-b1f3" name="ENGINE OF THE GODS" hidden="false"/>
<categoryEntry id="80a2-1d9c-6074-0372" name="BASTILADON" hidden="false"/>
<categoryEntry id="cc9b-a4da-b3a9-78a7" name="TERRADON" hidden="false"/>
<categoryEntry id="23b9-fc94-b59d-9997" name="TERRADON CHIEF" hidden="false"/>
<categoryEntry id="30c4-fc8b-6d15-ca52" name="TERRADON RIDERS" hidden="false"/>
<categoryEntry id="ddde-e76e-3c6b-54fe" name="SAURUS GUARD" hidden="false"/>
<categoryEntry id="c439-a158-7052-397a" name="STARSEER" hidden="false"/>
<categoryEntry id="6ce0-e41c-2ab2-ab31" name="SKINKS" hidden="false"/>
<categoryEntry id="e9eb-dbeb-0763-e765" name="SAURUS KNIGHTS" hidden="false"/>
<categoryEntry id="d19f-2f5b-fa67-a926" name="CARNOSAUR" hidden="false"/>
<categoryEntry id="29f4-b31f-14c8-d2d9" name="SCAR-VETERAN" hidden="false"/>
<categoryEntry id="5c3e-e717-d635-9752" name="STARBORNE" hidden="false"/>
<categoryEntry id="4f39-af56-dd87-529d" name="COALESCED" hidden="false"/>
<categoryEntry id="5edd-1dc8-503e-2b33" name="KOATL'S CLAW" hidden="false"/>
<categoryEntry id="3176-a76e-ba7a-eb6e" name="THUNDER LIZARD" hidden="false"/>
<categoryEntry id="ac6f-bb7a-14d4-33bd" name="DRACOTHION'S TAIL" hidden="false"/>
<categoryEntry id="07dd-34bf-f327-8e83" name="FANGS OF SOTEK" hidden="false"/>
<categoryEntry id="3f68-596d-4abd-d26c" name="BOUND" 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">
<conditionGroups>
<conditionGroup type="or">
<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>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d6b1-f59c-1b14-c85d" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0db5-703e-2ec6-4c05" name="Scenery: Realmshaper Engine" hidden="false" collective="false" import="true" targetId="5f32-ba2e-cc13-0d01" type="selectionEntry">
<categoryLinks>
<categoryLink id="bb43-9270-b288-b74c" name="New CategoryLink" hidden="false" targetId="bc8a-9257-1601-6d62" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e047-6a4a-89ee-f25d" name="Saurus Oldblood" hidden="false" collective="false" import="true" targetId="6f55-2e3b-4f61-b30f" type="selectionEntry">
<categoryLinks>
<categoryLink id="36aa-b1fa-60f0-a9f7" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9b0b-15a7-a808-66c6" name="Saurus Knights" hidden="false" collective="false" import="true" targetId="b5e5-9e49-66e6-0fcc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2769-f63b-fc02-fd64" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="eeeb-e763-89eb-d99e" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bd97-ecd6-b780-e6fe" name="Saurus Eternity Warden" hidden="false" collective="false" import="true" targetId="3217-7b88-90e7-a4e2" type="selectionEntry">
<categoryLinks>
<categoryLink id="7f4d-7938-c3c0-e396" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3a2b-9257-a20d-a68d" name="Lord Kroak" hidden="false" collective="false" import="true" targetId="625a-6dbc-c782-3009" type="selectionEntry">
<categoryLinks>
<categoryLink id="9a60-7efc-5dfe-ad94" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a4c6-e899-3d7e-93fc" name="Kroxigors" hidden="false" collective="false" import="true" targetId="6102-eb22-e928-2ab1" type="selectionEntry">
<categoryLinks>
<categoryLink id="ec3d-2115-0025-a48f" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="27c0-420b-c3d6-f71b" name="Ripperdactyl Riders" hidden="false" collective="false" import="true" targetId="d000-f974-b547-2c46" type="selectionEntry">
<categoryLinks>
<categoryLink id="0d15-3405-61e0-bac5" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3add-7174-d628-edf8" name="Razordon Hunting Pack" hidden="false" collective="false" import="true" targetId="4e2f-3ce4-8c1f-601c" type="selectionEntry">
<categoryLinks>
<categoryLink id="d574-b3aa-c7aa-8aff" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8ebf-5bc8-77d4-1f5d" name="Engine of the Gods" hidden="false" collective="false" import="true" targetId="702a-149e-9520-034e" type="selectionEntry">
<categoryLinks>
<categoryLink id="34f2-6f3f-cb4e-5df5" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="ccda-4b1f-7a71-bf10" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="false"/>
<categoryLink id="dd73-7ab8-c9fa-95f9" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2847-bb80-8b89-946d" name="Chameleon Skinks" hidden="false" collective="false" import="true" targetId="7afb-56e0-0058-52bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="f7d5-3710-07ce-957d" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b9dd-0aa1-57cd-9231" name="Ripperdactyl Chief" hidden="false" collective="false" import="true" targetId="a6b4-dda7-c1fc-a349" type="selectionEntry">
<categoryLinks>
<categoryLink id="df5c-f893-dcd0-a094" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="62b7-35fb-dcf7-db06" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="3dbf-fe0f-4b95-22c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2769-f63b-fc02-fd64" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8db5-f295-9371-2f23" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1e7e-d14b-52cd-f756" name="Saurus Astrolith Bearer" hidden="false" collective="false" import="true" targetId="edfc-b6e7-ad62-c2d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="15dd-2d12-3d1d-ea7e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="59f7-0147-f830-040a" name="Terradon Chief" hidden="false" collective="false" import="true" targetId="b8b5-ba31-ce4b-d6d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="8268-1cb2-6d7d-5dfa" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5396-35c3-7ba1-0c8f" name="Salamander Hunting Pack" hidden="false" collective="false" import="true" targetId="727d-49f8-c7ee-43da" type="selectionEntry">
<categoryLinks>
<categoryLink id="b31c-d9a7-0cb7-7cc7" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2911-1b75-a76d-2575" name="Saurus Warriors" hidden="false" collective="false" import="true" targetId="b55d-f965-6362-5d35" type="selectionEntry">
<categoryLinks>
<categoryLink id="48d4-e337-9a39-a11a" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b565-e205-a8d5-53f3" name="Saurus Sunblood" hidden="false" collective="false" import="true" targetId="e16f-8b5f-98d9-49c4" type="selectionEntry">
<categoryLinks>
<categoryLink id="073b-894d-6c2c-44d9" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ace0-106d-3d89-cdce" name="Skink Oracle on Troglodon" hidden="false" collective="false" import="true" targetId="e8aa-d178-ec53-a2fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="5da0-31ca-bc1f-9c0d" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="acf0-509b-da2f-c275" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b71b-a6dd-4f38-4482" name="Saurus Scar-Veteran on Cold One" hidden="false" collective="false" import="true" targetId="da5b-7d0d-ec19-7014" type="selectionEntry">
<categoryLinks>
<categoryLink id="b7c5-5c94-8e17-96fd" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a106-3aa3-0922-bda5" name="Skink Starseer" hidden="false" collective="false" import="true" targetId="39d0-f549-dcb1-5eb2" type="selectionEntry">
<categoryLinks>
<categoryLink id="af13-52b8-e562-3bc5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="235f-0dc7-3fdc-f1d8" name="Slann Starmaster" hidden="false" collective="false" import="true" targetId="b581-0e1d-bee8-80a5" type="selectionEntry">
<categoryLinks>
<categoryLink id="fa95-a58a-61e8-037c" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2444-e163-17bd-4acd" name="Skink Starpriest" hidden="false" collective="false" import="true" targetId="ffbf-0ff8-fd22-3513" type="selectionEntry">
<categoryLinks>
<categoryLink id="717c-e0a9-d9e8-5755" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ccb8-66e4-32a3-6028" name="Skinks" hidden="false" collective="false" import="true" targetId="9d8c-388b-1865-6ad9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2769-f63b-fc02-fd64" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c323-04b8-77e4-dc4e" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="453a-c1b4-51fa-424d" name="Skink Priest" hidden="false" collective="false" import="true" targetId="d1f4-b364-c443-efad" type="selectionEntry">
<categoryLinks>
<categoryLink id="7f17-e886-7926-20eb" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6ee0-8007-464d-f95e" name="Bastiladon" hidden="false" collective="false" import="true" targetId="400a-59ea-4ecc-3d02" type="selectionEntry">
<categoryLinks>
<categoryLink id="6a82-ccd3-3eaf-b0ea" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7885-cec7-39ba-5df9" name="Stegadon" hidden="false" collective="false" import="true" targetId="df20-0084-5897-1698" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6516-9b52-8f76-270c" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="266c-2b30-198b-b608" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c1f6-71d1-df09-d879" name="Terradon Riders" hidden="false" collective="false" import="true" targetId="e48a-8865-23e7-f43e" type="selectionEntry">
<categoryLinks>
<categoryLink id="4214-3a55-5fd1-5e2a" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1944-3704-d358-a2cb" name="Bound Endless Spell: Prismatic Palisade" hidden="false" collective="false" import="true" targetId="c390-2202-2519-ef51" type="selectionEntry">
<categoryLinks>
<categoryLink id="0092-2fe0-8c89-e01c" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="39f5-ebca-da01-96e7" name="Saurus Oldblood on Carnosaur" hidden="false" collective="false" import="true" targetId="4303-b8b8-8f42-3a7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="303e-9f48-ba3c-3795" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2f11-a45d-2a31-972f" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="47fe-a112-c2ae-0cb8" name="Saurus Scar-Veteran on Carnosaur" hidden="false" collective="false" import="true" targetId="bf66-f998-1545-cdf4" type="selectionEntry">
<categoryLinks>
<categoryLink id="6884-efaa-cad9-2ef4" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="fbef-ece8-0898-1436" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5183-de1a-df9e-2e88" name="Thunderquake Temple-Host" hidden="false" collective="false" import="true" targetId="4b4a-8050-0439-7390" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="283f-5d28-3b57-0d67" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8730-a785-f985-12e7" name="Eternal Temple-Host" hidden="false" collective="false" import="true" targetId="dc6e-6c31-c1ce-b426" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e75c-4183-2e9e-4118" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="88ba-b6e4-8c97-6821" name="Eternal Starhost" hidden="false" collective="false" import="true" targetId="51de-aa11-e5e3-1b42" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a3db-d53d-b542-1396" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5ca4-2fb3-a638-d1bd" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9a6e-6713-5fa2-db3c" name="Sunclaw Temple-Host" hidden="false" collective="false" import="true" targetId="a161-0c5c-cc2a-4cc4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8c06-2c65-4192-a3c2" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="20ad-9fce-2577-56bc" name="Firelance Temple-Host" hidden="false" collective="false" import="true" targetId="ca75-dc1a-da01-c5a8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="15eb-e144-77c3-5efd" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63e7-727e-b639-265a" name="Sunclaw Starhost" hidden="false" collective="false" import="true" targetId="500b-daca-f52a-0587" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a3db-d53d-b542-1396" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ee7e-5258-e7a9-e8e7" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="655e-4feb-eb2a-7f1f" name="Shadowstrike Temple-Host" hidden="false" collective="false" import="true" targetId="23b4-4209-52cf-45c6" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3dc4-7c44-1fe1-f6c6" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="77cc-1b1a-66e9-ccb2" name="Thunderquake Starhost" hidden="false" collective="false" import="true" targetId="3fe1-bdac-fa08-99af" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a3db-d53d-b542-1396" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8cce-f613-d3ea-0f23" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c32a-0abf-cafd-f211" name="Firelance Starhost" hidden="false" collective="false" import="true" targetId="3cc3-b85e-4537-62af" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a3db-d53d-b542-1396" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d168-08e9-1325-e87b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8314-7a88-afe5-e75d" name="Shadowstrike Starhost" hidden="false" collective="false" import="true" targetId="81b9-6d92-5b25-56b9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a3db-d53d-b542-1396" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="26b2-99c4-c457-5f4b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cb0f-0d9f-0662-719a" name="Bound Endless Spell: The Burning Head" hidden="false" collective="false" import="true" targetId="ed6c-7455-34e1-1b99" type="selectionEntry">
<categoryLinks>
<categoryLink id="63c0-b7e0-af20-6d3b" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="808b-b8e0-ae82-b461" name="Bound Endless Spell: Umbral Spellportal" hidden="false" collective="false" import="true" targetId="0868-7f17-8530-6967" type="selectionEntry">
<categoryLinks>
<categoryLink id="11aa-470c-7b9b-7cf2" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9228-7e89-dffc-aac5" name="Bound Endless Spell: Geminids of Uhl-Gyish" hidden="false" collective="false" import="true" targetId="6575-684c-8eed-4c78" type="selectionEntry">
<categoryLinks>
<categoryLink id="3fc2-f51e-a679-40d2" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e3d6-23c8-ef66-a564" name="Bound Endless Spell: Malevolent Maelstrom" hidden="false" collective="false" import="true" targetId="eb78-c346-c247-595b" type="selectionEntry">
<categoryLinks>
<categoryLink id="b301-6434-ed21-a878" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d899-3adf-2055-2103" name="Bound Endless Spell: Aethervoid Pendulum" hidden="false" collective="false" import="true" targetId="4bb2-cd6b-c81f-25c6" type="selectionEntry">
<categoryLinks>
<categoryLink id="342b-a1b8-f868-9d86" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f8b6-72c6-2226-27ff" name="Bound Endless Spell: Emerald Lifeswarm" hidden="false" collective="false" import="true" targetId="ba73-9c5f-fd60-b8fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="f2bd-550e-dce3-276f" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="75e8-bad6-0963-23ca" name="Bound Endless Spell: Soulsnare Shackles" hidden="false" collective="false" import="true" targetId="e231-a109-fd7b-b500" type="selectionEntry">
<categoryLinks>
<categoryLink id="0212-2126-5354-ce7c" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7167-d6d7-8917-3ff4" name="Bound Endless Spell: Purple Sun of Shyish" hidden="false" collective="false" import="true" targetId="d04b-0ad4-b078-8749" type="selectionEntry">
<categoryLinks>
<categoryLink id="206d-69d6-d374-e231" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="636b-132d-6cd0-de96" name="Bound Endless Spell: Ravenak's Gnashing Jaws" hidden="false" collective="false" import="true" targetId="38fa-bd3e-67e5-2626" type="selectionEntry">
<categoryLinks>
<categoryLink id="2b1b-28e8-ffc0-3f60" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2d18-96b2-fd84-3ca5" name="Bound Endless Spell: Chronomatic Cogs" hidden="false" collective="false" import="true" targetId="8d20-37cd-511a-2511" type="selectionEntry">
<categoryLinks>
<categoryLink id="a968-11a6-6633-dba8" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2224-1929-03a1-bea6" name="Bound Endless Spell: Quicksilver Swords" hidden="false" collective="false" import="true" targetId="da21-7920-dff3-df94" type="selectionEntry">
<categoryLinks>
<categoryLink id="351c-8095-0047-38b1" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ad23-cb54-f245-f54c" name="Bound Endless Spell: Suffocating Gravetide" hidden="false" collective="false" import="true" targetId="5e4b-f8cd-5ec1-2ba5" type="selectionEntry">
<categoryLinks>
<categoryLink id="c25a-e230-f2c1-a46e" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="11f8-d439-9971-9190" name="Bound Endless Spell: Balewind Vortex" hidden="false" collective="false" import="true" targetId="4353-de67-728a-1e2a" type="selectionEntry">
<categoryLinks>
<categoryLink id="cf67-62c3-c524-1dac" name="New CategoryLink" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ceed-4217-341a-7344" name="Stegadon with Skink Chief" hidden="false" collective="false" import="true" targetId="afab-8206-4b38-c9ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="8b43-9661-df80-b1d5" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="334c-dbad-acf8-ba92" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f991-d3a5-1403-d55b" name="Stegadon" hidden="false" collective="false" import="true" targetId="df20-0084-5897-1698" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6516-9b52-8f76-270c" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="82cb-ad6c-bd09-244b" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="0266-c5e0-72d2-676b" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4cc3-2e09-ba6b-3d16" name="Skinks" hidden="false" collective="false" import="true" targetId="9d8c-388b-1865-6ad9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2769-f63b-fc02-fd64" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6c8b-6b4a-320f-13ad" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0673-841e-72a8-52eb" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="3dbf-fe0f-4b95-22c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2769-f63b-fc02-fd64" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="733a-dc4b-8f11-dc32" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b33c-8a16-ac99-95f1" name="Saurus Knights" hidden="false" collective="false" import="true" targetId="b5e5-9e49-66e6-0fcc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2769-f63b-fc02-fd64" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="006e-871c-b3cf-03e0" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6fe0-90b0-413b-443c" name="Dread Saurian" hidden="false" collective="false" import="true" targetId="6900-e288-7c29-6940" type="selectionEntry">
<categoryLinks>
<categoryLink id="17a4-cb05-87f5-d2c4" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
</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="5928-0e85-a9e8-db2e" name="The Great Drake" publicationId="3721-70d4-pubN65537" hidden="false" typeId="392b-293b-df9e-2f68" typeName="Secret Asterisms">
<characteristics>
<characteristic name="Effect" typeId="ef8e-d615-c22c-17ce">In the combat phase, pick a friendly SERAPHON HERO. Until the end of that phase, you can add 1 to the Attacks characteristic of melee weapons used by the HERO.</characteristic>
</characteristics>
</profile>
<profile id="62c2-7a00-d04e-bac7" name="The Hunter's Steed" publicationId="3721-70d4-pubN65537" hidden="false" typeId="392b-293b-df9e-2f68" typeName="Secret Asterisms">
<characteristics>
<characteristic name="Effect" typeId="ef8e-d615-c22c-17ce">Add 1 to run and charge rolls for friendly SERAPHON units.</characteristic>
</characteristics>
</profile>
<profile id="0525-d567-5b90-ec2b" name="The Sage's Staff" publicationId="3721-70d4-pubN65537" hidden="false" typeId="392b-293b-df9e-2f68" typeName="Secret Asterisms">
<characteristics>
<characteristic name="Effect" typeId="ef8e-d615-c22c-17ce">At the start of the hero phase, pick 1 friendly SERAPHON WIZARD. You can add 1 to casting and dispelling rolls for that WIZARD if it is your hero phase, and you can add 1 to unbinding rolls for the WIZARD if it is the enemy hero phase.</characteristic>
</characteristics>
</profile>
<profile id="17cf-12b8-8515-2cb5" name="Secret Asterisms" publicationId="3721-70d4-pubN65537" 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, you can pick 1 of the following asterisms to be in ascendance until your next hero phase: The Great Drake, The Hunter's Steed, or The Sage's Staff.</characteristic>
</characteristics>
</profile>
<profile id="0318-5d7b-f214-6726" name="Contemplation of the Ancient Ones" publicationId="3721-70d4-pubN65537" 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 and replace the spell they know from the Lore of Celestial Dominion table with a new spell from that table. Choose or roll for the new spell, rolling again if you generate the spell the SLANN already had.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="8249-3da9-b330-99f9" name="Army Type" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="91e9-6587-cddf-e087" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4536-7bc6-0d9f-5849" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="a3db-d53d-b542-1396" name="Starborne" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b601-b5cf-5579-a898" type="max"/>
</constraints>
<profiles>
<profile id="f2f7-e28e-82c8-71ef" name="Unfeeling" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">STARBORNE units have a Bravery characteristic of 10 instead of the Bravery characteristic on their warscroll.</characteristic>
</characteristics>
</profile>
<profile id="7eee-d039-8d5c-aa9a" name="Celestial Conjuration" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can summon STARBORNE units to the battlefield if you collect enough celestian conjuration points (CCPs). At the start of your hero phase you receive D3 celestial conjuration points if your general is a SLANN or STARSEER and is on the battlefield, and D3 celestial conjuration points if there are one or more friendly SAURUS ASTROTLITH BEARERS on the battlefield.
In addition, in your hero phase, before attempting to cast the first spell with each friendly SLANN or ORACLE, you can say that it will carry out a celestial conjuration. If you do so, you receive D3 celestial conjuration points but the number of spells which that model can attempt to cast in that phase is reduced by 1.
If you have 6 or more celestial conjuration points at the end of your movement phase, you can summon 1 or more units from the list to 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, friendly ORACLE, or friendly SAURUS ASTROLITH BEARER and more than 9” from any enemy units. Subtract the cost of the summoned unit from the number of celestial conjuration points you have immediately after the summoned unit has been set up. Summoned units have the STARBORNE keyword.</characteristic>
</characteristics>
</profile>
<profile id="2be9-bba9-5ea2-be63" name="Lords of Space and Time" publicationId="3721-70d4-pubN65537" 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 movement phase, you can pick 1 friendly STARBORNE 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.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3da8-fb88-bfd3-93ab" name="STARBORNE" hidden="false" targetId="5c3e-e717-d635-9752" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="69f6-455c-05bf-8257" name="Show Celestial Conjuration Table" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="969a-34b7-a6ce-d41e" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3b9b-2063-9dfe-4637" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="969a-34b7-a6ce-d41e" type="min"/>
</constraints>
<profiles>
<profile id="01b9-7716-7b48-f91a" name="28) 10 Skinks" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">6</characteristic>
</characteristics>
</profile>
<profile id="e528-bf1a-8dd5-cb14" name="25) 1 Skink Priest" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="2b1a-a251-52c7-77fd" name="23) 1 Saurus Scar-veteran on Cold One" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="b9e9-a650-a5aa-2453" name="24) 10 Saurus Warriors" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="68ae-864a-1935-00c3" name="19) 1 Saurus Eternity Warden" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="cb10-477b-a289-5de7" name="20) 5 Saurus Guard" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="5b80-796f-f424-5def" name="21) 5 Saurus Knights" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="0c85-94f7-9593-a464" name="22) 1 Saurus Oldblood" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="e4a8-6d08-bb62-7992" name="14) 5 Chameleon Skinks" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="6dc2-537c-2732-883e" name="18) 1 Salamander Hunting Pack" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="27d5-bea0-6e6c-9540" name="15) 1 Razordon Hunting Pack" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="566c-265a-3b80-30ca" name="01) 1 Engine of the Gods" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">30</characteristic>
</characteristics>
</profile>
<profile id="7a05-3147-daa3-f901" name="16) 1 Ripperdactyl Chief" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="b87e-a4b3-8c01-3546" name="26) 1 Terradon Chief" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="1fb6-cc56-9c3e-9188" name="17) 3 Ripperdactyl Riders" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="7f2a-ca5f-ed98-0cc9" name="11) 1 Saurus Sunblood" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">15</characteristic>
</characteristics>
</profile>
<profile id="f837-ebdc-41c0-c6be" name="13) 1 Skink Starseer" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="f373-5342-6361-01a0" name="12) 1 Skink Starpriest" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">15</characteristic>
</characteristics>
</profile>
<profile id="f40d-08d6-07fd-2fca" name="10) 1 Saurus Astrolith Bearer" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">15</characteristic>
</characteristics>
</profile>
<profile id="8b1b-6973-7c16-4c2c" name="27) 3 Terradon Riders" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">10</characteristic>
</characteristics>
</profile>
<profile id="2bd1-85c9-8e0f-99d9" name="08) 20 Saurus Warriors" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">15</characteristic>
</characteristics>
</profile>
<profile id="c1e6-f8d2-b51c-8dd8" name="09) 3 Kroxigor" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">15</characteristic>
</characteristics>
</profile>
<profile id="0bf7-1a75-b1d5-6f3b" name="07) 1 Saurus Scar-veteran on Carnosaur" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">20</characteristic>
</characteristics>
</profile>
<profile id="f045-ecfa-434e-c0bb" name="06) 1 Bastilladon" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">20</characteristic>
</characteristics>
</profile>
<profile id="515b-4fa8-7ed5-ecb3" name="05) 1 Stegadon" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">25</characteristic>
</characteristics>
</profile>
<profile id="8ddd-98a6-af19-d4eb" name="03) 1 Saurus Oldblood on Carnosaur" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">25</characteristic>
</characteristics>
</profile>
<profile id="8192-da71-ba9f-baf3" name="02) 1 Stegadon with Skink Chief" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">30</characteristic>
</characteristics>
</profile>
<profile id="f19c-87f6-2698-a0a9" name="04) 1 Skink Oracle on Troglodon" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">25</characteristic>
</characteristics>
</profile>
<profile id="3b1e-80da-61a2-61a8" name="00) 1 Dread Saurian" publicationId="3721-70d4-pubN65537" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">50</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="2154-8c38-2300-72b5" name="Constellation Choice" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6c34-0923-45ac-7cda" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8d37-c9a1-594d-e386" name="Fangs of Sotek" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2a6f-ff19-222d-a8ce" type="max"/>
</constraints>
<profiles>
<profile id="8e4a-c136-51a3-937e" name="First to Battle" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">In the first battle round, add 3" to the Move characteristic of FANGS OF SOTEK SKINK units.</characteristic>
</characteristics>
</profile>
<profile id="47e1-4312-1d2a-3cfb" name="Parting Shot" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">You can use this command ability when an enemy unit ends a charge move within 3" of a friendly FANGS OF SOTEK unit from the Skinks or Chameleon Skinks warscroll that is wholly within 18" of a friendly FANGS OF SOTEK HERO. If you do so, that unit can shoot. After you have resolved all of that unit’s shooting attacks, roll a dice. On a 4+, that unit must retreat but cannot run. A unit cannot benefit from 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="1586-2009-f123-1fda" name="Dracothion's Tail" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8318-02fd-b63f-ec60" type="max"/>
</constraints>
<profiles>
<profile id="901a-d608-14b9-bf3f" name="Appear on Command" publicationId="3721-70d4-pubN65537" 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 friendly DRACOTHION'S TAIL unit on the battlefield before the battle begins, you can place it to one side and say that it is set up waiting to appear at command as a reserve unit.
At the end of your movement phase, you can set up one or more of the reserve units waiting to appear on command on the battlefield more than 9" from enemy units and wholly within 18" of a friendly DRACOTHION'S TAIL SLANN. Any reserve units waiting to appear on command which have not been set up on the battlefield before the start of the fourth battle round are slain.</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="bf4f-9b8f-13ae-9318" name="Coalesced" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8c45-8eed-5a8f-b619" type="max"/>
</constraints>
<profiles>
<profile id="9bc1-c2f3-1931-a028" name="Cold-blooded" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Ignore modifiers (positive or negative) to the bravery characteristic of COALESCED units.</characteristic>
</characteristics>
</profile>
<profile id="0192-b575-ac84-b53d" name="Predatory Fighters" publicationId="3721-70d4-pubN65537" 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 Attacks characteristic of jaws weapons used by COALESCED units.</characteristic>
</characteristics>
</profile>
<profile id="9b29-2bd1-95ab-4ef0" name="Scaly Skin" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Subtract 1 from the damage inflicted by each successful attack that targets a COALESCED unit (to a minimum of 1).</characteristic>
</characteristics>
</profile>
<profile id="78c0-81b4-1bc8-f20f" name="Primeval Domain" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If a terrain feature is partially or wholly within the territory of a COALESCED army, then any Damned, Arcane, Inspiring, and Mystical scenery rolls for that terrain feature only apply to COALESCED units, while any Deadly and Sinister scenery rolls for that terrain feature do not apply to COALESCED units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e0b9-8223-1bba-5120" name="COALESCED" hidden="false" targetId="4f39-af56-dd87-529d" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3528-87a7-0ae6-ea5c" name="Constellation Choice" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7aa9-57bc-6910-2ec1" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6516-9b52-8f76-270c" name="The Thunder Lizard" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9e56-cfdf-fcc9-5f63" type="max"/>
</constraints>
<profiles>
<profile id="991f-07d1-0582-1f7d" name="Mighty Beasts of War" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 2 to the Wounds characteristic of THUNDER LIZARD MONSTERS</characteristic>
</characteristics>
</profile>
<profile id="55a0-a38d-cbb0-e908" name="Trove of the Old One Technology" publicationId="3721-70d4-pubN65537" 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 end of your shooting phase. If you do so, pick 1 friendly THUNDER LIZARD BASTILADON or friendly THUNDER LIZARD ENGINE OF THE GODS that is wholly within 18" of a friendly THUNDER LIZARD HERO. If that unit is a BASTILADON, it can shoot with its Solar Engine even if it has already done so in that phase. If that unit is an ENGINE OF THE GODS, you can make a cosmic engine roll for it even if you have already done so in that phase. A unit cannot benefit from 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="ed12-8fa0-73b0-9543" name="Koatl's Claw" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5d6e-25f8-1f98-4344" type="max"/>
</constraints>
<profiles>
<profile id="d021-87d3-2abb-646a" name="Savegery Incarnate" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for attacks made by friendly KOATL'S CLAW SAURUS units that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="33fb-4fc5-baa9-b1b6" name="Controlled Fury" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">You can use this command ability at the start of the combat phase. If you do so, pick 1 friendly KOATL'S CLAW SAURUS unit wholly within 24" of a friendly KOATL'S CLAW SAURUS HERO. That unit counts as having made a charge move in that turn for the purposes of the Savagery Incarnate ability.</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>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<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="edfc-b6e7-ad62-c2d2" name="Saurus Astrolith Bearer" hidden="false" collective="false" import="true" type="unit">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="add" field="category" value="4f39-af56-dd87-529d">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="5c3e-e717-d635-9752">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a3db-d53d-b542-1396" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="3176-a76e-ba7a-eb6e">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6516-9b52-8f76-270c" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="5edd-1dc8-503e-2b33">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ed12-8fa0-73b0-9543" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="ac6f-bb7a-14d4-33bd">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1586-2009-f123-1fda" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="07dd-34bf-f327-8e83">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8d37-c9a1-594d-e386" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="d96e-f5ba-dada-e3db" name="Saurus Astrolith Bearer" publicationId="3721-70d4-pubN65537" 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">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="0aed-5373-63df-babd" name="Celestial Conduit" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to casting rolls for friendly SERAPHON WIZARDS while they are within 12" of any models with this ability. In addition, add 6" to the range of any spells cast by friendly SERAPHON WIZARDS while they are within 12" of any models with this ability.</characteristic>
</characteristics>
</profile>
<profile id="fcf0-caa6-5b63-885c" name="Revivifying Energies" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time you allocate a wound or mortal wound to a friendly SERAPHON unit wholly within 12" of any models with this ability. On a 6, that wound or mortal wound is negated.</characteristic>
</characteristics>