-
Notifications
You must be signed in to change notification settings - Fork 82
/
Order - Seraphon.cat
7944 lines (7941 loc) · 596 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="3721-70d4-3f5f-4609" name="Order - Seraphon" revision="147" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<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 allegiance. 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"/>
<publication id="169e-bacf-c9ec-0520" name="Battletome: Seraphon Errata, July 2021"/>
</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="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="AGGRADON" 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="SKINK COHORT" 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"/>
<categoryEntry id="dd2c-990c-a9c4-d578" name="KIXI-TAKA" hidden="false"/>
<categoryEntry id="0561-b4fb-eaca-340a" name="KLAQ-TROK" hidden="false"/>
<categoryEntry id="0a89-8912-8976-2c47" name="THE STARBLOOD STALKERS" hidden="false"/>
<categoryEntry id="5e04-45a5-ddc7-6de9" name="Seraphon Core Battalion" hidden="false"/>
<categoryEntry id="ab80-ca8a-a7dd-f18f" name="HUNTERS OF HUANCHI" hidden="false"/>
<categoryEntry id="d8a4-af41-b47b-bd12" name="HUNTERS OF HUANCHI WITH DARTPIPES" hidden="false"/>
<categoryEntry id="e436-0485-a27f-7660" name="HUNTERS OF HUANCHI WITH STARSTONE BOLAS" hidden="false"/>
<categoryEntry id="c08d-e1bc-7b36-7935" name="TERRAWINGS" hidden="false"/>
<categoryEntry id="3037-b719-0871-20a9" name="KROXIGOR COHORT" hidden="false"/>
<categoryEntry id="5412-20b2-5d94-8788" name="SAURUS General" hidden="false"/>
<categoryEntry id="95fb-2c45-bd86-5c31" name="AGGRADON LANCERS" hidden="false"/>
<categoryEntry id="d2cd-4499-aa50-a97d" name="SPAWN OF CHOTEC" hidden="false"/>
<categoryEntry id="30c5-ebc4-7492-e849" name="RAPTADON" hidden="false"/>
<categoryEntry id="63d9-8758-926b-67be" name="RAPTADON HUNTERS" hidden="false"/>
<categoryEntry id="3302-60e0-533a-1b66" name="RAPTADON CHARGERS" 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" 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="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0db5-703e-2ec6-4c05" name="Coalesced Realmshaper Engine" hidden="false" collective="false" import="true" targetId="5f32-ba2e-cc13-0d01" type="selectionEntry"/>
<entryLink id="e047-6a4a-89ee-f25d" name="Saurus Oldblood" hidden="false" collective="false" import="true" targetId="6f55-2e3b-4f61-b30f" type="selectionEntry"/>
<entryLink id="9b0b-15a7-a808-66c6" name="Kroxigor Warspawned" hidden="false" collective="false" import="true" targetId="6102-eb22-e928-2ab1" type="selectionEntry"/>
<entryLink id="3a2b-9257-a20d-a68d" name="Lord Kroak" hidden="false" collective="false" import="true" targetId="625a-6dbc-c782-3009" type="selectionEntry"/>
<entryLink id="a4c6-e899-3d7e-93fc" name="Kroxigor" hidden="false" collective="false" import="true" targetId="2a57-79d5-fd4b-6890" type="selectionEntry"/>
<entryLink id="27c0-420b-c3d6-f71b" name="Ripperdactyl Riders" hidden="false" collective="false" import="true" targetId="d000-f974-b547-2c46" type="selectionEntry"/>
<entryLink id="8ebf-5bc8-77d4-1f5d" name="Engine of the Gods" hidden="false" collective="false" import="true" targetId="702a-149e-9520-034e" type="selectionEntry"/>
<entryLink id="b9dd-0aa1-57cd-9231" name="Ripperdactyl Chief" hidden="false" collective="false" import="true" targetId="a6b4-dda7-c1fc-a349" type="selectionEntry"/>
<entryLink id="62b7-35fb-dcf7-db06" name="Saurus Guard" hidden="false" collective="false" import="true" targetId="3dbf-fe0f-4b95-22c5" type="selectionEntry"/>
<entryLink id="1e7e-d14b-52cd-f756" name="Saurus Astrolith Bearer" hidden="false" collective="false" import="true" targetId="edfc-b6e7-ad62-c2d2" type="selectionEntry"/>
<entryLink id="59f7-0147-f830-040a" name="Terradon Chief" hidden="false" collective="false" import="true" targetId="b8b5-ba31-ce4b-d6d0" type="selectionEntry"/>
<entryLink id="2911-1b75-a76d-2575" name="Saurus Warriors" hidden="false" collective="false" import="true" targetId="b55d-f965-6362-5d35" type="selectionEntry"/>
<entryLink id="ace0-106d-3d89-cdce" name="Skink Oracle on Troglodon" hidden="false" collective="false" import="true" targetId="e8aa-d178-ec53-a2fc" type="selectionEntry"/>
<entryLink id="b71b-a6dd-4f38-4482" name="Saurus Scar-Veteran on Aggradon" hidden="false" collective="false" import="true" targetId="da5b-7d0d-ec19-7014" type="selectionEntry"/>
<entryLink id="a106-3aa3-0922-bda5" name="Skink Starseer" hidden="false" collective="false" import="true" targetId="39d0-f549-dcb1-5eb2" type="selectionEntry"/>
<entryLink id="235f-0dc7-3fdc-f1d8" name="Slann Starmaster" hidden="false" collective="false" import="true" targetId="b581-0e1d-bee8-80a5" type="selectionEntry"/>
<entryLink id="2444-e163-17bd-4acd" name="Skink Starpriest" hidden="false" collective="false" import="true" targetId="ffbf-0ff8-fd22-3513" type="selectionEntry"/>
<entryLink id="ccb8-66e4-32a3-6028" name="Skinks" hidden="false" collective="false" import="true" targetId="9d8c-388b-1865-6ad9" type="selectionEntry"/>
<entryLink id="6ee0-8007-464d-f95e" name="Bastiladon with Ark of Sotek" hidden="false" collective="false" import="true" targetId="400a-59ea-4ecc-3d02" type="selectionEntry"/>
<entryLink id="7885-cec7-39ba-5df9" name="Stegadon" hidden="false" collective="false" import="true" targetId="df20-0084-5897-1698" type="selectionEntry"/>
<entryLink id="c1f6-71d1-df09-d879" name="Terradon Riders" hidden="false" collective="false" import="true" targetId="e48a-8865-23e7-f43e" type="selectionEntry"/>
<entryLink id="39f5-ebca-da01-96e7" name="Saurus Oldblood on Carnosaur" hidden="false" collective="false" import="true" targetId="4303-b8b8-8f42-3a7f" type="selectionEntry"/>
<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"/>
<entryLink id="ceed-4217-341a-7344" name="Stegadon Chief" hidden="false" collective="false" import="true" targetId="afab-8206-4b38-c9ca" type="selectionEntry"/>
<entryLink id="6fe0-90b0-413b-443c" name="Dread Saurian" hidden="false" collective="false" import="true" targetId="6900-e288-7c29-6940" type="selectionEntry"/>
<entryLink id="4f66-0f5b-4a76-2eb8" name="Bundo Whalebiter - Kraken-Eater Mercenary" hidden="false" collective="false" import="true" targetId="efae-6133-d899-a7e4" type="selectionEntry"/>
<entryLink id="608f-69c8-3725-ba9b" name="The Celestial Stampede" hidden="false" collective="false" import="true" targetId="ca1e-8724-acdb-2404" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2280-f541-7c38-2cce" name="Kixi-taka the Diviner" hidden="false" collective="false" import="true" targetId="74a3-5520-876a-9090" type="selectionEntry"/>
<entryLink id="8a9e-d278-5012-8845" name="Klaq-trok" hidden="false" collective="false" import="true" targetId="3f66-6fa5-075a-4a62" type="selectionEntry"/>
<entryLink id="91aa-f9d5-6099-207d" name="The Starblood Stalkers" hidden="false" collective="false" import="true" targetId="b040-79c3-bd43-9cd0" type="selectionEntry"/>
<entryLink id="9f37-116e-b940-1445" name="Thunderquake" hidden="false" collective="false" import="true" targetId="619e-41b1-6e8a-9245" type="selectionEntry"/>
<entryLink id="22ff-2f48-a3bf-4c04" name="Hunters of Huanchi with Dartpipes" hidden="false" collective="false" import="true" targetId="b132-86df-c8e0-936a" type="selectionEntry"/>
<entryLink id="fd22-92d1-b169-551b" name="Hunters of Huanchi with Starstone Bolas" hidden="false" collective="false" import="true" targetId="d631-d1d8-3c58-1e15" type="selectionEntry"/>
<entryLink id="19bb-1aa3-47b1-d704" name="Terrawings" hidden="false" collective="false" import="true" targetId="03c6-65f4-aca3-76c5" type="selectionEntry"/>
<entryLink id="bff8-c142-4163-42e9" name="Regiment of Renown - Elthwin's Thorns" hidden="false" collective="false" import="true" targetId="66f8-b848-40fa-a08d" type="selectionEntry"/>
<entryLink id="dfbf-7bbb-bf0e-ad24" name="Regiment of Renown - Norgrimm's Rune Throng" hidden="false" collective="false" import="true" targetId="9553-8763-ddc2-a840" type="selectionEntry"/>
<entryLink id="055b-3177-41e8-4a33" name="Bastiladon with Solar Engine" hidden="false" collective="false" import="true" targetId="0761-b0d9-eec9-5939" type="selectionEntry"/>
<entryLink id="db15-b565-2d0d-094a" name="Raptadon Chargers" hidden="false" collective="false" import="true" targetId="1833-a2bb-65a8-8c8d" type="selectionEntry"/>
<entryLink id="efa1-06cb-04e0-0945" name="Raptadon Hunters" hidden="false" collective="false" import="true" targetId="89c6-3e76-d81d-b5a9" type="selectionEntry"/>
<entryLink id="882d-e0fc-7c1e-9f93" name="Aggradon Lancers" hidden="false" collective="false" import="true" targetId="73ef-8f4e-9855-7752" type="selectionEntry"/>
<entryLink id="4804-45bf-ce16-8f61" name="Grand Strategy" hidden="false" collective="false" import="true" targetId="b0be-6ace-9a70-09ac" type="selectionEntry"/>
<entryLink id="09ad-a6b5-be1e-b0e5" name="Battle Tactics: March of the Seraphon Host" hidden="false" collective="false" import="true" targetId="88b0-e31b-2344-379c" type="selectionEntry"/>
<entryLink id="6d7b-3faf-acbe-dc6a" name="Spawn of Chotec" hidden="false" collective="false" import="true" targetId="1617-159f-db38-2aa2" type="selectionEntry"/>
<entryLink id="3c98-1152-6003-9f61" name="Starborne Realmshaper Engine" hidden="false" collective="false" import="true" targetId="d345-96b3-efa0-c76d" type="selectionEntry"/>
<entryLink import="true" name="Regiment of Renown - Fjori's Flamebearers" hidden="false" type="selectionEntry" id="92dd-99c3-18f-fdaf" targetId="679-2ac4-81f1-ac2"/>
<entryLink import="true" name="Regiment of Renown - The Blacktalons" hidden="false" type="selectionEntry" id="6551-471c-9a71-f96f" targetId="41f8-64ce-7c63-f963"/>
<entryLink id="3cae-9988-a54a-9d0c" name="Gotrek Gurnisson" hidden="false" collective="false" import="true" targetId="24c2-fff5-f17c-3d07" type="selectionEntry">
<entryLinks>
<entryLink id="5658-5421-b688-4013" name="Battalions" hidden="false" collective="false" import="true" targetId="dcde-52e3-fae3-3e14" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Regiment of Renown - Saviours of Cinderfall" hidden="false" id="8393-dc6f-3d3a-b596" type="selectionEntry" targetId="241e-893b-ab5-be55"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="9392-2a0a-99ca-28fe" name="Allegiance" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="minInForce" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="minInForce" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" 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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">
<selectionEntryGroups>
<selectionEntryGroup id="8249-3da9-b330-99f9" name="Army Type" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="91e9-6587-cddf-e087" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b601-b5cf-5579-a898" type="max"/>
</constraints>
<profiles>
<profile id="5038-0ee5-3d3e-8c77" name="Cosmic Power" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If you have a Starborne army, the following are considered to be cosmic nodes:
-Friendly STARBORNE WIZARD units;
-Friendly STARBORNE ASTROLITH BEARER units;
-Friendly Starborne Realmshaper Engine terrain features.
During the battle, you will be able to recieve cosmic power points (CPP) to spend on abilities and summoning units to the battlefield.
You begin with 0 cosmic power points.
At the start of your hero phase, you recieve 1 cosmic power point for each friendly STARBORNE WIZARD or friendly STARBORNE ASTROLITH BEARER on teh battelfield. In addition, you recieve 1 cosmic power point each time a friendly STARBORNE WIZARD successfully casts a spell that is not unbound, successfully unbinds a spell, or successfully dispels an endless spell.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="9d7a-f0e6-366e-0b9b" name="Lords of Space and Time" hidden="false">
<profiles>
<profile id="e495-0536-c3db-0fe0" name="Contemplations of the Ancient Ones" hidden="false" typeId="fff7-7178-1bdb-79d1" typeName="Heroic Action">
<characteristics>
<characteristic name="Description" typeId="ff08-d093-0b68-a4d6">Pick 1 friendly STARBORNE SLANN. Replace 1 spell that they know from the Lore of Celestial Domination with another spell from that table.</characteristic>
</characteristics>
</profile>
<profile id="070a-7028-01d8-e064" name="Spacial Translocation" hidden="false" typeId="fff7-7178-1bdb-79d1" typeName="Heroic Action">
<characteristics>
<characteristic name="Description" typeId="ff08-d093-0b68-a4d6">Pick 1 frinedly STARBORNE SLAAN, and then pick 1 other friendly STARBORNE unit wholly within 12" of them. Remove that other STARBORNE unit from the battlefield and set it up again on the battlefield more than 9" from all enemy units. That unit cannot move in the following movement phase.</characteristic>
</characteristics>
</profile>
<profile id="a88f-6c06-c14d-3463" 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">At the start of your hero phase, you can carry out one of the following heroic actions with a friendly STARBORNE SLANN instead of amny other heroic actions you could carry out with that HERO.
-Contemplations of the Ancient Ones
-Spatial Translocation</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="962c-26e1-7e5c-5ba5" name="Spending Cosmic Power Points" hidden="false">
<profiles>
<profile id="2e1d-5f2b-522a-0381" name="Protection of the Old Ones" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You must spend 10 cosmic power points to use this ability. Until the start of your next hero phase, friendly units affected by the Revivifying Energies ability have a ward of 5+ instead of 6+.</characteristic>
</characteristics>
</profile>
<profile id="735e-6cf1-2bec-5fcf" name="Cleanse the Realms" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You must spend 15 cosmic power points to use this ability. Roll a dice for each enemy unit within 12" of any friendly cosmic nodes. On a 2+, that unit suffers a number of mortal wounds equal to the roll.</characteristic>
</characteristics>
</profile>
<profile id="ecc7-0130-9401-1025" name="Spending Cosmic Power Points" 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 spend your cosmic power points on any of the following abilities. You can only use the ability if you have enough cosmic power points to do so, and the same ability cannot be used more than once each phase.</characteristic>
</characteristics>
</profile>
<profile id="13fe-c19d-af51-f877" name="Azure Light" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You must spend 5 cosmic power points to use this ability. You can return D3 slain models to each friendly STARBORNE unit with a Wounds characteristic of 1 or 2 that is wholly wihtin 12" of any friendly cosmic nodes. Roll separately for each unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="9478-c628-1195-3f59" name="Summoning Seraphon" hidden="false">
<profiles>
<profile id="eeee-b166-90bf-aef6" name="00: Dead Saurian" 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="c761-32a4-9e7c-998a" name="01: Engine of the Gods" 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="820e-640e-4134-6c86" name="02: 1 Stegadon" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">28</characteristic>
</characteristics>
</profile>
<profile id="72a5-b989-7ae2-499c" name="03: 1 Bastiladon" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">24</characteristic>
</characteristics>
</profile>
<profile id="2bc9-3b31-93bb-1c75" name="04: 3 Aggradon Lancers" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">22</characteristic>
</characteristics>
</profile>
<profile id="f891-7208-d860-215b" name="05: 10 Saurus Guard" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">22</characteristic>
</characteristics>
</profile>
<profile id="28a1-75ea-3424-4832" name="06: 10 Saurus Warriors" 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="8e0c-a84d-1677-7ddc" name="07: 3 Kroxigor Warspawned" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">18</characteristic>
</characteristics>
</profile>
<profile id="a339-5491-100b-f12a" name="08: 3 Kroxigor" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">18</characteristic>
</characteristics>
</profile>
<profile id="516b-836b-2577-4685" name="09: 5 Raptadon Hunters" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">16</characteristic>
</characteristics>
</profile>
<profile id="76de-065c-c78d-7451" name="10: 5 Raptadon Chargers" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">16</characteristic>
</characteristics>
</profile>
<profile id="a54b-9773-f6c7-f9e6" name="11: 1 Spawn of Chotec" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">16</characteristic>
</characteristics>
</profile>
<profile id="6252-0414-63e5-d810" name="12: 5 Hunters of Huanchi with Dartpipes" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">12</characteristic>
</characteristics>
</profile>
<profile id="b1a6-bc47-8dfe-34b5" name="17: 10 Skinks" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">8</characteristic>
</characteristics>
</profile>
<profile id="5bce-6fe8-1f59-4c7d" name="14: 3 Ripperdactyl Riders" 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="0ff4-da16-a8ae-2c30" name="15: 5 Hunters of Huanchi with Starstone Bolas" 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="ccf9-6146-e181-77e1" name="16: 3 Terrawings" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">8</characteristic>
</characteristics>
</profile>
<profile id="a67a-8921-a1ae-b9e3" name="13: 3 Terradon Riders" hidden="false" typeId="87af-8523-e104-0413" typeName="Starborne Summoned Unit">
<characteristics>
<characteristic name="CCP Cost" typeId="883c-d046-cdbb-9dce">12</characteristic>
</characteristics>
</profile>
<profile id="0e7f-9ece-59ac-a66c" name="Summoning Seraphon" 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 movemement phase, you can spend your cosmic power points to summon 1 unit from the following list and add it to your army. Each unit you summon costs the number of cosmic power points shown on the list, and you can only summon the unit if you have enough cosmic power points to do so. Units must be set up more than 9" from all enemy units and wholly within 12" of a friendly cosmic node.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="3da8-fb88-bfd3-93ab" name="STARBORNE" hidden="false" targetId="5c3e-e717-d635-9752" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2154-8c38-2300-72b5" name="Constellation Choice" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2a6f-ff19-222d-a8ce" type="max"/>
</constraints>
<profiles>
<profile id="8e4a-c136-51a3-937e" name="The Serpent Strikes" 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">The commanding player of a Fangs of Sotek army can use the Redeploy command up to 3 times in each of their opponent's movement phases. In addition, the first 2 times the Redeploy command is issued to any frinedly FANGS OF SOTEK SKINK units in a phase, no command points are spent.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" 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="169e-bacf-c9ec-0520" page="1" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">During deployment, instead of setting up a DRACOTHION'S TAIL unit on the battlefield, you can place it to one side and say that it is set up on the temple-ship as a reserve unit. You can set up 1 unit on the temple-ship for each DRACOTHION'S TAIL unit you have set up on the battlefield. At the end of your movement phase, you can set up 1 or more of the reserve units on the temple-ship on the battlefield, wholly within 12" of a friendly cosmic node and more than 9" away from all enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8c45-8eed-5a8f-b619" type="max"/>
</constraints>
<profiles>
<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 bite rolls for COALESCED SAURUS armed COALESCED KROXIGOR units with the Mighty Saurus Jaws, Saurus Jaws, or Vice-like Jaws ability.</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 (to a minimum of 1) by each successful attack that targets a COALESCED unit that has the SAURUS, KROXIGOR or MONSTER keyword.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="48a0-d63c-1afa-6a86" name="Beasts of the Dark Jungle" hidden="false">
<profiles>
<profile id="b7b0-b742-4b63-04b5" name="Beasts of the Dark Jungle" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">When you carry out a monstrous rampage with a COALESCED MONSTER, you can carry out 1 of the monstrous rampages below instead of any other monstrous rampage you can carry out with that unit.</characteristic>
</characteristics>
</profile>
<profile id="c72f-ef28-4dbf-f6f6" name="Earthshaking Charge" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Only a STEGADON that has made a charge move in the same phase can carry out this monstrous rampage. Pick 1 enemy unit within 1" of this unit and roll a dice. On a 4+, the strike-lase effect applies to that unit until the end of the following combat phase.</characteristic>
</characteristics>
</profile>
<profile id="20a1-276b-334d-5fa9" name="Gargantuan Jaws" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Only a CARNOSAUR can carry out this monstrous rampage. Pick 1 enemy model within 3" of this unit and roll a dice. If the roll is greater than that model's Wounds characteristic, it is slain.</characteristic>
</characteristics>
</profile>
<profile id="64c1-a7c3-16f5-f740" name="Odious Roar" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Only a TROGLODON can carrry out this monstrous rampage. Roll a dice. On a 2+, until the end of the following combat phase, the range of this unit's Stench of Death ability is 12" instead of 9".</characteristic>
</characteristics>
</profile>
<profile id="e2c4-b6a2-2ccd-3317" name="Bludgeoning Sweep" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">Only a BASTILADON can carry out this monstrous rampage. Pick 1 enemy unit within 2" of this unit that is not a MONSTER and roll a dice. If the roll is less than the number of models in that enemy unit, that enemy unit suffers a number of mortal wounds equal to the roll.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<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" 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" 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">At the end of the charge phase, you can carry out 2 monstrous rampages with each friendly THUNDER LIZARD MONSTER instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5d6e-25f8-1f98-4344" type="max"/>
</constraints>
<profiles>
<profile id="d021-87d3-2abb-646a" name="Savagery 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 wound rolls for attacks made with melee weapons by friendly KOATL’S CLAW SAURUS and KOATL’S CLAW KROXIGOR units that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="edfc-b6e7-ad62-c2d2" name="Saurus Astrolith Bearer" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="add" field="category" value="4f39-af56-dd87-529d">
<conditions>
<condition field="selections" scope="roster" value="1" 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" 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" 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" 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" 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" 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 within 12" of any models with this ability. In addition, add 6" to the range of any spells cast by friendly SERAPHON WIZARDS 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">Friendly SERAPHON units have a ward of 6+ while they are wholly within 12" of any friendly units with this ability.</characteristic>
</characteristics>
</profile>
<profile id="95c8-8750-1685-cd2b" name="Celestite Warclub" 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">4</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">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c1e9-2829-61f7-2e00" name="Mighty Saurus Jaws" hidden="false" targetId="e5c8-4c4e-0b54-47cb" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c121-8d22-4986-2565" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="0f4e-45d9-8b4d-4c3b" name="SAURUS" hidden="false" targetId="8ed5-c845-09e2-7ebd" primary="false"/>
<categoryLink id="31e2-f312-58d7-e8cc" name="ASTROLITH BEARER" hidden="false" targetId="c933-6940-5dcf-edc7" primary="false"/>
<categoryLink id="1593-c3ed-7dcf-d9b4" name="TOTEM" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
<categoryLink id="2190-bd67-576c-1a5a" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="cb18-d609-6706-277e" name="SERAPHON" hidden="false" targetId="461d-c7cb-74f1-84e8" primary="false"/>
<categoryLink id="db3c-138a-3ff8-85a5" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="2033-ec6f-1afc-ed31" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="2eb7-a446-ee27-6d95" primary="false" name="Champion"/>
</categoryLinks>
<entryLinks>
<entryLink id="dfcf-22b0-9706-198e" name="General" hidden="false" collective="false" import="true" targetId="fbb4-b093-95c1-960d" type="selectionEntry">
<categoryLinks>
<categoryLink id="23a7-554e-2181-6d27" name="SAURUS General" hidden="false" targetId="5412-20b2-5d94-8788" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="145b-3760-13cc-71f3" name="Artefacts" hidden="false" collective="false" import="true" targetId="6609-c18e-96b3-a440" type="selectionEntryGroup"/>
<entryLink id="3e19-4db7-23ab-368f" name="Command Traits" hidden="false" collective="false" import="true" targetId="28de-f710-7727-248d" type="selectionEntryGroup"/>
<entryLink id="c725-a520-6a69-8f9e" name="Battalions" hidden="false" collective="false" import="true" targetId="dcde-52e3-fae3-3e14" type="selectionEntryGroup"/>
<entryLink id="a23c-3b3f-d081-cf92" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="0170-7004-b622-ef33" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="6650-815c-aaf0-3964" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</selectionEntry>
<selectionEntry id="da5b-7d0d-ec19-7014" name="Saurus Scar-Veteran on Aggradon" 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" 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" 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" 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" 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" 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" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8d37-c9a1-594d-e386" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="8133-66ae-38f2-ba64" name="Saurus Scar-Veteran on Aggradon" publicationId="3721-70d4-pubN65537" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</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="3db5-cc41-b3aa-2166" name="Primal Rage" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a rage score that starts at 0 at the start of the battle. At the end of each combat phase, if this unit is within 3" of any enemy units, increase its rage score by 1 (to a maximum of 3). At the end of each combat phase, if this unit is not within 3" of any enemy units, reset irs rage score to 0. While this unit has a rage score of 1 or more, add its rage score to the Attacks characteristic of its Rending Bites and Striking Talons.</characteristic>
</characteristics>
</profile>
<profile id="73e8-1c70-7e02-cceb" name="Alpha Roar" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, at the start of the combat phase, you can pick 1 friendly unit with this ability on the battlefield to unleash a feral roar. If you do so, increase the rage score of friendly AGGRADON units wholly within 18" of that unit by 1 (to a maximum of 3).</characteristic>
</characteristics>
</profile>
<profile id="719b-99f7-d79d-23a5" name="Rending Bites and Striking Talons" 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">1"</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2f5f-1111-5173-ae94" name="SAURUS" hidden="false" targetId="8ed5-c845-09e2-7ebd" primary="false"/>
<categoryLink id="7c78-1b41-c79a-607a" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="6d14-7101-4d39-7e67" name="SERAPHON" hidden="false" targetId="461d-c7cb-74f1-84e8" primary="false"/>
<categoryLink id="63cc-c09f-cafe-29b3" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="c0fc-d21b-c337-df0a" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="6f66-5ba1-d73c-efae" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="f68c-ff99-9298-2dcc" name="AGGRADON" hidden="false" targetId="01f5-8180-27e5-ac6a" primary="false"/>
<categoryLink id="63a0-3422-0f7d-34a0" name="SCAR-VETERAN" hidden="false" targetId="29f4-b31f-14c8-d2d9" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1512-c65d-14a9-a8a8" name="Weapon Option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d4e-4331-a070-dd25" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e51c-f95c-c154-baf8" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="006f-b3f2-b6fa-aa41" name="Relic Celestite Spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="737b-d586-4ebc-a1b6" type="max"/>
</constraints>
<profiles>
<profile id="a620-f401-e196-c419" name="Relic Celestite Spear" 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">4</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="821e-934f-6710-e088" name="Relic Celestite Club" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac15-45b9-879c-eb4d" type="max"/>
</constraints>
<profiles>
<profile id="c015-fcb7-bd50-9971" name="Relic Celestite Club" 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e23d-12a1-77c1-062b" name="General" hidden="false" collective="false" import="true" targetId="fbb4-b093-95c1-960d" type="selectionEntry">
<categoryLinks>
<categoryLink id="939c-247c-89e1-16f4" name="SAURUS General" hidden="false" targetId="5412-20b2-5d94-8788" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0952-3074-16de-fa2e" name="Command Traits" hidden="false" collective="false" import="true" targetId="28de-f710-7727-248d" type="selectionEntryGroup"/>
<entryLink id="0ed1-00f1-1c63-d376" name="Artefacts" hidden="false" collective="false" import="true" targetId="6609-c18e-96b3-a440" type="selectionEntryGroup"/>
<entryLink id="850c-8993-eb58-c1b3" name="Battalions" hidden="false" collective="false" import="true" targetId="dcde-52e3-fae3-3e14" type="selectionEntryGroup"/>
<entryLink id="90aa-7161-a5c6-5797" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="e513-b470-7c26-6307" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="6650-815c-aaf0-3964" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140"/>
</costs>
</selectionEntry>
<selectionEntry id="ffbf-0ff8-fd22-3513" name="Skink Starpriest" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="add" field="category" value="4f39-af56-dd87-529d">
<conditions>
<condition field="selections" scope="roster" value="1" 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" 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" 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" 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" 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" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8d37-c9a1-594d-e386" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="660d-b68a-c0a1-9d08" name="Serpent Staff" publicationId="3721-70d4-pubN65537" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can pick 1 friendly SERAPHON unit wholly within 12" of this unit. If you do so, until your next hero phase, if the unmodified wound roll for an attack made by that unit is 6, that attack inflicts 1 mortal wound on the target in addition to any normal damage.</characteristic>
</characteristics>
</profile>
<profile id="2b65-f536-8633-3a6a" name="Blazing Starlight" publicationId="3721-70d4-pubN65537" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster. Until your next hero phase, subtract 1 from hit rolls for attacks made by that unit.</characteristic>
</characteristics>
</profile>
<profile id="4a03-6a70-8570-e2cf" name="Skink Starpriest" publicationId="3721-70d4-pubN65537" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="820f-387c-259c-5378" name="Wizard" publicationId="3721-70d4-pubN65537" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Blazing Starlight</characteristic>
</characteristics>
</profile>
<profile id="1489-fd0c-6970-d54a" name="Serpent Staff" publicationId="3721-70d4-pubN65537" 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">2</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">D3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9412-2a57-e77a-575a" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="8d3c-bef8-8837-9862" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a1ae-bc6e-fd15-344a" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="89f1-2f50-fd7b-0cf7" name="SKINK" hidden="false" targetId="23b5-63b2-a761-9206" primary="false"/>
<categoryLink id="a151-46e5-4b7c-1830" name="STARPRIEST" hidden="false" targetId="2d38-3553-41ac-7413" primary="false"/>
<categoryLink id="c9ad-0659-8476-c5a0" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="83f0-74eb-b777-da30" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="8372-26b3-661e-8e34" name="SERAPHON" hidden="false" targetId="461d-c7cb-74f1-84e8" primary="false"/>
<categoryLink id="8886-1f22-29dc-6436" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="7698-5997-0f0d-8e47" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="f0e9-182f-4559-833a" primary="false" name="Champion"/>
</categoryLinks>
<entryLinks>
<entryLink id="4afd-0277-bf69-fbfd" name="Spell Lores" hidden="false" collective="false" import="true" targetId="c399-a06c-720a-4bec" type="selectionEntryGroup"/>
<entryLink id="8f71-2152-91de-488a" name="General" hidden="false" collective="false" import="true" targetId="fbb4-b093-95c1-960d" type="selectionEntry"/>
<entryLink id="33fe-e0c2-b3a5-4827" name="Command Traits" hidden="false" collective="false" import="true" targetId="28de-f710-7727-248d" type="selectionEntryGroup"/>
<entryLink id="bd3d-2170-6f77-d7a3" name="Artefacts" hidden="false" collective="false" import="true" targetId="6609-c18e-96b3-a440" type="selectionEntryGroup"/>
<entryLink id="948e-a370-3591-16fc" name="Battalions" hidden="false" collective="false" import="true" targetId="dcde-52e3-fae3-3e14" type="selectionEntryGroup"/>
<entryLink id="b507-4e7f-d287-3f28" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="4d51-cfef-e6e9-2618" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="6650-815c-aaf0-3964" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</selectionEntry>
<selectionEntry id="fbb4-b093-95c1-960d" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="732b-2c98-83ac-ed2a" type="max"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5286-1447-bf39-f5b5" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="aa83-dc86-69fe-4fcd" name="General" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f32-ba2e-cc13-0d01" name="Coalesced Realmshaper Engine" publicationId="3721-70d4-pubN65537" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bf4f-9b8f-13ae-9318" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="0e97-cc10-ed1f-0e82" name="Fierce Guardians" publicationId="169e-bacf-c9ec-0520" page="2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to bite rolls made for COALESCED SAURUS and COALESCED KROXIGOR units using the Mighty Saurus Jaws, Saurus Jaws, or Vice-like Jaws if they are wholly within 12" of this terrain feature. In addition, use the top rowon the damage tables of friendly COALESCED MONSTERS if they are wholly within 12" of this terrain feature, regardless of how many wounds they have suffered.</characteristic>
</characteristics>
</profile>
<profile id="c9f6-0b0d-636a-fb7f" name="Set-Up" publicationId="169e-bacf-c9ec-0520" page="2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After territories are determined, you can set up this faction terrain feature wholly within your territory and more than 3" from all objectives and other terrain features. If these restrictions mean you cannot set up this faction terrain feature, you can remove 1 terrain feature that is wholly or partially within your territory and attempt to set up this faction terrain feature again. If it is still impossible to set up this faction terrain feature, then it is not used. If both players can set up faction terrain features at the same time, they must roll off and the winner chooses who sets up their faction terrain features first.</characteristic>
</characteristics>
</profile>
<profile id="ca16-9cbe-5c06-dfb9" name="Impassible" publicationId="169e-bacf-c9ec-0520" page="2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You cannot move a model over this terrain feature unless it can fly, and you cannot move a model onto this terrain feature or set up a model on this terrain feature (even if it can fly).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8726-b15e-89d5-f36d" name="REALMSHAPER ENGINE" hidden="false" targetId="6ad6-b43a-da98-8a7a" primary="false"/>
<categoryLink id="65bc-f4e5-a803-796c" name="Scenery" hidden="false" targetId="bc8a-9257-1601-6d62" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b581-0e1d-bee8-80a5" name="Slann Starmaster" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="add" field="category" value="4f39-af56-dd87-529d">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bf4f-9b8f-13ae-9318" type="atLeast"/>