-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map33_Riverhaven_West_Gate.xml
974 lines (974 loc) · 84.6 KB
/
Map33_Riverhaven_West_Gate.xml
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
<?xml version="1.0" encoding="utf-8"?>
<zone name="Riverhaven West Gate" id="33">
<node id="1" name="Riverhaven, River Road West" note="Map30_Riverhaven.xml|Riverhaven">
<description>The wooden palisade of the town wall runs down into the river, ending in the West Tower. A narrow gate allows exit from the town into the countryside. South of the road, a narrow strip of muddy ground surrounds numerous shanties where the local fishermen draw up their boats and work on their nets. Small but well-kept houses line the northern side of the road where some of the more prosperous fisherfolk dwell.</description>
<position x="100" y="60" z="0" />
<arc exit="north" move="north" />
<arc exit="east" move="east" />
<arc exit="go" move="go gate" destination="2" />
</node>
<node id="2" name="Riverhaven Exterior, Southwest Gate">
<description>A narrow gate leads through the fortified wall here, providing travelers with access to the town. Too small for wagons, this area's peacefulness is shattered only by the occasional hoof-beat. Through the gate can be viewed a mixed selection of dwellings. To the south a guard stands in a tower carefully watching the horizon, ready to sound the alarm if needed. A wide, well traveled path heads off to the northwest.</description>
<position x="40" y="60" z="0" />
<arc exit="west" move="west" destination="3" />
<arc exit="northwest" move="northwest" destination="27" />
<arc exit="go" move="go gate" destination="1" />
</node>
<node id="3" name="Riverhaven, Outside the Southwest Gate">
<description>The wooden parapets of the West Tower jut into the sky like bared teeth where the town wall sinks into the slow-flowing waters of the river. A twisting path, almost completely overgrown with rambling blackberry bushes, leads westward from the foot of the guard tower and onward through the undergrowth toward the shore of Lake Gwenalion.</description>
<position x="20" y="60" z="0" />
<arc exit="east" move="east" destination="2" />
<arc exit="go" move="go path" destination="4" />
</node>
<node id="4" name="Riverhaven, Stony Path" color="#00FFFF">
<description>The path stumbles over loose rocks and stones as it turns toward the south and pushes on through dense bracken and brambles. Overhanging branches and thorny stems snatch at hair and clothing as travelers make their determined progress toward the lake, the vegetation whipping back to smother the path as soon as a body has passed through.</description>
<position x="0" y="60" z="0" />
<arc exit="south" move="south" destination="5" />
<arc exit="go" move="go blackberry bushes" destination="3" />
</node>
<node id="5" name="Riverhaven, Stony Path" color="#00FFFF">
<description>The seemingly thick undergrowth is sufficiently thin in spots to allow a tantalizing glimpse of glittering Lake Gwenalion, its waters shimmering silently between the branches of a lofty pine that blocks direct progress toward the shore. The trail shifts unwillingly to the west, pushing its way through a thick clump of ferns and into a small clearing.</description>
<position x="0" y="80" z="0" />
<arc exit="north" move="north" destination="4" />
<arc exit="west" move="west" destination="6" />
</node>
<node id="6" name="Pine Woods, Needlethatch Clearing" color="#00FFFF">
<description>A spongy carpet of fallen pine needles greets the foot with a pleasant softness where the trail opens out in a circle of tall evergreens. Several log cabins nestle amongst the trees, their squat chimneys draping the still air in a soft blue veil of pine-scented smoke. The intermittent twitter of unseen birds drifts down from the branches overhead.</description>
<position x="-20" y="80" z="0" />
<arc exit="east" move="east" destination="5" />
<arc exit="west" move="west" destination="7" />
</node>
<node id="7" name="Pine Woods, Rocky Slope" color="#00FFFF">
<description>The trail slips down a rocky slope, passing between clusters of cabins and shifting from side to side where mossy boulders prevent direct passage down toward the lakeshore. Drifting up from the lakeshore, a cool breeze brings with it the smell of damp peat and the occasional faint splash of oars dipping deeply into still waters.</description>
<position x="-40" y="80" z="0" />
<arc exit="east" move="east" destination="6" />
<arc exit="south" move="south" destination="8" />
</node>
<node id="8" name="Pine Woods, Rocky Slope" color="#00FFFF">
<description>Traces of sand mix with the damp earth as the path nears the shoreline and continues its gentle slope toward the water. A low-growing tangle of ivy spills across the path from its bed at the front door of a cabin, giving off the sharp smell of crushed greenery where its leaves and stems have strayed too close to passing boots.</description>
<position x="-40" y="100" z="0" />
<arc exit="north" move="north" destination="7" />
<arc exit="south" move="south" destination="9" />
</node>
<node id="9" name="Riverhaven, Gwenalion Shore" color="#00FFFF">
<description>As if held back by some invisible hand, the thick growth of trees and bracken stops suddenly at the edge of the nearby woods, the path wresting itself free like an escaped convict from the confinement of the trees. Spreading as far as the eye can see, the blue-green shoreline of Lake Gwenalion slips silently into the distance, vanishing eventually into the thin mist that cloaks the horizon in silvery grey.</description>
<position x="-40" y="120" z="0" />
<arc exit="north" move="north" destination="8" />
<arc exit="southwest" move="southwest" destination="10" />
<arc exit="go" move="go leather tent" destination="112" />
</node>
<node id="10" name="Riverhaven, Gwenalion Shore" color="#00FFFF">
<description>A narrow path runs around the edge of the lake, in parts rocky and barren and elsewhere softly luxuriating in lush grasses and ferns. Here, browned pine needles combine with sand and shingle around a tiny cove, where peaty waters lap the shore and envelope a huddle of fishermens' cottages in the gentle, sibilant lullaby of washing waves.</description>
<position x="-60" y="140" z="0" />
<arc exit="northeast" move="northeast" destination="9" />
<arc exit="west" move="west" destination="11" />
</node>
<node id="11" name="Riverhaven, Gwenalion Shore" color="#00FFFF">
<description>Following the soft curve of the shoreline, a small fleet of fishing boats rests on the shingle. Coils of sodden greenish rope lash the boats to wooden posts dotting the rocky shore, alongside rows of mesh nets spread out to dry between excursions to the varied and profitable fishing in the center of the lake.</description>
<position x="-80" y="140" z="0" />
<arc exit="east" move="east" destination="10" />
<arc exit="west" move="west" destination="12" />
</node>
<node id="12" name="Riverhaven, Gwenalion Shore" color="#00FFFF">
<description>Looking out over the lake's sparkling expanse, a group of low stone cottages sits back from the path, the weathered grey of their thatched roofs blending into the misty woodland behind them. Tiny waves lap the shore, the shallow waters at the edge of the lake quietly reporting the distant passage of barges between Riverhaven and Langenfirth.</description>
<position x="-100" y="140" z="0" />
<arc exit="east" move="east" destination="11" />
<arc exit="northwest" move="northwest" destination="13" />
</node>
<node id="13" name="Gwenalion Shore, Deep Gulch" color="#00FFFF">
<description>The shoreline darts back toward the trees to form an angular cove surrounded by overhanging rocks. Deep waters submerge the narrow chasm, swelling from their stillness only occasionally with the remote motion of a large vessel across the lake, and slapping softly against the roofs of the small caves on the waterline. A few cottages amidst the trees enjoy this tranquil location.</description>
<position x="-120" y="120" z="0" />
<arc exit="north" move="north" destination="14" />
<arc exit="southeast" move="southeast" destination="12" />
</node>
<node id="14" name="Gwenalion Shore, Deep Gulch" color="#00FFFF">
<description>The lakeside path narrows to a crooked trail as it picks its way gingerly around the rocky cove, further passage westward blocked by a precarious stony outcrop. Low-lying crabgrass and clementines punctuate the path as it leads past some moss-grown cottages and turns back into the woods lining the lake. To the southwest, the unclaimed wilds of the shoreline disappear around a sharp, unassailable promontory.</description>
<position x="-120" y="100" z="0" />
<arc exit="north" move="north" destination="15" />
<arc exit="south" move="south" destination="13" />
</node>
<node id="15" name="Pine Woods, Evergreen Path" color="#00FFFF">
<description>The path slips back into the cool evergreen woods and twists toward a grassy clearing among the pines. To the northwest, a rocky trail climbs a steep incline between wafting fiddlehead ferns, its covering of thick green moss damp and slippery underfoot. A group of log cabins nestles in the fork between the paths, clinging determinedly to the uneven terrain.</description>
<position x="-120" y="80" z="0" />
<arc exit="northeast" move="northeast" destination="16" />
<arc exit="south" move="south" destination="14" />
<arc exit="climb" move="climb rocky trail" destination="25" />
</node>
<node id="16" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>A thick carpet of lush green grass spreads in a perfect circle formed by a group of stately pines. A constant, cool breeze drifts between the cottages and cabins that occupy this idyllic spot, carrying with it the fragrance of the forest and the gentle melody of birdsong from the canopy of deep green branches overhead.</description>
<position x="-100" y="60" z="0" />
<arc exit="northeast" move="northeast" destination="17" />
<arc exit="southwest" move="southwest" destination="15" />
<arc exit="west" move="west" destination="23" />
</node>
<node id="17" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>A slight thinning of the trees and undergrowth allows for a glimpse of the lake to the southeast, its deep waters glinting silently below the wooded promontory. Shards of shattered moonlight reflect faintly from the lake's surface and dance among the branches like mischievous sprites, soaking the area in a soft, silvery luminence.</description>
<description>A slight thinning of the trees and undergrowth allows for a glimpse of the lake to the southeast, its deep waters glinting silently below the wooded promontory. Shards of shattered sunlight reflect faintly from the lake's surface and dance among the branches like mischievous sprites, bathing the area in a dappled golden glow.</description>
<position x="-80" y="40" z="0" />
<arc exit="north" move="north" destination="18" />
<arc exit="southwest" move="southwest" destination="16" />
</node>
<node id="18" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>Gauzy curtains billow from the wide-open window of one cottage, their primary colors contrasting cheerfully with the muted greens and browns of this wooded clearing. In the peaty, rich soil outside its front door, a collection of sun-bleached shells and pebbles forms an abstract design, their less-perfect neighbors lying scattered about the path.</description>
<position x="-80" y="20" z="0" />
<arc exit="south" move="south" destination="17" />
<arc exit="northwest" move="northwest" destination="19" />
</node>
<node id="19" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>Several cottages and cabins surround a fire ring of smooth, blackened stones that lay beneath an ancient pine. The tree's weighty boughs bend under the strain of their great age, reaching down to brush gently against even the lowest rooftop and sprinkling a fragrant shower of needles around the area with every whisper of wind.</description>
<position x="-100" y="0" z="0" />
<arc exit="southeast" move="southeast" destination="18" />
<arc exit="west" move="west" destination="20" />
</node>
<node id="20" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>The murmur of gently lapping waves indicates this clearing is close to the shore of Lake Gwenalion, although the dense undergrowth of wild peppermint and silverleaf vine blocks any view of the water. The soft, sleepless sound lulls the senses and wraps the homes here in a restful but unending music.</description>
<position x="-120" y="0" z="0" />
<arc exit="east" move="east" destination="19" />
<arc exit="southwest" move="southwest" destination="21" />
<arc exit="go" move="go gap" destination="24" />
</node>
<node id="21" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>The grassy turf underfoot is porous and loamy, supporting a lush growth of mossy thyme and enormous flat-topped toadstools that scatter the area like stepping stones in a still green pond. Many of the homes here take advantage of the fertile soil and cultivate small, fragrant herb gardens bordered by rows of white-painted rocks underneath their kitchen windows.</description>
<position x="-140" y="20" z="0" />
<arc exit="northeast" move="northeast" destination="20" />
<arc exit="south" move="south" destination="22" />
</node>
<node id="22" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>The comforting aroma of woodsmoke and hearty home cooking hangs in the air, emanating from the cozy homes which nestle between the trees. At the edge of the clearing, the vigorous undergrowth of mixed vines and ivies conspires to reclaim their former territory, but the daily endeavors of local residents to nurture a compromise with the wildlife seem to enjoy some success.</description>
<position x="-140" y="40" z="0" />
<arc exit="north" move="north" destination="21" />
<arc exit="southeast" move="southeast" destination="23" />
</node>
<node id="23" name="Pine Woods, Coldspring Clearing" color="#00FFFF">
<description>Bubbling up from beneath the turf, a crystal-clear spring drenches the surrounding grass in a glistening, ice-cold pool. Many sets of footprints circle the spring, where locals come to catch the sparkling water for drinking and brewing before it disappears once more below the surface to follow its fated path down to the lake and beyond.</description>
<position x="-120" y="60" z="0" />
<arc exit="east" move="east" destination="16" />
<arc exit="northwest" move="northwest" destination="22" />
</node>
<node id="24" name="Pine Woods, Gwenalion Shore" color="#00FFFF">
<description>A steep shingle slope tumbles down from the treeline, where exposed roots and tangled stems struggle to keep their owners from toppling onto the wooden huts that occupy this sliver of beach. From the distance, faint sounds of battle occasionally drift along the water's edge from the western wilds outside Riverhaven, adding an edge of tension to the otherwise peaceful atmosphere.</description>
<position x="-140" y="0" z="0" />
<arc exit="go" move="go gap" destination="20" />
</node>
<node id="25" name="Pine Woods, Evergreen Trail" color="#00FFFF">
<description>Like a giant stairway clambering up the side of the hill, a collection of enormous, flat rocks protrudes from the loamy earth on either side of the trail. Tiny wooden huts cling to each broad ledge, depending for their stability on the surrounding trees which shelter the frail constructions from the worst of the elements.</description>
<position x="-140" y="80" z="0" />
<arc exit="up" move="up" destination="26" />
<arc exit="climb" move="climb rocky trail" destination="15" />
</node>
<node id="26" name="Pine Woods, Lake View" color="#00FFFF">
<description>High above the sparkling waters of Lake Gwenalion, a vast slab of bare rock juts out beyond the treeline, providing a magnificent view of the wooded wilds between here and Therenborough. In the far distance, the low buildings and dense forestation of Langenfirth crouch around the lake's northwestern shore. A series of fat pine logs, stripped of their rough bark, provides a pleasant place to sit and enjoy the breathtaking vista.</description>
<position x="-140" y="60" z="0" />
<arc exit="down" move="down" destination="25" />
</node>
<node id="27" name="Riverhaven Exterior, Trodden Path">
<description>Many feet and wagons have used this path as is evident by the hard packed soil beneath your feet. Looking to the northwest you see a small building in the distance. To the southeast lies the town, its high walls offering sanctuary to those who call it home. Along the river bank to the south you watch as a trader works a mule that is pulling a small barge up stream.</description>
<position x="20" y="40" z="0" />
<arc exit="north" move="north" destination="29" />
<arc exit="southeast" move="southeast" destination="2" />
<arc exit="northwest" move="northwest" destination="28" />
<arc exit="go" move="go winding path" destination="30" />
</node>
<node id="28" name="Riverhaven Exterior, Trodden Path">
<description>Before you stands the rustic stone building of the Barbarian Guild, badly in need of maintenance. A simple arch provides entry without the assistance of a porch or walkway, the opening covered with a tattered and faded drape that acts as a makeshift door. A small path heads off to the west around the guild.</description>
<position x="-60" y="-40" z="0" />
<arc exit="southeast" move="southeast" destination="27" />
<arc exit="go" move="go overgrown trail" destination="31" />
<arc exit="go" move="go small path" destination="91" />
<arc exit="go" move="go faded drape" destination="114" />
</node>
<node id="29" name="Mistwood Forest Road" note="Map33a_Road_to_Therenborough.xml|Theren|Mistwood|Rossman's|Langenfirth">
<description>Faded red bricks, once neatly laid in a herringbone pattern, now exist only as scraps of pavement heaved up and broken by years of neglect. Weeds grow through the crumbled mortar, obscuring the direction of the road. Wild roses climb in a high thicket along the northern side of the road to form a tangled mass of sweetly scented thorns.</description>
<position x="20" y="0" z="0" />
<arc exit="north" move="north" />
<arc exit="south" move="south" destination="27" />
</node>
<node id="30" name="Riverhaven West Wilds, Meadows">
<description>A feeling of openness pervades this plain of tall waving meadow grass. A range of low rocky hills creates sharp-edged silhouettes on the horizon to the north. To the east at the end of a somewhat muddy looking trail is a small stand of trees circling a small inland pond. Beyond the trees are the sturdy walls of Riverhaven.</description>
<position x="-120" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="32" />
<arc exit="west" move="west" destination="31" />
<arc exit="northwest" move="northwest" destination="41" />
<arc exit="go" move="go muddy trail" destination="77" />
<arc exit="go" move="go winding path" destination="27" />
</node>
<node id="31" name="Riverhaven West Wilds, Meadows">
<description>Wildflowers, mingled with the waist-high grass, touch the surroundings with bright festive colors and a faint sweet fragrance that tickles the senses with each breeze rippling across the meadow. A stone building lies at the end of an overgrown trail leading off to the south.</description>
<position x="-180" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="41" />
<arc exit="east" move="east" destination="30" />
<arc exit="northwest" move="northwest" destination="39" />
<arc exit="go" move="go trail" destination="28" />
</node>
<node id="32" name="Riverhaven West Wilds, Meadow">
<description>The bleached half-buried skull of a large rat shows starkly against the dark soil of the meadow. A patch of daisies grows around it as if planted in memoriam by a mourning rodent relative.</description>
<position x="-100" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="33" />
<arc exit="southwest" move="southwest" destination="30" />
<arc exit="west" move="west" destination="41" />
<arc exit="northwest" move="northwest" destination="34" />
</node>
<node id="33" name="Riverhaven West Wilds, Meadow">
<description>A lone waxy-leafed bush covered with bright pink blossoms pokes above the tall meadow grass. Movement in the branches seems to indicate the presence of one or more small occupants. Exposed bush roots extend through the grass and out over a bare spot of ground that slopes down to a rocky creek bank to the north.</description>
<position x="-80" y="-140" z="0" />
<arc exit="southwest" move="southwest" destination="32" />
<arc exit="west" move="west" destination="34" />
</node>
<node id="34" name="Riverhaven West Wilds, Meadow">
<description>The shadowed foothills to the north rise like brooding sentinels over the dark plains of meadow grass. The chirrup of a cricket, or perhaps a small frog, rises from the surrounding vegetation, gentle accompaniment to the rustling of breeze-blown blades of grass.</description>
<description>The rocky foothills to the north rise like brooding sentinels over the sun-touched fields of meadow grass. Clouds overhead cast fleeting shadows across the surrounding plain.</description>
<position x="-120" y="-140" z="0" />
<arc exit="east" move="east" destination="33" />
<arc exit="southeast" move="southeast" destination="32" />
<arc exit="southwest" move="southwest" destination="41" />
<arc exit="west" move="west" destination="35" />
</node>
<node id="35" name="Riverhaven West Wilds, Meadow">
<description>Vagrant breezes blowing across the lake to the west carry a cool touch of moisture that settles in a damp blanket across the meadow grass. The sound of running water indicates the presence of a brook flowing to the north.</description>
<description>Vagrant breezes blowing across the lake to the west carry a cool touch of moisture that settles on the meadow grass in tiny glistening jewels. A thin ribbon of blue cuts across the meadow to the north, indicating the presence of flowing water.</description>
<position x="-160" y="-140" z="0" />
<arc exit="east" move="east" destination="34" />
<arc exit="southeast" move="southeast" destination="41" />
<arc exit="west" move="west" destination="36" />
</node>
<node id="36" name="Riverhaven West Wilds, Meadow">
<description>A huge, oddly shaped boulder blocks passage to the west. The rough stone seems out of place, as if dropped by the hand of a giant on the outskirts of this flat plain.</description>
<position x="-200" y="-140" z="0" />
<arc exit="east" move="east" destination="35" />
<arc exit="south" move="south" destination="40" />
<arc exit="southwest" move="southwest" destination="37" />
<arc exit="go" move="go gap" destination="44" />
<arc exit="climb" move="climb bank" destination="90" />
<arc exit="climb" move="climb huge boulder" destination="133" />
</node>
<node id="37" name="Riverhaven West Wilds, Lake Shore">
<description>Brightly-scaled fish leap among the waves of the lake like silver arrows shot into the sky. Closer to the shoreline a family of geese paddles past in a lazy line, occasionally stopping to tip bottoms up in a hunt for sustenance below the surface of the water.</description>
<position x="-240" y="-120" z="0" />
<arc exit="north" move="north" destination="42" />
<arc exit="northeast" move="northeast" destination="36" />
<arc exit="south" move="south" destination="38" />
<arc exit="go" move="go lake" destination="132" />
</node>
<node id="38" name="Riverhaven West Wilds, Lake Shore">
<description>Verdant grassland gives way to the loamy eastern shore of Lake Gwenalion. A strip of shallow water laps at the narrow shore before diving into the restless depths of the lake bed. Far to the west across the lake can be seen the vague outlines of buildings belonging to the community of Langenfirth.</description>
<position x="-240" y="-100" z="0" />
<arc exit="north" move="north" destination="37" />
<arc exit="east" move="east" destination="40" />
<arc exit="southeast" move="southeast" destination="39" />
<arc exit="go" move="go lake" destination="125" />
</node>
<node id="39" name="Riverhaven West Wilds, Meadow">
<description>Intermittant rustlings provide evidence of small wild life residing in the tall meadow grass. Further to the west spread the waters of Gwenalion Lake.</description>
<position x="-200" y="-80" z="0" />
<arc exit="north" move="north" destination="40" />
<arc exit="southeast" move="southeast" destination="31" />
<arc exit="northwest" move="northwest" destination="38" />
</node>
<node id="40" name="Riverhaven West Wilds, Meadow" note="RTT12|RT-HWG-HNG" color="#C2B280">
<description>Trampled grass creates a criss-cross pattern of narrow trails across the lush meadow. Here and there can be seen a bare spot of disturbed ground, small mounds of dirt piled next to narrow holes dug deep into the rich moist soil.</description>
<position x="-200" y="-100" z="0" />
<arc exit="north" move="north" destination="36" />
<arc exit="east" move="east" destination="41" />
<arc exit="south" move="south" destination="39" />
<arc exit="west" move="west" destination="38" />
</node>
<node id="41" name="Riverhaven West Wilds, Meadow" note="Shamans|Rams">
<description>A delicate spider web woven amongst the dark green stalks of meadow grass glistens when brushed by a trembling breeze. The ground here is pockmarked with several deep holes that appear to be the abodes of some sort of burrowing creature.</description>
<position x="-140" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="34" />
<arc exit="east" move="east" destination="32" />
<arc exit="southeast" move="southeast" destination="30" />
<arc exit="southwest" move="southwest" destination="31" />
<arc exit="west" move="west" destination="40" />
<arc exit="northwest" move="northwest" destination="35" />
</node>
<node id="42" name="Riverhaven West Wilds, Lake Shore">
<description>A huge boulder blocks passage to the north. Along the lake front water washes in foamy ripples, dragging at dried grass and flower petals blown to the shore from the meadow to the east.</description>
<position x="-240" y="-140" z="0" />
<arc exit="south" move="south" destination="37" />
<arc exit="northwest" move="northwest" destination="43" />
<arc exit="climb" move="climb huge boulder" destination="133" />
</node>
<node id="43" name="Riverhaven West Wilds, Lake Shore">
<description>The spongy loam of the beach gives way to a sandy surface that is similar in color to the dark boulder blocking passage to the north and east. Tiny fiddler crabs dash from the water lapping along the shore, then turn and scuttle back into the waves in an endless quest for food.</description>
<position x="-260" y="-160" z="0" />
<arc exit="southeast" move="southeast" destination="42" />
<arc exit="go" move="go lake" destination="130" />
<arc exit="climb" move="climb huge boulder" destination="133" />
</node>
<node id="44" name="West Wilds, Tunnels" note="Mine" color="#993300">
<description>A gap beneath a large boulder opens into a wide tunnel that curves in two directions around a submerged chunk of rock. There is a distinct odor of rotting fish, mingled with the smell of rodent, pervading the tunnel. It's not a particularly pleasant fragrance.</description>
<position x="-260" y="-200" z="0" />
<arc exit="north" move="north" destination="48" />
<arc exit="southwest" move="southwest" destination="45" />
<arc exit="northwest" move="northwest" destination="47" />
<arc exit="go" move="go gap" destination="36" />
</node>
<node id="45" name="Riverhaven West Wilds, Tunnel" color="#993300">
<description>Scratch marks cover the walls of the tunnels, signature marks of creatures intent on expanding this underground haven.</description>
<position x="-280" y="-180" z="0" />
<arc exit="northeast" move="northeast" destination="44" />
<arc exit="northwest" move="northwest" destination="46" />
</node>
<node id="46" name="Riverhaven West Wilds, South Creek Bank" color="#993300">
<description>The floor of the tunnel seems to be composed of a mixture of sand, pebbles, crustacean shells and fish bones. No doubt the carnivorous creatures living in the wilds have used the tunnels as a handy dining chamber for many years.</description>
<position x="-300" y="-200" z="0" />
<arc exit="northeast" move="northeast" destination="47" />
<arc exit="southeast" move="southeast" destination="45" />
</node>
<node id="47" name="Riverhaven West Wilds, South Creek Bank" color="#993300">
<description>Slow drips of water seep through the rock overhead and trail wet fingers down the sides of the tunnel before settling in muddy puddles on the moist and sandy floor.</description>
<position x="-280" y="-220" z="0" />
<arc exit="southeast" move="southeast" destination="44" />
<arc exit="southwest" move="southwest" destination="46" />
</node>
<node id="48" name="West Wilds, Tunnels" color="#993300">
<description>A twisted tangle of roots seems to have blocked excavation further north, though fresh claw marks in the dirt between the roots indicate that burrowing efforts in that direction still continue.</description>
<position x="-260" y="-220" z="0" />
<arc exit="south" move="south" destination="44" />
<arc exit="go" move="go roots" destination="49" />
</node>
<node id="49" name="West Wilds, Dark Tunnels" color="#993300">
<description>The passage here is very dark. The only source of illumination seems to be the faint glow of the lichen growing on the walls. The shadow of a twisted clump of roots further darkens the southern portion of the tunnel.</description>
<description>A twisted tangle of roots seems to block passage to the south, but through the roots can be seen the glow of a faint bit of light.</description>
<position x="-260" y="-240" z="0" />
<arc exit="north" move="north" destination="50" />
<arc exit="go" move="go root" destination="48" />
</node>
<node id="50" name="West Wilds, Dark Tunnels" color="#993300">
<description>The glow of lichen growing along the walls of the tunnel provides the only source of illumination in this dark passage.</description>
<description>A dim, hazy light from the southern end of the tunnel casts a minimal amount of illumination over the surrounding area.</description>
<position x="-260" y="-260" z="0" />
<arc exit="north" move="north" destination="51" />
<arc exit="south" move="south" destination="49" />
</node>
<node id="51" name="West Wilds, Dark Tunnels" color="#993300">
<description>Walls of rock imbedded in hard packed dirt begin to give way to passages burrowed out between solid chunks of stone. Deep scratches mar the surface of many large boulders where animals have made a futile attempt to extend this underground burrow.</description>
<position x="-260" y="-280" z="0" />
<arc exit="north" move="north" destination="52" />
<arc exit="south" move="south" destination="50" />
</node>
<node id="52" name="West Wilds, Dark Tunnels" color="#993300">
<description>Twisted tunnels bend off in several directions, some passages too narrow to allow anything bigger than a small rodent to squeeze through, others big enough to admit several people walking side by side.</description>
<position x="-260" y="-300" z="0" />
<arc exit="north" move="north" destination="59" />
<arc exit="northeast" move="northeast" destination="58" />
<arc exit="east" move="east" destination="54" />
<arc exit="south" move="south" destination="51" />
<arc exit="northwest" move="northwest" destination="53" />
</node>
<node id="53" name="West Wilds, Dark Tunnels" color="#993300">
<description>Several trickles of water collect in a small pool at the end of the passageway. The water gleams faintly in the subdued glow of the lichen lining the damp walls. Dark and oily, it looks as unsavory as it smells, but the multitude of animal tracks pressed into the muddy tunnel floor around the pool indicates that it is a popular source of water for the denizens of the tunnels.</description>
<position x="-280" y="-320" z="0" />
<arc exit="southeast" move="southeast" destination="52" />
</node>
<node id="54" name="West Wilds, Dark Tunnels" color="#993300">
<description>A crooked passage branches off here. Small growths of fungus and lichen crowd the mud-covered walls.</description>
<position x="-240" y="-300" z="0" />
<arc exit="east" move="east" destination="55" />
<arc exit="west" move="west" destination="52" />
</node>
<node id="55" name="West Wilds, Dark Tunnels" color="#993300">
<description>The dark sandstone rock crumbles into muddy earth. Trickles of water slowly drip down tendrils of brown moss clinging to claw-like marks etched into the sides of the tunnel.</description>
<position x="-220" y="-300" z="0" />
<arc exit="northeast" move="northeast" destination="56" />
<arc exit="west" move="west" destination="54" />
</node>
<node id="56" name="West Wilds, Dark Tunnels" color="#993300">
<description>A small niche lies to the north, a nook carved into the damp soil by thick claws. Overhead tree roots, stripped bare of protective dirt, rot in the damp, fetid climate of the tunnels.</description>
<position x="-200" y="-320" z="0" />
<arc exit="southwest" move="southwest" destination="55" />
<arc exit="go" move="go niche" destination="57" />
</node>
<node id="57" name="West Wilds, Dark Tunnels" color="#993300">
<description>This small cramped area appears to have once been the nest of some creature with very unsanitary housekeeping habits. It's dark, it's damp, and it's smelly, and there is about the place a feeling of darkness that extends beyond the mere fact that there is little light here. The glowing lichen on the walls grows in unusual, almost runic patterns.</description>
<position x="-180" y="-320" z="0" />
<arc exit="out" move="out" destination="56" />
</node>
<node id="58" name="West Wilds, Dark Tunnels" color="#993300">
<description>A steady whisper like the muffled sound of running water can be heard in this area of the tunnel. Damp lines of moisture trickle down the walls on every side.</description>
<position x="-240" y="-320" z="0" />
<arc exit="southwest" move="southwest" destination="52" />
</node>
<node id="59" name="West Wilds, Dark Tunnels" color="#993300">
<description>The tunnel here is dark with illuminating patches of lichen growing very sparsely on walls composed almost entirely of solid rock. The rough texture of natural stone along each side of the tunnel has been marred with angular planes of what seems to be deliberately chiseled rock.</description>
<position x="-260" y="-320" z="0" />
<arc exit="south" move="south" destination="52" />
</node>
<node id="60" name="West Wilds, Dark Tunnels" note="Dusk Ogres">
<description>The tunnel seems to go on forever, too narrow to turn around. All you can do is keep crawling and hope to reach the end soon.</description>
<position x="-260" y="-340" z="0" />
<arc exit="none" move="none" destination="59" />
<arc exit="none" move="none" destination="61" />
</node>
<node id="61" name="West Wilds, Dark Tunnels" color="#993300">
<description>Water trickles down the lichen that line the rocky walls, collecting in dimly glowing puddles along the sides of the tunnel. The light is faint and casts eerie shadows that seem to move along the limits of your vision. A pile of rubble surrounds the base of a passage leading upward to the south, evidently detritus from a cleared rockslide.</description>
<position x="-260" y="-360" z="0" />
<arc exit="north" move="north" destination="62" />
</node>
<node id="62" name="West Wilds, Dark Tunnels" color="#993300">
<description>The passage slopes down to the north, twisting as it works around a rough-carved granite pillar that glistens in the dim light. Rivulets of water seep through the ceiling to run down the walls, glowing from the minerals and lichen. A few of the cracks in the tunnel's roof are wide enough to allow a thin trickle to fall from ceiling to floor, quickly rolling down the passage into the darkness below.</description>
<position x="-260" y="-380" z="0" />
<arc exit="south" move="south" destination="61" />
<arc exit="north" move="north" destination="66" />
<arc exit="northwest" move="northwest" destination="63" />
</node>
<node id="63" name="West Wilds, Dark Tunnels" color="#993300">
<description>Water gathers in numerous pools at the low point of the passage, the deepest no more than knee-high for a Halfling. Twisted taproots work their way through the rock, descending like close-packed pillars as they seek out the moisture necessary for their survival. The thick roots are coated with a sticky sap that makes travel difficult, catching at arms and legs that brush against them.</description>
<position x="-280" y="-400" z="0" />
<arc exit="north" move="north" destination="65" />
<arc exit="southeast" move="southeast" destination="62" />
<arc exit="northwest" move="northwest" destination="64" />
</node>
<node id="64" name="West Wilds, Dark Tunnels" color="#993300">
<description>The path through the caverns bends sharply as it picks its way through tangles of sticky roots. Patches of lichen cling to the walls giving off a pallid phosphorescent glow that casts more shadows than illumination.</description>
<position x="-300" y="-420" z="0" />
<arc exit="northeast" move="northeast" destination="65" />
<arc exit="southeast" move="southeast" destination="63" />
</node>
<node id="65" name="West Wilds, Dark Tunnels" color="#993300">
<description>Passages branch off in all directions, threading their ways through the maze of interwoven roots. Glowing red eyes peer through the tangle, following your movements, but skittering back into the shadows whenever you draw too close.</description>
<position x="-280" y="-440" z="0" />
<arc exit="northeast" move="northeast" destination="69" />
<arc exit="east" move="east" destination="68" />
<arc exit="south" move="south" destination="63" />
<arc exit="southwest" move="southwest" destination="64" />
</node>
<node id="66" name="West Wilds, Dark Tunnels" color="#993300">
<description>A dull roar of swift-flowing water fills the tunnel, far too much to be accounted for by the shallow pools lining the walls. Close-spaced pillars run from floor to ceiling leaving just enough room to pick a path between them.</description>
<position x="-260" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="67" />
<arc exit="east" move="east" destination="70" />
<arc exit="south" move="south" destination="62" />
</node>
<node id="67" name="West Wilds, Dark Tunnels" color="#993300">
<description>Sticky tendrils as thick as an Elf's arm shoot off in all directions from the pillar-like taproots that block the tunnel, grasping impartially at whatever skin or clothing may brush against them. The splash of footsteps through puddles of water echoes about the cavern.</description>
<position x="-240" y="-420" z="0" />
<arc exit="southeast" move="southeast" destination="70" />
<arc exit="southwest" move="southwest" destination="66" />
<arc exit="northwest" move="northwest" destination="68" />
</node>
<node id="68" name="West Wilds, Dark Tunnels" color="#993300">
<description>The pools that dot the cavern's floor become shallower to the north, and the tangled roots are less of an obstruction, though still dense enough to entrap the unwary. A faint breeze carries with it the scent of fresh grass to alleviate some of the musty stench that marks the deeper areas.</description>
<position x="-260" y="-440" z="0" />
<arc exit="north" move="north" destination="69" />
<arc exit="southeast" move="southeast" destination="67" />
<arc exit="west" move="west" destination="65" />
</node>
<node id="69" name="West Wilds, Dark Tunnels" color="#993300">
<description>The breeze flows down the tunnel, mingling the scent of cropped grass with the dank smell of packed earth. No light from the surface penetrates the darkness of the tunnels. Pallid lichens line the walls and cast a faint glow that make beads of sap glisten upon the columnar taproots.</description>
<position x="-260" y="-460" z="0" />
<arc exit="south" move="south" destination="68" />
<arc exit="southwest" move="southwest" destination="65" />
<arc exit="up" move="up" destination="72" />
</node>
<node id="70" name="West Wilds, Dark Tunnels" color="#993300">
<description>Rope-thick rootlets branch off from massive taproots to form tangled snarls that glisten with sticky sap. The air is redolent with the dank, musty smell of stagnant water and too little ventilation, and a darker scent of rotting meat. From time to time, scuffling footsteps can be heard in the passage, and shadows move at the edge of your vision.</description>
<position x="-220" y="-400" z="0" />
<arc exit="southwest" move="southwest" destination="71" />
<arc exit="west" move="west" destination="66" />
<arc exit="northwest" move="northwest" destination="67" />
</node>
<node id="71" name="West Wilds, Dark Tunnels" color="#993300">
<description>Phosphorescent fungi cast a faint glow, just enough to reveal a shifting flock of bats nesting along the cavern's ceiling. From time to time, one of the creatures flexes its wings with a dry rustle before settling back to its sleep. Other, less easily identifiable shadows move just out of the range of your vision, accompanied by a dry coughing noise or the scraping of nails against the floor.</description>
<position x="-240" y="-380" z="0" />
<arc exit="northeast" move="northeast" destination="70" />
</node>
<node id="72" name="West Wilds, Dark Tunnels" color="#993300">
<description>Tendrils of mist twist along the floor, hazily illuminated by clumps of phosphorescent lichen that cling to the slick surface. Sandstone walls, dark along the bottom and lighter at the top, give mute testimony to the peril of water in the tunnels. Although the floor is dry enough now, the waist-high border between dark and light is evidence of past floods inundating the caverns and all within.</description>
<position x="-180" y="-380" z="0" />
<arc exit="northeast" move="northeast" destination="73" />
<arc exit="down" move="down" destination="69" />
</node>
<node id="73" name="West Wilds, Dark Tunnels" color="#993300">
<description>Light creeps in from the surface to bathe the cavern in a diffuse glow. Detritus blown by wind and rain collects along the corners, a moldering pile of compost from which spindly weeds cling tenaciously to life, stretching upwards in search of the illumination they require. No amount of determination can make up for the lack, though, and the plant life will soon die, its remains adding to the rotting mess along the floor until some other sprouts to repeat the cycle of life and decay.</description>
<position x="-160" y="-400" z="0" />
<arc exit="southwest" move="southwest" destination="72" />
<arc exit="up" move="up" destination="74" />
</node>
<node id="74" name="Riverhaven West Wilds, North Meadow" note="Young Ogres">
<description>Dried blossoms blown in by the wind decorate the base of a large rough boulder to the west. The boulder joins to rock of the same composition that rises from the loamy soil of the meadow and spreads out in a long curving line of foothills. A steeply banked creek cuts across the meadow to the south.</description>
<position x="-140" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="76" />
<arc exit="east" move="east" destination="75" />
<arc exit="go" move="go gap" destination="73" />
<arc exit="climb" move="climb bank" destination="86" />
</node>
<node id="75" name="Riverhaven West Wilds, North Meadow">
<description>Singular trees dot the meadow as it climbs its way toward a dense forest to the north. The sound of running water rises from a steep creek bank to the south.</description>
<position x="-100" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="96" />
<arc exit="east" move="east" destination="95" />
<arc exit="west" move="west" destination="74" />
<arc exit="northwest" move="northwest" destination="76" />
<arc exit="climb" move="climb bank" destination="85" />
</node>
<node id="76" name="Riverhaven West Wilds, North Meadow">
<description>A high ridge of rocky foothills rises in a nearly perpendicular angle to the west, the summit of the hills far out of reach overhead. The ground of the meadow here is soft with a thick layer of crumpled leaves that have drifted in from the dense stands of deciduous trees growing to the north.</description>
<position x="-120" y="-440" z="0" />
<arc exit="east" move="east" destination="96" />
<arc exit="southeast" move="southeast" destination="75" />
<arc exit="southwest" move="southwest" destination="74" />
</node>
<node id="77" name="Sylvan Pond, Mud Flats">
<description>Higher ground combined with runoff from the pond has created a muddy swamp. Puddles of water intersperse with rivulets that travel to a deep depression beneath a hollow log.</description>
<position x="-60" y="-140" z="0" />
<arc exit="northeast" move="northeast" destination="78" />
<arc exit="go" move="go muddy trail" destination="30" />
</node>
<node id="78" name="Sylvan Pond, Mud Flats" color="#0000FF">
<description>The water of the pond seems to have backed up over land that was once dry. Several toppled tree trunks are all that remain of the willows that grew here.</description>
<position x="-40" y="-160" z="0" />
<arc exit="north" move="swim north" destination="79" />
<arc exit="southwest" move="swim southwest" destination="77" />
<arc exit="northwest" move="swim northwest" destination="89" />
</node>
<node id="79" name="Sylvan Glade, Pond" color="#0000FF">
<description>Shaded by the branches of the willow trees, the pond water is comfortably cool and clean. The bank of the pond slopes down from the east while the pond itself extends further out in several directions.</description>
<position x="-40" y="-180" z="0" />
<arc exit="north" move="swim north" destination="80" />
<arc exit="south" move="swim south" destination="78" />
<arc exit="west" move="swim west" destination="89" />
<arc exit="go" move="go pond bank" destination="134" />
</node>
<node id="80" name="Sylvan Glade, Lily Pads" color="#0000FF">
<description>Out of the shade of the trees to the east the water sparkles in the warming light of the sun. Several large and surprisingly sturdy-looking lily pads float on the surface of the pond.</description>
<description>Free from the shadows of the trees to the east, the water sparkles in the light of the Elanthian stars. Several large and surprisingly sturdy-looking lily pads float on the surface of the pond.</description>
<position x="-40" y="-200" z="0" />
<arc exit="south" move="swim south" destination="79" />
<arc exit="southwest" move="swim southwest" destination="89" />
<arc exit="northwest" move="swim northwest" destination="81" />
</node>
<node id="81" name="Sylvan Glade, Creek Inlet" color="#0000FF">
<description>Fresh from its rapid passage over cleansing rocks and sand, the water of the pond is crystal clear and the silver flash of slender fish can be seen gliding along the smoothly pebbled bottom of the pond.</description>
<description>Water from a deep creek rushes into a small inland pond. Fresh from its passage over cleansing rocks and sand, the water is crystal clear and the shadowed forms of fish can be seen gliding through the darkened depths of the pond.</description>
<position x="-60" y="-220" z="0" />
<arc exit="southeast" move="swim southeast" destination="80" />
<arc exit="west" move="swim west" destination="87" />
<arc exit="northwest" move="swim northwest" destination="82" />
</node>
<node id="82" name="Riverhaven West Wilds, North Creek Bank" color="#0000FF">
<description>The creek bed dead ends here with the rise of a perpendicular cliff to the east. Water slaps against the face of the dark stone in a tumbling crashing spray, then swirls to the southeast where it empties into an open pond.</description>
<position x="-80" y="-240" z="0" />
<arc exit="southeast" move="swim southeast" destination="81" />
<arc exit="northwest" move="swim northwest" destination="83" />
</node>
<node id="83" name="Riverhaven West Wilds, North Creek Bank" color="#0000FF">
<description>Rapidly-running water obscures the view of the creek bed, but dark shapes indicate the presence of rocks fairly close to the surface of the creek. The banks of the creek are particularly slippery at this point, with no good hand or footholds available for climbing.</description>
<position x="-100" y="-260" z="0" />
<arc exit="southeast" move="swim southeast" destination="82" />
<arc exit="west" move="swim west" destination="84" />
</node>
<node id="84" name="Riverhaven West Wilds, North Creek Bank" color="#0000FF">
<description>Movement other than the flow of the current can be seen beneath the somewhat turbulent water of the creek. Silver-scaled fish, scuttling water beetles and colorful shellfish seem to exist in abundance all around you.</description>
<position x="-120" y="-260" z="0" />
<arc exit="east" move="swim east" destination="83" />
<arc exit="northwest" move="swim northwest" destination="85" />
<arc exit="climb" move="climb bank" destination="95" />
</node>
<node id="85" name="Riverhaven West Wilds, North Creek Bank" color="#0000FF">
<description>Wet, algae-coated rocks rise at nearly perpendicular angles along both sides of the creek. Near the center of the creek an occasional twig or leaf floats by, bobbing like a storm-tossed ship before being sucked down by a sudden whirlpool breaking the surface of the flow.</description>
<position x="-140" y="-280" z="0" />
<arc exit="southeast" move="southeast" destination="84" />
<arc exit="west" move="swim west" destination="86" />
</node>
<node id="86" name="Riverhaven West Wilds, North Creek Bank" color="#0000FF">
<description>Water rushes swiftly over the rocky creek bed, dashing into submerged obstacles with liberal sprays of foam and white topped waves.</description>
<position x="-160" y="-280" z="0" />
<arc exit="east" move="swim east" destination="85" />
<arc exit="climb" move="climb bank" destination="74" />
</node>
<node id="87" name="Riverhaven West Wilds, South Creek Bank" color="#0000FF">
<description>To the east, the creek widens into a small, placid inland pond surrounded by a stand of delicately drooping willow trees. The stony bank of the creek rises to the south.</description>
<position x="-80" y="-220" z="0" />
<arc exit="east" move="swim east" destination="81" />
<arc exit="northwest" move="swim northwest" destination="88" />
<arc exit="climb" move="climb bank" destination="33" />
</node>
<node id="88" name="Riverhaven West Wilds, South Creek Bank" color="#0000FF">
<description>Algae-coated stones provide dry but slippery footing along the southern edge of the creek. The shadowy forms of larger boulders can be seen beneath the water closer to the center of the creek.</description>
<position x="-100" y="-240" z="0" />
<arc exit="southeast" move="swim southeast" destination="87" />
<arc exit="west" move="swim west" destination="94" />
</node>
<node id="89" name="Sylvan Glade, Dam" color="#0000FF">
<description>A jumbled pile of logs, brush and other forest debris forms a natural dam at the western end of the pond. Extending out from the tangle is a half submerged willow tree trunk.</description>
<position x="-60" y="-180" z="0" />
<arc exit="northeast" move="swim northeast" destination="80" />
<arc exit="east" move="swim east" destination="79" />
<arc exit="southeast" move="swim southeast" destination="78" />
</node>
<node id="90" name="Riverhaven West Wilds, South Creek Bank" color="#0000FF">
<description>Water pours through a stony gap to the west, falling over a ragged-edged cliff in a crashing spray of white froth that pushes everything in its path down to the bottom of the creek bed. </description>
<position x="-200" y="-260" z="0" />
<arc exit="east" move="swim east" destination="93" />
<arc exit="climb" move="climb bank" destination="36" />
<arc exit="climb" move="climb steep cliff" destination="135" />
</node>
<node id="91" name="Barbarian Guild, Training Yard" note="Stamina" color="#FFFF00">
<description>Wooden weapons of all kinds lie stacked about, no doubt the tools of training the next great warrior. In the center of the yard, a senior guild member instructs a confused student on the finer art of pole arm fighting. A simple split-rail fence defines this area and provides a perch for two young children who giggle and watch as they dream of the day they will train here. A large, pedaled sharpening stone and a target dummy catch your eye.</description>
<position x="-60" y="-60" z="0" />
<arc exit="go" move="go small path" destination="28" />
<arc exit="go" move="go iron grate" destination="92" />
<arc exit="go" move="go wooden shack" destination="113" />
</node>
<node id="92" name="Barbarian Guild, Lower Amphitheatre" note="Calenra" color="#00FF00">
<description>Aromatic wooden planks are tightly joined to contain the tons of sod which comprise the walls of this pit. Dug beneath the foundation of the Barbarians' Guild, it is cool and moist, perfectly suited to focused training. Several painted panels adorn the walls, depicting warriors in various types of armor, executing different combat maneuvers.</description>
<position x="-60" y="-80" z="0" />
<arc exit="climb" move="climb wooden ladder" destination="91" />
</node>
<node id="93" name="Riverhaven West Wilds, South Creek Bank" color="#0000FF">
<description>Algae-coated stones provide dry but slippery footing along the southern edge of the creek. The shadowy forms of larger boulders can be seen beneath the water closer to the center of the creek.</description>
<description>Water runs past you, clear and fast, with occasional white-capped waves brushing over submerged stones. There's no good place to ford the creek at this point, but it would be possible to swim along the shallower edges near the bank.</description>
<position x="-180" y="-260" z="0" />
<arc exit="west" move="swim west" destination="90" />
<arc exit="southeast" move="swim southeast" destination="94" />
</node>
<node id="94" name="Riverhaven West Wilds, South Creek Bank" color="#0000FF">
<description>To the east, the creek widens into a small, placid inland pond surrounded by a stand of delicately drooping willow trees. The stony bank of the creek rises to the south.</description>
<description>A series of rocks, trapping deposits of silt and sand, has built a shallow ridge on the edge of the water, allowing for easy wading along this section of the creek. The banks of the creek are steep and slippery, a definite hazard for climbers.</description>
<position x="-160" y="-240" z="0" />
<arc exit="northwest" move="swim northwest" destination="93" />
<arc exit="east" move="swim east" destination="88" />
</node>
<node id="95" name="Riverhaven West Wilds, North Meadow">
<description>A lone oak balances precariously on the edge of the creek bank, exposed roots clinging desperately to the surrounding rock and soil. Sun-starved meadow grass grows beneath the tree in sporadic patches, competing without much success with a carpet of moss that spreads around the base of the tree in lush profusion.</description>
<position x="-80" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="97" />
<arc exit="east" move="east" destination="99" />
<arc exit="west" move="west" destination="75" />
<arc exit="northwest" move="northwest" destination="96" />
</node>
<node id="96" name="Riverhaven West Wilds, North Meadow">
<description>Thickly interwoven branches of oak and maple block the sunlight in this southern portion of the woods. Faint trails seem to cut through the heavy undergrowth of vines and brambles at the foot of the trees, but most appear to dwindle away to nonexistence after a few feet of travel.</description>
<description>Thickly interwoven branches of oak and maple cast deep night shadows in this southern portion of the woods. Faint trails seem to cut through the heavy undergrowth of vines and brambles at the foot of the trees, but most appear to dwindle away to nonexistence after a few feet of travel.</description>
<position x="-80" y="-440" z="0" />
<arc exit="east" move="east" destination="97" />
<arc exit="southeast" move="southeast" destination="99" />
<arc exit="southwest" move="southwest" destination="95" />
<arc exit="west" move="west" destination="76" />
</node>
<node id="97" name="Riverhaven West Wilds, North Meadow">
<description>A circle of stones surrounds a small firepit near a low outcropping of rocks. Apparently some weary traveler paused here for a moment of rest.</description>
<position x="-60" y="-440" z="0" />
<arc exit="east" move="east" destination="98" />
<arc exit="southeast" move="southeast" destination="95" />
<arc exit="southwest" move="southwest" destination="75" />
<arc exit="west" move="west" destination="96" />
</node>
<node id="98" name="Riverhaven West Wilds, North Meadow">
<description>The underbrush is quite thick here near the forest edge. Speckled motes of sunlight dance down through the leafy boughs above, picking out a small path that maneuvers its way around the trunks of the trees like a dusty serpent slithering through a maze.</description>
<description>The underbrush is quite thick here near the forest edge. Dim starlight filters down through the leafy boughs above, picking out a small shadowed path that maneuvers its way around the trunks of the trees like a dusty serpent slithering through a maze.</description>
<position x="-40" y="-440" z="0" />
<arc exit="southeast" move="southeast" destination="75" />
<arc exit="southwest" move="southwest" destination="99" />
<arc exit="west" move="west" destination="97" />
<arc exit="go" move="go path" destination="103" />
</node>
<node id="99" name="Riverhaven West Wilds, North Meadow">
<description>A line of ants trudges across a beaten section of grass toward a large ant hill, carrying the fruits of their labor down deep into the loamy meadow soil. Hoofed footprints scattered across the ground look like they might belong to some species of goat or sheep.</description>
<description>The light of the stars picks out the tracks of some hoofed animal impressed in the rich meadow soil. A whispering breeze blows the scent of wildflowers through the night air.</description>
<position x="-40" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="98" />
<arc exit="east" move="east" destination="100" />
<arc exit="west" move="west" destination="95" />
<arc exit="northwest" move="northwest" destination="97" />
</node>
<node id="100" name="Riverhaven West Wilds, North Meadow">
<description>A large flat rock rises from the soil here, somewhat rectangular in shape and smooth on the top. Loose soil piled around the base suggests that one or more burrowing creatures has made themselves a cozy home beneath the stony shelter.</description>
<position x="-20" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="102" />
<arc exit="east" move="east" destination="101" />
<arc exit="west" move="west" destination="99" />
<arc exit="northwest" move="northwest" destination="98" />
</node>
<node id="101" name="Riverhaven West Wilds, North Meadow">
<description>Forest encroaches onto meadow with the stark abruptness of an invading army. Fallen leaves and wide spreading branches block all sun from the last of the meadow grass that struggles to grow in the crowded tangle of bramble bushes and tree trunks. A small beaten animal track winds its way through the woods to the east.</description>
<position x="0" y="-400" z="0" />
<arc exit="west" move="west" destination="100" />
<arc exit="go" move="go winding track" destination="136" />
</node>
<node id="102" name="Wildland, NorthWest Forest">
<description>A dense growth of high thorny bushes chokes even the roots of the sturdy young oak trees struggling to grow in this spot. Travel in any direction except back to the open meadow will be difficult if not impossible.</description>
<position x="0" y="-420" z="0" />
<arc exit="southwest" move="southwest" destination="100" />
</node>
<node id="103" name="Wildland, NorthWest Forest" note="Arbelogs">
<description>A toppled oak has opened a window to the sky. Hazy streams of light cut down through the pervading gloom of the woods to settle on an opportunistic patch of Oralana blossoms that show with a startling yellow brightness against the deep green moss creeping over the rotted wood of the oak.</description>
<description>A toppled oak has opened a window to the sky, giving a clear view of the stars. Oralana blossoms clumped around the rotting oak touch the night air with their sweet perfume.</description>
<position x="40" y="-480" z="0" />
<arc exit="east" move="east" destination="104" />
<arc exit="west" move="west" destination="105" />
<arc exit="northwest" move="northwest" destination="107" />
<arc exit="go" move="go small path" destination="98" />
</node>
<node id="104" name="Wildland, NorthWest Forest">
<description>A land sink forms an irregular oval depression in this part of the woods, trapping rainfall and providing the ideal growth conditions for an extensive grove of aspen trees.</description>
<position x="60" y="-480" z="0" />
<arc exit="west" move="west" destination="103" />
</node>
<node id="105" name="Wildland, NorthWest Forest">
<description>The twitter of birds going about their daily business fills the surrounding woods. Speckled beams of sunlight dance past the branches overhead and touch the blossoms and herbs growing on the forest floor like a bright benediction.</description>
<description>The soft coo of birds comfortably nested in the branches overhead pervade the night. Somewhere not far distant, a chorus of crickets chirp, harmonious accompaniment to the rustle of leaves blown by a sighing wind.</description>
<position x="20" y="-480" z="0" />
<arc exit="east" move="east" destination="103" />
<arc exit="west" move="west" destination="106" />
</node>
<node id="106" name="Wildland, NorthWest Forest">
<description>A dense growth of shrubs forms a cozy thicket snuggled up to a concave bend in the rocky ridge of foothills. Scuffed dirt and disturbed drifts of leaves suggest that some wild creature has chosen the thicket as its home.</description>
<position x="0" y="-480" z="0" />
<arc exit="east" move="east" destination="105" />
</node>
<node id="107" name="Wildland, NorthWest Forest">
<description>The trees here are old, their bark deeply fissured and covered with faded moss that trails from the trunks of the trees like a beard on the face of an ancient dwarf. One majestic oak towers above the rest, branches spread wide like the arms of a king raised in royal benediction over the heads of his loyal retainers.</description>
<position x="20" y="-500" z="0" />
<arc exit="southeast" move="southeast" destination="103" />
<arc exit="west" move="west" destination="108" />
<arc exit="none" move="ru boak;go fog" destination="138" />
</node>
<node id="108" name="Wildland, NorthWest Forest">
<description>The ground shifts from gently sloping woods to a jagged and quickly rising hill. The increasing elevation discourages the growth of deciduous trees and woods give way to pine forest further up the hillside.</description>
<position x="0" y="-500" z="0" />
<arc exit="east" move="east" destination="107" />
<arc exit="west" move="west" destination="109" />
</node>
<node id="109" name="Wildland, NorthWest Forest">
<description>Clumps of pines obscure the view of the hill above and woods below, but a heavily-trodden path continues to curl lazily onward through the sweetly scented forest.</description>
<position x="-20" y="-500" z="0" />
<arc exit="northeast" move="northeast" destination="110" />
<arc exit="east" move="east" destination="108" />
</node>
<node id="110" name="Wildland, NorthWest Forest">
<description>Nooks and crannies filled with dirt by the wind and warmed by the sun provide a haven for clumps of glaysker blossoms. Decorating the southern facing slopes of the foothills in deep hues of purple, they fill the air with their sweet, subtle scent.</description>
<position x="0" y="-520" z="0" />
<arc exit="east" move="east" destination="111" />
<arc exit="southwest" move="southwest" destination="109" />
</node>
<node id="111" name="Wildland, NorthWest Forest">
<description>Dark and steep, an elevated cliff guards the way north, its face flat and rough in monolithic challenge. High overhead a stunted pine grows, seemingly out of solid rock. Balanced on a tiny outcropping, it clings with the tenacity of a Maiden's Tress vine to its chosen niche, roots seeking purchase in every tiny crack and cranny to be found in the unyielding stone.</description>
<position x="20" y="-520" z="0" />
<arc exit="west" move="west" destination="110" />
</node>
<node id="112" name="Fallen Treasures" note="Windfeather|Fallen Treasures" color="#FF0000">
<description>A soft carpet of green pine needles covers the floor of this spacious tent, muffling all sound and lending the air a light, refreshing scent. Various pieces of furniture, all crafted from items scavenged in the forest, sit displayed for sale along the walls.</description>
<position x="-40" y="140" z="0" />
<arc exit="out" move="out" destination="9" />
</node>
<node id="113" name="Grinta's Forge, Shop" color="#FF0000">
<description>A blast of hellish heat greets every visitor who enters the simple wooden shack, and a thin layer of greyish soot covers every surface. The air hangs heavy with the acrid scent of melting steel. A sweating Dwarven attendant leans against the far wall, next to a heavy leather flap through which you can hear a muffled pounding noise.</description>
<position x="-80" y="-80" z="0" />
<arc exit="out" move="out" destination="91" />
</node>
<node id="114" name="Barbarian Guild, Interior" note="Barbarian Guild|Mo|GL Barbarian|RS Barbarian" color="#FF8000">
<description>Puddles merge across the floor where rainwater seeps from a sodden thatched roof, leaking winter after winter despite the guild's half-hearted efforts at a permanent lodging. The summer months offer little respite from the moisture, trapped inside by walls of river rock and denied the sun's drying heat. Still, the Barbarians here could care less, lounging about on wooden benches with all the pomp of noble knights in a king's court.</description>
<position x="-50" y="-50" z="0" />
<arc exit="out" move="out" destination="28" />
<arc exit="go" move="go stone arch" destination="115" />
</node>
<node id="115" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>A broad, guttered aisle runs down the center of this windowless outbuilding, a few flickering torches punctuating its plain walls. Long shadows shudder in a chilly draft which persists regardless of the season and in spite of wads of straw packed into every crack in the masonry. Rough woolen curtains hang loosely from metal hooks above numerous half-doors ranged evenly along either side of the passageway, twitching sullenly in the unwelcome breeze.</description>
<position x="-40" y="-60" z="0" />
<arc exit="east" move="east" destination="116" />
<arc exit="go" move="go stone arch" destination="114" />
</node>
<node id="116" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>Massive oak beams support the weathered roof, creaking and groaning with each bluster of breeze under the eaves. Every slight sound echoes boldly around the building, reaching up into the rafters and rattling around the vaulted ceiling in search of escape. Occasional shouts and laughter ring out from further down the hall and beyond, the occupants of this abode seeming quite unconcerned by the austerity of their accommodations.</description>
<position x="-30" y="-60" z="0" />
<arc exit="east" move="east" destination="117" />
<arc exit="west" move="west" destination="115" />
</node>
<node id="117" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>The vast slabs of river rock which form the walls and floor of the corridor clamp a cold dampness into the air. Somewhere nearby, an invisible trickle of water drips slowly but steadily onto the ancient stone, its rhythm almost melodious in the resonant gloom. Stacked raggedly against one wall, a tottering heap of worn-out armor items and old saddlery gives off the cloying odor of moist, moldy leather.</description>
<position x="-20" y="-60" z="0" />
<arc exit="east" move="east" destination="118" />
<arc exit="west" move="west" destination="116" />
</node>
<node id="118" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>A crude blackwood table squats beneath one of the hallway's infrequent torches, wedges of tightly-folded brownish paper propping up three of its misshapen legs. Several rusted iron hayracks remain attached to the opposite wall, adequately serving their new purpose as holders for unfinished weapon parts and damaged armor that someone will eventually get around to fixing. Outside one stall, a leaky water pump stands crookedly in a twisted iron bracket, dripping determinedly.</description>
<position x="-10" y="-60" z="0" />
<arc exit="east" move="east" destination="119" />
<arc exit="west" move="west" destination="117" />
</node>
<node id="119" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>The passageway widens slightly as it turns a corner and proceeds northward toward a source of thin grey light. Rather than lending any comfort, the comparative brightness only serves to emphasize the dormitory's stark functionality and its notable lack of homely cheer. A few rickety wooden chairs and a couple of iron benches loiter in the corner of the hallway, providing an artless but relatively agreeable gathering-place for residents to sit and share tall tales from the battlefield.</description>
<position x="0" y="-60" z="0" />
<arc exit="north" move="north" destination="120" />
<arc exit="west" move="west" destination="118" />
</node>
<node id="120" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>This area boasts the outbuilding's solitary window. Cracked and grimy and long sealed shut by years of damp and dust, only a small patch in the center of the aged pane has been rubbed almost free of dirt where many noses have pressed up against it. Even direct sunlight in high summer can force only feeble, pallid rays to penetrate the gloom -- but no matter, since the decor hardly warrants closer inspection.</description>
<position x="0" y="-70" z="0" />
<arc exit="north" move="north" destination="121" />
<arc exit="south" move="south" destination="119" />
</node>
<node id="121" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>A ragged hole in the wall at shoulder level to a Gor'Tog serves no apparent purpose, and judging by its lack of form was originally inflicted by an irate individual with a large, blunt object. Shards of displaced masonry lie scattered about the floor.</description>
<position x="0" y="-80" z="0" />
<arc exit="north" move="north" destination="122" />
<arc exit="south" move="south" destination="120" />
</node>
<node id="122" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>Lying askew across the flagstones, a faded tapestry rug forlornly attempts to bring a sense of homeliness to the otherwise spartan lodgings. The struggling flame of a solitary torch throws lurching shadows from a vast dust-laden cobweb which stretches from one side of the lofty ceiling to the other, giving the unnerving impression that this dormitory is also home to an enormous eight-legged inmate.</description>
<position x="0" y="-90" z="0" />
<arc exit="north" move="north" destination="123" />
<arc exit="south" move="south" destination="121" />
</node>
<node id="123" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>An unruly pile of greying straw bales sprawls across the passageway here, requiring passers-by to turn sideways and press up against the wall in order to squeeze past. Clouds of dust and spores billow from the ancient bedding with every whisper of draft, scattering in the cold air before settling in a thick, musty layer over everyone and everything in the vicinity. Muffled squeaks and scuffles can be heard from deep within the pile.</description>
<position x="0" y="-100" z="0" />
<arc exit="north" move="north" destination="124" />
<arc exit="south" move="south" destination="122" />
</node>
<node id="124" name="Barbarian Guild, Dormitory" color="#00FFFF">
<description>Closing off the end of the outbuilding, an enormous double door hangs heavily on rusted iron hinges so solidly sealed it would take a blacksmith to get them open. Great drafty gaps surround the towering oaken slabs, allowing a persistent breeze to penetrate the building and bring with it the faint smell of peaty lake water and trodden grass. From a distance floats the remote cry of the hunter and the hunted, their voices intermingled and indistinguishable.</description>
<position x="0" y="-110" z="0" />
<arc exit="south" move="south" destination="123" />
</node>
<node id="125" name="Gwenalion Lake, East" color="#0000FF">
<description>Though tinted a light brown by decaying forest matter, the water of the lake retains its translucent qualities. Small snails crawl over the algae-coated rocks lining the bottom of the lake and fingerling fish dart amongst a thick stand of cattails growing near the edge of the bank.</description>
<position x="-280" y="-100" z="0" />
<arc exit="north" move="north" destination="132" />
<arc exit="west" move="west" destination="126" />
<arc exit="northwest" move="northwest" destination="127" />
<arc exit="go" move="go shore" destination="38" />
</node>
<node id="126" name="Gwenalion Lake, East" color="#0000FF">
<description>An occasional plop and rippled splash disturbing the surface of the lake provides a quiet counterpoint to the soft lapping sound of waves against the eastern shore.</description>
<position x="-300" y="-100" z="0" />
<arc exit="north" move="north" destination="127" />
<arc exit="northeast" move="northeast" destination="132" />
<arc exit="east" move="east" destination="125" />
</node>
<node id="127" name="Gwenalion Lake, East" color="#0000FF">
<description>Rising swells carry small bits of flotsam along the surface of the lake. Deeper in the water a moderately strong undertow flows in a northeastern direction, swaying stalks of tall lake grass like trees in a wind.</description>
<position x="-300" y="-120" z="0" />
<arc exit="north" move="north" destination="128" />
<arc exit="northeast" move="northeast" destination="131" />
<arc exit="east" move="east" destination="132" />
<arc exit="southeast" move="southeast" destination="125" />
<arc exit="south" move="south" destination="126" />
</node>
<node id="128" name="Gwenalion Lake, East" color="#0000FF">
<description>Staying afloat proves to be a test of skill as the lake bed plummets to indiscernible depths. Wind blown waves lick at the tip of a rock poking out of the water, just out of reach to the west. A tickling swirl of water indicates the the presence of fish passing through the murky depths below.</description>
<position x="-300" y="-140" z="0" />
<arc exit="north" move="north" destination="129" />
<arc exit="northeast" move="northeast" destination="130" />
<arc exit="east" move="east" destination="131" />
<arc exit="southeast" move="southeast" destination="132" />
<arc exit="south" move="south" destination="127" />
</node>
<node id="129" name="Gwenalion Lake, East" color="#0000FF">
<description>The water here is very deep, and hard undertows pull relentlessly at your body, dragging you below the waves with monotonous regularity. Occasional whirlpools spring up around you, increasing the danger of remaining this far into the lake for any great length of time.</description>
<position x="-300" y="-160" z="0" />
<arc exit="east" move="east" destination="130" />
<arc exit="southeast" move="southeast" destination="131" />
<arc exit="south" move="south" destination="128" />
</node>
<node id="130" name="Gwenalion Lake, East" color="#0000FF">
<description>A large dark rock sprawls across the beach and into the water like an enormous beached whale, blocking all passage to the east and north. Shattered shells of mollusks and crayfish litter the nooks and crannies up the sides of the rock, bleached white by the sun and gleaming against the darker background of the stone.</description>
<position x="-280" y="-160" z="0" />
<arc exit="south" move="south" destination="131" />
<arc exit="southwest" move="southwest" destination="128" />
<arc exit="west" move="west" destination="129" />
<arc exit="go" move="go shore" destination="43" />
</node>
<node id="131" name="Gwenalion Lake, East" color="#0000FF">
<description>The lake bottom dips drastically at this point and darker, deeper water spreads to the north and west. Leafy tops of water plants growing in the lake reach toward the surface, roots and stalks lost from sight in the depths below.</description>
<position x="-280" y="-140" z="0" />
<arc exit="north" move="north" destination="130" />
<arc exit="south" move="south" destination="132" />
<arc exit="southwest" move="southwest" destination="127" />
<arc exit="west" move="west" destination="128" />
<arc exit="northwest" move="northwest" destination="129" />
</node>
<node id="132" name="Gwenalion Lake, East" color="#0000FF">
<description>Further out on the unsettled waters of the lake are the shadowy shapes of fishing boats bobbing and rocking like oversized cradles riding on the wind-tossed waves. A vocal frog closer to shore chirrups his loneliness to the night sky, providing regular counterpoint to the sound of water lapping against the loamy beach.</description>
<position x="-280" y="-120" z="0" />
<arc exit="north" move="north" destination="131" />
<arc exit="south" move="south" destination="125" />
<arc exit="southwest" move="southwest" destination="126" />
<arc exit="west" move="west" destination="127" />
<arc exit="northwest" move="northwest" destination="128" />
<arc exit="go" move="go shore" destination="37" />
</node>
<node id="133" name="Riverhaven West Wilds, Boulder Top">
<description>A strong breeze blows across the top of the boulder, carrying the sharp scent of lake water mingled with the fainter fragrance of meadow grass.</description>
<position x="-240" y="-160" z="0" />
<arc exit="down" move="down" destination="36" />
</node>
<node id="134" name="Sylvan Glade, Pond Shore">
<description>The rhythmic chirp of frogs provides a gentle background music to the sylvan setting of a deep clear pond. Weeping willows trail delicate branches in the water, trembling the smooth surface with each passing breeze. A leaf-strewn bank slopes gently down to the water.</description>
<position x="-20" y="-180" z="0" />
<arc exit="go" move="go pond bank" destination="79" />
</node>
<node id="135" name="West Wilds, Overlook">
<description>Graffiti covers the face of the cliff, presumably left by local youths attempting to impress a loved one with their daring. Mist-soaked rock makes the cliff a treacherous climb going up, and even more so on the way down, but time and weather has provided a risky-looking alternate route. A water-filled stone chute winds its way down from the cliff-top, twisting in and out of the waterfall on its way, before emptying into the creek far, far below.</description>
<position x="-220" y="-260" z="0" />
<arc exit="climb" move="climb steep cliff" destination="90" />
</node>
<node id="136" name="Riverhaven Wilds, Forest">
<description>A series of narrow, twisty tracks wind their way through the forest in a somewhat aimless fashion. All around you are trees and bushes, bushes and trees, and they all seem to look pretty much the same.</description>
<position x="20" y="-400" z="0" />
<arc exit="north" move="north" destination="137" />
<arc exit="northeast" move="northeast" destination="98" />
<arc exit="east" move="east" destination="137" />
<arc exit="south" move="south" destination="137" />
<arc exit="west" move="west" destination="101" />
</node>
<node id="137" name="Riverhaven Wilds, Forest">
<description>The twists and turns of the winding tracks get rather confusing. With the sky hidden from view overhead, and no readily discernable difference in the trees around you, it is nearly impossible to determine the right track to follow to escape this maze of trees.</description>
<position x="20" y="-380" z="0" />
<arc exit="north" move="north" destination="136" />
<arc exit="northeast" move="northeast" destination="137" />
<arc exit="south" move="south" destination="136" />
<arc exit="southwest" move="southwest" destination="137" />
<arc exit="west" move="west" destination="137" />
</node>
<node id="138" name="West Wilds, Oak Room">
<description>This small circular room seems to have been carved from the living heart of the great oak. A slender red candle rests atop a small bookcase and burns with a seemingly ceaseless flame, casting a steady glowing reflection on the highly polished walls around it. The floor of the room is adorned with woven wool carpets, the once rich colors now somewhat faded with age, but the texture still soft and thick to the touch.</description>
<position x="60" y="-500" z="0" />
<arc exit="go" move="touch candle;go portal" destination="107" />
</node>
<label text=" West Gate">
<position x="50" y="40" z="0" />
</label>
<label text="Goblin Shaman">
<position x="-190" y="-170" z="0" />
</label>
<label text="Grass Eels">
<position x="-190" y="-160" z="0" />
</label>
<label text="Dusk">
<position x="-250" y="-250" z="0" />
</label>
<label text="Arbelogs">
<position x="-140" y="-480" z="0" />
</label>
<label text="Young Ogres, Scout Ogres">
<position x="20" y="-520" z="0" />
</label>
<label text="To Rossmans and">
<position x="-30" y="-40" z="0" />
</label>
<label text="Road to Theren">
<position x="-20" y="-30" z="0" />
</label>
<label text="Riverhaven">
<position x="50" y="30" z="0" />
</label>
<label text="Stamina">
<position x="-52" y="-81" z="0" />
</label>
<label text="Black Bears">
<position x="-140" y="-470" z="0" />
</label>
<label text="Meadow Rams">
<position x="-140" y="-460" z="0" />
</label>
<label text="Ogres">
<position x="-250" y="-240" z="0" />
</label>
<label text="Undead Gerbils">
<position x="-250" y="-370" z="0" />
</label>
</zone>