-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sylvaneth - Library.cat
2829 lines (2829 loc) · 204 KB
/
Sylvaneth - Library.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="true" id="7e0b-8a19-260-5b58" name="Sylvaneth - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Branchwych" hidden="false" id="e410-e36e-9cea-2482" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="ORDER" hidden="false" id="c418-3bef-ead8-9c60" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="6a4d-7475-536b-801f" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="HERO" hidden="false" id="cbf5-ddc4-3c35-fccd" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WIZARD (1)" hidden="false" id="7a6d-7b73-c5d-3129" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="b292-1936-a468-aa4" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="46f3-ec84-3a1f-bdd" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Branchwych" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="eeef-fc33-9f12-388a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Awakening the Wood" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="b66d-c010-9494-b5b4">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army),
Enemy Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit is wholly within 6" of any friendly **Awakened Wyldwoods**, pick a friendly **^^Sylvaneth^^** unit wholly within 12" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, the target has **^^Strike-first^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Branchwych" hidden="false" id="e509-df5d-719-7156">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Swarm of Spites" hidden="false" id="9322-7808-e31e-ac3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5f7f-d720-e22-dfc4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4897-177c-31-a52d"/>
</constraints>
<profiles>
<profile name="Swarm of Spites" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c759-1faa-7ea-fd79">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Crit (Auto-wound), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Greenwood Scythe and Bittergrub" hidden="false" id="310d-4b4-533f-e5ce">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4220-1560-c9ee-5b34"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2178-c786-c066-1365"/>
</constraints>
<profiles>
<profile name="Greenwood Scythe and Bittergrub" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5012-d9ce-73f5-851b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6778-4eb4-b5c6-77cc"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1e36-c3ef-7fe8-2e53"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Alarielle the Everqueen" hidden="false" id="efc2-ef9b-4eee-a341" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="6c9a-617a-ed99-a31b" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="19e8-b35f-eb34-5195" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="2e36-830e-3d75-35b3" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="FLY" hidden="false" id="86a7-3703-b66d-63aa" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="d6de-eaf9-5368-9703" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="491-60b2-6526-4842" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="d126-8f25-4e70-6736" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="3edb-2487-96d0-75ee" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="WIZARD (3)" hidden="false" id="69d3-e742-8760-bb55" targetId="8bc-6d63-e37f-9239" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="56f7-c706-b989-7799" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Alarielle the Everqueen" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="d715-b233-4833-22e7">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">14"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">16</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="135b-afc5-4fd9-3460">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Wardroth’s Great Antlers** is 4.</characteristic>
</characteristics>
</profile>
<profile name="Metamorphosis" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="b4bf-ef71-9dfe-e837">
<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 visible enemy unit within 12" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Inflict 2D3 mortal damage on the target. If the target is destroyed by this spell, you can immediately resolve the effect of the ‘Treesong’ spell as if this unit had successfully cast it.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Lifebloom" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e4b4-8e4d-5f0-eb6a">
<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">Pick 1 of the following effects:
• Add 1 to casting rolls for this unit for the rest of the turn.
• **Heal (2D3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Living Battering Ram" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="5abd-6507-dbee-ed76">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">If this unit charged this turn, pick an enemy **^^Infantry^^** unit within 1" of it to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Rite of Life" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4f7c-2ca1-ae3f-d2d3">
<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 has been destroyed to be the target. This unit can use this ability if it has been destroyed, but if it does, this unit must be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 4+, set up a replacement unit with half the number of models from the target unit (rounding up) wholly within 9" of a friendly **Awakened Wyldwood** and more than 9" from all enemy units. If the target was a **^^Monster^^**, allocate 6 damage points to the replacement unit (ward rolls cannot be made for those damage points).</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="d192-f448-932e-4fb6" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Alarielle the Everqueen" hidden="false" id="deb0-e808-ad4f-e8da">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spear of Kurnoth" hidden="false" id="69f1-2edc-803c-9cd1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8f80-bc73-adef-4dd3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="37a1-faf2-38d0-3ee4"/>
</constraints>
<profiles>
<profile name="Spear of Kurnoth" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="91f4-7eb7-ae81-ea0e">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
<profile name="Spear of Kurnoth" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="b9be-23b6-1775-836a">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">4</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Wardroth’s Great Antlers" hidden="false" id="614c-27e6-7aab-906">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d631-7a4e-f009-f68"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ab61-3a83-c5c9-871c"/>
</constraints>
<profiles>
<profile name="Wardroth’s Great Antlers" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ec1-b3-dc9a-ae3d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">4</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e441-c588-cc7c-e6a7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="181d-8c3b-fbe3-1ffb"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="The Lady of Vines" hidden="false" id="72e5-d623-ac8c-14a1" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="2150-8e83-1653-9ce0" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="e3f3-636b-b8fc-67f4" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="5814-44c4-bb5b-9f00" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="1250-cf7d-39e-c357" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="b413-a463-a249-c975" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="24cf-b73d-1063-8272" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="70b2-cf8f-e0de-11d" targetId="8179-697a-9f4c-91d4" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1bc9-52f2-8889-a73b" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="The Lady of Vines" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a8fa-fe37-1a09-589">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">8</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Veridian Crown" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="43d-79ea-b852-4898">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">This unit counts as an **Awakened Wyldwood** for the purposes of the ‘Endless Growth’, ‘Walk the Hidden Paths’ and ‘Strike and Fade’ abilities.</characteristic>
</characteristics>
</profile>
<profile name="Aspect of the Everqueen" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="b3f2-fbf6-5483-7d40">
<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">Make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Until the start of your next turn, friendly **^^Sylvaneth^^** units have **^^Ward (5+)^^** while they are wholly within 12" of this unit.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Writhing Vines" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="95a7-7f72-7aee-d38c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Charge 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 a 2+, pick 1 of the following effects to apply for the rest of the turn:
***Barrier:*** Subtract 1 from hit rolls for the target’s attacks.
***Ensnare:*** Add 1 to hit rolls for attacks made by friendly units that target that enemy unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2e82-fbae-2500-1fc9" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="The Lady of Vines" hidden="false" id="601c-ee53-9828-e8f2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Kurnotheal’s Wrath" hidden="false" id="4d29-a0f4-aff1-3847">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c95d-8f5c-14d1-2190"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5faf-2051-4b3e-2953"/>
</constraints>
<profiles>
<profile name="Kurnotheal’s Wrath" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c5ae-8c5c-ec9f-16f4">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">1</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D6</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Kurnotheal’s Wrath and Lashing Vines" hidden="false" id="3516-c34-3df4-cd4d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1f32-67a2-fe29-1e6b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a272-1d14-4079-ac02"/>
</constraints>
<profiles>
<profile name="Kurnotheal’s Wrath and Lashing Vines" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6cda-937a-25fe-ce88">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="199a-2253-7fd9-d362"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="203b-b5b5-d14a-dc27"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Drycha Hamadreth" hidden="false" id="b3b6-f91d-754d-af73" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="efea-e04-4260-cb25" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="5db1-cc9-23e3-6de7" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="83c6-3f41-e94f-3011" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="eb9e-515f-9620-ad02" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="2bc0-222f-af88-fbc4" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="1213-8c35-cf88-d3e1" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="6037-5240-fd43-b143" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Drycha Hamadreth" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8045-7110-5683-4141">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">9"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">10</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Mercurial Aspect" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="a1f-39fd-6570-f3d5">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn, Any Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects to apply to this unit for the rest of the turn:
***Enraged:*** Add 10 to the Attacks characteristic of this unit’s **Flitterfuries**.
***Embittered:*** Add 10 to the Attacks characteristic of this unit’s **Swarm of Squirmlings**.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Song of Spite" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="a924-fd6e-9278-4d4c">
<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 an enemy **^^Infantry^^** unit within 12" of the caster to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The following effects apply for the rest of the turn:
Add 1 to hit rolls for combat attacks made by friendly **^^Sylvaneth^^** units that target that enemy unit.
In addition, add 1 to wound rolls for combat attacks made by friendly **Spite-Revenants** or **The Twistweald** units that target that enemy unit.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Primal Terror" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="77b2-7e2-ba0c-83a1">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), 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 a 2+, halve the target’s control score (rounding up) for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="32e-c298-561a-cc03" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Drycha Hamadreth" hidden="false" id="da0d-185d-45c2-29e0">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Flitterfuries" hidden="false" id="38d6-9388-7b08-6296">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3018-b19b-f7b5-a6e4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7929-6b2d-685e-fa47"/>
</constraints>
<profiles>
<profile name="Flitterfuries" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="d7a1-33bf-5bbb-91ad">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">10</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat, Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Slashing Talons" hidden="false" id="cf4d-7df7-ee1-dd98">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2ebf-6d62-da1b-afb9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="33d3-4996-f46f-3869"/>
</constraints>
<profiles>
<profile name="Slashing Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="b70d-834e-d030-307b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Swarm of Squirmlings" hidden="false" id="f27c-2442-f71d-a3c3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f732-756d-69b-3649"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6521-dbe7-7775-fbd2"/>
</constraints>
<profiles>
<profile name="Swarm of Squirmlings" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="a01c-650-e28-739d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">10</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Infantry^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="261a-24c9-a691-2277"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3bbc-a81a-b4c6-595"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Belthanos, First Thorn of Kurnoth" hidden="false" id="f6f4-66ce-c346-42ed" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="6a46-9afd-11ca-3931" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="73a7-775c-345c-ed3c" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="8773-bdfc-e931-3c1d" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="ORDER" hidden="false" id="8ca7-7c7f-f137-e9de" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="7283-e859-415e-7a3f" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="FLY" hidden="false" id="86e3-6f0b-f5a4-d178" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="KURNOTHI" hidden="false" id="c0af-b437-9d9a-80be" targetId="4926-51d9-e023-1088" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="6a01-fdb2-568f-72a7" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Belthanos, First Thorn of Kurnoth" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="4478-aa9b-b7c8-5127">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Nature Aetheric" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="61d2-55e1-7873-e100">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Start of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a terrain feature within 6" of this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">For the rest of the battle, the target gains the ‘Place of Power’ terrain ability (Terrain 1.2) and counts as a friendly Awakened Wyldwood for the purposes of the ‘Endless Growth’, ‘Walk the Hidden Paths’ and ‘Strike and Fade’ abilities.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Kurnothi War-horn" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="59e8-f376-a5df-144c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Charge Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 3 friendly **^^Sylvaneth^^** units to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Each target can use **^^Charge^^** abilities even if they used a **^^Run^^** ability in the same turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Rhythm of the Chase" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="b29c-dd1a-502d-27c4">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), 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, then you can remove this unit from the battlefield and set it up again on the battlefield within 1" of the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c6b8-a8fd-b2-59fa">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Carnelian Greatspite’s Razor-like Mandibles** is 3.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="15c7-b5a8-47fc-3a69" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Belthanos, First Thorn of Kurnoth" hidden="false" id="38ee-61d7-7a6e-1c4">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Kurnoth Glaive" hidden="false" id="17a3-adc8-e80-bef9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b0c4-9838-5312-4fda"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c4f6-db8-31e3-292d"/>
</constraints>
<profiles>
<profile name="Kurnoth Glaive" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="9cc9-dc9e-e614-83cb">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Carnelian Greatspite’s Razor-like Mandibles" hidden="false" id="9e28-fe8e-71d1-7430">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="15e6-99ff-5b0e-7286"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5173-849a-880f-95d1"/>
</constraints>
<profiles>
<profile name="Carnelian Greatspite’s Razor-like Mandibles" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6d05-7590-2cb2-e164">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b212-678d-4903-dac4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4946-5b7b-568a-8163"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Warsong Revenant" hidden="false" id="438e-768a-7545-d329" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="aa4d-1ab9-f1c5-63d1" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="2cef-d122-7006-5abb" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="5c68-a57c-8fcc-eba1" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="FLY" hidden="false" id="56d-f0ff-5546-bc6d" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="e292-6431-b9fe-dea6" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="e970-ef4f-fd0b-af22" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="e9a6-71a-e43c-c603" targetId="70a4-383f-421f-52cd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1ea1-f609-da5b-f039" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Warsong Revenant" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="928c-c29-344f-e72">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">7</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">5+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Wyldwood Revenants" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="dc61-1f39-51f9-52da">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to unbinding rolls and banishment rolls for this unit while it is wholly within 6" of any **Awakened Wyldwoods**.</characteristic>
</characteristics>
</profile>
<profile name="Unleash Swarm of Spites" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="7164-70b7-9e6f-6805">
<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 **Awakened Wyldwood** wholly within 18" of this unit, pick up to 3 visible enemy units within 9" of that terrain feature to be the targets, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll a D3 for each target. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Alarielle's Song" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3f73-3ee4-8f6b-b16b">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Friendly **^^Sylvaneth^^** units have **^^Ward (6+)^^** while they are wholly within 12" of this unit. Subtract 1 from ward rolls for enemy units while they are within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Warsong Revenant" hidden="false" id="57c4-8153-f518-db5d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spearing Vines and Spirit Falchion" hidden="false" id="8a1d-e1bd-ccd3-c015">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b504-6958-94ae-d86e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9de3-c91a-f194-1c8b"/>
</constraints>
<profiles>
<profile name="Spearing Vines and Spirit Falchion" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1d0e-7094-cd9b-2aa2">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="93b2-deed-91b6-d586"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f234-c3b0-6241-66ef"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Arch-Revenant" hidden="false" id="c21d-479c-e8ef-b406" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="32a9-9524-e4c2-3f7f" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="aeda-8972-eef8-488a" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="bc01-1c34-50bb-df01" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="FLY" hidden="false" id="4e53-8329-89f8-9b2" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="73ef-a7f9-419d-2d48" targetId="75d6-6995-dfcc-3898" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="109d-9307-cb04-1bc1" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Arch-Revenant" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="7e2a-4212-4da4-69d6">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Crescent Shield" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="465e-7bf0-f33a-e29">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects to apply to this unit for the rest of the turn:
***Defensive Stance:*** This unit has **^^Ward (4+)^^**.
***Aggressive Stance:*** Add 1 to the Attacks characteristic of this unit’s melee weapons, and add 1 to wound rolls for this unit’s combat attacks.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
<profile name="Champion of Kurnoth" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="6dfc-e0b8-16a-f3bb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to wound rolls for combat attacks made by friendly **^^Kurnothi^^** units while they are wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Arch-Revenant" hidden="false" id="97cc-f81a-ee31-70cc">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Revenant’s Glaive and Tail Pincers" hidden="false" id="109f-e8f1-4b43-55dd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4384-d2a0-a947-e2c1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7166-ed45-d20d-ec01"/>
</constraints>
<profiles>
<profile name="Revenant’s Glaive and Tail Pincers" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e016-1983-6017-3a64">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3ac4-16fe-2716-c514"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="18c9-d038-9d3e-fb6d"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Spirit of Durthu" hidden="false" id="f163-eaf6-2b5b-1cd3" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="8131-c33e-cced-e583" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="ORDER" hidden="false" id="7bb0-83ff-7423-5133" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="d702-b066-571f-d812" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="6e76-920a-c966-fc2f" targetId="6d54-625c-d063-13e2" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="f74-4326-b0e1-61df" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Spirit of Durthu" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9fee-eb48-e933-fd5a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Titanic Duel" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="7124-769a-aafd-7b38">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, subtract 1 from the Attacks characteristic of the target’s melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="2eb1-9bd5-1544-36d9">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Guardian Sword** is 3.</characteristic>
</characteristics>
</profile>
<profile name="Wrathful Guardian" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ea9f-5c5b-8b97-78aa">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to hit rolls for this unit’s combat attacks while the target is within 3" of an **Awakened Wyldwood**.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Spirit of Durthu" hidden="false" id="b00c-c2a4-7b61-6849">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Verdant Blast" hidden="false" id="c0be-9c33-4dde-a4">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8a1c-7d33-a190-5a32"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1b78-c4fd-c23d-994f"/>
</constraints>
<profiles>
<profile name="Verdant Blast" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="652d-ae9f-589f-6077">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">5</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Guardian Sword" hidden="false" id="eea5-bbfe-22f5-b571">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e05f-1ef9-185d-5e40"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="be21-babc-a2ff-d1f5"/>
</constraints>
<profiles>
<profile name="Guardian Sword" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="7b2-d7da-241d-b0a1">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">5</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Monster^^** (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Massive Impaling Talons" hidden="false" id="e5a3-bd6-b467-b1fc">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a366-94c5-973e-7a13"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3956-601b-86cf-4cc8"/>
</constraints>
<profiles>
<profile name="Massive Impaling Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5297-aa69-ccfa-3e38">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="318d-8da6-3603-e37a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3b57-fff5-710-b67f"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Treelord" hidden="false" id="a896-d266-a881-f920" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="ORDER" hidden="false" id="3ca6-e81a-7c5f-81e0" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="3b58-99df-aec0-c7d0" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="90c3-5c2d-7b55-ce34" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="HERO" hidden="false" id="236d-a8a6-2fc-fc9a" targetId="6e72-1656-d554-528a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="636e-87e8-4a75-e68" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Treelord" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="5a07-a18f-c9c1-a577">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Lash and Tangle" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="8fb-4487-5931-ee4">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), 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 a 3+, subtract 1 from wound rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="72ad-d57-fafa-aacb">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Sweeping Blows** is 3.</characteristic>
</characteristics>
</profile>
<profile name="Entangling Grasp" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="34c7-4f3e-b37f-8155">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Shooting Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit that had any damage points allocated to it this turn by attacks made with this unit’s **Strangleroots** to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, the target cannot use **^^Run^^** or **^^Retreat^^** abilities until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Treelord" hidden="false" id="4849-40d6-2c75-310e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Strangleroots" hidden="false" id="638f-76e3-b2a9-c722">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ed40-d566-6d29-705f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="233d-b2f3-ddc8-1ad3"/>
</constraints>
<profiles>
<profile name="Strangleroots" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="c18e-2532-b8d7-5184">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sweeping Blows" hidden="false" id="5332-3e59-4b4f-e01c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="142-f5d7-c1e-5b22"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="aa93-9fef-45c6-7528"/>
</constraints>
<profiles>
<profile name="Sweeping Blows" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3c4b-d3d5-9c85-6726">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-charge (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Massive Impaling Talons" hidden="false" id="659c-b2db-bbd3-1b5b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="143a-1a40-4613-43f3"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d606-ec4e-1153-ecff"/>
</constraints>
<profiles>
<profile name="Massive Impaling Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3b15-bd4d-14e6-511c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4f96-600b-42ae-3a13"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8fc8-3f49-e555-ff18"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Treelord Ancient" hidden="false" id="678-a231-5f4c-4d7c" publicationId="61ee-fae0-f1da-2591">
<categoryLinks>
<categoryLink name="ORDER" hidden="false" id="ea47-1d39-84e8-8efd" targetId="ee22-3575-6590-25c" primary="false"/>
<categoryLink name="SYLVANETH" hidden="false" id="c406-cb66-d12c-dd08" targetId="9190-23b-eab9-9904" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="5bd6-ad23-816f-7742" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="HERO" hidden="false" id="639-a8ac-d1db-a4fc" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="WIZARD (1)" hidden="false" id="f2da-8272-dae2-5f9a" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="5973-f01-543c-a04a" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Treelord Ancient" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="3428-39ab-2c34-d035">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Groundshaker" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e098-e999-62c9-9fdb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), 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 a 4+, the target has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="5146-6142-ca4d-8e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Sweeping Blows** is 3.</characteristic>
</characteristics>
</profile>
<profile name="Awakening the Wood" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3cca-f963-57d-c0a8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible friendly **Awakened Wyldwood** wholly within 18" of 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 equal to the roll on each enemy unit within the target’s combat range.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Treelord Ancient" hidden="false" id="b38a-de96-86d1-59ae">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doom Tendril Staff" hidden="false" id="b261-5d49-b10a-ddb5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="704a-a1b8-701-7f8b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e3c9-87b9-a7d3-49dd"/>
</constraints>
<profiles>
<profile name="Doom Tendril Staff" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="acfd-f371-fef0-d7b2">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">18"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">4</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sweeping Blows" hidden="false" id="b88a-a2a9-7e36-96bf">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="86bc-c898-e63e-6d32"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6670-3608-2628-93f5"/>
</constraints>
<profiles>
<profile name="Sweeping Blows" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="92e6-5d09-3860-7d4">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-charge (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Massive Impaling Talons" hidden="false" id="8309-9d64-7280-49c0">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d1cb-be5d-4aff-7e09"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e0b-4ee5-ad12-3558"/>
</constraints>
<profiles>
<profile name="Massive Impaling Talons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3d36-2c1e-bd07-d9d0">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d93b-f716-7763-399a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a904-1a8b-1720-f7d9"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Kurnoth Hunters with Kurnoth Greatbows" hidden="false" id="a457-63b8-99fb-b82f" publicationId="61ee-fae0-f1da-2591">
<profiles>
<profile name="Kurnoth Hunters with Kurnoth Greatbows" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="f37c-7b73-1b6f-b157">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>