forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrder - Sylvaneth - Data.cat
4141 lines (4141 loc) · 307 KB
/
Order - Sylvaneth - Data.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="ab8b-39f3-ebc0-e9ab" name="Order - Sylvaneth - Data" revision="40" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="bf19-727d-pubN65537" name="Order Battletome: Sylvaneth"/>
<publication id="bf19-727d-pubN68286" name="Battletome: Sylvaneth Errata, July 2018"/>
<publication id="bf19-727d-pubN70075" name="Grand Alliance: Order"/>
<publication id="3eb3-ef35-59aa-b7e2" name="Battletome: Sylvaneth 2019"/>
</publications>
<profileTypes>
<profileType id="b8a6-2c1a-507f-6473" name="Soul Amphorae">
<characteristicTypes>
<characteristicType id="43f7-3a57-7d60-98a0" name="Result"/>
</characteristicTypes>
</profileType>
<profileType id="d7d9-eaac-6963-eea0" name="Alarielle Wounds Suffered">
<characteristicTypes>
<characteristicType id="4419-5b61-25bd-7721" name="Move"/>
<characteristicType id="305d-3c37-1f1e-3fb1" name="Spear of Kurnoth"/>
<characteristicType id="b425-4c0e-3446-42a8" name="Great Antlers"/>
</characteristicTypes>
</profileType>
<profileType id="f23f-51bd-763b-9b08" name="Subterfuge Strategem">
<characteristicTypes>
<characteristicType id="4be8-8501-c9da-6650" name="Description"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="805c-672e-9a89-4b73" name="ALARIELLE THE EVERQUEEN" hidden="false"/>
<categoryEntry id="318d-128d-c623-30fa" name="DRYCHA HAMADRETH" hidden="false"/>
<categoryEntry id="ffd4-9a6e-6fb7-d477" name="SPIRIT OF DURTHU" hidden="false"/>
<categoryEntry id="4b76-b5c5-2c23-c72a" name="TREELORD ANCIENT" hidden="false"/>
<categoryEntry id="f301-21bf-5de1-a0f4" name="TREELORD" hidden="false"/>
<categoryEntry id="42a2-dfbb-a489-67e9" name="BRANCHWYCH" hidden="false"/>
<categoryEntry id="5bb1-ed20-b7d9-9d94" name="BRANCHWRAITH" hidden="false"/>
<categoryEntry id="bf04-ef65-dc69-086c" name="TREE-REVENANTS" hidden="false"/>
<categoryEntry id="f1bd-0652-aff5-89aa" name="SPITE-REVENANTS" hidden="false"/>
<categoryEntry id="84fa-90fa-3fe9-33f1" name="KURNOTH HUNTERS" hidden="false"/>
<categoryEntry id="7df9-175c-9acd-2811" name="DRYADS" hidden="false"/>
<categoryEntry id="7fe9-bc03-2c82-0a00" name="AELF" hidden="false"/>
<categoryEntry id="8d51-f119-1a14-e947" name="GNARLROOT" hidden="false"/>
<categoryEntry id="fc74-5007-3ac8-3b19" name="OAKENBROW" hidden="false"/>
<categoryEntry id="9499-680b-d7f9-c2b4" name="IRONBARK" hidden="false"/>
<categoryEntry id="36f8-6827-6ec9-c876" name="HARVESTBOON" hidden="false"/>
<categoryEntry id="d6fd-d829-6545-9aee" name="FREE SPIRITS" hidden="false"/>
<categoryEntry id="008c-f145-659b-06c2" name="ARCH-REVENANT" hidden="false"/>
<categoryEntry id="634f-ae38-b430-da17" name="NOBLE SPIRITS" hidden="false"/>
<categoryEntry id="b3e3-ad91-a277-16c1" name="YLTHARI'S GUARDIANS" hidden="false"/>
<categoryEntry id="6a18-0e04-3e62-d0c9" name="THORNWYCH" hidden="false"/>
<categoryEntry id="206b-3164-1733-09c0" name="YLTHARI" hidden="false"/>
<categoryEntry id="e70b-0e7f-c46d-3d87" name="HEARTWOOD" hidden="false"/>
<categoryEntry id="ebfc-edde-f98a-d0b2" name="WINTERLEAF" hidden="false"/>
<categoryEntry id="77d1-14f7-759c-4059" name="DREADWOOD" hidden="false"/>
<categoryEntry id="863c-b91c-a29a-5214" name="AWAKENED WYLDWOOD" hidden="false"/>
<categoryEntry id="9982-8be9-36f2-a3ac" name="GLADEWYRM" hidden="false"/>
<categoryEntry id="8d8b-955f-81ba-43c1" name="SPITESWARM HIVE" hidden="false"/>
<categoryEntry id="da96-ce12-da5c-49ca" name="VENGEFUL SKULLROOT" hidden="false"/>
<categoryEntry id="b187-77f7-eae1-4279" name="OUTCASTS" hidden="false"/>
<categoryEntry id="34a4-2b39-bed5-6d86" name="FOREST FOLK" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="4d73-8d1e-89ba-a66a" name="Alarielle the Everqueen" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="418b-8b5c-81f1-c93a" type="max"/>
</constraints>
<profiles>
<profile id="c196-1030-ad3f-f479" name="Alarielle the Everqueen" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">16</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="3f68-5a12-481f-8098" name="Talon of the Dwindling" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made by the Talon of the Dwindling is 6, that attack inflicts D3 mortal wounds on the target in addition to any normal damage.</characteristic>
</characteristics>
</profile>
<profile id="1677-1da5-cf84-e4e2" name="Lifebloom" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can heal up to D3 wounds allocated to each friendly SYLVANETH unit wholly within 30" of this model (roll separetely for each unit).</characteristic>
</characteristics>
</profile>
<profile id="15c2-0c38-24b6-0564" name="Sweeping Blows" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for attacks made with this model's Great Antlers if the target contains 5 or more models.</characteristic>
</characteristics>
</profile>
<profile id="0c08-233b-996a-cea0" name="Living Battering Ram" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice for each enemy unit that is within 1" of this model after this model makes a charge move. On a 4+ that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="950b-edf9-5870-9fe5" name="Metamorphosis" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within 16" of the caster and visible to them and roll a number of dice equal to the result of the casting roll. For each 4+, that unit suffers 1 mortal wound. In addition, if that unit is destroyed by the mortal wounds inflicted by this spell, you can set up 1 AWAKENED WYLDWOOD terrain feature wholly within 12" of the last model from that unit to be slain, and more than 1" from any other model, terrain feature or objective, and add it to your army.</characteristic>
</characteristics>
</profile>
<profile id="1e25-d5bf-e1c8-7418" name="Ghyran's Wrath" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combats phase. If you do so, in that phase you can re-roll wound rolls of 1 for attacks made by friendly SYLVANETH units while they are wholly within 14" of a friendly model with this command ability.</characteristic>
</characteristics>
</profile>
<profile id="f427-57be-79ff-3558" name="Wounds0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Spear of Kurnoth</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Great Antlers</characteristic>
</characteristics>
</profile>
<profile id="a579-3c40-8499-6d4f" name="Wounds1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-4</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">16"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">30"</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5</characteristic>
</characteristics>
</profile>
<profile id="e005-a8a4-2067-de9c" name="Wounds2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">5-7</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">14"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">25"</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4</characteristic>
</characteristics>
</profile>
<profile id="04e2-bb06-e46f-b14e" name="Wounds3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">8-10</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">20"</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3</characteristic>
</characteristics>
</profile>
<profile id="10bb-4f84-e76e-bfdd" name="Wounds4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">11-13</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">15"</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2</characteristic>
</characteristics>
</profile>
<profile id="fb73-8ee0-7730-c65f" name="Wounds5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">14+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">10"</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">1</characteristic>
</characteristics>
</profile>
<profile id="0da1-fcf2-a50a-7333" name="Allarielle the Everqueen" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">3/3</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Metamorphosis</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9ee1-5cd3-5ad4-55c1" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="c966-720d-faa9-2ebf" name="Verdant Blessing" hidden="false" targetId="2ffd-bbd3-2d81-6ad7" type="profile"/>
<infoLink id="a039-1585-174c-64c1" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="ae92-263b-126e-5677" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6b41-e762-aa96-20b9" name="New CategoryLink" hidden="false" targetId="805c-672e-9a89-4b73" primary="false"/>
<categoryLink id="a584-f826-aef4-d712" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="ed5e-c678-21df-b626" name="New CategoryLink" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="8499-e590-9c9f-d290" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="7800-fba9-e67f-2ec6" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="4853-d0a6-5ce7-3917" name="New CategoryLink" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false"/>
<categoryLink id="09b5-29a2-0ce0-294c" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="e92f-ad75-bd0c-101e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1e9f-1a4d-205f-8667" name="Spear of Kurnoth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9949-bd0c-f85f-0a79" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f527-44b7-a469-e763" type="min"/>
</constraints>
<profiles>
<profile id="9e16-d721-0765-3b81" name="Spear of Kurnoth" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">*</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8c16-25c0-d39c-e1a6" name="Talon of the Dwindling" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ed7-28b1-2f17-da89" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4557-2fe0-d65f-bc16" type="min"/>
</constraints>
<profiles>
<profile id="b4eb-9334-5f66-0b44" name="Talon of the Dwindling" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6852-88ea-4580-4c63" name="Wardroth Beetle's Great Antlers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2fed-3d52-a5b6-ecfb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="adc0-0d9a-5098-c706" type="min"/>
</constraints>
<profiles>
<profile id="8362-2047-8e45-da8c" name="Great Antlers" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">*</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="87d6-3b1c-a54d-076b" name="Soul Amphorae" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b9e-a06e-18dd-fbdf" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="184c-ae21-1cd2-1107" type="min"/>
</constraints>
<profiles>
<profile id="75b2-2d03-4aac-7cc8" name="Soul Amphorae" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, at the end of your movement phase, you can summon 1 of the following units to the battlefield: 20 Dryads, 10 Tree-Revenants, 10 Spite-Revenants, 3 Kurnoth Hunters, 1 Branchwych or 1 Treelord. The summoneed unit is added to your army, and must be set up wholly within 9" of this model and more than 9" from any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d8f3-fc9b-77f1-5623" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd07-4e68-4314-6942" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7a3a-fc58-15b2-f8cd" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0f30-c620-ea3d-54c0" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5ea9-4683-453d-8142" name="Lore of the Deepwood" hidden="false" collective="false" import="true" targetId="ad08-f268-8b24-726b" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="600.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6892-294f-1dab-882a" name="Allegiance" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="minInForce" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="8bea-f792-0aa5-fc38" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="cc2e-a897-99a2-353f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="cc2e-a897-99a2-353f" name="Allegiance: Sylvaneth" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="df30-1adc-91e2-f871" name="Places of Power" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">After territories have been chosen but before armies are set up, you can pick 1 terrain feature on the battlefield that was not set up by your opponent as part of their army. Do not take battleshock tests for friendly SYLVANETH units while they are wholly within 6" of that terrain feature.</characteristic>
</characteristics>
</profile>
<profile id="7640-f53b-75ba-7a3d" name="Forest Spirits" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Instead of setting up a SYLVANETH unit on the battlefield, you can place it to one side and say it is set up in the hidden enclaves as a reserve unit. You can set up one reserve unit in the hidden enclaves for each unit you set up on the battlefield. At the end of your movement phase, you can set up one or more of the reserve units that are in the hidden enclaves on the battlefield wholly within 6" of an AWAKENED WYLDWOOD and more than 9" from any enemy units. Any reserve units that are not set up on the battlefield before the start of the fourth battle round are slain.</characteristic>
</characteristics>
</profile>
<profile id="9256-01ed-73c9-1851" name="Navigate Realmroots" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Instead of making a normal move in your movement phase, 1 friendly SYLVANETH unit wholly within 6" of an AWAKENED WYLDWOOD can navigate the realmroots. If it does so, remove that unit from the battlefield and then set it up again wholly within 6" of another AWAKENED WYLDWOOD and more than 9" from any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="bb3c-f641-26f6-053a" name="Glades" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c777-e2da-5fc7-dd97" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5d80-ed30-6c38-85cc" name="Oakenbrow" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6382-a059-837b-6e5c" name="Our Roots Run Deep" publicationId="3eb3-ef35-59aa-b7e2" page="72" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Subtract 2 from the number of wounds suffered by OAKENBROW SPIRITS OF DURTHU, OAKENBROW TREELORD ANCIENTS and OAKENBROW TREELORDS when determining which row on their damage table to use (to a minimum of 0).</characteristic>
</characteristics>
</profile>
<profile id="0c26-8dc6-2f68-ebac" name="Yield to None" publicationId="3eb3-ef35-59aa-b7e2" page="72" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">Battleshock immunity wholly within 16" of a selected hero.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5abc-51b7-5b5b-0cdf" name="Gnarlroot" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d5eb-421c-c8c0-706a" name="Shield the Arcane" publicationId="3eb3-ef35-59aa-b7e2" page="74" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Re-roll hit rolls of 1 for attacks made by friendly GNARLROOT units while they are wholly within 12" of any friendly GNARLROOT WIZARDS.</characteristic>
</characteristics>
</profile>
<profile id="8fa9-f5f5-66d0-22e9" name="The Earth Defends" publicationId="3eb3-ef35-59aa-b7e2" page="74" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick 1 friendly GNARLROOT unit wholly within 12" of a friendly GNARLROOT HERO. Until the end of that phase, roll a dice each time you allocate a wound or mortal wound to that unit. On a 6+ that wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b6c-7ed5-d2a6-6ae7" name="Heartwood" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="886c-afd7-a691-96f1" name="Courage for Kurnoth" publicationId="3eb3-ef35-59aa-b7e2" page="75" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to the Bravery characteristic of friendly HEARTWOOD units while they are wholly within 12" of any friendly HEARTWOOD HEROES.</characteristic>
</characteristics>
</profile>
<profile id="bf46-ba97-5497-7efe" name="Lord of the Hunt" publicationId="3eb3-ef35-59aa-b7e2" page="75" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick 1 enemy unit within 12" of a friendly HEARTWOOD HERO. Until the end of that phase, you can re-roll hit and wound rolls of 1 for attacks made by friendly HEARTWOOD units that target that enemy unit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d6bb-a98f-175e-6f2d" name="Ironbark" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1f4a-a552-f92f-5cb0" name="Stubborn and Taciturn" publicationId="3eb3-ef35-59aa-b7e2" page="76" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll battleshock tests for friendly IRONBARK units while they are wholly within 12" of any friendl IRONBARK HEROS.</characteristic>
</characteristics>
</profile>
<profile id="03d0-cc8d-0b43-6b1b" name="Stand Firm" publicationId="3eb3-ef35-59aa-b7e2" page="76" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in the combat phase, before the players pick any units to fight. If you do so, pick 1 enemy unit that made a charge move this turn and is within 1" of a friendly IRONBARK unit and roll a dice. On a 2+ that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d87f-5abf-b2d6-4471" name="Winterleaf" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="826c-f4bf-ab14-180f" name="Winter's Bite" publicationId="3eb3-ef35-59aa-b7e2" page="77" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the unmodified hit roll for an attack made with a melee weapon by a friendly WINTERLEAF unit is 6, that attacks inflicts 2 hits on the target instead of 1. Make a wound and save roll for each hit.</characteristic>
</characteristics>
</profile>
<profile id="4900-c16c-df1c-78e2" name="Branch Blizzard" publicationId="3eb3-ef35-59aa-b7e2" page="77" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability in your shooting phase. If you do so, pick 1 enemy unit within 12" of a friendly WINTERLEAF HERO and visible to them. Roll a number of dice equal to the number of models in that unit. For each 6+ that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f989-c421-4019-1784" name="Dreadwood" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="25b1-4960-c1db-3264" name="Malicious Tormentors" publicationId="3eb3-ef35-59aa-b7e2" page="78" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll hit rolls of 1 for attacks made by DREADWOOD SPITE-REVENANTS.</characteristic>
</characteristics>
</profile>
<profile id="8b35-c417-f307-cbf9" name="Sinister Ambush" publicationId="3eb3-ef35-59aa-b7e2" page="78" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability once during each of your turns, at the end of your movement phase. If you do so, pick 1 friendly DREADWOOD unit wholly within 18" of a friendly DREADWOOD HERO. Remove that unit from the battlefield and then set it up again anywhere on the battlefield more than 9" from any enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c506-6738-cdd0-8b9a" name="Harvestboon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4324-b040-45c3-1337" name="Vibrant Surge" publicationId="3eb3-ef35-59aa-b7e2" page="79" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll hit rolls of 1 for attacks made by a friendly HARVESTBOON units that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="3aef-742e-705b-cf89" name="Fertile Ground" publicationId="3eb3-ef35-59aa-b7e2" page="79" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick 1 friendly HARVESTBOON unit wholly within 12" of a friendly HARVESTBOON HERO. Until the end of that phase, add 1 to the Attacks characteristic of that unit's melee weapons. You cannot pick the same unit to benefit from this command ability more than once per combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e15a-5920-dd00-b312" name="Awakened Wyldwood" hidden="false" collective="false" import="true" targetId="3d16-0108-0433-c4e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b3e-c60b-9eae-eaa9" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="391d-2bf7-a92a-7cc8" name="Allegiance: Order" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="26a2-3949-a3aa-ba19" name="Defiant Avengers" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can re-roll battleshock tests for friendly ORDER units in the battleshock phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="756d-d96e-e298-5558" name="Battalion: Forest Folk" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f722-6541-53af-92e3" name="Fade from View" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Units from this battalion can retreat and still charge later in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b9d3-1819-4057-41de" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="acde-5411-66f4-566d" name="2. 3 units of Dryads" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a75c-b300-17a6-cfa6" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0db6-e999-3928-1468" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e457-1003-81e2-3c43" name="Dryads" hidden="false" collective="false" import="true" targetId="0a14-90fc-1335-3c79" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="de80-a87e-aa0c-5ea4" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1ccb-0038-1714-620b" name="Dryads" hidden="false" collective="false" import="true" targetId="0a14-90fc-1335-3c79" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="60e0-b06a-4efa-a236" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="bcf3-8e2b-396e-2b30" name="1. 1 Branchwraith" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="6fb6-e353-c23e-9886" name="Branchwraith" hidden="false" collective="false" import="true" targetId="67ae-bbfe-04fe-0e20" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8623-f406-12df-29f5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e14-5869-91b8-9965" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="03e0-0455-badf-3e9c" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f852-7524-198b-2957" name="Battalion: Free Spirits" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a7de-5a06-4c3b-9386" name="Swift Vengeance" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In your movement phase, if you declare a unit from this battalion will run, do not make a run roll. Instead, add 6" to the Move characteristic of that unit for that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9f1e-2839-b211-ec5f" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="bd43-1a3d-d8d8-5b40" name="1. 1 Spirit of Durthu" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="20b9-036d-fc22-51a7" name="Spirit of Durthu" hidden="false" collective="false" import="true" targetId="ef77-af66-26da-3a02" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67e1-2b15-c909-67ff" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8009-6084-d931-4fa4" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="1208-da78-386f-2d95" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="dc5c-f13b-5398-bb0e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="72ce-b6b3-5d37-f757" name="2. 3 units of Kurnoth Hunters" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="edd8-7353-b745-98f2" name="Kurnoth Hunters" hidden="false" collective="false" import="true" targetId="e14d-00c2-5ed8-220a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb74-f7b1-4adf-9876" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a238-111d-8129-e39d" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="d261-96b7-27d0-1389" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d141-06d7-9c9e-d410" name="Battalion: Household" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4ace-9902-4344-7a60" name="Discipline of the Ages" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Enemy units within 3" of any units from this battalion cannot retreat. </characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a487-1ee0-d719-a55c" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5e09-6e10-bd24-d190" name="1. 1 Treelord" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="d2a2-c0e3-1793-ebaa" name="Treelord" hidden="false" collective="false" import="true" targetId="0861-c6bd-bf12-f2f4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="598a-1e1d-ee5d-7725" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf06-be44-3321-a507" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="8458-eebe-a45c-0f75" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8336-643d-7c1e-da7b" name="2. 1 Branchwych" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="4a83-9e02-ee12-1780" name="Branchwych" hidden="false" collective="false" import="true" targetId="d65c-84f8-43bf-d534" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e05-a05e-85d9-6b4e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6305-ace0-6b89-2225" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="f3e0-6512-94c6-98b9" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f3aa-de1a-5ba7-0fc2" name="3. 1 unit of Tree-Revenants" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="253f-bf83-a574-d32d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="de77-defc-0dea-55e8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="05c2-0067-34e9-c9db" name="Tree-Revenants" hidden="false" collective="false" import="true" targetId="a74a-7377-3ed9-0f5e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc2e-a897-99a2-353f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a81c-5a0d-b0ff-85dc" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c36f-1591-fbd8-5d82" name="Tree-Revenants" hidden="false" collective="false" import="true" targetId="a74a-7377-3ed9-0f5e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc2e-a897-99a2-353f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b6fa-455f-9f35-738d" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3388-e687-3bd2-98a8" name="Battalion: Lords of the Clan" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d9d6-1a82-0118-2688" name="Deadly Chorus" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In your shooting phase, roll a dice for each enemy unit that is within 6" of 2 or more models from this battalion. On a 2+ that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="83ef-6a34-ed56-6b2b" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="17ca-10fb-e781-0363" name="2. 1-3 Treelords" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="f589-5a92-bbf5-b7ae" name="Treelord" hidden="false" collective="false" import="true" targetId="0861-c6bd-bf12-f2f4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4de3-c88f-4d34-ce16" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="33dc-b278-9efd-0f71" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6bf7-45c9-a6cc-941b" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6099-87e7-eeec-1f76" name="1. 2-4 Treelord Ancients" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="f3e7-e350-ef98-f402" name="Treelord Ancient" hidden="false" collective="false" import="true" targetId="524f-f49b-0bfd-9414" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d059-47d5-b53f-080c" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a457-b3ca-d837-5b01" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8d5a-b9b4-fe82-d2b5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="5209-ba34-b837-80ca" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="471d-38f0-5388-84a0" name="Battalion: Outcasts" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="95c7-3d09-084a-b02b" name="Fear the Forest-kin" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If an enemy unit fails a battleshock test within 3" of any units from this battalion, add D3 to the number of models that flee.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7a4e-3b10-986e-c2fb" name="New CategoryLink" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b9ea-fa55-0289-7ece" name="1. 3 units of Spite-Revenants" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="961a-940d-213e-9ca8" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c95d-d43a-dc40-e99a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4dc3-c978-c5f8-cdbb" name="Spite-Revenants" hidden="false" collective="false" import="true" targetId="b487-315c-b64c-88b0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc2e-a897-99a2-353f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="fb57-94ac-5818-f2bf" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2030-291d-8b14-ab9e" name="Spite-Revenants" hidden="false" collective="false" import="true" targetId="b487-315c-b64c-88b0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc2e-a897-99a2-353f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4593-1caf-590d-a1aa" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="67ae-bbfe-04fe-0e20" name="Branchwraith" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="89f5-03df-17ab-e6c4" name="Branchwraith" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">7"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="0752-1e56-8eaf-12f0" name="Blessings of the Forest" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from hit rolls for attacks that target this model while it is wholly within 6" of any friendly AWAKENED WYLDWOODS.</characteristic>
</characteristics>
</profile>
<profile id="f7d8-0415-e8bb-8e20" name="Roused to Wrath" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, you can summon 1 unit of 10 DRYADS and add it to your army. The summoned unit must be set up more than 9" from any enemy units, and wholly within 1" of an AWAKENED WYLDWOOD that is within 12" of the caster. The summoned unit cannot move in the following movement phase.</characteristic>
</characteristics>
</profile>
<profile id="02a1-9517-b913-3fc7" name="Branchwraith" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Roused to Wrath</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e049-8e75-2089-4186" name="Verdant Blessing" hidden="false" targetId="2ffd-bbd3-2d81-6ad7" type="profile"/>
<infoLink id="d391-864a-9635-4b56" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="ad1c-fc80-519d-29bd" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3157-0e43-e5f0-e835" name="New CategoryLink" hidden="false" targetId="5bb1-ed20-b7d9-9d94" primary="false"/>
<categoryLink id="bc47-76df-e6e8-28cb" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="d1ad-b030-b172-4a3a" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="d6d4-4d6d-bf00-e0cc" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="78b4-b540-0268-dc3e" name="New CategoryLink" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false"/>
<categoryLink id="d357-6fb3-47af-7a45" name="FOREST FOLK" hidden="false" targetId="34a4-2b39-bed5-6d86" primary="false"/>
<categoryLink id="d13f-da79-e723-92ef" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4adc-a5a6-92c4-55f6" name="Piercing Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ef6-f944-ceac-218d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0a3-176c-9a05-c58b" type="min"/>
</constraints>
<profiles>
<profile id="87a1-4f33-f861-b642" name="Piercing Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a15f-a36e-3e19-a822" name="General" hidden="false" collective="false" import="true" targetId="203c-cae0-53f6-9431" type="selectionEntry"/>
<entryLink id="4424-2057-a984-7fcc" name="Artefacts" hidden="false" collective="false" import="true" targetId="ddcf-27d1-0fa8-de7d" type="selectionEntryGroup"/>
<entryLink id="3689-7470-7c05-0f5a" name="Deepwood Spell Lore" hidden="false" collective="false" import="true" targetId="ad08-f268-8b24-726b" type="selectionEntryGroup"/>
<entryLink id="99dc-06b5-2d16-9ab7" name="Command Traits" hidden="false" collective="false" import="true" targetId="471d-1157-f7f5-932a" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d65c-84f8-43bf-d534" name="Branchwych" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="ae36-e991-4fe0-9c17" name="Branchwych" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">7"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="b8f3-4ad8-cfef-fc79" name="Unleash Spites" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, roll a number of dice equal to the casting roll for each enemy unit within 9" of the caster. For each 6, that enemy unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="f1a0-e47d-9105-a575" name="Fury of the Forest" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for attacks made by this model while it is wholly within 6" of any friendly AWAKENED WYLDWOODS.</characteristic>
</characteristics>
</profile>
<profile id="e7d6-577d-fb27-1468" name="Quick-tempered" publicationId="3eb3-ef35-59aa-b7e2" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 2 to the Attacks characteric of this model's Greenwood Scyth whist any wounds are allocated to this model.</characteristic>
</characteristics>
</profile>
<profile id="f566-fd79-ed93-ff3b" name="Branchwych" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Unleash Spites</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ac65-4f29-0113-6b95" name="Verdant Blessing" hidden="false" targetId="2ffd-bbd3-2d81-6ad7" type="profile"/>
<infoLink id="02ec-2f06-a497-c1d8" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="f616-46b7-bd0e-4ddb" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="91cb-a872-b7f9-0b26" name="New CategoryLink" hidden="false" targetId="42a2-dfbb-a489-67e9" primary="false"/>
<categoryLink id="4235-bd55-c36e-cbd2" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="add7-72de-78e1-8db7" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="7e6a-9451-3f33-7291" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="567b-0a37-40be-2a6f" name="New CategoryLink" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false"/>
<categoryLink id="2404-c7e4-62d3-e122" name="NOBLE SPIRITS" hidden="false" targetId="634f-ae38-b430-da17" primary="false"/>
<categoryLink id="d9f6-21e5-a1e5-621b" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="511f-7ed2-a4cd-4557" name="Snapping Mandibles" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="794a-356d-255f-bc39" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c1fe-c6e0-4080-70f5" type="min"/>
</constraints>
<profiles>
<profile id="f1c4-342d-ec61-15be" name="Snapping Mandibles" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="80e2-0a30-42f6-9312" name="Greenwood Scythe" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="174c-47d3-6d62-8e7a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3331-8a47-104b-5b2f" type="min"/>
</constraints>
<profiles>
<profile id="55c6-3857-f23e-9fe7" name="Greenwood Scythe" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9c24-1e1d-988b-f0d8" name="General" hidden="false" collective="false" import="true" targetId="203c-cae0-53f6-9431" type="selectionEntry"/>
<entryLink id="648a-d7e7-ba3d-cc1e" name="Artefacts" hidden="false" collective="false" import="true" targetId="ddcf-27d1-0fa8-de7d" type="selectionEntryGroup"/>
<entryLink id="c926-3d56-2a29-f190" name="Lore of the Deepwood" hidden="false" collective="false" import="true" targetId="ad08-f268-8b24-726b" type="selectionEntryGroup"/>
<entryLink id="bd78-78d6-11bb-414c" name="Command Traits" hidden="false" collective="false" import="true" targetId="471d-1157-f7f5-932a" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a14-90fc-1335-3c79" name="Dryads" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="56d0-66df-9975-d302" name="Dryads" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">7</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="b365-aa69-ed41-2d33" name="Blessings of the Forest" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from all hit rolls for attacks that target this unit if it is wholly within 6" of any friendly AWAKENED WYLDWOODS.</characteristic>
</characteristics>
</profile>
<profile id="024f-1313-fa09-891a" name="Enrapturing Song" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your combat phase, pick 1 enemy unit within 3" of this unit. Add 1 to hit rolls for attacks made by this unit that target that enemy unit in that phase.</characteristic>
</characteristics>
</profile>
<profile id="2528-5ab3-01f5-63df" name="Impenetrable Thicket" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to save rolls for attacks that target this unit while it contains 10 or more models.</characteristic>
</characteristics>
</profile>
<profile id="aa8d-3bb9-972d-1407" name="Branch Nymph" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Branch Nymph. Add 1 to the Attacks characteristic of that model's Wracking Talons.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ce3e-c104-992f-9c72" name="New CategoryLink" hidden="false" targetId="7df9-175c-9acd-2811" primary="false"/>
<categoryLink id="e018-4685-86c8-2a3e" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="d5ad-db6c-d74a-ff56" name="New CategoryLink" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false"/>
<categoryLink id="36bb-81e3-4870-0c38" name="FOREST FOLK" hidden="false" targetId="34a4-2b39-bed5-6d86" primary="false"/>
<categoryLink id="bb14-138a-1dd1-024f" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7168-d6ef-c51b-b011" name="10 Dryads" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="points" value="90">
<conditions>
<condition field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="29af-5246-077b-5bab" name="Wracking Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5873-e0e7-fd5f-e071" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="118e-8d21-9d27-cb20" type="min"/>
</constraints>
<profiles>
<profile id="3c8a-7234-8b1b-fc86" name="Wracking Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>