forked from GenieClient/Maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMap6_Crossing_North_Gate.xml
1963 lines (1963 loc) · 360 KB
/
Map6_Crossing_North_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
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-16"?>
<zone name="Crossing North Gate and the Brambles" id="6">
<node id="1" name="North Turnpike, Forest" color="#008000">
<description>Dirt gradually replaces the remaining pavement stones to form a rutted earthen track. The sweet smell of rotting leaves and pine needles wafts from the surrounding woods. The road breaks through the forest, bending to the northeast towards open meadow and farmland.</description>
<position x="180" y="20" z="0" />
<arc exit="northeast" move="northeast" destination="2" />
<arc exit="south" move="south" destination="22" />
</node>
<node id="2" name="North Turnpike, Meadow" color="#008000">
<description>Clumps of tiny wild flowers hug the dirt road as it winds through the meadow. Towards the northwest, rippling hills cloaked with greenish-brown fields and a large monastery are visible in the distance.</description>
<position x="200" y="0" z="0" />
<arc exit="north" move="north" destination="3" />
<arc exit="northeast" move="northeast" destination="19" />
<arc exit="southeast" move="southeast" destination="18" />
<arc exit="southwest" move="southwest" destination="1" />
<arc exit="west" move="west" destination="107" />
</node>
<node id="3" name="North Turnpike, Grassland">
<description>The scent of rotting vegetation rises from a cut by the road where loose rocks and stones mix with the weeds to mark the start of a small gully. To the right of the road, a small herd of cows rests beneath a large oak tree as they chew their cuds and watch a spirited calf chase a butterfly fluttering across the pasture.</description>
<position x="200" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="4" />
<arc exit="south" move="south" destination="2" />
<arc exit="go" move="go rain-cut gully" destination="170" />
</node>
<node id="4" name="North Turnpike, Grassland">
<description>A passing wind raises little swirls of dust from the deep ruts gouged in the road by heavily laden carts. Off to one side among the weeds lie some fewmets, too withered to be identified, but a sure sign of game in the area.</description>
<position x="220" y="-80" z="0" />
<arc exit="northeast" move="northeast" destination="5" />
<arc exit="southwest" move="southwest" destination="3" />
</node>
<node id="5" name="North Turnpike, Farmland">
<description>Despite the quiet, travellers have left their mark. A sparrow pecks at a discarded canteen cover, pulls a thread from it, and flies off -- no doubt to add it to the lining of a nest. To the northeast, the edge of the monastery's stone wall juts against the road, looming like a bold stroke drawn against the horizon.</description>
<position x="240" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="6" />
<arc exit="southwest" move="southwest" destination="4" />
</node>
<node id="6" name="North Turnpike, Farmland" note="Necro Guild Entrance" color="#00FF00">
<description>Spidery vines stretch from the road bank to climb the face of the fence, pausing only at a break in the stones. Looking through the gap in the wall, row after row of blueberry bushes are visible. Tatters of white netting sway from the shrubbery's slender branches like wispy shrouds snatched from the wraiths of long dead monks. The road curves snugly eastward around the stonework.</description>
<position x="260" y="-120" z="0" />
<arc exit="east" move="east" destination="7" />
<arc exit="southwest" move="southwest" destination="5" />
<arc exit="go" move="go broken fence" destination="117" />
<arc exit="none" move="rt ask monk about monastery;ask monk about monastery" hidden="True" destination="172" />
</node>
<node id="7" name="North Turnpike, Farmland">
<description>As the road bends sharply to the north, an ancient campsite is just visible through the trees. The wind has scattered the long-cold ashes from the confines of the stone fire ring, and gnarled tree roots embrace the handle of a rusty pick.</description>
<position x="280" y="-120" z="0" />
<arc exit="north" move="north" destination="8" />
<arc exit="west" move="west" destination="6" />
</node>
<node id="8" name="North Turnpike, Farmland">
<description>The road continues northward, embracing the edge of the monastery's fence. Fields of green and gold stretch from the opposite side of the road, their rich stands of grain rippling beneath the soft touch of the breeze. Barely visible lines betray the presence of paths between the fields.</description>
<position x="280" y="-140" z="0" />
<arc exit="north" move="north" destination="9" />
<arc exit="south" move="south" destination="7" />
<arc exit="go" move="go village gate" destination="223" />
</node>
<node id="9" name="North Turnpike, Farmland">
<description>The monastery wall, blank as a blind giant, continues along the road, its unbroken expanse at once teasing and forbidding, concealing who knows what mysteries behind it. Birds settle on the wall with avian unconcern and arise from it to feed in the fields across the road.</description>
<position x="280" y="-160" z="0" />
<arc exit="north" move="north" destination="10" />
<arc exit="south" move="south" destination="8" />
</node>
<node id="10" name="North Turnpike, Farmland">
<description>The monastery's stone wall edges away from the road to follow its own meandering course. A farmer, hardly more than a dot in the distance, leads a dray horse pulling a cart through the fields. Northward, the skeleton of an old farmstead lies partially buried in weeds and grass.</description>
<position x="280" y="-180" z="0" />
<arc exit="north" move="north" destination="222" />
<arc exit="south" move="south" destination="9" />
</node>
<node id="11" name="North Turnpike, Farmland">
<description>As the road winds by the farmhouse, piles of grey stones, nearly swallowed by grass, trace the foundation of the farmhouse. Some abandoned farming equipment sits rusting near the edge of an overgrown field. A dull red stack of splintered planking set between the ruins and field marks the site of what was once a barn.</description>
<position x="260" y="-220" z="0" />
<arc exit="southeast" move="southeast" destination="222" />
<arc exit="northwest" move="northwest" destination="12" />
</node>
<node id="12" name="North Turnpike, Farmland">
<description>Fields stretch away from the road, some fallow, others filled with sun-colored wheat and strong green stalks of corn. Beyond the fields to the west, the monastery's buildings and stone-enclosed walls parallel the road. To the southwest lie the scattered ruins of an old farmstead.</description>
<position x="240" y="-240" z="0" />
<arc exit="southeast" move="southeast" destination="11" />
<arc exit="northwest" move="northwest" destination="13" />
</node>
<node id="13" name="North Turnpike, Farmland">
<description>Stone gives way to ruddy brick where the field-fencing wall adjoins the high walls enclosing the monastery complex. A reddish patch on the monastery wall resolves into a bricked-up doorway. At just about human eye-level, one of the bricks protrudes noticeably from the rest.</description>
<position x="220" y="-260" z="0" />
<arc exit="north" move="north" destination="14" />
<arc exit="southeast" move="southeast" destination="12" />
</node>
<node id="14" name="North Turnpike, Farmland">
<description>The road wends close to the monastery, where ivy leaves soften the gray walls, dappling the stone with their color and shadow. To the other side of the turnpike, fields ascend and descend gently rolling hills, their furrows lending an odd texture to the contours of the land.</description>
<position x="220" y="-280" z="0" />
<arc exit="north" move="north" destination="15" />
<arc exit="south" move="south" destination="13" />
</node>
<node id="15" name="North Turnpike, Farmland">
<description>To the southwest the stone wall curves around the building complex, stretching in an unbroken expanse westward. A tower at the corner of the monastery looms high into the air, overlooking the turning road, its travelers, and the fields beyond with a stony impartiality.</description>
<position x="220" y="-300" z="0" />
<arc exit="north" move="north" destination="16" />
<arc exit="south" move="south" destination="14" />
</node>
<node id="16" name="North Turnpike, Meadow">
<description>The grey bulk of a monastery rises to the south, an obvious landmark on the route. Cultivated fields surround it to both sides of the road, the checkered browns, yellows, and soft greens of the fields arranged in this landscape with a natural grace that any artist would envy.</description>
<position x="220" y="-320" z="0" />
<arc exit="northeast" move="northeast" destination="17" />
<arc exit="south" move="south" destination="15" />
</node>
<node id="17" name="North Turnpike, Washed Out Bridge">
<description>A rotted wooden bridge partially spans a drying stream bed. The bridge footings descend into a mix of lush cattails and creekbroom -- a hint that some water remains. Towards the center of the bridge, the planking has broken, leaving the bridge nearly impassable.</description>
<position x="240" y="-340" z="0" />
<arc exit="southwest" move="southwest" destination="16" />
<arc exit="go" move="go wooden bridge" destination="297" />
</node>
<node id="18" name="Zoluren Royal Mews, Gravel Path">
<description>A wall of tall boxwoods lines the gravel path leading toward a squat, square brick building. The roof of a gatekeeper's cottage pokes above the line of shrubbery, and a few stray weeds huddle below the neatly clipped hedges. The grey chipped stones are precise in their course, like a river of rock, flowing toward two wrought iron gates set into an imposing brick archway straddling the gravel path.</description>
<position x="220" y="20" z="0" />
<arc exit="northwest" move="northwest" destination="2" />
<arc exit="go" move="go wrought gates" destination="205" />
</node>
<node id="19" name="Northwall Trail, Grassland">
<description>A narrow trail, either cut or worn through grasses waist-high on a stout elf, winds northeast from the turnpike that rumbles with traffic. The calls of caravan drivers hurrying their animals along can be heard from the road, while the quietude of the flatlands offers no such command but the whispering of the wind through the grass.</description>
<position x="220" y="-20" z="0" />
<arc exit="east" move="east" destination="20" />
<arc exit="southwest" move="southwest" destination="2" />
</node>
<node id="20" name="Northwall Trail, Grassland">
<description>As you move through the green-gold waves of tall grass, barley and dogbane, small burrs catch on your clothing like the hands of a child vying for attention. The gilded spires and slate roofs of the town rise over the grey stone wall to the south.</description>
<description>As you move through the fragrant waves of grasses, small burrs catch on your clothing like the small hands of a child vying for attention. The warm glow of the town rises in the night sky just above the horizon to the south.</description>
<position x="240" y="-20" z="0" />
<arc exit="northeast" move="northeast" destination="21" />
<arc exit="west" move="west" destination="19" />
</node>
<node id="21" name="Northwall Trail, Grassland">
<description>The relentless winds bend the tall grasses in submission to the wide sky. Birds of prey soar effortlessly far above and cry out as they pass, some landing in a copse of birch trees to the northeast.</description>
<description>The winds skim through the tall grasses, whispering secrets to the constellations floating in the night sky. A copse of birch trees rises to the northeast like a pale specter in the darkness.</description>
<position x="260" y="-40" z="0" />
<arc exit="southwest" move="southwest" destination="20" />
<arc exit="go" move="go birch copse" destination="106" />
</node>
<node id="22" name="North Turnpike, Forest" color="#008000">
<description>Plunging into the woods, the road deteriorates still further into a track of loose stones and cobbles. Brambles, spike bushes, and poison fern line the edges of the turnpike, forming an impassable barrier to anyone who wished to explore the depths of the forest.</description>
<position x="180" y="40" z="0" />
<arc exit="north" move="north" destination="1" />
<arc exit="go" move="go crumbling archway" destination="23" />
</node>
<node id="23" name="North Gate, Gate" note="Map1_Crossing.xml|Crossing|N Gate">
<description>Nearly forgotten and in disrepair, the North Gate sits untended among a cluster of weeds. Thorny vines grow unheeded against its crumbling archway, and the decorative carvings along the sides of the arch have long since eroded to impressionistic ridges and gashes. Deep ruts slicing through the road's surface waylay unwary travelers even in the daylight.</description>
<description>Nearly forgotten and in disrepair, the North Gate sits untended among a cluster of weeds. Night's dim light casts shadows among the impressionistic ridges and gashes covering the sides of the arches: all that erosion has left of once magnificent decorative carvings. Loose stones scattered across the broken pavement threaten to send unwary travelers sprawling.</description>
<position x="180" y="60" z="0" />
<arc exit="east" move="east" />
<arc exit="go" move="go arch" destination="22" />
</node>
<node id="26" name="Brambles">
<description>The narrow track winds in and out among the brambles. Its narrowness, along with its meandering path, suggest that it's a game trail, rather than anything built by or meant for people. There certainly seem to be animals in here somewhere, if the hissing and honking noises coming from beyond the thicket walls are any clue.</description>
<position x="320" y="-440" z="0" />
<arc exit="east" move="east" destination="27" />
<arc exit="south" move="south" destination="296" />
</node>
<node id="27" name="Brambles">
<description>The ground has been churned up by something. It's dug and scored and turned over as though some one or some thing were searching for buried treasure. The dug-up dirt is still dark and moist, so whatever was digging here left not too long ago. Nearly hidden beneath a bush, the trampled remnant of something whitish is barely visible.</description>
<position x="340" y="-440" z="0" />
<arc exit="northeast" move="northeast" destination="28" />
<arc exit="west" move="west" destination="26" />
</node>
<node id="28" name="Brambles">
<description>Something that hasn't bathed in far too long was here just a short time ago. The pungent odor covers even the spicy scent of the bramble bushes, instilling in one a strong desire to be elsewhere.</description>
<position x="360" y="-460" z="0" />
<arc exit="east" move="east" destination="29" />
<arc exit="southwest" move="southwest" destination="27" />
</node>
<node id="29" name="Brambles">
<description>The land rises to the north and east, and the brambles grow thicker. Some kind of vine with striped green and white leaves spiraling up its length winds its way among the bushes, weaving them into a dense wall. A squirrel would have a hard time finding a path in that direction, but the tangle of thorns is somewhat less dense in a couple of other places.</description>
<position x="400" y="-460" z="0" />
<arc exit="west" move="west" destination="28" />
<arc exit="northwest" move="northwest" destination="30" />
</node>
<node id="30" name="Brambles">
<description>The ground pitches upward to the northeast, and dense, brambly foliage covers the hillside. The rise is neither steep nor high, but the thickly spined vegetation makes it impossible to climb. Mounds of thorny bushes grow in lush and painful profusion along the base of the hill as well, except for a narrow game trail which winds along its base.</description>
<position x="360" y="-500" z="0" />
<arc exit="southeast" move="southeast" destination="29" />
<arc exit="southwest" move="southwest" destination="33" />
<arc exit="northwest" move="northwest" destination="31" />
</node>
<node id="31" name="Brambles">
<description>A brisk breeze blowing up from the center of the bramble thicket to the southwest brings with it a number of strange sounds -- low hisses are occasionally pierced by outraged honks. Something is in there, and it's probably not a group of picnickers. The bushes shiver and rustle, marking the movements of whatever's back there.</description>
<position x="340" y="-520" z="0" />
<arc exit="southeast" move="southeast" destination="30" />
<arc exit="northwest" move="northwest" destination="32" />
</node>
<node id="32" name="Brambles">
<description>A half-rotted corpse lies on -- and partially in -- the muddy, uneven ground. One withered arm is stretched out in the direction of the low hill, its bony fingers clutching for a handhold that wasn't there. Whatever killed it apparently gored it into immobility and then began to feast, beginning with the legs and working its way up. The spicy scent of the brambles is overpowered by the foul stink of the decaying body, and even the cool breeze blowing up the hill isn't enough to disperse the stench.</description>
<position x="320" y="-540" z="0" />
<arc exit="southeast" move="southeast" destination="31" />
</node>
<node id="33" name="Brambles">
<description>A flowering vine winds its way among the thorny brambles, uncaring of the sharp spines. Using the bushes as a living trellis, the vine sends its spiraling tendrils twining through the branches and twigs, decorating them with big trumpet-shaped flowers. Arrowhead-shaped leaves provide a fresh green background for the pink and white striped blossoms.</description>
<position x="340" y="-480" z="0" />
<arc exit="north" move="north" destination="34" />
<arc exit="northeast" move="northeast" destination="30" />
</node>
<node id="34" name="Brambles">
<description>The thorns press in close on every side, tall enough to meet overhead where they block out the twinkle of the stars, barring even their dim light from the gloom of the thicket. Only a couple of dark gaps in the bushes suggest a way out.</description>
<description>In the bend of the trail there are signs that an animal has passed by here recently, but the bushes are thick and make it difficult to distinguish. The thorns press in close on every side, even meeting overhead where they block out the blue of the sky and cast a gloomy shade over the thicket. Only a couple of gaps in the bushes suggest a way out.</description>
<position x="340" y="-500" z="0" />
<arc exit="south" move="south" destination="33" />
<arc exit="southwest" move="southwest" destination="35" />
</node>
<node id="35" name="Brambles">
<description>Something has passed this way recently, leaving tracks in the dark, loamy dirt. Other spoor lie scattered about in the leaf litter covering the ground, and broken branches and shredded leaves indicate that whatever it was wasn't feeling terribly peaceful.</description>
<position x="320" y="-480" z="0" />
<arc exit="northeast" move="northeast" destination="34" />
<arc exit="southwest" move="southwest" destination="269" />
</node>
<node id="38" name="Brambles">
<description>A stand of berry bushes holds its own on the western side of the track against the press of brambles. The berries are greenish yellow with light brown veins, about the size of a large grape. They don't look terribly appetizing, but judging by the stripped branches at the lower levels, something that lives in this thicket finds them yummy.</description>
<position x="240" y="-420" z="0" />
<arc exit="north" move="north" destination="272" />
<arc exit="southeast" move="southeast" destination="40" />
</node>
<node id="40" name="Brambles">
<description>Mounds of thorny bushes press in on the narrow trail, leaving barely enough room to pass without getting stuck or scratched. Rustling sounds occasionally drift by with the breeze, but it's hard to tell where the noises are coming from. There's something moving around in here, though, just out of sight, behind the greenery.</description>
<position x="260" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="270" />
<arc exit="northwest" move="northwest" destination="38" />
</node>
<node id="44" name="Brambles">
<description>The narrow trail winds through the bramble patch, and around a number of trees. Thorn bushes press hard up against the tree trunks, but the trees are taller and rise up above the underbrush with uncaring dignity.</description>
<position x="220" y="-500" z="0" />
<arc exit="southeast" move="southeast" destination="276" />
<arc exit="south" move="south" destination="275" />
</node>
<node id="48" name="Brambles">
<description>A huge boulder rests in a crease between two gentle rises. The slopes are covered with thick thornbushes, but nothing grows on the boulder except the occasional lichen. Tall and steep, it looks like a giant's egg resting in a thorny basket. Deep shadows obscure the niche beneath the lower curve of the boulder, which in any case is too low to put more than a hand into.</description>
<position x="280" y="-520" z="0" />
<arc exit="south" move="south" destination="278" />
<arc exit="west" move="west" destination="49" />
</node>
<node id="49" name="Brambles">
<description>The soft whistle of the cool night breeze blends with the call of nocturnal birds to soften the otherwise stark mood. The game trail curves from the east to the southwest, paralleling the base of the slope, through a dense thicket of brambles. Sprays of tall grasses grow in spiky black silhouettes, poking their narrow spears out the tops of the mounded branches.</description>
<description>The soft sighing of the breeze blends with the chirrup of birds and the humm-buzz of insects to create some rather pleasant background noise. The game trail curves from the east to the southwest, paralleling the base of the slope, through a dense thicket of brambles. Tall purple grass grows in sprays here and there in the bushes, poking its narrow spears through the open lattice of the woody branches.</description>
<position x="260" y="-520" z="0" />
<arc exit="east" move="east" destination="48" />
</node>
<node id="58" name="Brambles">
<description>Mounds of spiny bushes press in from the darkness on all sides, thorn-laden branches reaching in like skeletal fingers, poking and brushing and stinging. Tiny sounds echo from out of the shadows, rustlings and chirpings and poppings, and now and again a louder honk or crunch.</description>
<description>Mounds of spiny bushes press in from all sides, thorn-laden branches reaching in like skeletal fingers. Dusty sunbeams pierce through the branches overhead, illuminating drifting motes and falling leaves, throwing twisted shadows upon the ground.</description>
<position x="120" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="59" />
<arc exit="southwest" move="southwest" destination="67" />
<arc exit="west" move="west" destination="285" />
</node>
<node id="59" name="Brambles, Clearing">
<description>Gaps of bare dirt in the grass around the oak tree have been smoothed over and patted down. In one of the larger ones, someone drew a smiling face with a beard and a little round hat, using a stick or perhaps a small finger. Buttercups grow here and there in the grass, along with a few other flowers. The brambles form a nearly solid wall about the clearing, but haven't penetrated into it.</description>
<position x="140" y="-420" z="0" />
<arc exit="north" move="north" destination="286" />
<arc exit="east" move="east" destination="64" />
<arc exit="southwest" move="southwest" destination="58" />
</node>
<node id="64" name="Brambles, Clearing">
<description>A huge, spreading oak tree dominates the center of the clearing, lifting its great branches up into the sky. The thorn bushes stop just outside the rounded perimeter, allowing grass and some flowers to grow beneath the great tree.</description>
<position x="160" y="-420" z="0" />
<arc exit="northeast" move="northeast" destination="289" />
<arc exit="southeast" move="southeast" destination="65" />
<arc exit="west" move="west" destination="59" />
</node>
<node id="65" name="Brambles">
<description>The bushes on either side of the track loom high, dense enough to obscure whatever lies beyond. Every now and again they rustle, sometimes on one side, sometimes on the other. Something is moving about within the depths of the bramble patch. And considering the long, wicked thorns sticking out from the brambles in every direction, anything that would casually rustle its way through them must have an incredibly tough hide.</description>
<position x="180" y="-400" z="0" />
<arc exit="east" move="east" destination="298" />
<arc exit="northwest" move="northwest" destination="64" />
</node>
<node id="67" name="Brambles">
<description>Nocturnal birds hoot and screech to each other up in the leafy canopy. Little scavengers rustle about in the bushes, unseen but always present. Deep shadows draw a curtain of obscurity over the scene, leaving only the larger outlines to be avoided and hiding the smaller details to be tripped over.</description>
<description>Birds chirp and call back and forth to each other, up in the leafy canopy spreading between several trees on either side of the narrow track. There's an edge of urgency to the bird calls, as though there were a predator about, or some other lurking danger.</description>
<position x="100" y="-380" z="0" />
<arc exit="northeast" move="northeast" destination="58" />
<arc exit="south" move="south" destination="69" />
<arc exit="southwest" move="southwest" destination="68" />
</node>
<node id="68" name="Brambles">
<description>The brambles converge on a small stand of trees to form a dead-end in the trail. The greenery grows dense here, with the swagged branches of the trees competing for light and air with the tough little thorn bushes. The leaf litter on the ground is thick and spongy, covering the dirt and all but a few of the larger rocks.</description>
<position x="80" y="-360" z="0" />
<arc exit="northeast" move="northeast" destination="67" />
<arc exit="go" move="pull branch;-.5 push rock;-.5 go hole" destination="70" />
<arc exit="go" move="go hole" destination="70" />
</node>
<node id="69" name="Brambles">
<description>The brambles grow particularly dense here, leaving only a tiny pocket barely large enough to stand in. In the leaves covering the ground are signs that some animal has made its nest here recently, leaving only scuffed ground and litter.</description>
<position x="100" y="-360" z="0" />
<arc exit="north" move="north" destination="67" />
</node>
<node id="70" name="Brambles">
<description>Curling tendrils carry a twisted vine through the thorny brambles and up into the swaying trees, cloaking the harsh thorns and tiny leaves in greenery. Leaves shaped like arrowheads nod in the breeze, casting oddly shaped shadows across the spines lurking just behind them.</description>
<description>Fresh green tendrils carry a twisting vine through the thorny brambles and up into the swaying trees, cloaking the harsh thorns and tiny leaves in bright greenery. Leaves shaped like arrowheads nod in the breeze, flanking trumpet-shaped flowers striped in pink and white. Bees buzz and hum as they go about their work, collecting pollen from the gaudy blossoms.</description>
<position x="80" y="-340" z="0" />
<arc exit="east" move="east" destination="71" />
<arc exit="south" move="south" destination="78" />
<arc exit="go" move="push rock;-.5 pull branch;-.5 go hole" destination="68" />
</node>
<node id="71" name="Brambles">
<description>A crooked trail winds its way around a huge boulder. Half buried in the soil, the great rock is rounded and smoothed, nearly polished in places. Plush, green moss grows up the lower surfaces, and the top is carpeted in dead leaves and wind-blown dirt. Enough of the rock itself shows that you can see it's made of a black and white flecked granite.</description>
<position x="100" y="-340" z="0" />
<arc exit="northeast" move="northeast" destination="72" />
<arc exit="west" move="west" destination="70" />
</node>
<node id="72" name="Brambles">
<description>A low spot in the ground has collected water, creating a breeding ground for wriggling water bugs and spreading green growths. Tracks in the mud indicate that a number of animals come here regularly to drink, although the slimy, bug-infested mud puddle looks anything but inviting to someone with fewer than four legs.</description>
<position x="120" y="-360" z="0" />
<arc exit="east" move="east" destination="73" />
<arc exit="southeast" move="southeast" destination="74" />
<arc exit="southwest" move="southwest" destination="71" />
</node>
<node id="73" name="Brambles">
<description>The game trail dead-ends here, surrounded by dense thorn bushes an all sides, with only a narrow gap in the foliage to the west. Rustlings coming from the leafy shadows and the brambles sway back and forth, now here, now there. Something is lurking in amongst the undergrowth.</description>
<position x="140" y="-360" z="0" />
<arc exit="west" move="west" destination="72" />
</node>
<node id="74" name="Brambles">
<description>Filtered moonlight wafts its way through the leafy tree cover, separate beams gently illuminating a branch here, a leaf there. The shadows are gentler, softened by the dim lighting, and seem somehow not as threatening as they otherwise might.</description>
<description>A few puffy yellow flowers have managed to force their way through the dense brambles in search of sunlight. In among the tiny grey-green leaves of the bushes are a number of larger curled leaves, poking out here and there. Only filtered light makes it through the leafy tree cover, but it's enough to support the scattering of flowers.</description>
<position x="140" y="-340" z="0" />
<arc exit="south" move="south" destination="75" />
<arc exit="northwest" move="northwest" destination="72" />
</node>
<node id="75" name="Brambles">
<description>The trail makes a sharp corner to avoid a particularly dense stand of brambles. There's hardly enough space for a gnat to crawl through, or so it seems. Something in the soil must be encouraging the unusually luxuriant growth.</description>
<position x="140" y="-320" z="0" />
<arc exit="north" move="north" destination="74" />
<arc exit="west" move="west" destination="76" />
</node>
<node id="76" name="Brambles">
<description>The trail widens into a small clearing, surrounded by mature thorn bushes and carpeted with grass and a number of wildflowers. Half a dozen thick stumps are spotted about the area, indicating that this used to be as thickly overgrown as any other part of the area, and indeed there are several hundred baby brambles, from tiny sprouts to couple of fat little bushes a foot or more tall. Within a few years, this area will be impassable once more.</description>
<position x="120" y="-320" z="0" />
<arc exit="east" move="east" destination="75" />
<arc exit="southwest" move="southwest" destination="77" />
</node>
<node id="77" name="Brambles">
<description>Several narrow tracks intersect here, in a spot that seems to get a lot of trampling. A sickly-looking thorn bush grows in the middle of the intersection, trying to spread out and block passage, but bruises and scars and broken branches have prevented it from making much headway. Some deep tracks in the dirt show that a large, heavy animal frequents this place, likely the cause of the bramble's misfortunes.</description>
<position x="100" y="-300" z="0" />
<arc exit="northeast" move="northeast" destination="76" />
<arc exit="east" move="east" destination="79" />
<arc exit="northwest" move="northwest" destination="78" />
</node>
<node id="78" name="Brambles">
<description>A rutted animal track runs between and around a number of thorny brambles. Little round leaves, dried to resemble nothing so much as oversized rolled oats, cover the ground, while their living green counterparts spiral their way up the branches of the bushes. </description>
<position x="80" y="-320" z="0" />
<arc exit="north" move="north" destination="70" />
<arc exit="southeast" move="southeast" destination="77" />
</node>
<node id="79" name="Brambles">
<description>A large oak tree grows a short way south of the track, forcing its way up from among the thorny bushes pressing in all around it. One of the thorn branches grew so close that the oak's bark has grown over it, trapping it forever against the gnarled trunk.</description>
<position x="120" y="-300" z="0" />
<arc exit="southeast" move="southeast" destination="292" />
<arc exit="west" move="west" destination="77" />
</node>
<node id="85" name="Brambles">
<description>The brambles are a bit thinner to the south, neither very high nor very dense. Other types of plants grow intermixed with the thorn bushes, softening the appearance of the area into something approaching a gentle woodland. A couple of tree ferns spread their feathery fronds overhead, blocking out the twinkle of the stars, while a stand of callas pushes its way amongst the thorns, the waxy white flowers glowing in the moonlight.</description>
<description>The brambles are a bit thinner to the south, neither very high nor very dense. Other types of plants grow intermixed with the thorn bushes, softening the appearance of the area into something approaching a gentle woodland. A couple of tree ferns spread their feathery fronds over the thorns, while a stand of callas pushes its way in amongst them. Here and there, tiny violets peek out from under larger leaves, hiding from the sun.</description>
<position x="200" y="-280" z="0" />
<arc exit="south" move="south" destination="86" />
<arc exit="west" move="west" destination="294" />
</node>
<node id="86" name="Brambles">
<description>Most of the surrounding foliage is thornless, with only a few brambles mixed in. The conglomerate of greenery is just as dense as the bramble thicket, but less painful when one brushes against it. Tall, green bushes with leaves shaped like spearheads dominate, intermixed with leggy cane-like plants, huge grasses taller than a Tog's head, and a fibrous vine with straggly orange flowers. A short clover covers the ground in fragrant patches, making this a pleasant little spot.</description>
<position x="200" y="-260" z="0" />
<arc exit="north" move="north" destination="85" />
</node>
<node id="87" name="Brambles">
<description>Young oak trees fill what little space there is in between the thorn bushes, rising above the spiny undergrowth like giants striding through a cornfield. Many years' accumulation of curled brown leaves blend on the ground with the crackly little grey leaves from the brambles, forming a thick, spongy loam.</description>
<position x="140" y="-240" z="0" />
<arc exit="northeast" move="northeast" destination="294" />
<arc exit="west" move="west" destination="88" />
</node>
<node id="88" name="Brambles">
<description>Some small animal got itself caught on the long thorns of the bramble bushes. Attempts to free itself only caught it more firmly, and it died pinned into that spiny prison. Small scavengers have made of its body a hollow shell. The skeleton is clean and white, doubtless picked over and polished by ants and beetles.</description>
<position x="120" y="-240" z="0" />
<arc exit="east" move="east" destination="87" />
<arc exit="southwest" move="southwest" destination="89" />
</node>
<node id="89" name="Brambles">
<description>The thorn bushes in this area are half-naked and sick-looking. Branches bare of leaves wave in the breeze, showing their thorns without the usual cover of little round leaves. A number of leaves look half eaten, and here and there are tiny black worms, chewing and chewing, gorging themselves on the greenery, tough and leathery though it may be.</description>
<position x="100" y="-220" z="0" />
<arc exit="northeast" move="northeast" destination="88" />
<arc exit="northwest" move="northwest" destination="90" />
</node>
<node id="90" name="Brambles">
<description>Tall brambles loom high on either side of the narrow track, their thorny limbs fluttering with little green leaves that spiral up the branches. The breeze stirs the bushes, sending a soft rustle through the thicket, but every now and again a louder, harsher crackle and honk is heard, sounds made by no wind. Something moves back in the thicket, in the densest parts where none, not even a Dwarf or Halfling, may venture.</description>
<position x="80" y="-240" z="0" />
<arc exit="north" move="north" destination="91" />
<arc exit="southeast" move="southeast" destination="89" />
</node>
<node id="91" name="Brambles">
<description>A stone the size of two fists together has been disturbed, kicked out of its home in the loamy soil, leaving behind a shallow hole filled with half rotten acorns. Some squirrel must have chosen this stone to guard his winter cache, but someone else -- or something else -- came along and kicked the rock aside.</description>
<position x="80" y="-260" z="0" />
<arc exit="southeast" move="southeast" destination="92" />
<arc exit="south" move="south" destination="90" />
</node>
<node id="92" name="Brambles">
<description>A huge fallen tree trunk lies cradled in the embrace of a pair of relatively smaller trees, wedged tightly between them. Soil has packed close about the lower curve of the trunk, burying it firmly -- it must have been resting here for a long time. The game trail stops at the enormous trunk, which prevents movement to the east as the dense brambles block all other ways save the northwest.</description>
<position x="100" y="-240" z="0" />
<arc exit="northwest" move="northwest" destination="91" />
</node>
<node id="93" name="Northwall Trail, Grassland">
<description>To the northwest, a copse of birch trees stands thin and stark against the sky, the swift breezes animating their skeletal forms in a gentle dance.</description>
<description>To the northwest, a copse of birch trees stand thin and stark against the sky, the swift breezes animating their skeletal forms in a gentle dance.</description>
<position x="300" y="-40" z="0" />
<arc exit="east" move="east" destination="94" />
<arc exit="go" move="go vast crater" destination="99" />
<arc exit="go" move="go birch copse" destination="106" />
</node>
<node id="94" name="Northwall Trail, Grassland">
<description>The rhythmic chirping of crickets hums from the tall wind-swept grasses pressing inward on the narrow trail. Moths hover close, flying in looping patterns toward any glint of light.</description>
<description>Swift breezes ruffle the tall grasses beneath the wind-scoured sky that stretches far above like a pale awning. Sprays of orange and purple wildflowers attract the attention of a few butterflies, who flutter across the trail.</description>
<position x="320" y="-40" z="0" />
<arc exit="east" move="east" destination="95" />
<arc exit="west" move="west" destination="93" />
</node>
<node id="95" name="Northwall Trail, Edge of the Forest">
<description>Thin pine saplings, field laurel and shrub grass form a narrow border on the edge of the forest, a blending of life easily yielded to either side. The darkness of the close-set trees to the northwest bustles with unseen movement, while the open grasslands stretching out to the west breathe quietly the open air.</description>
<description>Thin pine saplings, field laurel and shrub grass form a narrow border on the edge of the forest. The darkness of the close-set trees to the northwest rustles with unseen movement, while the open grasslands stretching out to the west breathe quietly the open air.</description>
<position x="340" y="-40" z="0" />
<arc exit="northeast" move="northeast" destination="96" />
<arc exit="west" move="west" destination="94" />
</node>
<node id="96" name="Northwall Trail, Open Forest" note="boxes">
<description>The air is heavy with the scent of pine and the sounds of scree littering the trail crunching underfoot. A large web spanning the branches of a stunted sourwood tree glistens in the moonlight.</description>
<description>Longleaf pine and spruce outnumbering the hardwoods in the area drip a sticky sap that sugars the underbrush, and litter the trail with needles that crunch underfoot. Spanning the branches of a stunted sourwood tree, an orbweaver's web twitches slightly with the struggles of a small fly.</description>
<position x="360" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="97" />
<arc exit="southwest" move="southwest" destination="95" />
</node>
<node id="97" name="Northwall Trail, Open Forest" note="east">
<description>The darkness of night grips the forest tightly, like a black-gloved fist holding back the light of dawn. The staccato questions of owls echo from the boughs far above, while lower to the ground the cries of unseen creatures ring through the trees.</description>
<description>Growing in the shade of towering oak and fir trees, azalea bushes add bright splashes of color to the brown-green gloom of the forest. Tangles of ivy creep alongside the trail and cloak the trees in jade filigree.</description>
<position x="380" y="-80" z="0" />
<arc exit="east" move="east" destination="98" />
<arc exit="southwest" move="southwest" destination="96" />
</node>
<node id="98" name="Northern Trade Road, Open Forest" note="Map7_NTR.xml|NTR">
<description>Trees rise dimly along the roadway and you can faintly hear a quiet chittering, perhaps from sleepy squirrels annoyed at your disturbing their rest.</description>
<description>Trees to both sides of the road thin out southward where the land changes to open grassland. Large grey squirrels leap across the road overhead from branch to branch and chitter down at you as they regard you with curious eyes.</description>
<position x="400" y="-80" z="0" />
<arc exit="southeast" move="southeast" />
<arc exit="west" move="west" destination="97" />
<arc exit="northwest" move="northwest" />
</node>
<node id="99" name="Seord'moda Crater, Ridge" note="Seord'moda Crater">
<description>Burnt shards of wood and bone are strewn outward from the ridge of a vast crater torn into the landscape. The ragged pit gapes widely at the sky like a giant maw screaming in rage and sorrow. An uneven trail littered with gravel and blasted rock weaves down the steep walls through thick layers of soil, sand and stone to the bottom of the great hole.</description>
<position x="300" y="-20" z="0" />
<arc exit="down" move="down" destination="100" />
<arc exit="go" move="go path" destination="93" />
</node>
<node id="100" name="Seord'moda Crater, Wall">
<description>Stones charred and cracked from a great explosion jut from the jagged walls of the crater and alter the trail's course. The sharp edges of silver-flecked stone glisten in the pale moonlight like the dagger blades of assassins in the shadows.</description>
<description>Stones charred and cracked from a great explosion jut from the jagged walls of the crater and alter the trail's course. The sharp edges of silver-flecked stone glisten from the dark soil like the sword blades of a legion raised in battle.</description>
<position x="300" y="0" z="0" />
<arc exit="up" move="up" destination="99" />
<arc exit="down" move="down" destination="101" />
</node>
<node id="101" name="Seord'moda Crater, Wall">
<description>Devoid of vegetation, the dark topsoil yields to a coarse grey loam. Sand fused by fire crackles under foot, and the slippery grit sends shards of stone and unwary travelers alike hurtling down the slope. A broken broadsword protrudes from a large sandstone, its blackened blade twisted like a coiled adder.</description>
<position x="300" y="20" z="0" />
<arc exit="up" move="up" destination="100" />
<arc exit="down" move="down" destination="102" />
</node>
<node id="102" name="Seord'moda Crater, Wall">
<description>A stony black carpet glimmers slightly in the darkness, at once illuminating the trail and absorbing what light touches it. Large shards of stone rise from the steep ground and bend the narrow pass in directions unpredictable in the sightless night.</description>
<description>Fist-sized black stones carpet the narrow pass between two large shards of rock that rise from the base of the crater. The stones glimmer with the dull iridescence of onyx and swallow the surrounding light. As the carpet thickens nearer the bottom, the wall seems to fall off into darkness.</description>
<position x="300" y="40" z="0" />
<arc exit="up" move="up" destination="101" />
<arc exit="down" move="down" destination="103" />
</node>
<node id="103" name="Seord'moda Crater">
<description>Darkness consumes the base of the crater, the towering walls swallowing the moonlight. Only silver sparkles of stars peek in from above. The stars themselves seem to rain down into the crater, as their light glints from small avalanches of stone that bounce down the walls.</description>
<description>Tall slopes tower overhead in every direction, casting long shadows across the stony floor and chasing sunlight from the great crater. Small avalanches of stone and gravel rain down from above, startling small flocks of birds that flap off into the pale sky.</description>
<position x="320" y="60" z="0" />
<arc exit="north" move="north" destination="104" />
<arc exit="northeast" move="northeast" destination="105" />
<arc exit="up" move="up" destination="102" />
</node>
<node id="104" name="Seord'moda Crater">
<description>The jagged base of the crater is run through with cracks in the black stone like open wounds in ebon flesh. A buzzard perched atop mineral-flecked stone pecks at the stringy remains of a small meal. It glances up occasionally to survey the vast pit littered with debris, and glare at the interlopers in its domain.</description>
<position x="320" y="40" z="0" />
<arc exit="east" move="east" destination="105" />
<arc exit="south" move="south" destination="103" />
</node>
<node id="105" name="Seord'moda Crater">
<description>The wind howls against the stony walls like braying hounds in the winter and whips up small whirlwinds of sand and skree. Gossamer veils of shadow hover far above, casting a barren vista of monochrome greys and blacks.</description>
<position x="340" y="40" z="0" />
<arc exit="southwest" move="southwest" destination="103" />
<arc exit="west" move="west" destination="104" />
</node>
<node id="106" name="Northwall Trail, Birch Copse">
<description>The small copse of birch trees provides a welcome oasis of shade in the open grassland. The trees stand thin and tall, their pale trunks catching the sunlight and glowing softly in the shade of their rustling canopy. Oddly set amidst the birches is a curiously bent black willow tree.</description>
<description>Glowing a ghostly pale in the moonlight softly filtered through their rustling canopy, the birch trees lend credence to the old traveler's tale of the spirit of the birch. The White Handed Ones could stop any heart or riddle with wicked visions any head their bony limbs touched. Oddly set amidst the birch is a curiously bent black willow tree.</description>
<position x="280" y="-60" z="0" />
<arc exit="southeast" move="southeast" destination="93" />
<arc exit="southwest" move="southwest" destination="21" />
<arc exit="climb" move="climb willow tree" destination="266" />
</node>
<node id="107" name="Northwall Trail, Near the Road">
<description>Rumbling carts from the North Turnpike lend a low bass to the sweet aria of field wrens, whose small choirs spot the meadow on either side of the trail. Far to the north, a thick plume of grey smoke billows from the tall chimneys of a monastery.</description>
<description>The clatter of caravans on the turnpike rumbles low like thunder in the stillness of the night. To the north, the lights of the monastery are visible, floating dimly in the darkness.</description>
<position x="180" y="0" z="0" />
<arc exit="east" move="east" destination="2" />
<arc exit="west" move="west" destination="108" />
</node>
<node id="108" name="Northwall Trail, Phaedic's Field" note="Phaedic's Field">
<description>An uneven expanse of grass stretches to the south and west. Fresh mounds of dirt stand not far from the trail, while closer to the town wall the mounds are sunken to mere ripples in the meadow. Paupers, street urchins, soldiers fallen short of glory, and anonymous travelers all meet their final destination here. Beside the trail, a broken shovel leans against a boulder.</description>
<description>The sound of digging echoes from somewhere across the field, broken occasionally by the ring of metal as it strikes stone. Fresh mounds of dirt stand not far from the trail, while closer to the town wall the mounds have sunk to mere ripples in the meadow. Paupers, street urchins, soldiers fallen short of glory, and anonymous travelers all meet their final destination here. A large boulder stands beside the trail.</description>
<position x="120" y="0" z="0" />
<arc exit="east" move="east" destination="107" />
<arc exit="northwest" move="northwest" destination="109" />
</node>
<node id="109" name="Northwall Trail, Meadow">
<description>Cornflowers, violets and poppies color the green velvet meadow in twilight shades and fill the air with a cloying fragrance. The sound of the river burbling to the west blends with the mournful song of the wind's gust across the flatlands.</description>
<description>The mournful wind gusts unheeded across the meadow, melding with the song of the river to the west. The thick scent of grass and wildflowers lingers in the darkness.</description>
<position x="100" y="-20" z="0" />
<arc exit="southeast" move="southeast" destination="108" />
<arc exit="west" move="west" destination="110" />
<arc exit="north" move="north" destination="254" />
</node>
<node id="110" name="Northwall Trail, River's Edge" color="#FFBF00">
<description>Cattails and rushes border the river, softening the steep angle of the riverbank. The lush grasses of a nearby meadow yield here to a thick mud that clutches at your feet, making each step difficult. The deep croaking of bullfrogs punctuates the steady rush of the river, and the distant twitter of meadowlarks completes the arboreal symphony.</description>
<position x="80" y="-20" z="0" />
<arc exit="east" move="rt east" destination="109" />
<arc exit="south" move="rt south" destination="111" />
</node>
<node id="111" name="Northwall Trail, Riverbank">
<description>A tall poplar forms a natural bridge across the swiftly moving river, its roots still entangled in a great mass of deadwood on the western riverbank. A kingfisher perched on one of the silvered branches of the felled tree calmly watches the rushing waters for the glimmer of its next meal.</description>
<description>Faint light reflected from the river outlines the natural bridge made by a tall poplar, the tree's roots still entangled in a great mass of deadwood on the western riverbank. The splash and roll of the river's flow thunders loudly in the quiet of night.</description>
<position x="80" y="0" z="0" />
<arc exit="north" move="north" destination="110" />
<arc exit="go" move="rt go fallen poplar" destination="112" />
</node>
<node id="112" name="Northwall Trail, Deadfall">
<description>A tall poplar forms a natural bridge across the swiftly moving river, its roots still entangled in a great mass of deadwood on the western riverbank. A kingfisher perched on one of the silvered branches of the felled tree calmly watches the rushing waters for the glimmer of its next meal.</description>
<description>Faint light reflecting off of the river outlines the natural bridge made by a tall poplar, the tree's roots still entangled in a great mass of deadwood on the western riverbank. The splash and roll of the river's flow thunders loudly in the quiet of night.</description>
<position x="80" y="20" z="0" />
<arc exit="down" move="down" destination="113" />
<arc exit="go" move="rt go fallen poplar" destination="111" />
</node>
<node id="113" name="Northwall Trail, Wooded Grove" note="Pfanston's grove">
<description>The sounds of the river splash through the trees from the southeast, where the woods end abruptly in a tangle of felled trees. The massive deadfall looks like the remains of some giant creature, its weather-bleached bones laying in a great heap beside the river.</description>
<description>The sounds of the river splash through the trees to the southeast, where the tangled trunks of a massive deadfall laying along the riverbank glow a ghostly pale in the moonlight.</description>
<position x="80" y="40" z="0" />
<arc exit="west" move="west" destination="114" />
<arc exit="climb" move="climb deadfall" destination="112" />
<arc exit="climb" move="climb contorted tree" destination="115" />
</node>
<node id="114" name="Northwall Trail, Wooded Grove" note="Map4_Crossing_West_Gate.xml|W Gate">
<description>The sweet smell of wildflowers carried on the breeze mingles with the spicy smell of cedar and juniper. Sunlight dapples the mossy ground in golden hues and glistens on the dew-laden petals of tiny snowflowers. A gnarled oak tree, cracked in two by a great tempest's fury, lays beside the trail.</description>
<description>The sweet smell of wildflowers carried on the breeze mingles with the spicy scent of cedar and juniper. At the sound of an owl, a startled woodmouse scurries across the trail toward a gnarled and broken oak tree.</description>
<position x="60" y="40" z="0" />
<arc exit="east" move="east" destination="113" />
<arc exit="southwest" move="southwest" />
</node>
<node id="115" name="Northwall Trail, Tree Top">
<description>Faint light streams down through the tree's upper limbs, painting the branches in an eerie, pale hue. Now and then the surrounding foliage rustles with movement, though whatever is causing it cannot be seen. Occasionally something glints in the depth of the shadows -- could it be watchful eyes? But they appear and are gone again so quickly that perhaps they were only a trick of the imagination.</description>
<description>Natural light filters down through the tree's mighty limbs. The bark of the trunk is well worn with use, as if something or someone has been using this as a way of getting around. Often, the leaves overhead flicker with movement as squirrels leap playfully through the canopy. The tree has several crude carvings on it, apparently done by someone who had nothing better to do.</description>
<position x="100" y="40" z="0" />
<arc exit="down" move="down" destination="113" />
<arc exit="climb" move="climb branch" destination="116" />
</node>
<node id="116" name="Ranger's Guild, The Tree House" note="Map1_Crossing.xml|Tree house|Ranger">
<description>This platform perched high in the treetop offers a breathtaking view of the surroundings, and a small spyglass secured to the banister provides an opportunity to get a closer look. A slight breeze caresses the leaves of the trees with a sound like the voice of nature whispering secrets to those who will listen. A few leaves occasionally blow down the carved steps leading to the room below.</description>
<position x="120" y="40" z="0" />
</node>
<node id="117" name="Monastery, Blueberry Bushes">
<description>Rows and rows of blueberry bushes grow within the stone fence enclosure. The narrow path following the stone wall bends from the north to the southwest, other less well marked paths disappear into the stands of shrubs.</description>
<position x="240" y="-120" z="0" />
<arc exit="north" move="north" destination="119" />
<arc exit="southwest" move="southwest" destination="124" />
<arc exit="west" move="west" destination="118" />
<arc exit="northwest" move="northwest" destination="123" />
<arc exit="go" move="go broken fence" destination="6" />
</node>
<node id="118" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="220" y="-120" z="0" />
<arc exit="north" move="north" destination="123" />
<arc exit="northeast" move="northeast" destination="119" />
<arc exit="east" move="east" destination="117" />
<arc exit="south" move="south" destination="124" />
<arc exit="southwest" move="southwest" destination="126" />
<arc exit="west" move="west" destination="125" />
<arc exit="northwest" move="northwest" destination="127" />
</node>
<node id="119" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. A crow struts among the dried leaves and berries littering the ground.</description>
<position x="240" y="-140" z="0" />
<arc exit="north" move="north" destination="120" />
<arc exit="south" move="south" destination="117" />
<arc exit="southwest" move="southwest" destination="118" />
<arc exit="west" move="west" destination="123" />
<arc exit="northwest" move="northwest" destination="122" />
</node>
<node id="120" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. A smoky tang rises from a charred pile of twigs pruned from the berry shrubs at the end of the season.</description>
<position x="240" y="-160" z="0" />
<arc exit="south" move="south" destination="119" />
<arc exit="southwest" move="southwest" destination="123" />
<arc exit="west" move="west" destination="122" />
<arc exit="northwest" move="northwest" destination="121" />
</node>
<node id="121" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. The path plunges deeper into the blueberry bushes from several directions. Curving southeast, the rock fence separates the edge of the thicket from the road.</description>
<position x="220" y="-180" z="0" />
<arc exit="southeast" move="southeast" destination="120" />
<arc exit="south" move="south" destination="122" />
<arc exit="southwest" move="southwest" destination="128" />
<arc exit="west" move="west" destination="129" />
</node>
<node id="122" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="220" y="-160" z="0" />
<arc exit="north" move="north" destination="121" />
<arc exit="east" move="east" destination="120" />
<arc exit="southeast" move="southeast" destination="119" />
<arc exit="south" move="south" destination="123" />
<arc exit="southwest" move="southwest" destination="127" />
<arc exit="west" move="west" destination="128" />
<arc exit="northwest" move="northwest" destination="129" />
</node>
<node id="123" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="220" y="-140" z="0" />
<arc exit="north" move="north" destination="122" />
<arc exit="northeast" move="northeast" destination="120" />
<arc exit="east" move="east" destination="119" />
<arc exit="southeast" move="southeast" destination="117" />
<arc exit="south" move="south" destination="118" />
<arc exit="southwest" move="southwest" destination="125" />
<arc exit="west" move="west" destination="127" />
<arc exit="northwest" move="northwest" destination="128" />
</node>
<node id="124" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. The path plunges deeper into the blueberry bushes from several directions. Curving northeast, the rock fence separates the edge of the thicket from the road.</description>
<position x="220" y="-100" z="0" />
<arc exit="north" move="north" destination="118" />
<arc exit="northeast" move="northeast" destination="117" />
<arc exit="west" move="west" destination="126" />
<arc exit="northwest" move="northwest" destination="125" />
</node>
<node id="125" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="200" y="-120" z="0" />
<arc exit="north" move="north" destination="127" />
<arc exit="northeast" move="northeast" destination="123" />
<arc exit="east" move="east" destination="118" />
<arc exit="southeast" move="southeast" destination="124" />
<arc exit="south" move="south" destination="126" />
<arc exit="southwest" move="southwest" destination="134" />
<arc exit="west" move="west" destination="133" />
<arc exit="northwest" move="northwest" destination="132" />
</node>
<node id="126" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. Tiny black ants have built several mounds near the base of one bush. One struggles with a plump blueberry, straining to haul it back to the nest.</description>
<position x="200" y="-100" z="0" />
<arc exit="north" move="north" destination="125" />
<arc exit="northeast" move="northeast" destination="118" />
<arc exit="east" move="east" destination="124" />
<arc exit="west" move="west" destination="134" />
<arc exit="northwest" move="northwest" destination="133" />
</node>
<node id="127" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="200" y="-140" z="0" />
<arc exit="north" move="north" destination="128" />
<arc exit="northeast" move="northeast" destination="122" />
<arc exit="east" move="east" destination="123" />
<arc exit="southeast" move="southeast" destination="118" />
<arc exit="south" move="south" destination="125" />
<arc exit="southwest" move="southwest" destination="133" />
<arc exit="west" move="west" destination="132" />
<arc exit="northwest" move="northwest" destination="131" />
</node>
<node id="128" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="200" y="-160" z="0" />
<arc exit="north" move="north" destination="129" />
<arc exit="northeast" move="northeast" destination="121" />
<arc exit="east" move="east" destination="122" />
<arc exit="southeast" move="southeast" destination="123" />
<arc exit="south" move="south" destination="127" />
<arc exit="southwest" move="southwest" destination="132" />
<arc exit="west" move="west" destination="131" />
<arc exit="northwest" move="northwest" destination="130" />
</node>
<node id="129" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. Tiny black ants have built several mounds near the base of one bush. An ant struggles with a plump blueberry, straining to haul it back to the nest.</description>
<position x="200" y="-180" z="0" />
<arc exit="east" move="east" destination="121" />
<arc exit="southeast" move="southeast" destination="122" />
<arc exit="south" move="south" destination="128" />
<arc exit="southwest" move="southwest" destination="131" />
<arc exit="west" move="west" destination="130" />
</node>
<node id="130" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. A group of tiny black ants contest possession of plump blueberry with an army of red ants.</description>
<position x="180" y="-180" z="0" />
<arc exit="east" move="east" destination="129" />
<arc exit="southeast" move="southeast" destination="128" />
<arc exit="south" move="south" destination="131" />
<arc exit="southwest" move="southwest" destination="138" />
<arc exit="west" move="west" destination="139" />
</node>
<node id="131" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="180" y="-160" z="0" />
<arc exit="north" move="north" destination="130" />
<arc exit="northeast" move="northeast" destination="129" />
<arc exit="east" move="east" destination="128" />
<arc exit="southeast" move="southeast" destination="127" />
<arc exit="south" move="south" destination="132" />
<arc exit="southwest" move="southwest" destination="137" />
<arc exit="west" move="west" destination="138" />
<arc exit="northwest" move="northwest" destination="139" />
</node>
<node id="132" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="180" y="-140" z="0" />
<arc exit="north" move="north" destination="131" />
<arc exit="northeast" move="northeast" destination="128" />
<arc exit="east" move="east" destination="127" />
<arc exit="southeast" move="southeast" destination="125" />
<arc exit="south" move="south" destination="133" />
<arc exit="southwest" move="southwest" destination="136" />
<arc exit="west" move="west" destination="137" />
<arc exit="northwest" move="northwest" destination="138" />
</node>
<node id="133" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="180" y="-120" z="0" />
<arc exit="north" move="north" destination="132" />
<arc exit="northeast" move="northeast" destination="127" />
<arc exit="east" move="east" destination="125" />
<arc exit="southeast" move="southeast" destination="126" />
<arc exit="south" move="south" destination="134" />
<arc exit="southwest" move="southwest" destination="135" />
<arc exit="west" move="west" destination="136" />
<arc exit="northwest" move="northwest" destination="137" />
</node>
<node id="134" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. A group of tiny black ants contest possession of a plump blueberry with an army of red ants.</description>
<position x="180" y="-100" z="0" />
<arc exit="north" move="north" destination="133" />
<arc exit="northeast" move="northeast" destination="125" />
<arc exit="east" move="east" destination="126" />
<arc exit="west" move="west" destination="135" />
<arc exit="northwest" move="northwest" destination="136" />
</node>
<node id="135" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. Tiny red ants have built several mounds near the base of one bush. One struggles with a plump blueberry, straining to haul it back to the nest.</description>
<position x="160" y="-100" z="0" />
<arc exit="north" move="north" destination="136" />
<arc exit="northeast" move="northeast" destination="133" />
<arc exit="east" move="east" destination="134" />
</node>
<node id="136" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="160" y="-120" z="0" />
<arc exit="north" move="north" destination="137" />
<arc exit="northeast" move="northeast" destination="132" />
<arc exit="east" move="east" destination="133" />
<arc exit="southeast" move="southeast" destination="134" />
<arc exit="south" move="south" destination="135" />
</node>
<node id="137" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="160" y="-140" z="0" />
<arc exit="north" move="north" destination="138" />
<arc exit="northeast" move="northeast" destination="131" />
<arc exit="east" move="east" destination="132" />
<arc exit="southeast" move="southeast" destination="133" />
<arc exit="south" move="south" destination="136" />
</node>
<node id="138" name="Monastery, Blueberry Bushes">
<description>Brambly bushes create a close thicket criss-crossed by paths littered with fallen blueberries. The smell of over-ripe fruit lingers in the air like drying honey. Scraps of loosely woven netting -- an attempt to foil birds -- cling to the shrubs.</description>
<position x="160" y="-160" z="0" />
<arc exit="north" move="north" destination="139" />
<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="137" />
</node>
<node id="139" name="Monastery, Blueberry Bushes">
<description>Dark green moss dapples the high stone wall skirting one side of the path, and fronds from the bushes overhang the narrow trail in places. Tiny red ants have built several mounds near the base of one bush. One struggles with a plump blueberry, straining to haul it back to the nest.</description>
<position x="160" y="-180" z="0" />
<arc exit="east" move="east" destination="130" />
<arc exit="southeast" move="southeast" destination="131" />
<arc exit="south" move="south" destination="138" />
<arc exit="go" move="go path" destination="140" />
</node>
<node id="140" name="Monastery, Blueberry Bushes">
<description>Gnarled and blackened from a lightning strike, this stunted little shrub at the far northwest corner of the thicket yields no fruit, yet some green shoots thrusting from new growth promise renewal. The path curves to the southwest towards the cornfield and eastwards deeper into the blueberry grove.</description>
<position x="140" y="-180" z="0" />
<arc exit="south" move="south" destination="142" />
<arc exit="go" move="go blueberry grove" destination="138" />
<arc exit="southwest" move="southwest" destination="141" />
</node>
<node id="141" name="Monastery, Field Path">
<description>Turning abruptly to the northeast from the main path, the stone wall plunges into a dense patch of blueberry bushes. The soil is packed hard from the passage of people, equipment and creatures between the field, blueberry patch and path to the monastery.</description>
<position x="120" y="-160" z="0" />
<arc exit="northeast" move="northeast" destination="140" />
<arc exit="southeast" move="southeast" destination="142" />
<arc exit="go" move="go narrow track" destination="155" />
<arc exit="northwest" move="northwest" destination="147" />
</node>
<node id="142" name="Monastery, Blueberry Bushes">
<description>The field path wends into a grove of blueberry bushes. Unharvested by the monks, fat berries hang in luscious profusion from the slender branches, providing a feast for the creatures living here.</description>
<position x="140" y="-140" z="0" />
<arc exit="north" move="north" destination="140" />
<arc exit="south" move="south" destination="143" />
<arc exit="northwest" move="northwest" destination="141" />
</node>
<node id="143" name="Monastery, Blueberry Bushes">
<description>The thicket of blueberries thins to the southwest, exposing a view of a cornfield. The leaves of a nearby shrub shake violently as something hidden by the greenery scurries among the limbs.</description>
<position x="140" y="-120" z="0" />
<arc exit="north" move="north" destination="142" />
<arc exit="go" move="go dirt path" destination="144" />
</node>
<node id="144" name="Monastery, Drained Field">
<description>Brown and dried out, stunted stalks of corn lie trampled in the dirt. Even the grubs disdain the hard ears of corn abandoned in furrows. Once straight rows of corn continue to the west, and a drainage ditch skirts one side of the field. Some blueberry bushes are visible to the northeast, just beyond a dirt path.</description>
<position x="120" y="-100" z="0" />
<arc exit="go" move="go dirt path" destination="143" />
<arc exit="west" move="west" destination="145" />
<arc exit="down" move="down" destination="168" />
</node>
<node id="145" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="100" y="-100" z="0" />
<arc exit="east" move="east" destination="144" />
<arc exit="west" move="west" destination="146" />
</node>
<node id="146" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="80" y="-100" z="0" />
<arc exit="east" move="east" destination="145" />
<arc exit="west" move="west" destination="160" />
</node>
<node id="147" name="Monastery, Field Path">
<description>Hardly noticeable as a break in the wall, vine covered rubble and debris blocks an ancient entrance gate to the monastery. Peering over the crumbling stone, the outer buildings of the monastery can be seen to the northeast. Southeast, the path continues, cutting between the drained fields and blueberry bushes.</description>
<position x="100" y="-180" z="0" />
<arc exit="southeast" move="southeast" destination="141" />
<arc exit="northwest" move="northwest" destination="148" />
</node>
<node id="148" name="Monastery, Field Path">
<description>Impressions left by the hooves of dray beasts and footprints left by the monks mix with those of ...something else... in the rich black soil. Clumps of tough grass grow against the weathered stone wall which lines one side of the path, preventing entry onto the monastery grounds.</description>
<position x="80" y="-200" z="0" />
<arc exit="southeast" move="southeast" destination="147" />
<arc exit="go" move="go narrow track" destination="149" />
</node>
<node id="149" name="Monastery, Drained Field">
<description>A raccoon's beady black eyes peer from behind a clump of stalks still standing, as it gnaws hopefully at a dried out ear of corn. The furrow of stricken plants continues to the west and a dirt path leads off to the northeast. A chirring sound comes from the drainage ditch lining the field.</description>
<position x="60" y="-180" z="0" />
<arc exit="go" move="go narrow track" destination="148" />
<arc exit="west" move="west" destination="150" />
</node>
<node id="150" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="40" y="-180" z="0" />
<arc exit="east" move="east" destination="149" />
<arc exit="west" move="west" destination="151" />
</node>
<node id="151" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="20" y="-180" z="0" />
<arc exit="east" move="east" destination="150" />
<arc exit="west" move="west" destination="152" />
<arc exit="down" move="down" hidden="True" destination="166" />
</node>
<node id="152" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. Thick wooden planks bridge the drainage ditch separating the north from the middle field. Eastward, the ravaged furrows continue, only a few tracks of small animals giving evidence that there is still life in the field.</description>
<position x="0" y="-180" z="0" />
<arc exit="east" move="east" destination="151" />
<arc exit="south" move="south" destination="153" />
</node>
<node id="153" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. Thick wooden planks bridge the drainage ditches separating the fields. Eastward, the ravaged furrows continue, only a few tracks of small animals giving evidence that there is still life in the field.</description>
<position x="0" y="-140" z="0" />
<arc exit="north" move="north" destination="152" />
<arc exit="east" move="east" destination="159" />
<arc exit="south" move="south" destination="154" />
<arc exit="down" move="down" hidden="True" destination="166" />
</node>
<node id="154" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. Thick wooden planks bridge the drainage ditches separating the fields. Eastward, the ravaged furrows continue, only a few tracks of small animals giving evidence that there is still life in the field.</description>
<position x="0" y="-100" z="0" />
<arc exit="north" move="north" destination="153" />
<arc exit="east" move="east" destination="162" />
<arc exit="down" move="down" hidden="True" destination="163" />
</node>
<node id="155" name="Monastery, Drained Field">
<description>Several forlorn stalks of corn still stand, seemingly huddled together for protection against whatever creatures roam the fields. A fetid smell of stale water rises from the drainage ditch that skirts one side of the field. Some blueberry bushes are visible to the northeast, just beyond a dirt path.</description>
<position x="100" y="-140" z="0" />
<arc exit="go" move="go narrow track" destination="141" />
<arc exit="west" move="west" destination="156" />
<arc exit="down" move="down" hidden="True" destination="163" />
</node>
<node id="156" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="80" y="-140" z="0" />
<arc exit="east" move="east" destination="155" />
<arc exit="west" move="west" destination="157" />
<arc exit="down" move="down" hidden="True" destination="166" />
</node>
<node id="157" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="60" y="-140" z="0" />
<arc exit="east" move="east" destination="156" />
<arc exit="west" move="west" destination="158" />
</node>
<node id="158" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="40" y="-140" z="0" />
<arc exit="east" move="east" destination="157" />
<arc exit="west" move="west" destination="159" />
</node>
<node id="159" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="20" y="-140" z="0" />
<arc exit="east" move="east" destination="158" />
<arc exit="west" move="west" destination="153" />
</node>
<node id="160" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="60" y="-100" z="0" />
<arc exit="east" move="east" destination="146" />
<arc exit="west" move="west" destination="161" />
</node>
<node id="161" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="40" y="-100" z="0" />
<arc exit="east" move="east" destination="160" />
<arc exit="west" move="west" destination="162" />
<arc exit="down" move="down" hidden="True" destination="163" />
</node>
<node id="162" name="Monastery, Drained Field">
<description>Ruined stalks of corn lie crushed in the dirt, the ears torn from the stem and cast haphazardly about. The furrow of stricken plants continues to the east and west. From within the drainage ditch edging the field can be heard the sounds of insects buzzing and something rustling in the vegetation.</description>
<position x="20" y="-100" z="0" />
<arc exit="west" move="west" destination="154" />
</node>
<node id="163" name="Monastery, Drainage Ditch">
<description>Water pools at the bottom of the ditch, just deep enough to soak feet and breed mosquitos. Weeds sprout from the mud, and tufts of grass cling to the ditch walls. An unseen frog croaks in the vegetation. Small, nearly invisible insects buzz near your ears and nose.</description>
<position x="20" y="-120" z="0" />
<arc exit="east" move="east" destination="164" />
<arc exit="west" move="west" hidden="True" destination="167" />
<arc exit="out" move="out" hidden="True" destination="155" />
<arc exit="up" move="up" hidden="True" destination="154" />
</node>
<node id="164" name="Monastery, Drainage Ditch">
<description>Water pools at the bottom of the ditch, just deep enough to soak feet and breed mosquitos. Weeds sprout from the mud, and tufts of grass cling to the ditch walls. An unseen frog croaks in the vegetation. Small, almost invisible insects buzz near your ears and nose.</description>
<position x="40" y="-120" z="0" />
<arc exit="east" move="east" destination="165" />
<arc exit="west" move="west" destination="163" />
<arc exit="up" move="up" hidden="True" destination="153" />
<arc exit="out" move="out" hidden="True" destination="155" />
</node>
<node id="165" name="Monastery, Drainage Ditch">
<description>Water pools at the bottom of the ditch, just deep enough to soak feet and breed mosquitos. Weeds sprout from the mud, and tufts of grass cling to the ditch walls. An unseen frog croaks in the vegetation. Small, nearly invisible bugs buzz near your ears and nose.</description>
<position x="60" y="-120" z="0" />
<arc exit="east" move="east" destination="166" />
<arc exit="west" move="west" destination="164" />
<arc exit="up" move="up" hidden="True" destination="146" />
<arc exit="out" move="out" hidden="True" destination="155" />
</node>
<node id="166" name="Monastery, Drainage Ditch">
<description>Water pools at the bottom of the ditch, just deep enough to soak feet and breed mosquitos. Weeds sprout from the mud, and tufts of grass cling to the ditch walls. An unseen frog croaks in the vegetation. Small, nearly invisible insects buzz near your ears.</description>
<position x="80" y="-120" z="0" />
<arc exit="east" move="east" destination="167" />
<arc exit="west" move="west" destination="165" />
<arc exit="up" move="up" hidden="True" destination="149" />
<arc exit="out" move="out" hidden="True" destination="155" />
</node>
<node id="167" name="Monastery, Drainage Ditch">
<description>Water pools at the bottom of the ditch, just deep enough to soak feet and breed mosquitos. Weeds sprout from the mud, and tufts of grass cling to the ditch walls. An unseen frog croaks in the vegetation. Small, almost invisible insects buzz near your ears.</description>
<position x="100" y="-120" z="0" />
<arc exit="east" move="east" hidden="True" destination="163" />
<arc exit="west" move="west" destination="166" />
<arc exit="up" move="up" hidden="True" destination="152" />
<arc exit="out" move="out" hidden="True" destination="155" />
</node>
<node id="168" name="Monastery, Gully">
<description>High as a most men's heads, the soft soil of one wall is pocked with gouges, as if someone had tried to climb it. Insects buzz around weeds sprouting from the shallow water covering the gully floor. An unseen cricket chirps in the vegetation.</description>
<position x="140" y="-80" z="0" />
<arc exit="west" move="west" hidden="True" destination="167" />
<arc exit="east" move="east" hidden="True" destination="166" />
<arc exit="up" move="up" destination="144" />
<arc exit="southeast" move="southeast" destination="169" />
</node>
<node id="169" name="Monastery, Gully">
<description>Although dry now, loose rocks moved by flowing water and careless feet litter the bottom of the gully slope. The trench is close to waist deep on a Gor'tog and mounds of dirt mixed among the brambles on the wall rim indicate nature has had help digging. From somewhere within the brambles, a wren warbles.</description>
<position x="160" y="-60" z="0" />
<arc exit="east" move="east" destination="170" />
<arc exit="northwest" move="northwest" destination="168" />
</node>
<node id="170" name="Monastery, Gully">
<description>Seasonal rains have cut a channel leading away from the road in the soft soil. Only about knee-deep, it might be possible to climb over the sides were it not for the thorny spikeplants that grow along the flanks of the gully. A few hardy weeds hold tenaciously to the sides of the channel as it cuts deeper into the earth.</description>
<position x="180" y="-60" z="0" />
<arc exit="west" move="west" destination="169" />
<arc exit="go" move="go rutted road" destination="3" />