-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathOrder - Sylvaneth - Data.cat
5138 lines (5129 loc) · 380 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="ab8b-39f3-ebc0-e9ab" name="Order - Sylvaneth - Data" revision="138" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="159" type="catalogue">
<publications>
<publication id="0ab2-9698-def7-3126" name="Battletome: Sylvaneth Errata, July 2021"/>
<publication id="b366-6e64-4cd5-0c51" name="Order Battletome: Sylvaneth 2022" publicationDate="June 2022"/>
<publication id="f7ee-d8b4-5155-255e" name="Battletome: Sylvaneth Errata, October 2022"/>
</publications>
<profileTypes>
<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="e1c7-10dc-2430-935e" name="Drycha Wounds Suffered">
<characteristicTypes>
<characteristicType id="6e61-13a9-0c7a-fd95" name="Slashing Talons"/>
<characteristicType id="677e-3240-4c85-8b7d" name="Colony of Flitterfuries"/>
<characteristicType id="19d9-c4ca-7332-dbf4" name="Swarm of Squirmlings"/>
</characteristicTypes>
</profileType>
<profileType id="af58-8931-d7d1-4a93" name="Durthu Wounds Suffered">
<characteristicTypes>
<characteristicType id="d3ff-b80e-89b9-ab32" name="Verdant Blast"/>
<characteristicType id="8345-eb65-bf44-4b82" name="Guardian Sword"/>
<characteristicType id="6e21-a998-961c-5b6c" name="Massive Impaling Talons"/>
</characteristicTypes>
</profileType>
<profileType id="ff92-bbef-17a7-874b" name="Treelord Ancient Wounds Suffered">
<characteristicTypes>
<characteristicType id="2ff7-ffa7-08dd-7f9b" name="Doom Tendril Staff"/>
<characteristicType id="1de0-a004-31f9-354d" name="Sweeping Blows"/>
<characteristicType id="6b5d-8ecc-8d2e-03ad" name="Massive Impaling Talons"/>
</characteristicTypes>
</profileType>
<profileType id="fe2a-f905-8b8a-3136" name="Treelord Wounds Suffered">
<characteristicTypes>
<characteristicType id="19ea-e21e-7f0c-ec87" name="Strangleroots"/>
<characteristicType id="ecc9-c9f6-ad68-56b6" name="Sweeping Blows"/>
<characteristicType id="bdc5-a997-25a4-51f2" name="Massive Impaling Talons"/>
</characteristicTypes>
</profileType>
<profileType name="Belthanos Damage Table" hidden="false" id="d54d-4741-39c5-d5f9">
<characteristicTypes>
<characteristicType id="2f4e-5300-8b9b-70a2" name="Kurnothi War-horn"/>
<characteristicType id="f828-8928-dab-66bd" name="Kurnoth Glaive"/>
<characteristicType id="721d-f9c7-d261-7a5f" name="Razor-like Mandibles and Chitinous Legs"/>
</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"/>
<categoryEntry id="d0ea-b7fa-395e-d5b4" name="ENGA'LA WEALD" hidden="false"/>
<categoryEntry id="502d-7366-1be6-479f" name="WARSONG REVENANT" hidden="false"/>
<categoryEntry id="40e2-c2ea-a45a-3253" name="Coalition: Sylvaneth" hidden="false">
<modifiers>
<modifier type="increment" field="4b55-20dd-82f7-94f2" value="1">
<repeats>
<repeat field="selections" scope="roster" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="4b55-20dd-82f7-94f2" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="b8e4-abab-1015-0320" name="THE LADY OF VINES" hidden="false"/>
<categoryEntry id="1642-1bea-eed2-395a" name="SPITERIDER LANCERS" hidden="false"/>
<categoryEntry id="777c-0bed-887e-4104" name="REVENANT SEEKERS" hidden="false"/>
<categoryEntry id="1918-acc9-b950-648e" name="Sylvaneth Core Battalion" hidden="false"/>
<categoryEntry id="3ca6-a83c-2f4b-d25c" name="Sylvaneth Warscroll Battalion" hidden="false"/>
<categoryEntry id="fcc9-4a1c-ccbf-9f37" name="GOSSAMID ARCHERS" hidden="false"/>
<categoryEntry name="BELTHANOS" hidden="false" id="b745-3133-f457-18c3"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="4d73-8d1e-89ba-a66a" name="Alarielle the Everqueen" publicationId="b366-6e64-4cd5-0c51" page="84" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="40e2-c2ea-a45a-3253">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3f7-43ab-ed49-cd5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="parent" value="1" 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" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of any phase, if any wounds inflicted by this unit's Talon of the Dwindling in that phase were allocated to an enemy model and not negated, and that enemy model has not been slain, roll a dice. On a 6, that enemy model is slain.</characteristic>
</characteristics>
</profile>
<profile id="1677-1da5-cf84-e4e2" name="Lifebloom" 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 2D6 wounds allocated to this model.
In addition, once per battle, at the end of your hero phase, if this unit has been destroyed, you can roll a dice and add the number of the current battle round to the roll. On a 6+, you can set up this unit on the battlefield wholly within 12" of an overgrown terrain feature or friendly Awakened Wyldwood, more than 9" from all enemy units and with 8 wounds allocated to it.</characteristic>
</characteristics>
</profile>
<profile id="0c08-233b-996a-cea0" name="Living Battering Ram" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If you carry out a Stomp monstrous rampage with this unit and the enemy unit you picked has a Wounds characteristic of 1, that enemy unit suffers D6 mortal wounds on a 2+ instead of D3.</characteristic>
</characteristics>
</profile>
<profile id="0da1-fcf2-a50a-7333" name="Wizard" 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, Throne of Vines, Regrowth, The Dwellers Below, Deadly Harvest, Verdurous Harmony, Treesong</characteristic>
</characteristics>
</profile>
<profile id="a25f-7c32-79ca-35ca" name="Swirling Glowspites" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit can retreat and still shoot and/or charge later in the turn.</characteristic>
</characteristics>
</profile>
<profile id="1385-9eb9-afa4-898c" name="Metamorphosis" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">16"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster, and roll a number of dice equal to the unmodified casting roll. For each 3+, that unit suffers 1 mortal wound.
If a unit is destroyed by a mortal wound caused by this spell, before removing the last model in that unit from play, you can set up 1 Awakened Wyldwood terrain feature wholly within 12" of that model, more than 3" from all other models, terrain features or objectives, and add it to your army.</characteristic>
</characteristics>
</profile>
<profile id="c82f-25af-862c-10bc" name="Rite of Life" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, at the start of your hero phase, you can say Alarielle will give voice to a verse of the Rite of Life. If you do so, until the end of that turn, all terrain features on the battlefield that are not already considered by you to be overgrown terrain features are considered by you to be overgrown terrain features.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9ee1-5cd3-5ad4-55c1" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" 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"/>
<infoLink id="0d0c-dbad-a025-732c" name="Verdant Blessing" hidden="false" targetId="2ffd-bbd3-2d81-6ad7" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6b41-e762-aa96-20b9" name="ALARIELLE THE EVERQUEEN" hidden="false" targetId="805c-672e-9a89-4b73" primary="false"/>
<categoryLink id="a584-f826-aef4-d712" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="ed5e-c678-21df-b626" name="MONSTER" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
<categoryLink id="8499-e590-9c9f-d290" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="7800-fba9-e67f-2ec6" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="4853-d0a6-5ce7-3917" name="SYLVANETH" 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="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="6a4b-1a2b-3431-b52f" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
<categoryLink id="261b-45f8-21a8-b89e" name="TOTEM" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9949-bd0c-f85f-0a79" type="max"/>
<constraint field="selections" scope="parent" value="1" 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">24"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">2+</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">*</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ed7-28b1-2f17-da89" type="max"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</costs>
</selectionEntry>
<selectionEntry id="6852-88ea-4580-4c63" name="Great Antlers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2fed-3d52-a5b6-ecfb" type="max"/>
<constraint field="selections" scope="parent" value="1" 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" id="c03a-3323-2faf-f98e" hidden="false" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" id="63ce-71ee-bcb2-c632" hidden="false" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" id="bde9-1d61-87bf-6601" hidden="false" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" id="b5d-c307-ceb0-fc7e" hidden="false" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" id="91c5-3b0c-403e-58d4" hidden="false" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" id="f30d-ce49-36c5-ae60" hidden="false" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" id="2910-43b-642c-90cb" hidden="false" typeId="b5b6-4cbd-661d-1b70">*</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b9e-a06e-18dd-fbdf" type="max"/>
<constraint field="selections" scope="parent" value="1" 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" 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 non-UNIQUE units to the battlefield:
- 1 DYRADS unit of up to 20 models
- 1 TREE-REVENANTS unit of up to 10 models
- 1 SPITE-REVENANTS unit of up to 10 models
- 1 KURNOTH HUNTERS unit of up to 3 models
- 1 BRANCHWYCH
- 1 TREELORD
The summoned unit is added to your army, and must be set up wholly within 9" of this model and more than 9" from all enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="41ce-e01b-299d-363b" name="Wound Table" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="899b-a0b0-3571-60fa" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f22-9423-1e88-6686" type="min"/>
</constraints>
<profiles>
<profile id="f374-c9b5-92ea-1b88" name="00-06" hidden="false" typeId="d7d9-eaac-6963-eea0" typeName="Alarielle Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="4419-5b61-25bd-7721">16"</characteristic>
<characteristic name="Spear of Kurnoth" typeId="305d-3c37-1f1e-3fb1">6</characteristic>
<characteristic name="Great Antlers" typeId="b425-4c0e-3446-42a8">5</characteristic>
</characteristics>
</profile>
<profile id="b7dd-d3ee-62b7-58c9" name="07-09" hidden="false" typeId="d7d9-eaac-6963-eea0" typeName="Alarielle Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="4419-5b61-25bd-7721">15"</characteristic>
<characteristic name="Spear of Kurnoth" typeId="305d-3c37-1f1e-3fb1">5</characteristic>
<characteristic name="Great Antlers" typeId="b425-4c0e-3446-42a8">4</characteristic>
</characteristics>
</profile>
<profile id="354f-669a-6674-d92c" name="10-12" hidden="false" typeId="d7d9-eaac-6963-eea0" typeName="Alarielle Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="4419-5b61-25bd-7721">14"</characteristic>
<characteristic name="Spear of Kurnoth" typeId="305d-3c37-1f1e-3fb1">4</characteristic>
<characteristic name="Great Antlers" typeId="b425-4c0e-3446-42a8">3</characteristic>
</characteristics>
</profile>
<profile id="a206-3ac6-6056-681e" name="13+" hidden="false" typeId="d7d9-eaac-6963-eea0" typeName="Alarielle Wounds Suffered">
<characteristics>
<characteristic name="Move" typeId="4419-5b61-25bd-7721">13"</characteristic>
<characteristic name="Spear of Kurnoth" typeId="305d-3c37-1f1e-3fb1">3</characteristic>
<characteristic name="Great Antlers" typeId="b425-4c0e-3446-42a8">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6168-fe4e-f7b8-a5cc" name="Regrowth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="82b9-cdb2-bd9c-a091" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a6cb-f894-e06b-c630" type="max"/>
</constraints>
<infoLinks>
<infoLink id="734a-dc70-3cdd-40de" name="Regrowth" hidden="false" targetId="e8f2-3860-8987-5c15" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d97d-5eff-662e-a4a7" name="Throne of Vines" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2022-eaec-0019-b0fa" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="13d7-852f-e3d7-8d6e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1b37-c736-0aed-34a4" name="Throne of Vines" hidden="false" targetId="f55c-f5bc-c338-2f2f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="922f-8d6e-899c-8337" name="The Dwellers Below" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4408-7a7a-9894-63ee" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c4ab-c43e-e37a-163e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a2bc-f2df-7504-94ba" name="The Dwellers Below" hidden="false" targetId="04ca-53ca-f8ee-1221" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="44cb-88fa-ab50-b69e" name="Treesong" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf41-da7f-74b0-169b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05e1-6a36-97ea-e13c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b62f-e82c-37ed-0392" name="Treesong" hidden="false" targetId="f7af-c4e8-2a1d-a039" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f71a-aa78-ebaf-5eda" name="Verdurous Harmony" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0bd-28d2-4c3e-844b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4d1-7872-7ec3-6d25" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a016-faa4-0aea-cad9" name="Verdurous Harmony" hidden="false" targetId="3a41-9574-eb69-9471" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="163a-c3e0-e1ad-11c8" name="Deadly Harvest" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bfcf-b576-49b6-b320" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bbaf-be9a-fef2-07e4" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ee52-45df-0f99-ec57" name="Deadly Harvest" hidden="false" targetId="a5ab-7f4c-1c4d-7b7f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c24a-24b7-704a-e364" name="Battalions" hidden="false" collective="false" import="true" targetId="d014-2004-2d0f-2c6d" type="selectionEntryGroup"/>
<entryLink id="acc0-4d91-9156-cf6f" name="General" hidden="false" collective="false" import="true" targetId="203c-cae0-53f6-9431" type="selectionEntry">
<categoryLinks>
<categoryLink id="2299-1a39-80ab-cf36" name="6_under_wounds" hidden="false" targetId="e4e2-6076-dafa-ec2c" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="800"/>
</costs>
</selectionEntry>
<selectionEntry id="6892-294f-1dab-882a" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="f73e-9efe-7514-097a" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e36-e511-437b-5de8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fc4e-6be8-ec51-c113" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="524e-8001-63ee-cdf7" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f92d-bf15-574c-d04a" type="instanceOf"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="f8ed-b018-a21b-e78c" shared="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="4e47-2376-9338-8418" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f73e-9efe-7514-097a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9fca-167d-b607-b46f" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="8bea-f792-0aa5-fc38" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="0572-5dc9-f119-98f0">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ca3-5fcb-c64c-ced2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e75-c23e-e7f1-40fe" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0572-5dc9-f119-98f0" name="Allegiance: Sylvaneth" hidden="false" collective="false" import="true" targetId="e82b-43a4-90b3-1d15" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="756d-d96e-e298-5558" name="Sylvaneth Warscroll Battalion: Forest Folk" publicationId="b366-6e64-4cd5-0c51" page="80" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e82b-43a4-90b3-1d15" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="ebfa-de89-8684-c698" name="Sylvaneth Warscroll Battalion: Forest Folk" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">3 Dryads units</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="57ec-0ef2-378f-450c" name="Mighty Wyldwoods" hidden="false" targetId="6734-791f-f20f-9821" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b9d3-1819-4057-41de" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
<categoryLink id="b46a-8b9e-ca2b-658f" name="Sylvaneth Warscroll Battalion" hidden="false" targetId="3ca6-a83c-2f4b-d25c" primary="false"/>
<categoryLink id="16aa-183f-0a6f-2173" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f852-7524-198b-2957" name="Sylvaneth Warscroll Battalion: Free Spirits" publicationId="b366-6e64-4cd5-0c51" page="80" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e82b-43a4-90b3-1d15" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="0541-8246-2d7a-04e2" name="Sylvaneth Warscroll Battalion: Free Spirits" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">1 Spirit of Durthu
1 Arch-Revenant
3 KURNOTH HUNTERS units
1 Gossamid Archers unit
1 Dragonspite Lancers unit</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="005b-8926-1782-9c5e" name="Mighty Wyldwoods" hidden="false" targetId="6734-791f-f20f-9821" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9f1e-2839-b211-ec5f" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
<categoryLink id="99a6-b4d1-3eb7-cd29" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
<categoryLink id="783f-a6a6-e967-a1ef" name="Sylvaneth Warscroll Battalion" hidden="false" targetId="3ca6-a83c-2f4b-d25c" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d141-06d7-9c9e-d410" name="Sylvaneth Warscroll Battalion: Household" publicationId="b366-6e64-4cd5-0c51" page="80" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e82b-43a4-90b3-1d15" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="ddc8-129c-75bd-a828" name="Sylvaneth Warscroll Battalion: Household" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">1 Treelord
1 Branchwych
1 Tree-Revenants unit
1 Revenant Seekers unit</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1c2a-9014-eca4-6f6f" name="Mighty Wyldwoods" hidden="false" targetId="6734-791f-f20f-9821" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a487-1ee0-d719-a55c" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
<categoryLink id="ee68-e244-6314-bd3b" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
<categoryLink id="dfe8-6374-09d8-b68b" name="Sylvaneth Warscroll Battalion" hidden="false" targetId="3ca6-a83c-2f4b-d25c" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3388-e687-3bd2-98a8" name="Sylvaneth Core Battalion: Lords of the Clan" publicationId="b366-6e64-4cd5-0c51" page="83" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e82b-43a4-90b3-1d15" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c678-3359-e273-dd13" name="Sylvaneth Core Battalion: Lords of the Clan" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">2-4 Treelord Ancients
1-3 Treelords</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bc0c-9fd7-e651-f691" name="Strategist" hidden="false" targetId="d430-efbb-5f30-d60a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1959-8ef6-fbb0-ac35" name="Core Battalion" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink id="33af-2778-8dd1-da42" name="Sylvaneth Core Battalion" hidden="false" targetId="1918-acc9-b950-648e" primary="false"/>
<categoryLink id="2d1b-60b4-22ca-f260" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="471d-38f0-5388-84a0" name="Sylvaneth Warscroll Battalion: Outcasts" publicationId="b366-6e64-4cd5-0c51" page="80" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e82b-43a4-90b3-1d15" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="b1a7-773a-d39f-ac9f" name="Sylvaneth Warscroll Battalion: Outcasts" hidden="false" typeId="75e0-a332-e4f5-bf36" typeName="Battalion Organisation">
<characteristics>
<characteristic name="Required" typeId="eb5f-e9d2-e457-bff5">3 Spite-Revenants units</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="926f-e614-247d-53cf" name="Mighty Wyldwoods" hidden="false" targetId="6734-791f-f20f-9821" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7a4e-3b10-986e-c2fb" name="Warscroll Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="true"/>
<categoryLink id="002b-37c9-1a02-0095" name="Battalion" hidden="false" targetId="3ecc-4c0d-d717-29bd" primary="false"/>
<categoryLink id="7769-cd42-4b69-8aa2" name="Sylvaneth Warscroll Battalion" hidden="false" targetId="3ca6-a83c-2f4b-d25c" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="67ae-bbfe-04fe-0e20" name="Branchwraith [LEGENDS]" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="40e2-c2ea-a45a-3253">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3f7-43ab-ed49-cd5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="f1b8-8df5-9e90-9345" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<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" 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="02a1-9517-b913-3fc7" name="Wizard" 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>
<profile id="3a21-4c22-8ce3-79a2" name="Roused to Wrath" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">-</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>
</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="BRANCHWRAITH" hidden="false" targetId="5bb1-ed20-b7d9-9d94" primary="false"/>
<categoryLink id="bc47-76df-e6e8-28cb" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="d1ad-b030-b172-4a3a" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="d6d4-4d6d-bf00-e0cc" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="78b4-b540-0268-dc3e" name="SYLVANETH" 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"/>
<categoryLink id="73a2-d6d7-7718-76bf" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="2cd3-d9a2-e06b-3899" primary="false" name="Champion"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ef6-f944-ceac-218d" type="max"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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">
<categoryLinks>
<categoryLink id="e8f2-59b1-97d3-b3bf" name="6_under_wounds" hidden="false" targetId="e4e2-6076-dafa-ec2c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4424-2057-a984-7fcc" name="Artefacts" hidden="false" collective="false" import="true" targetId="9a8b-a529-4a2d-239c" type="selectionEntryGroup"/>
<entryLink id="b094-0ec4-692a-78hg" name="Spell Lores" hidden="false" collective="false" import="true" targetId="b094-0ec4-692a-78ed" type="selectionEntryGroup"/>
<entryLink id="99dc-06b5-2d16-9ab7" name="Command Traits" hidden="false" collective="false" import="true" targetId="59ea-9242-251d-adc4" type="selectionEntryGroup"/>
<entryLink id="55f4-689c-5acc-539a" name="General's Adjutant" hidden="false" collective="false" import="true" targetId="65e4-9e34-5cf6-2bec" type="selectionEntry"/>
<entryLink id="0153-0c70-1652-22c4" name="Battalions" hidden="false" collective="false" import="true" targetId="d014-2004-2d0f-2c6d" type="selectionEntryGroup"/>
<entryLink id="72c7-5a69-649a-e3f5" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="73fe-ddd4-d0c7-765f" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="7368-c38f-d7ef-fbea" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d65c-84f8-43bf-d534" name="Branchwych" publicationId="b366-6e64-4cd5-0c51" page="93" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="40e2-c2ea-a45a-3253">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3f7-43ab-ed49-cd5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<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="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 and wound rolls for attacks made with melee weapons by this unit while it is wholly within 9" of an overgrown terrain feature or friendly Awakened Wyldwood.</characteristic>
</characteristics>
</profile>
<profile id="f566-fd79-ed93-ff3b" name="Wizard" 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>
<profile id="f199-895e-aecf-9c30" 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="Range" typeId="5b5c-1fd1-4c0f-5705">9"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, roll a number of dice equal to the unmodified casting roll for each enemy unit within range of the caster. For each 5+, that enemy unit suffers 1 mortal wound.</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="BRANCHWYCH" hidden="false" targetId="42a2-dfbb-a489-67e9" primary="false"/>
<categoryLink id="4235-bd55-c36e-cbd2" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="add7-72de-78e1-8db7" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="7e6a-9451-3f33-7291" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="567b-0a37-40be-2a6f" name="SYLVANETH" 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"/>
<categoryLink id="7522-d6bb-d382-8e16" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="4064-f206-f092-44c8" primary="false" name="Champion"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="794a-356d-255f-bc39" type="max"/>
<constraint field="selections" scope="parent" value="1" 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">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D3</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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="174c-47d3-6d62-8e7a" type="max"/>
<constraint field="selections" scope="parent" value="1" 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">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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">
<categoryLinks>
<categoryLink id="86ea-6317-187f-dd5f" name="6_under_wounds" hidden="false" targetId="e4e2-6076-dafa-ec2c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="648a-d7e7-ba3d-cc1e" name="Artefacts" hidden="false" collective="false" import="true" targetId="9a8b-a529-4a2d-239c" type="selectionEntryGroup"/>
<entryLink id="c926-3d56-2a29-f190" name="Spell Lores" hidden="false" collective="false" import="true" targetId="b094-0ec4-692a-78ed" type="selectionEntryGroup"/>
<entryLink id="bd78-78d6-11bb-414c" name="Command Traits" hidden="false" collective="false" import="true" targetId="59ea-9242-251d-adc4" type="selectionEntryGroup"/>
<entryLink id="dfa4-88e5-91f9-ae02" name="General's Adjutant" hidden="false" collective="false" import="true" targetId="65e4-9e34-5cf6-2bec" type="selectionEntry"/>
<entryLink id="109d-e106-a571-40cd" name="Battalions" hidden="false" collective="false" import="true" targetId="d014-2004-2d0f-2c6d" type="selectionEntryGroup"/>
<entryLink id="0248-ffaf-beae-4838" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
<entryLink id="be98-cc75-0fcf-324e" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="7368-c38f-d7ef-fbea" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</selectionEntry>
<selectionEntry id="0a14-90fc-1335-3c79" name="Dryads" publicationId="b366-6e64-4cd5-0c51" page="97" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="40e2-c2ea-a45a-3253">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3f7-43ab-ed49-cd5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<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 hit rolls and wound rolls for attacks that target this unit while it is wholly within 9" of any overgrown terrain features or friendly Awakened Wyldwoods.</characteristic>
</characteristics>
</profile>
<profile id="aa8d-3bb9-972d-1407" name="Champion" 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="DRYADS" hidden="false" targetId="7df9-175c-9acd-2811" primary="false"/>
<categoryLink id="e018-4685-86c8-2a3e" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="d5ad-db6c-d74a-ff56" name="SYLVANETH" 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="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="3470-4ad7-191f-e03a" primary="false" name="Infantry"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7168-d6ef-c51b-b011" name="10 Dryads" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="30 Dryads">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="20 Dryads">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5873-e0e7-fd5f-e071" type="max"/>
<constraint field="selections" scope="parent" value="1" 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>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4a03-79e0-97df-f801" name="Honoured Retinue" hidden="false" collective="false" import="true" targetId="cb24-5c4a-8232-6c5b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b7e8-fc6f-31b6-1ed9" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="100"/>
</costs>
</entryLink>
<entryLink id="3166-c512-da88-f874" name="Battalions" hidden="false" collective="false" import="true" targetId="d014-2004-2d0f-2c6d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="02a8-7840-22ef-b8f5" name="Drycha Hamadreth" publicationId="b366-6e64-4cd5-0c51" page="87" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="40e2-c2ea-a45a-3253">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d3f7-43ab-ed49-cd5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="a662-793e-a010-1dec" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d69f-ccae-eb57-5f3f" type="max"/>
</constraints>
<profiles>
<profile id="9801-f65c-88eb-c226" name="Drycha Hamadreth" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">9"</characteristic>