generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Sylvaneth.cat
1184 lines (1184 loc) · 77.5 KB
/
Sylvaneth.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="bb7e-b0da-5c2-a980" name="Sylvaneth" 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="Sylvaneth - Library" id="948c-6ad8-8217-2c32" targetId="7e0b-8a19-260-5b58"/>
</catalogueLinks>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Battle Traits: Sylvaneth" hidden="false" id="583a-37b4-52b2-9058">
<profiles>
<profile name="Endless Growth" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3ff5-8812-c55e-7f5a" publicationId="61ee-fae0-f1da-2591">
<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 any number of friendly **^^Sylvaneth^^** units wholly within 6" of a friendly **Awakened Wyldwood** to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">**Heal (D3)** each target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Strike and Fade" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e446-7e34-4e9f-ec50" publicationId="61ee-fae0-f1da-2591">
<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 a friendly **^^Sylvaneth^^** unit that is in combat and is wholly within 6" of a friendly **Awakened Wyldwood** to use this ability.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove that unit from the battlefield and set it up again on the battlefield more than 9" from all enemy units and wholly within 6" of a different friendly **Awakened Wyldwood**.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Walk the Hidden Paths" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c6b6-e57e-e056-40a3" publicationId="61ee-fae0-f1da-2591">
<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 **^^Sylvaneth^^** unit that is not in combat and is wholly within 6" of a friendly **Awakened Wyldwood** to use this ability.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Remove that unit from the battlefield and set it up again on the battlefield more than 9" from all enemy units and wholly within 6" of a different friendly **Awakened Wyldwood**.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="28-9238-9172-750f" targetId="3360-1158-e879-9606" primary="true"/>
</categoryLinks>
</selectionEntry>
</sharedSelectionEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Spell Lores" id="6cbb-5e30-1121-a587" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lore of the Deepwood" hidden="false" id="f82a-967f-acc5-486" defaultAmount="1">
<profiles>
<profile name="Treesong" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="4ea1-b08a-3684-8d35">
<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 **^^Sylvaneth Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">If there are fewer than 3 friendly **Awakened Wyldwoods** on the battlefield, you can set up an **Awakened Wyldwood** wholly within 24" of the caster, more than 3" from all objectives and more than 1" from all enemy units and other terrain features. If there are already 3 friendly **Awakened Wyldwoods** on the battlefield, **Heal (3)** each friendly **Awakened Wyldwood**.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Unlimited^^**</characteristic>
</characteristics>
</profile>
<profile name="The Dwellers Below" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="97df-e136-9fb4-5aca">
<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 **^^Sylvaneth Wizard^^** to cast this spell, pick a visible enemy unit that is either within 12" of this unit or within 6" of an **Awakened Wyldwood** 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 models in the target unit. For each 5+, inflict 1 mortal damage on the target unit.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Wrathful Spirits" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="77cf-59bd-fc8e-f6c7">
<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 **^^Sylvaneth Wizard^^** to cast this spell, pick a friendly **Awakened Wyldwood** wholly within 18" of the caster 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, add 1 to the Rend characteristic of melee weapons used by friendly Sylvaneth units while they are wholly within 6" of 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="952e-8384-237d-f220"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="fb38-44d5-665f-2842" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Artefacts of Power" id="4994-cf8a-db5d-b87d" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Relics of Nature" id="85b0-a88e-ee7a-8bff" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Seed of Rebirth" hidden="false" id="a652-dac3-88b9-5c94" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Seed of Rebirth" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="903-c2e1-8982-3ae6">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit would be destroyed, before removing it from play, roll a dice. On a 3+, this unit is not destroyed and any remaining damage points inflicted on it have no effect. Then, **Heal (1)** this unit. This unit cannot use this ability again for the rest of the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="aba9-8907-644d-2135" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Crown of Fell Bowers" hidden="false" id="e4e4-838a-a42b-98d7" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Crown of Fell Bowers" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="95a9-63d1-425c-7b7e">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On 3+, add 1 to wound rolls for combat attacks made by friendly **^^Sylvaneth^^** units that target that enemy unit this phase.</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="6a6-1cf0-f729-3f3c" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Greenwood Gladius" hidden="false" id="7121-e09e-d407-9785" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Greenwood Gladius" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f04-8155-a9be-9320">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a D3. On a 2+, inflict an amount of mortal damage on the target 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>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d22d-88ab-b1e0-9f26" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7778-1f2a-dd7-5165"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a0d-b49f-3acf-575b" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Battle Formations: Sylvaneth" id="3167-3a8b-117a-f589" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lords of the Clan" hidden="false" id="c221-6b4b-f446-59c6" publicationId="61ee-fae0-f1da-2591">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7272-c329-2b07-f60"/>
</constraints>
<profiles>
<profile name="Healing Song" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="470d-dce9-5e70-29fb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">When using the ‘Endless Growth’ ability, friendly **^^Sylvaneth Monsters^^** can **Heal (3)** instead of **Heal (D3)**.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Forest Folk" hidden="false" id="f1ec-31e8-5064-fe66" publicationId="61ee-fae0-f1da-2591">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="83d9-919a-9331-8fbe"/>
</constraints>
<profiles>
<profile name="Lacerating Strike" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c880-7052-a9f5-e4dd">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to the Rend characteristic of melee weapons used by friendly **^^Sylvaneth^^** non-**^^Kurnothi Infantry^^** units that charged in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Free Spirits" hidden="false" id="e792-e352-7d9-b64c" publicationId="61ee-fae0-f1da-2591">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="364d-d2e8-5df6-89ed"/>
</constraints>
<profiles>
<profile name="Fleet and Swift" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5e1f-17c8-15aa-6e7f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Sylvaneth Cavalry^^** unit to use this ability</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit can use **^^Charge^^** abilities even if it used a **^^Run^^** ability this turn.</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="Outcasts" hidden="false" id="86c5-fa33-9428-ee16" publicationId="61ee-fae0-f1da-2591">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="68f6-e029-bff9-5389"/>
</constraints>
<profiles>
<profile name="The Terror in the Eaves" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f18a-6e1-a8c9-c743">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Subtract 3 from the control scores of enemy units while they are in combat with friendly **^^Sylvaneth^^** units.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="50dd-78a6-4242-aa1d" includeChildSelections="true" includeChildForces="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Heroic Traits" id="ccba-5033-fe11-a2a" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Aspects of Renewal" id="b380-4a6a-d11c-3b62" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spellsinger" hidden="false" id="766a-e8aa-63e0-1946" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Spellsinger" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8895-1649-9758-bb80">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is within the combat range of an **Awakened Wyldwood**:
If this unit is a **^^Wizard^^**, add 1 to casting rolls for this unit.
If this unit is not a **^^Wizard^^**, it has **^^Wizard (1)^^** instead.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4df1-9f79-405b-30b8" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Radiant Spirit" hidden="false" id="c0bc-2a8-8f0b-b2f4" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Radiant Spirit" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="36d8-51ba-515f-9e13">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a **^^Spell^^** or **^^Prayer^^** ability</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, ignore the effect of that spell or prayer on that unit. This unit can use this ability more than once per phase but only once per **^^Spell^^** or **^^Prayer^^** ability.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b">This unit if it is wholly within 12" of a friendly **^^Sylvaneth^^** unit picked to be the target of that spell or prayer.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="569e-be11-9cf7-921d" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warsinger" hidden="false" id="3619-e710-c6e5-490" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Warsinger" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c133-8f0c-936d-30d3">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Sylvaneth^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 2" to the Move characteristic of the target for the rest of the turn.</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="7c57-1263-4a3f-36bd" includeChildSelections="true"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2174-2d6c-6e1-de16"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="e339-1cd2-35b6-4c66" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Manifestation Lores" id="2d93-f507-a1f3-535f" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Manifestations of the Deepwood" hidden="false" id="ddb7-c347-7c88-a2e9">
<profiles>
<profile name="Summon Spiteswarm Hive" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="d13f-a446-86b8-7e66">
<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">If there is not a friendly **Spiteswarm Hive** on the battlefield, pick a friendly **^^Sylvaneth Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Spiteswarm Hive** wholly within 9" of the caster, visible to them and more than 3" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Vengeful Skullroot" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="7395-d2db-354b-7576">
<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">If there is not a friendly **Vengeful Skullroot** on the battlefield, pick a friendly **^^Sylvaneth Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Vengeful Skullroot** wholly within 9" of the caster, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
<profile name="Summon Gladewyrm" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="1c26-1011-7945-e83b">
<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">If there is not a friendly **Gladewyrm** on the battlefield, pick a friendly **^^Sylvaneth Wizard^^** to cast this spell, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Set up a **Gladewyrm** wholly within 9" of the caster, visible to them and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**, **^^Summon^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="24d6-5aae-e2b-8c0"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Spiteswarm Hive" hidden="false" id="5c22-f49b-9ee-a5cd" type="selectionEntry" targetId="e068-6ce6-9de4-be7e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2dbf-8b2a-4081-4f81"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="957-52b1-affc-42d"/>
</constraints>
</entryLink>
<entryLink import="true" name="Vengeful Skullroot" hidden="false" id="13d-7c94-4dcf-e3aa" type="selectionEntry" targetId="84dc-2eda-87f2-5b53">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b478-be24-4bb8-a913"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5f8f-5ac9-14d2-c7c8"/>
</constraints>
</entryLink>
<entryLink import="true" name="Gladewyrm" hidden="false" id="67b7-6997-e31d-d90c" type="selectionEntry" targetId="e02f-38d3-f495-6509">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="854-1f26-3e15-c4c9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8977-6060-ba61-25b8"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Alarielle the Everqueen" hidden="false" id="158c-940b-b29e-94f4" type="selectionEntry" targetId="efc2-ef9b-4eee-a341">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="e16d-bdd2-a561-91a2"/>
</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="680"/>
</costs>
</entryLink>
<entryLink import="true" name="Arch-Revenant" hidden="false" id="b9cf-88a8-577c-d1e9" type="selectionEntry" targetId="c21d-479c-e8ef-b406">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="8d84-41b8-d801-309d"/>
</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="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Heroic Traits" hidden="false" id="f724-dc1a-549d-36ea" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="15f5-7f3a-1e68-ed9e" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Belthanos, First Thorn of Kurnoth" hidden="false" id="647a-e636-968-9440" type="selectionEntry" targetId="f6f4-66ce-c346-42ed">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="ea99-8564-1bce-8e1b"/>
</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="350"/>
</costs>
</entryLink>
<entryLink import="true" name="Drycha Hamadreth" hidden="false" id="d377-eb00-5c9d-15fb" type="selectionEntry" targetId="b3b6-f91d-754d-af73">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="c7e9-6755-aae4-fd87"/>
</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="290"/>
</costs>
</entryLink>
<entryLink import="true" name="Branchwych" hidden="false" id="64e0-75-f55c-f2cc" type="selectionEntry" targetId="e410-e36e-9cea-2482">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="3aec-7fe1-ba2f-b833"/>
</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="120"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="69e0-24ad-e7cf-3b36" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="59fb-f4fc-8c92-afa4" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Spirit of Durthu" hidden="false" id="25b8-cc83-ee3e-b11" type="selectionEntry" targetId="f163-eaf6-2b5b-1cd3">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="b8-e506-fc40-9e2e"/>
</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="330"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="427e-80d7-e30d-c767" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="d858-1d22-6e8f-8235" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="The Lady of Vines" hidden="false" id="1a9a-58b0-5822-4273" type="selectionEntry" targetId="72e5-d623-ac8c-14a1">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="a6e7-8341-a015-1afd"/>
</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="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Warsong Revenant" hidden="false" id="7dd5-7c37-dccd-25b8" type="selectionEntry" targetId="438e-768a-7545-d329">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="bfce-cbe7-a890-f50"/>
</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="200"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="2993-2a93-548e-45d0" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="3504-ceac-3e41-b65c" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Treelord" hidden="false" id="5541-2d10-f30a-24b6" type="selectionEntry" targetId="a896-d266-a881-f920">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="49b5-9659-b4a8-5cb4"/>
</constraints>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" 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="add" value="a00d-5f4a-9e65-a4d3" field="category"/>
<modifier type="set" value="0" field="49b5-9659-b4a8-5cb4">
<conditions>
<condition type="atLeast" value="2" field="selections" scope="force" childId="a00d-5f4a-9e65-a4d3" shared="true"/>
</conditions>
</modifier>
</modifiers>
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="376a-6b97-8699-dd59" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="706e-9a57-f8b5-9bd5" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="e72-ab18-9a67-538d" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Treelord Ancient" hidden="false" id="2a6-9def-8540-1946" type="selectionEntry" targetId="678-a231-5f4c-4d7c">
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="7b9f-a693-d7-1ac0"/>
</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="280"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="f6eb-7441-dc4e-7dcc" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="e483-779f-51bc-850e" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Alarielle the Everqueen" hidden="false" id="959d-ffda-a3a5-db6a" type="selectionEntry" targetId="efc2-ef9b-4eee-a341">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="d11e-8c20-e6b3-1849" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="680"/>
</costs>
</entryLink>
<entryLink import="true" name="Arch-Revenant" hidden="false" id="1baa-e7d7-61a1-95f3" type="selectionEntry" targetId="c21d-479c-e8ef-b406">
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="7b32-a5c2-5631-b1bf" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="8c52-3115-5641-7983" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="0a95-1739-513c-01ee" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Belthanos, First Thorn of Kurnoth" hidden="false" id="b7d-ad95-6f95-638c" type="selectionEntry" targetId="f6f4-66ce-c346-42ed">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="72a5-161-774f-ad37" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="350"/>
</costs>
</entryLink>
<entryLink import="true" name="Branchwych" hidden="false" id="c5f2-a53c-5c0c-736e" type="selectionEntry" targetId="e410-e36e-9cea-2482">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="1377-34dc-70ab-cce1" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="a08a-ef9c-b0a8-3037" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="16b4-3d3d-3257-2375" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Drycha Hamadreth" hidden="false" id="2ed4-4df2-66bd-ac07" type="selectionEntry" targetId="b3b6-f91d-754d-af73">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="efa8-c0ef-3bd8-13d5" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="290"/>
</costs>
</entryLink>
<entryLink import="true" name="Spirit of Durthu" hidden="false" id="1ba3-5bf-df0-e4ae" type="selectionEntry" targetId="f163-eaf6-2b5b-1cd3">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="475c-7a45-91d2-871b" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="330"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="a9de-44e4-2610-d910" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="4e92-379c-3cd9-a56a" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="The Lady of Vines" hidden="false" id="8eb8-a788-e726-2be0" type="selectionEntry" targetId="72e5-d623-ac8c-14a1">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="830c-62b7-9bf4-25c1" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
</entryLink>
<entryLink import="true" name="Treelord" hidden="false" id="a53e-d251-9986-28ac" type="selectionEntry" targetId="a896-d266-a881-f920">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="20d2-af3d-dd14-2081" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="911f-574a-ad47-c1b" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="ca28-b4e6-4d67-c80c" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Treelord Ancient" hidden="false" id="21f4-fbfa-6e85-1c5b" type="selectionEntry" targetId="678-a231-5f4c-4d7c">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="a15a-583b-8fd8-d393" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="280"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="bac6-290c-4341-1053" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="47f1-ef8b-83af-ba71" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Warsong Revenant" hidden="false" id="3028-82cb-fce4-4cf9" type="selectionEntry" targetId="438e-768a-7545-d329">
<categoryLinks>
<categoryLink name="Regimental Leader" hidden="false" id="acb9-1715-c089-a23d" targetId="d1f3-921c-b403-1106" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
<entryLinks>
<entryLink import="true" name="Artefacts of Power" hidden="false" id="4aa6-a8cb-8f87-74c9" type="selectionEntryGroup" targetId="4994-cf8a-db5d-b87d"/>
<entryLink import="true" name="Heroic Traits" hidden="false" id="2e08-ae5b-f50f-971" type="selectionEntryGroup" targetId="ccba-5033-fe11-a2a"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Traits: Sylvaneth" hidden="false" id="3e25-8f0a-9dea-1954" type="selectionEntry" targetId="583a-37b4-52b2-9058">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2224-e0c3-2c1e-3bd0" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="true" name="Dryads" hidden="false" id="4573-37fd-3918-7419" type="selectionEntry" targetId="ccce-ab0c-7c1-bbc2">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="e4bd-91d1-e33b-f490" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Gossamid Archers" hidden="false" id="5d21-41ae-45c5-7c8f" type="selectionEntry" targetId="7395-623b-7652-b8c6">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="bdb0-f5dd-c0bf-bfc3" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1baa-e7d7-61a1-95f3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="120"/>
</costs>
</entryLink>
<entryLink import="true" name="Kurnoth Hunters with Kurnoth Greatbows" hidden="false" id="101-8022-d32c-9d6a" type="selectionEntry" targetId="a457-63b8-99fb-b82f">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="f658-e7d1-5d3d-17a6" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1baa-e7d7-61a1-95f3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</entryLink>
<entryLink import="true" name="Kurnoth Hunters with Kurnoth Greatswords" hidden="false" id="d3f7-d5b1-579c-94dc" type="selectionEntry" targetId="7403-c67e-a2d-a1af">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="3155-8559-15f1-f405" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1baa-e7d7-61a1-95f3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="220"/>
</costs>
</entryLink>
<entryLink import="true" name="Kurnoth Hunters with Kurnoth Scythes" hidden="false" id="88ec-28ce-99da-cbc4" type="selectionEntry" targetId="577a-d471-c08e-6ff4">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="e126-5dce-4c3c-95be" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1baa-e7d7-61a1-95f3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</entryLink>
<entryLink import="true" name="Revenant Seekers" hidden="false" id="965-51e3-4beb-db4e" type="selectionEntry" targetId="766a-54f1-440b-b878">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="2d44-1d8d-de8e-7a1d" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1baa-e7d7-61a1-95f3" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="200"/>
</costs>
</entryLink>
<entryLink import="true" name="Spite-Revenants" hidden="false" id="13a0-2bd-f750-feb8" type="selectionEntry" targetId="bede-574b-208d-f486">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="3172-bd0-7df2-f8e6" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="110"/>
</costs>
</entryLink>
<entryLink import="true" name="Spiterider Lancers" hidden="false" id="95bf-7814-c6f0-e91a" type="selectionEntry" targetId="8d4f-cdc2-f74f-daac">
<entryLinks>
<entryLink import="true" name="Reinforced" hidden="false" id="cbc8-3e7c-abf9-5d4c" type="selectionEntry" targetId="1b37-82b8-c062-eb82"/>
</entryLinks>
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="1ba3-5bf-df0-e4ae" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8eb8-a788-e726-2be0" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="a53e-d251-9986-28ac" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="21f4-fbfa-6e85-1c5b" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="3028-82cb-fce4-4cf9" 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>
<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>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="210"/>
</costs>
</entryLink>
<entryLink import="true" name="The Twistweald" hidden="false" id="686d-2413-5026-1343" type="selectionEntry" targetId="64d1-d8c8-5bff-506c">
<modifiers>
<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="959d-ffda-a3a5-db6a" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="b7d-ad95-6f95-638c" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="c5f2-a53c-5c0c-736e" shared="true"/>
<condition type="lessThan" value="1" field="selections" scope="force" childId="2ed4-4df2-66bd-ac07" shared="true"/>