generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Seraphon.cat
1951 lines (1951 loc) · 122 KB
/
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 library="false" id="4e3-e1a7-a8d4-8719" name="Seraphon" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<catalogueLinks>
<catalogueLink type="catalogue" name="Seraphon - Library" id="bac9-83e-a88b-8274" targetId="18f-620a-1c2f-b6b2"/>
</catalogueLinks>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Artefacts of Power" id="5eb0-445-d519-2e79" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Treasures of the Old Ones" id="a601-e112-7073-6803" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Incandescent Rectrices" hidden="false" id="8512-c133-c055-2804" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Incandescent Rectrices" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9326-d3d7-11ca-be2c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">**Heal (D3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="8efb-22bc-2037-db8d" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Coatl Familiar" hidden="false" id="58bf-a607-bb0e-2d8f" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Coatl Familiar" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2302-6d4-c346-7bc6">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Reaction: You declared a **^^Spell^^** ability for a friendly **^^Seraphon Wizard^^** within this unit’s combat range</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add D6 to the casting roll for that spell.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5a6f-d348-41cb-19d5" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bloodrage Pendant" hidden="false" id="2d46-8a01-5cfe-e548" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Bloodrage Pendant" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="44dc-e00b-4874-831a">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Attacks characteristic of this unit’s melee weapons. Add 2 instead if the number of damage points allocated to this unit is equal to or greater than half of this unit’s Health characteristic (rounding up).</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="b7ff-be63-2063-8134" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6626-1911-b68-bd5b"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="3455-4547-af6b-7056" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Seraphon" id="3c87-b58d-e7fd-e347" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Thunderquake Starhost" hidden="false" id="b97a-6930-afde-a025" publicationId="e9d0-a23-6a15-1fcb">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="50ad-7ffb-6b7c-cea"/>
</constraints>
<profiles>
<profile name="Scaly Monstrosities" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="cd60-e9a9-e00c-9116">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 2 to the Health characteristic of friendly **^^Seraphon Monster^^** units</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Eternal Starhost" hidden="false" id="5cc-6d3e-8b37-912f" publicationId="e9d0-a23-6a15-1fcb">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="61fe-c623-6bb2-48af"/>
</constraints>
<profiles>
<profile name="Celestial Translocation" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cff3-3702-ebb0-2096">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Seraphon^^** unit wholly within 12" of a friendly **^^Seraphon Wizard^^** to use this ability</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, remove that unit from the battlefield and set it up again on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Shadowstrike Starhost" hidden="false" id="7633-86a-1c15-3fb7" publicationId="e9d0-a23-6a15-1fcb">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="79b2-5507-824f-2c30"/>
</constraints>
<profiles>
<profile name="Nimble and Quick" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ad6-40ed-51a7-3d20">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4"/>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 friendly **^^Skink Infantry or Skink Cavalry^^** units that are not in combat to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Each target can move D6". Each target cannot move into combat during any part of that move.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sunclaw Starhost" hidden="false" id="8468-aa4c-c167-b4f4" publicationId="e9d0-a23-6a15-1fcb">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e3da-a98-2fd4-711a"/>
</constraints>
<profiles>
<profile name="Vengeance of Azyr" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7c7e-3757-9881-5bd7">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 friendly **^^Saurus^^** or **^^Kroxigor^^** units that are in combat to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For each target:
• Make a pile-in move.
• Then, pick an enemy unit in combat with the target and roll a D3. On a 2+, inflict an amount of mortal damage on that enemy unit equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="679e-57aa-91da-527a" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="e4fd-c74-e5ab-f18d" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Celestial Disciplines" id="b336-a3e1-35a5-289a" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Being of the Stars" hidden="false" id="249e-88d9-32cd-8e77" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Being of the Stars" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="85e-a68a-6de9-2cc1">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Ignore modifiers to save rolls for this unit (positive and negative).</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a550-87d0-248f-5d0f" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Reptilian Cunning" hidden="false" id="6b3b-52d3-4b70-71a8" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Reptilian Cunning" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ec9-6cd1-3cd7-f94e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit charged this turn, if a friendly unit wholly within 12" of this unit uses the ‘All-out Attack’ command in the combat phase, no command points are spent.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="106-1b9d-c70f-7f49" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Beastmaster" hidden="false" id="57-2ab5-758-806b" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Beastmaster" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5e50-d938-39d2-19a6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 2" to the Move characteristic of friendly **^^Seraphon Cavalry^^** and **^^Seraphon Monster^^** units for the rest of the phase if they are wholly within 12" of this unit at the start of the move.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="f332-5cb8-f6f4-89bc" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2f9f-bfcc-18a7-4c7a"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="25d6-dc65-ea53-a0ac" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Spell Lores" id="65c3-e1e9-516b-a912" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lore of Celestial Manipulation" hidden="false" id="952b-16dc-5986-cf19" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Speed of Huanchi" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="6086-ce9b-38be-28b2">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Seraphon Wizard^^** to cast this spell, pick a visible friendly **^^Seraphon^^** unit wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Until the start of your next turn, the target can use a **^^Run^^** ability and still use **^^Shoot^^** and/or **^^Charge^^** abilities later in the turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Mystical Unforging" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="e0c2-6f59-3b19-9e51">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Seraphon Wizard^^** to cast this spell, pick a visible enemy unit within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Subtract 1 from the Rend characteristic of the target’s weapons until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="Comet's Call" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="78d-5a7e-a6c9-7674">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Seraphon Wizard^^** to cast this spell, pick a visible enemy unit within 18" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a dice for each model in the target unit. For each 5+, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="135a-6472-e1ee-77f2"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Lore of Primal Jungles" hidden="false" id="647e-9f31-ad47-a89f" publicationId="e9d0-a23-6a15-1fcb">
<profiles>
<profile name="Empowered Celestite" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="edf1-a3bd-9224-ac66">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Seraphon Wizard^^** to cast this spell, pick a visible friendly **^^Saurus^^** unit wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Add 1 to the Rend characteristic of the target’s melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Light of Chotec" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="b5b-15c9-fb89-ca1a">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Seraphon Wizard^^** to cast this spell, pick a visible friendly **^^Seraphon^^** unit wholly within 12" of them to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a number of dice equal to the number of damage points the target has. For each 4+, **Heal (1)** the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="The Earth Trembles" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="6af9-2a3c-fa24-1108">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">8</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a friendly **^^Seraphon Wizard^^** to cast this spell, pick a point on the battlefield within 18" of them to be the target point, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Draw a straight line between the target point and the closest part on the caster’s base. Roll a D3 for each unit (friendly and enemy) that has models passed across by this line. On a 2+, inflict an amount of mortal damage on that unit equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5e8a-ad0c-2d8d-431e"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d27b-9c52-e786-ec8a" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Seraphon" hidden="false" id="3ac6-526e-bb2b-edd8">
<profiles>
<profile name="Itzl the Tamer" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="360d-fd80-f153-269f" publicationId="e9d0-a23-6a15-1fcb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e">**^^Asterism^^**</characteristic>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">**Companion** weapons used by friendly **^^Seraphon^^** units have **Crit (2 Hits)**.</characteristic>
</characteristics>
</profile>
<profile name="Further the Great Plan" typeId="55ac-f837-dded-5872" typeName="Ability (Command)" hidden="false" id="4d17-ddf6-7d2a-9889" publicationId="e9d0-a23-6a15-1fcb">
<characteristics>
<characteristic name="Timing" typeId="736-6e3a-d0b5-a1b0">Once Per Battle, Start of the Third Battle Round</characteristic>
<characteristic name="Cost" typeId="a49e-3082-e2a6-e802"/>
<characteristic name="Declare" typeId="b77f-7548-840e-c086">You can use this ability if you meet the condition below that corresponds to the **^^Asterism^^** you picked in the deployment phase.
***Itzl the Tamer:*** 3 or more enemy units have been destroyed.
***Quetzl the Preserver:*** There are no enemy units wholly within friendly territory.
***Sotek the Deliverer:*** The enemy general is in combat or has been destroyed.
***Tepok the Seer:*** There are any friendly **^^Slann^^** units on the battlefield and no friendly **^^Slann^^** units are in combat or have been destroyed.</characteristic>
<characteristic name="Effect" typeId="2111-3ca8-61dd-a5f0">Pick a different **^^Asterism^^** ability. It can be used in addition to the one you picked in the deployment phase.</characteristic>
<characteristic name="Keywords" typeId="445d-f443-5448-e7ce"/>
</characteristics>
</profile>
<profile name="The Great Plan" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="9db2-50c6-6181-fc51" publicationId="e9d0-a23-6a15-1fcb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an **^^Asterism^^** ability.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">That **^^Asterism^^** ability can be used for the rest of the battle, but the others cannot, unless allowed by the ‘Further the Great Plan’ ability.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Quetzl the Preserver" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5089-fe1e-4dd7-5eb4" publicationId="e9d0-a23-6a15-1fcb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e">**^^Asterism^^**</characteristic>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 1 from the Rend characteristic of melee weapons for attacks that target friendly **^^Seraphon^^** units that are wholly within friendly territory.</characteristic>
</characteristics>
</profile>
<profile name="Sotek the Deliverer" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="6960-effd-2a46-d7d4" publicationId="e9d0-a23-6a15-1fcb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e">**^^Asterism^^**</characteristic>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 2 to the Move characteristic of friendly **^^Seraphon^^** units.</characteristic>
</characteristics>
</profile>
<profile name="Tepok the Seer" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="90ae-3432-b3f3-4727" publicationId="e9d0-a23-6a15-1fcb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e">**^^Asterism^^**</characteristic>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to casting rolls for friendly **^^Seraphon^^** units.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="8f1c-9239-3eea-75f" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
</sharedSelectionEntries>
<entryLinks>
<entryLink import="true" name="Lord Kroak" hidden="false" id="7c54-55ca-b272-9eab" type="selectionEntry" targetId="df01-5aa1-a502-7a0c">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e550-1ae8-1de7-365b"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="430"/>
</costs>
</entryLink>
<entryLink import="true" name="Ripperdactyl Chief" hidden="false" id="65f1-ceb3-cb84-5869" type="selectionEntry" targetId="d8da-70c-5bcc-cf9e">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="44b2-6df9-4e45-1c35"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2179-4f81-6e33-cc16" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="d913-7fde-8864-6554" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Astrolith Bearer" hidden="false" id="9d33-e3ab-406-a9c8" type="selectionEntry" targetId="4b2-de6c-326c-97b6">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="9cbf-3cd0-c8ba-3f3a"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b137-2ba4-aec4-ee33" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="67d7-1699-bf81-674e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="468c-feee-6e22-e7b3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b998-aa23-d4b1-5347" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ca8-136-e6a1-e7fe" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="74bb-6987-d78-6035" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="add" value="d252-534-cc7e-8040" field="category"/>
<modifier type="set" value="0" field="9cbf-3cd0-c8ba-3f3a">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="d252-534-cc7e-8040" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="b034-2444-1bbe-2f14" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a676-5752-e10e-f596" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="68c4-e540-32a4-4266" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Terradon Chief" hidden="false" id="3167-94fe-f9e4-e38d" type="selectionEntry" targetId="767f-699-a82d-ca70">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="c29d-b100-f7c4-8e9f"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="2682-2e7d-15df-a5f2" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="6459-7474-14b2-a164" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Oldblood" hidden="false" id="1f76-99a3-c828-4d55" type="selectionEntry" targetId="3516-7156-6daf-a047">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="66a1-d9e2-76c0-646a"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="302a-f673-7c4-edf6" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="932-5bd5-21f8-b13d" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Skink Starseer" hidden="false" id="aa14-a88-ab63-b256" type="selectionEntry" targetId="cde3-25dc-fe17-858c">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="6992-f95-3f02-d14c"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="5090-1576-7372-6615" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="4471-3cbb-be53-58bb" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Oldblood on Carnosaur" hidden="false" id="37cf-5e8e-a51e-f0d3" type="selectionEntry" targetId="21e1-6ffe-85a6-7d9a">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e75d-6f45-30ae-27ab"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="6e7b-b70c-7d5e-4606" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b478-7390-7066-4d43" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="330"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Scar-Veteran on Aggradon" hidden="false" id="f078-aad-f6e3-1a69" type="selectionEntry" targetId="bbf6-9575-ec45-946e">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="8960-3a20-8407-59cf"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="36e2-2f52-e500-67f9" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="742a-71a4-42b8-48d3" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Scar-Veteran on Carnosaur" hidden="false" id="c2e7-b286-84d9-4178" type="selectionEntry" targetId="6a0c-795a-49f9-67e9">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="dcb-8e6e-80f8-7f00"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9fbb-ea93-af7c-fe46" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="e1d8-1e24-f25d-ec25" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="270"/>
</costs>
</entryLink>
<entryLink import="true" name="Skink Oracle on Troglodon" hidden="false" id="e301-1779-149f-1d61" type="selectionEntry" targetId="2d05-d5ba-8359-bb2" page="280">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="3cb8-b2f1-8fa-74fc"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="ab2b-908-577c-71be" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="a159-d4b3-c0d7-1ae6" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Skink Starpriest" hidden="false" id="b034-2444-1bbe-2f14" type="selectionEntry" targetId="abb5-c657-a20e-6e47">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="23b3-b1f5-2f4d-baf8"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b137-2ba4-aec4-ee33" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="74bb-6987-d78-6035" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="0" field="23b3-b1f5-2f4d-baf8">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="b034-2444-1bbe-2f14" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="d252-534-cc7e-8040" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="96b8-5a66-616-42a4" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="8833-53f2-f2d1-df1a" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Slann Starmaster" hidden="false" id="5dc3-62d6-7716-a0c0" type="selectionEntry" targetId="5165-b82-49a6-36b">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e6a1-ba34-88a5-6188"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="bfeb-991c-fa14-1994" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="1e57-8291-eb82-8ed9" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Stegadon Chief" hidden="false" id="e23f-bf65-a3b6-cfa3" type="selectionEntry" targetId="cd8a-43c6-6598-bd0a">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="5f3a-b37b-d89c-7daa"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="a7e8-c51-18f3-55f3" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="5da1-8f7d-ad5e-db8d" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="240"/>
</costs>
</entryLink>
<entryLink import="true" name="Lord Kroak" hidden="false" id="b137-2ba4-aec4-ee33" type="selectionEntry" targetId="df01-5aa1-a502-7a0c">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="99a6-4c12-ba32-6712" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="430"/>
</costs>
</entryLink>
<entryLink import="true" name="Ripperdactyl Chief" hidden="false" id="618f-175b-1ec1-f18d" type="selectionEntry" targetId="d8da-70c-5bcc-cf9e">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="742e-b824-99e6-a19d" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="253e-94a4-b3c-5552" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="80e-4db9-55d0-3023" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Astrolith Bearer" hidden="false" id="e745-4426-5761-4abe" type="selectionEntry" targetId="4b2-de6c-326c-97b6">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="56cc-b984-a119-5aeb" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8263-d366-1d47-43d8" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="8b3c-9284-ce5-1798" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Oldblood" hidden="false" id="67d7-1699-bf81-674e" type="selectionEntry" targetId="3516-7156-6daf-a047">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="4edf-1a20-a23-7cd6" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="884a-bb77-f74b-7ae8" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b49b-cf0f-47bc-369f" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Oldblood on Carnosaur" hidden="false" id="468c-feee-6e22-e7b3" type="selectionEntry" targetId="21e1-6ffe-85a6-7d9a">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="92e-ade0-8461-7eb6" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="15e0-ceda-241f-d495" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="5099-ff6-9c5b-2e3" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="330"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Scar-Veteran on Aggradon" hidden="false" id="b998-aa23-d4b1-5347" type="selectionEntry" targetId="bbf6-9575-ec45-946e">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="7355-d7c4-b158-7d82" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3445-a25-baa7-ffda" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="5c56-adb7-8333-a90a" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
</entryLink>
<entryLink import="true" name="Saurus Scar-Veteran on Carnosaur" hidden="false" id="ca8-136-e6a1-e7fe" type="selectionEntry" targetId="6a0c-795a-49f9-67e9">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="5582-34eb-d5fb-c777" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8eb8-7ff6-8d73-ca49" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="ccb-9d3e-6d3e-b820" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="270"/>
</costs>
</entryLink>
<entryLink import="true" name="Skink Oracle on Troglodon" hidden="false" id="c69d-4143-dafd-a1df" type="selectionEntry" targetId="2d05-d5ba-8359-bb2" page="280">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="eff9-1986-4983-54c2" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="83d4-741d-8a2d-f238" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="daf1-c12d-a5b8-7b92" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Skink Starpriest" hidden="false" id="4a6d-57cc-4f15-dd3a" type="selectionEntry" targetId="abb5-c657-a20e-6e47">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="d290-534a-a0b2-227e" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="447f-43c-8c4d-a026" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="6db3-f58c-7685-db05" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Skink Starseer" hidden="false" id="8b73-3877-1870-fce1" type="selectionEntry" targetId="cde3-25dc-fe17-858c">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="6dab-36ad-5ffe-1612" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8690-9a17-e34a-4238" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="d649-98df-2845-35cb" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160"/>
</costs>
</entryLink>
<entryLink import="true" name="Slann Starmaster" hidden="false" id="74bb-6987-d78-6035" type="selectionEntry" targetId="5165-b82-49a6-36b">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="6b56-9597-ae00-aef6" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="9bf1-556a-a6d9-25ea" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="9d70-5c42-5426-80fe" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Stegadon Chief" hidden="false" id="bbc9-9865-e2d4-3fa1" type="selectionEntry" targetId="cd8a-43c6-6598-bd0a">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="f7c2-c819-7748-cb1" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="ed6f-5ee6-c0b0-3ccb" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="b6e2-a9c6-9134-f0bc" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="240"/>
</costs>
</entryLink>
<entryLink import="true" name="Terradon Chief" hidden="false" id="5c64-36a1-f31e-e470" type="selectionEntry" targetId="767f-699-a82d-ca70">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="4d0d-1663-2683-e319" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="bd36-ea8a-8f37-2cde" type="selectionEntryGroup" targetId="e4fd-c74-e5ab-f18d"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="200d-4a1c-9dfe-c1e0" type="selectionEntryGroup" targetId="5eb0-445-d519-2e79"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130"/>
</costs>
</entryLink>
<entryLink import="true" name="Battle Traits: Seraphon" hidden="false" id="d56-72af-f9-3e05" type="selectionEntry" targetId="3ac6-526e-bb2b-edd8">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="78ff-533c-3916-f26f" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Aggradon Lancers" hidden="false" id="30e7-b18c-2abe-e02" type="selectionEntry" targetId="e485-3d5d-84ae-6f08">
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b137-2ba4-aec4-ee33" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="e745-4426-5761-4abe" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="67d7-1699-bf81-674e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="468c-feee-6e22-e7b3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b998-aa23-d4b1-5347" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ca8-136-e6a1-e7fe" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="74bb-6987-d78-6035" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="d7d0-7a67-e4cb-6e6a" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Bastiladon with Ark of Sotek" hidden="false" id="28b3-9bf9-deef-6f75" type="selectionEntry" targetId="69e4-4d9e-3916-cdbb">
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b137-2ba4-aec4-ee33" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="618f-175b-1ec1-f18d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="468c-feee-6e22-e7b3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ca8-136-e6a1-e7fe" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c69d-4143-dafd-a1df" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4a6d-57cc-4f15-dd3a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8b73-3877-1870-fce1" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="74bb-6987-d78-6035" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="bbc9-9865-e2d4-3fa1" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="5c64-36a1-f31e-e470" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="0" field="fc9-c9d2-6f5b-7bca">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="6d54-625c-d063-13e2" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="618f-175b-1ec1-f18d" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="force" childId="4a6d-57cc-4f15-dd3a" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="force" childId="8b73-3877-1870-fce1" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="force" childId="5c64-36a1-f31e-e470" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition type="atLeast" value="3" field="selections" scope="force" childId="6d54-625c-d063-13e2" shared="true"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="ca8-136-e6a1-e7fe" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="force" childId="c69d-4143-dafd-a1df" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="force" childId="bbc9-9865-e2d4-3fa1" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="fc9-c9d2-6f5b-7bca"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
</entryLink>
<entryLink import="true" name="Bastiladon with Solar Engine" hidden="false" id="49be-f24a-60af-3040" type="selectionEntry" targetId="4fee-26df-ea45-a2d6">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="bca8-e979-103c-47ac" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<modifier type="multiply" value="2" field="points">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="self" childId="1b37-82b8-c062-eb82" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b137-2ba4-aec4-ee33" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="618f-175b-1ec1-f18d" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="468c-feee-6e22-e7b3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b998-aa23-d4b1-5347" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="ca8-136-e6a1-e7fe" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c69d-4143-dafd-a1df" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="4a6d-57cc-4f15-dd3a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8b73-3877-1870-fce1" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="74bb-6987-d78-6035" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="bbc9-9865-e2d4-3fa1" shared="true"/>