-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMap41_Marauders.xml
1606 lines (1606 loc) · 154 KB
/
Map41_Marauders.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-8"?>
<zone name="Ker'Leor, Fornsted, and Hraval" id="41">
<node id="1" name="Ker'Leor, Deep Forest Path">
<description>A twisted bough reaches out from the darkness, curling upward in search of sky. A hesitant whooping sound occasionally ricochets through the moistened air, hollow and uncomfortably close.</description>
<position x="80" y="160" z="0" />
<arc exit="south" move="south" destination="2" />
<arc exit="northwest" move="northwest" destination="3" />
</node>
<node id="2" name="Ker'Leor, Deep Forest Path">
<description>An endless assortment of towering trees and vividly-colored underbrush crowd the base of Ker'Leor. So dense is the forest that steam rises from its floor, hanging as a still mist which threatens to obscure the faint path. Eerie wails, moans and hisses echo forth from the deep shadows, bending the imagination toward the hideous and threatening.</description>
<position x="80" y="180" z="0" />
<arc exit="north" move="north" destination="1" />
<arc exit="east" move="rt east" destination="53" />
</node>
<node id="3" name="Ker'Leor, Deep Forest Path">
<description>The canopy of the forest is hopelessly tangled, one tree trunk nearly indistinguishable from the next. Heady, earthy scents rise from the spongy ground like the tiny insects that nip and bite. As each sense takes in its fill of information, the most overpowering is that of being watched.</description>
<position x="60" y="140" z="0" />
<arc exit="north" move="north" destination="4" />
<arc exit="southeast" move="southeast" destination="1" />
</node>
<node id="4" name="Ker'Leor, Deep Forest Path">
<description>A silvery vine manages to reflect what scant light filters through the trees. As it winds its way over root and rock, it exudes a pungent odor not unlike rotted meat. A few grapelike clusters hang from dense tendrils of a sathmoor moss which is draped over an eye-level branch.</description>
<position x="60" y="120" z="0" />
<arc exit="south" move="south" destination="3" />
<arc exit="northwest" move="northwest" destination="5" />
</node>
<node id="5" name="Ker'Leor, Deep Forest Path">
<description>Nasty kinter bugs hover over the muddy ground, waiting for an unprotected ankle. A trickle of sap runs from a pine tree, its smell sickeningly sweet against the mulchy odor of the forest floor.</description>
<position x="40" y="100" z="0" />
<arc exit="northeast" move="northeast" destination="6" />
<arc exit="southeast" move="southeast" destination="4" />
</node>
<node id="6" name="Ker'Leor, Deep Forest Path">
<description>The ground becomes marshy, in some places nearly ankle-deep with swollen sod and forest debris. A thin rivulet courses between some smoothed stones, heading toward a ring of rocks beyond a tangle of firethorn bushes.</description>
<position x="60" y="80" z="0" />
<arc exit="north" move="north" destination="7" />
<arc exit="southwest" move="southwest" destination="5" />
</node>
<node id="7" name="Ker'Leor, Deep Forest Path">
<description>Tree roots and ground cover are hopelessly tangled into one, steaming mess. Each footstep stirs up a slew of blood-sucking mosquitos, gnats and midges. More like an auditory hallucination than anything else, the strains of music filter through the forest, utterly out of place and from an indeterminable direction.</description>
<position x="60" y="60" z="0" />
<arc exit="northeast" move="northeast" destination="8" />
<arc exit="south" move="south" destination="6" />
</node>
<node id="8" name="Ker'Leor, Deep Forest Path">
<description>A little bit of sky peeks through the thick forest canopy, shedding fingers of light upon the immediate area. Astonishingly, the forest is awash with colors, from brilliant flowers to myriad shades of green. Along with the clarity, though, comes the intense feeling of being closely scrutinized.</description>
<description>A little bit of sky peeks through the thick forest canopy, offering a glimpse at the stars in the sky. Aside from the distant sound of a strummed guitar and beaten tambourine, though, the area lacks any noticeable activity.</description>
<position x="80" y="40" z="0" />
<arc exit="northeast" move="northeast" destination="9" />
<arc exit="southwest" move="southwest" destination="7" />
</node>
<node id="9" name="Ker'Leor, Deep Forest Path">
<description>Undulating lichen cover the base of a particularly tight-knit group of oaks standing in the center of the path. Their pale pink color gleams in the darkness, illuminated by an internal chemical. Wailing and hooting sounds fill the air, but nothing moves within the trees.</description>
<position x="100" y="20" z="0" />
<arc exit="southwest" move="southwest" destination="8" />
<arc exit="northwest" move="northwest" destination="10" />
</node>
<node id="10" name="Ker'Leor, Deep Forest Path">
<description>Blossoming reggus bushes send their pungent aroma upward with any movement along the path. A short, warm breeze stirs the misty cover of the forest floor, exposing lacy ferns and pockets of dirdel flowers.</description>
<position x="80" y="0" z="0" />
<arc exit="northeast" move="northeast" destination="11" />
<arc exit="southeast" move="southeast" destination="9" />
<arc exit="climb" move="climb felled tree" destination="30" />
</node>
<node id="11" name="Ker'Leor, Deep Forest Path">
<description>Marshy earth meets solid rock as the forest hugs Ker'Leor at this point. Though still distant, the rumble of a waterfall slices the thick air, punctuated now and again by bird calls and strange warbling.</description>
<position x="100" y="-20" z="0" />
<arc exit="north" move="north" destination="12" />
<arc exit="southwest" move="southwest" destination="10" />
</node>
<node id="12" name="Ker'Leor, Deep Forest Path">
<description>Thinning trees along the eastern edge of the forest reveal a road running parallel to the shadowy path. As a tentative breeze billows and wanes, it carries the soft sound of a strummed guitar accompanied by lively yet far-off voices. The path itself grows less marshy and more rocky, while the canopy overhead is rapidly diminishing.</description>
<position x="100" y="-60" z="0" />
<arc exit="south" move="south" destination="11" />
<arc exit="go" move="go road" destination="13" />
</node>
<node id="13" name="Ker'Leor, Gypsy Road">
<description>A wide dirt road runs parallel to the mountains from this clearing in the expansive forest. Delightful shrubbery take advantage of the exposure to rain and sun, blooming brilliantly between the trees.</description>
<description>A wide dirt road runs parallel to the mountains from this clearing in the expansive forest. A soft breeze cools the area, dispersing clouds to reveal brilliant stars in the night sky.</description>
<position x="120" y="-60" z="0" />
<arc exit="north" move="north" destination="14" />
<arc exit="west" move="west" destination="12" />
</node>
<node id="14" name="Ker'Leor, Gypsy Road">
<description>Heavily-trampled patches of grass indicate that some large caravan or animal herd has traveled here recently. An occasional glimpse eastward through trees which fringe the road provides a hint of a clearing not far to the northeast. Buzzing insects bite and bother, and shrill whistles fill the air.</description>
<position x="120" y="-80" z="0" />
<arc exit="northeast" move="northeast" destination="15" />
<arc exit="south" move="south" destination="13" />
</node>
<node id="15" name="Ker'Leor, Gypsy Road">
<description>The mighty mountain range of Ker'Leor dominates the western sky, rising dark and imposing into a thick bank of churning clouds. Though the air is crisp and amazingly invigorating, the mental image of unblinking eyes staring from the forest shadows has always assaulted travelers along this stretch of the road.</description>
<position x="140" y="-100" z="0" />
<arc exit="southwest" move="southwest" destination="14" />
<arc exit="northwest" move="northwest" destination="16" />
</node>
<node id="16" name="Ker'Leor, Gypsy Road">
<description>Constant chittering issues forth from the branches of nearby trees. Though they tilt and sway, no creature is ever seen moving among the sparse leaves. Hoots and whistles, followed by the strains of a lilting female voice in gentle song, ride the wind from a small clearing to the east.</description>
<position x="120" y="-120" z="0" />
<arc exit="east" move="east" destination="17" />
<arc exit="southeast" move="southeast" destination="15" />
<arc exit="northwest" move="northwest" destination="25" />
</node>
<node id="17" name="Ker'Leor, Laakmir">
<description>Emerald grass fed by a nearby water source look too groomed to be a natural part of these surroundings. All sound has died away save the whoosh of wind through the ring of trees which encase this clearing.</description>
<position x="140" y="-120" z="0" />
<arc exit="east" move="east" destination="18" />
<arc exit="west" move="west" destination="16" />
</node>
<node id="18" name="Ker'Leor, Laakmir">
<description>Dainty wildflowers grow in neat hedges along the north and south border of this gentle lawn. Sycamores grow majestically alongside junipers, tabors and dwarf wisteria, creating a living palette of many shades of green. Once in a rare while, branches crackle behind the trees as if stepped on by some stalking being.</description>
<position x="160" y="-120" z="0" />
<arc exit="northeast" move="northeast" destination="19" />
<arc exit="west" move="west" destination="17" />
</node>
<node id="19" name="Ker'Leor, Laakmir">
<description>Rolling grass gives way to a bluff of exposed rock, then dips down to the rim of a small, freshwater lake. Daisies and dirdel dance amidst moro grasses at the water's edge. The rock itself continues to rise along the eastern perimeter of the lake, reminiscent of the rim of a volcanic cauldron with its onyx-colored, smooth surface.</description>
<position x="180" y="-140" z="0" />
<arc exit="southwest" move="southwest" destination="18" />
<arc exit="go" move="go rock" destination="20" />
<arc exit="go" move="go lake" destination="24" />
</node>
<node id="20" name="Ker'Leor, Laakmir">
<description>Trees impinge upon a rise of rock skirting the tiny lake. The ground is somewhat uneven but meticulously manicured, but by whom is anyone's guess. A thicket of woven boughs closes off the clearing, preventing further progress to the east.</description>
<position x="200" y="-160" z="0" />
<arc exit="north" move="north" destination="21" />
<arc exit="southwest" move="southwest" destination="19" />
</node>
<node id="21" name="Ker'Leor, Laakmir">
<description>A hill of glassy black rock tumbles into thick forest, making this a difficult area to traverse. Footing is uncertain along the rocky slope, and an ominous row of thorn bushes threatens to entangle any hapless traveler unlucky enough to tumble from the rocks toward the trees.</description>
<position x="200" y="-180" z="0" />
<arc exit="northeast" move="northeast" destination="22" />
<arc exit="south" move="south" destination="20" />
</node>
<node id="22" name="Ker'Leor, Laakmir">
<description>The sheer concave of the exposed rock shields the eastern edge of the small lake with its pumice-laden crescent. It is all that is left of an ancient volcano, collapsed and filled over a millennium. What looks like a large cave pocks the cresent's surface, accessible by some evenly-spaced handholds.</description>
<position x="220" y="-200" z="0" />
<arc exit="southwest" move="southwest" destination="21" />
<arc exit="climb" move="climb cave" destination="23" />
</node>
<node id="23" name="Laakmir, Caves">
<description>Light filters softly through the dust which is suspended in the air of this cave. Shallow, but with a high ceiling, it is pleasantly dry and of comfortable temperature. A dark patch of charred ground indicates that someone has camped here recently.</description>
<description>Soft moonlight filters through the opening of the cave. Shallow, but with a high ceiling, it is pleasantly dry and of comfortable temperature. A dark patch of charred ground indicates that someone has camped here recently.</description>
<position x="220" y="-220" z="0" />
<arc exit="down" move="down" destination="22" />
</node>
<node id="24" name="Laakmir, Shallow Lake" note="Laakmir|Lake">
<description>Surprisingly, the little lake is no more than ankle deep, hardly fit for any type of carousing. The water is a pleasant, deep blue color and wonderfully cool to the touch.</description>
<position x="200" y="-120" z="0" />
<arc exit="out" move="out" destination="19" />
</node>
<node id="25" name="Ker'Leor, Gypsy Road">
<description>In a curious twist of horticulture, several rows of vegetables grow in tight formation along the roadside. Wild carrots, vanderpeas and purple corbane flourish. A few hedges of iffithyl, an herb known to ward off pests, are planted here and there within each row.</description>
<position x="100" y="-140" z="0" />
<arc exit="north" move="north" destination="26" />
<arc exit="southeast" move="southeast" destination="16" />
</node>
<node id="26" name="Ker'Leor, Gypsy Road">
<description>Deep gutters are cut into the roadside like crude irrigation ditches.</description>
<position x="100" y="-160" z="0" />
<arc exit="north" move="north" destination="27" />
<arc exit="south" move="south" destination="25" />
</node>
<node id="27" name="Ker'Leor, Gypsy Road">
<description>The rocky base of Ker'Leor is visible on the western edge of the road through gaps in the trees. Towering infinitely skyward from this vantage point, its steep-cut fissures and gullies are awesome to behold. The range appears to stretch endlessly northward.</description>
<description>The rocky base of Ker'Leor blots out all of the western sky. In the soft moonlight, only a bank of clouds hovering high above breaks the endless wall of black that seems to stretch ever northward.</description>
<position x="100" y="-180" z="0" />
<arc exit="south" move="south" destination="26" />
<arc exit="northwest" move="northwest" destination="28" />
</node>
<node id="28" name="Ker'Leor, Gypsy Road">
<description>Sparse stands of trees line the road as it inclines along the base of Ker'Leor. Chunks of rock dot the ground, some nearly the size of boulders. As the breeze builds and wanes, it carries the lively beat and tinkle of a faraway tambourine.</description>
<position x="80" y="-200" z="0" />
<arc exit="north" move="north" destination="29" />
<arc exit="southeast" move="southeast" destination="27" />
</node>
<node id="29" name="Ker'Leor, Gypsy Road" note="Slab">
<description>Sparse stands of trees line the road as it inclines along the base of Ker'Leor. Chunks of rock dot the ground, some nearly the size of boulders. As the breeze builds and wanes, it carries the lively beat and tinkle of a faraway tambourine.</description>
<position x="80" y="-220" z="0" />
<arc exit="south" move="south" destination="28" />
<arc exit="climb" move="climb rocky path" destination="54" />
</node>
<node id="30" name="Ker'Leor, Fog's Edge">
<description>The scent of reggus bushes wafts through the air, a few plants surviving on this side of the tree. Ferns nearby grow hesitantly, reaching for a sky blocked by the thickly woven forest canopy. Trickling water pools at the edges of hearing somewhere in the murk beyond.</description>
<position x="-20" y="0" z="0" />
<arc exit="southwest" move="southwest" destination="31" />
<arc exit="climb" move="climb felled tree" destination="10" />
</node>
<node id="31" name="Ker'Leor, Seordav Telga" color="#008000">
<description>Black tree trunks stand in the perpetual gloom, individual branches lost in the tangle overhead. Pine needles underfoot deaden sound. The air tastes of decay with an overlay of dust, as though nothing living had walked the ground in a long time. Facing away from the path is a haycart, its wheels broken and the sodden, rotted mass inside it barely recognizable as hay.</description>
<position x="-40" y="20" z="0" />
<arc exit="northeast" move="northeast" destination="30" />
<arc exit="south" move="south" destination="32" />
<arc exit="west" move="west" destination="37" />
</node>
<node id="32" name="Ker'Leor, Seordav Telga" color="#008000">
<description>The lower branches of the pine trees jut stiffly from the trunks, bristling with needles that look black in the thin light. A tattered kerchief lies half-buried on a small mound by the roots of one tree, all that's left of some lost Gypsy.</description>
<position x="-40" y="40" z="0" />
<arc exit="north" move="north" destination="31" />
<arc exit="southwest" move="southwest" destination="33" />
<arc exit="west" move="west" destination="36" />
</node>
<node id="33" name="Ker'Leor, Seordav Telga" color="#008000">
<description>A fickle breeze churns the fog, sending clammy droplets like a cloak around the pine trees. Black trunks stretch in all directions, vanishing into the mist. Moving through the thick air, kinterbugs hover close to the ground, ready to feed on vulnerable skin.</description>
<position x="-60" y="60" z="0" />
<arc exit="northeast" move="northeast" destination="32" />
<arc exit="northwest" move="northwest" destination="34" />
</node>
<node id="34" name="Ker'Leor, Seordav Telga" color="#008000">
<description>Shapes move slowly through the trees at the edge of your vision. Almost blending into the mist and the black tree trunks, the figures toil at some labor, never pausing, constant as the winds on the mountains. Through the pine-needled ground comes the vibration of wood pounding on earth.</description>
<position x="-80" y="40" z="0" />
<arc exit="north" move="north" destination="35" />
<arc exit="southeast" move="southeast" destination="33" />
</node>
<node id="35" name="Ker'Leor, Seordav Telga" color="#008000">
<description>The black pine trees thin out, but a wall of brambles -- thick and unyielding and sharp-thorned -- prevents further passage to the north and west. The ground underfoot squelches as you step on the blanket of pine needles. The mist seethes angrily, seeping into the brambles.</description>
<position x="-80" y="20" z="0" />
<arc exit="southeast" move="southeast" destination="36" />
<arc exit="south" move="south" destination="34" />
<arc exit="go" move="go gap" destination="42" />
</node>
<node id="36" name="Ker'Leor, Seordav Telga" color="#008000">
<description>Brambles have been hacked back around the trees to form the path here, which is thickly carpeted with pine needles that absorb footfalls. The brambles are blackened with decay, and the trees they surround are covered in a slimy brown moss. More of this moss hangs from the trees' branches, brushing a wet trail across whoever passes by.</description>
<position x="-60" y="40" z="0" />
<arc exit="east" move="east" destination="32" />
<arc exit="northwest" move="northwest" destination="35" />
</node>
<node id="37" name="Ker'Leor, Seordav Telga" color="#008000">
<description>The mountains can be sensed, a looming presence beyond the treetops. Branches stretch and intertwine far above, impeding a clear view of anything beyond the forest.</description>
<position x="-60" y="20" z="0" />
<arc exit="east" move="east" destination="31" />
<arc exit="northwest" move="northwest" destination="38" />
</node>
<node id="38" name="Ker'Leor, Seordav Telga" color="#008000">
<description>A glint of gold within the striated bark of an oak among the pines catches the light. Half-covered by the tree's bark, the glint reveals itself as a gold bracelet whose delicate carvings are worn with age and exposure. The bracelet grows out of the trunk just a few hands from the ground, but no wound in the tree shows how the bracelet came to be imbedded there.</description>
<position x="-80" y="0" z="0" />
<arc exit="northeast" move="northeast" destination="39" />
<arc exit="southeast" move="southeast" destination="37" />
</node>
<node id="39" name="Ker'Leor, Seordav Telga" color="#008000">
<description>Still and black and silent, the forest presses in along the path. Although nothing rustles in the bramble bushes that skirt the trees, and there is hardly a breeze to be felt, there is a presence in these woods with you. The tree trunks are limned with moss that makes them stand in sharper contrast with each other while at the same time blurring the edges between the ranks.</description>
<position x="-60" y="-20" z="0" />
<arc exit="north" move="north" destination="40" />
<arc exit="southwest" move="southwest" destination="38" />
<arc exit="northwest" move="northwest" destination="41" />
</node>
<node id="40" name="Ker'Leor, Seordav Telga" color="#008000">
<description>The path ends abruptly, a wall of brambles entwined with the tree trunks closing in on the pine-needled trail. To the north the trees seem to thin, but there must be another route around, as the forest here will not give way. The everpresent mist roils about the brambles, shifting and disorienting, tickling around the ground then drifting away.</description>
<position x="-60" y="-40" z="0" />
<arc exit="south" move="south" destination="39" />
</node>
<node id="41" name="Ker'Leor, Seordav Telga" color="#008000">
<description>The path ends abruptly, a wall of brambles entwined with the tree trunks closing in on the pine-needled trail. To the north the trees seem to thin, but there must be another route around, as the forest here will not give way. The top supports of a ladder peek from a slight depression in the ground, but the bottom of the ladder is invisible in the darkness below.</description>
<position x="-80" y="-40" z="0" />
<arc exit="southeast" move="southeast" destination="39" />
<arc exit="climb" move="climb ladder" destination="52" />
</node>
<node id="42" name="Ker'Leor, Kolfur Bog">
<description>A wall of brambles guards the top of a steep bank that drops westerly and sinks into the bog. The colors in the bog are brilliant -- red, yellow, orange, and green moss, small red flowers, bright yellow plants -- but something sickly lies underneath. From here nothing more definite can be seen, yet the sense of wrongness rises from the fecund ground like a mist.</description>
<position x="-100" y="0" z="0" />
<arc exit="southwest" move="southwest" destination="43" />
<arc exit="northwest" move="northwest" destination="50" />
<arc exit="go" move="go gap" destination="35" />
</node>
<node id="43" name="Ker'Leor, Kolfur Bog">
<description>Grey shapes flit among the standing, blighted tree trunks, moving with a steady purpose. They dig at the ground with rhythmic thuds, then pick something up and vanish into the mist with it. The figures seem not to notice the folk treading in the bog as they continue blankly doing their tasks.</description>
<position x="-160" y="20" z="0" />
<arc exit="northeast" move="northeast" destination="42" />
<arc exit="northwest" move="northwest" destination="44" />
</node>
<node id="44" name="Ker'Leor, Kolfur Bog">
<description>The ground quakes with every carefully placed step over the soft peat. Moss lies in a thin layer over earth and water, making it hard to discern where solid ground stands. The moss squelches underfoot, sodden with the water and decaying plants -- and other decaying things -- of the bog.</description>
<position x="-180" y="0" z="0" />
<arc exit="north" move="north" destination="45" />
<arc exit="southeast" move="southeast" destination="43" />
</node>
<node id="45" name="Ker'Leor, Kolfur Bog">
<description>The sky can be glimpsed through the tangled, dead branches of the sodden trees standing sentinel in the boggy ground. To the north, the mountains rise like sithannik backs, while close by the path northwards lies a pool of murky water. The reek of decaying things belches from the pool when its contents settle and air bubbles burst on the surface.</description>
<position x="-180" y="-20" z="0" />
<arc exit="south" move="south" destination="44" />
<arc exit="west" move="west" destination="46" />
</node>
<node id="46" name="Ker'Leor, Kolfur Bog">
<description>Like a sodden rag, the taste of the foul air lashes at you as you pass alongside the murky pool. A small overflow meanders out of sight to the west, carrying indescribable bits of black with it. The rill is hardly a hand wide but cuts deep through the moss and muck, which tremble under each footstep.</description>
<position x="-200" y="-20" z="0" />
<arc exit="north" move="north" destination="47" />
<arc exit="east" move="east" destination="45" />
</node>
<node id="47" name="Ker'Leor, Kolfur Bog">
<description>An odd group of plants, their green stems topped by bright yellow pitcher-shaped flowers, grows in a circle around a rotting stump that rises through the brown and red moss. A sickly-sweet smell from the plants overtakes the underlying scent of rot. The sluggish water of the rill trickles to the south, while a buzzing of flying insects sounds much closer.</description>
<position x="-200" y="-40" z="0" />
<arc exit="northeast" move="northeast" destination="48" />
<arc exit="south" move="south" destination="46" />
</node>
<node id="48" name="Ker'Leor, Kolfur Bog">
<description>Stones, piled one atop the other in a sort of pyramid, inscribe a circle on the ground, which is more dirt than water in this area. Within the circle is a set of stone stairs that leads down into the darkness of what might be a tunnel. The muck is kept at bay here with more stones set as though pressed against the sides of a well. Beside the stairs is a flat granite marker.</description>
<position x="-180" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="51" />
<arc exit="southeast" move="southeast" destination="49" />
<arc exit="southwest" move="southwest" destination="47" />
<arc exit="climb" move="climb stairs" destination="186" />
</node>
<node id="49" name="Ker'Leor, Kolfur Bog">
<description>The hint of path that you follow edges around a slime-covered pool only distinguished from the muck underfoot by a crop of water lilies struggling to stay afloat. Intermingled with the sickly green leaves are strange fish, shadows under the shadowed water.</description>
<position x="-160" y="-40" z="0" />
<arc exit="south" move="south" destination="50" />
<arc exit="northwest" move="northwest" destination="48" />
</node>
<node id="50" name="Ker'Leor, Kolfur Bog">
<description>Blighted pine trees, drowned in the bog, rise as pickets through the moss. Clusters of sundew flowers, their sticky petals ready to trap unwary insects, gather at the bases of the trees and spread across the moss like pools of blood. An unmoving sparrow perches on a dead pine branch, staring at the amber sap oozing across its claws.</description>
<position x="-160" y="-20" z="0" />
<arc exit="north" move="north" destination="49" />
<arc exit="southeast" move="southeast" destination="42" />
</node>
<node id="51" name="Ker'Leor, Kolfur Bog">
<description>The ground turns firmer, the peat with just a little give underfoot. Brown moss creeps over stones toward moisture cupped in the hollows. A copse of trees stands silent to the east, beckoning toward its hidden depths. The gloom hovers over the copse, and breezes from the bog have little effect on the murk.</description>
<position x="-160" y="-80" z="0" />
<arc exit="southwest" move="southwest" destination="48" />
<arc exit="go" move="go copse" destination="209" />
</node>
<node id="52" name="Haleer Lyba, Filtimor">
<description>Rough earthen walls crawl with lichen, mushrooms, and other slimy things that do not bear investigation. The ground at the base of the ladder is a layer of mud and dead pine needles, with a few small bones near the walls. The room seems more like an oubliette than a tunnel.</description>
<position x="-100" y="-60" z="0" />
<arc exit="climb" move="climb ladder" destination="41" />
</node>
<node id="53" name="Theren Road" note="Map40_Langenfirth_to_Therenborough.xml|Therenborough|Langenfirth">
<description>Dust kicks up in swirls among the brambles which accent the exterior of Therenborough. A straight, flat road runs due west from the thorny corridor created by the break between mortared stone and resident flora. Ker'Leor, the majestic mountain range which some believe to be enchanted, rises like jagged teeth across the northwest horizon. From the wall which rises nearby comes the cacophony of civilization.</description>
<description>Your journey along the road leading west to Ker'Leor continues.</description>
<position x="120" y="180" z="0" />
<arc exit="west" move="rt west" destination="2" />
<arc exit="go" move="go wall" />
</node>
<node id="54" name="Ker'Leor, Ascent">
<description>A smattering of massive boulders litters a narrow trench of dried riverbed which cuts through Ker'Leor's ancient, pastel stone. Blue-grey dust swirls with the breeze, like chalk painting itself across the exposed rock. The air crackles with energy and smells slightly sulfuric.</description>
<position x="80" y="-240" z="0" />
<arc exit="up" move="up" destination="55" />
<arc exit="climb" move="climb rocky path" destination="29" />
</node>
<node id="55" name="Ker'Leor, Ascent">
<description>Heat bounces back and forth between the steep sides of rock which sculpt the ravine. Sky, rock and path converge in one continuous blackness which gives no sign of ending. Only the barest of light pierces the depths of the rocky walls.</description>
<description>Heat bounces back and forth between the steep sides of rock which sculpt the ravine. Sky, rock and path converge in one continuous blackness which gives no sign of ending.</description>
<position x="100" y="-260" z="0" />
<arc exit="up" move="up" destination="56" />
<arc exit="down" move="down" destination="54" />
</node>
<node id="56" name="Ker'Leor, Ascent">
<description>The walls of the ravine encroach the narrow trail as if to suffocate it. Seeds from dried shrubs blow hither and yon, their tough silvery husks glinting now and again in the subdued light.</description>
<position x="80" y="-260" z="0" />
<arc exit="up" move="up" destination="57" />
<arc exit="down" move="down" destination="55" />
</node>
<node id="57" name="Ker'Leor, Ascent">
<description>Sharply jagged rocks jut from the otherwise smooth surface of the ravine walls like a series of knives. The path climbs ever higher and higher, seeming to reach to the clouds themselves.</description>
<position x="80" y="-280" z="0" />
<arc exit="up" move="up" destination="58" />
<arc exit="down" move="down" destination="56" />
</node>
<node id="58" name="Ker'Leor, Ascent">
<description>A slightly wider pocket in the otherwise narrow passageway lends some breathing space. Greyish, hardened wood looks suspiciously like fossilized tree stumps conveniently supplied as seating for travelers.</description>
<position x="100" y="-280" z="0" />
<arc exit="up" move="up" destination="59" />
<arc exit="down" move="down" destination="57" />
</node>
<node id="59" name="Ker'Leor, Ascent">
<description>Sharply converging from two directions, a steep gulch cuts through the mountains. On either side of a high, flat ridge, dried pathways carved by a long-gone, meandering river showcase strata of colorful soils compacted over a millenium. Blue-grey dust swirls with the wind.</description>
<position x="100" y="-300" z="0" />
<arc exit="northeast" move="northeast" destination="73" />
<arc exit="northwest" move="northwest" destination="60" />
<arc exit="down" move="down" destination="58" />
</node>
<node id="60" name="Ker'Leor, Valner's Gulch">
<description>Bands of soil as old as Elanthia reveal themselves along the smooth, deep-cut gulch. Some greenery struggles in fissures and on outcrops, but mostly the area is flavored by pebbles, boulders and dust.</description>
<position x="80" y="-320" z="0" />
<arc exit="southeast" move="southeast" destination="59" />
<arc exit="northwest" move="northwest" destination="61" />
</node>
<node id="61" name="Ker'Leor, Valner's Gulch">
<description>A pocket of bright orange dirt tinged with a metallic substance peeks out from beneath a series of blackish stones. A slightly sulfuric odor tickles the nostrils, pausing with the passing of a strong gust of wind.</description>
<position x="60" y="-340" z="0" />
<arc exit="north" move="north" destination="62" />
<arc exit="southeast" move="southeast" destination="60" />
</node>
<node id="62" name="Ker'Leor, Valner's Gulch">
<description>The walls of the gulch rise steeply, their smooth texture interspersed with the occasional pock created by rockfall. Large chunks of pressurized soil have fallen onto the ground, creating a decidedly pastel environment. As the gulch inclines to the north, it becomes noticeably drab.</description>
<position x="60" y="-360" z="0" />
<arc exit="north" move="north" destination="63" />
<arc exit="south" move="south" destination="61" />
<arc exit="climb" move="climb wall" destination="76" />
</node>
<node id="63" name="Ker'Leor, Valner's Gulch">
<description>Huge boulders make for difficult travel over the sloping terrain. Several hearty shrubs cling tenaciously to dry surfaces, their greenery shrouded by a thin coating of the ever-present dust.</description>
<position x="60" y="-420" z="0" />
<arc exit="south" move="south" destination="62" />
<arc exit="northwest" move="northwest" destination="64" />
</node>
<node id="64" name="Ker'Leor, Valner's Gulch">
<description>High walls to either side of you create a tunnel of shadow through which to pass. The coolness accentuates an unexpected moisture in the air, as if a fine mist were rolling through the area. Looking upward, one can glimpse the sunlight which glazes the topmost area of the gulch.</description>
<description>High walls to either side of you are indistinguishable from the night sky. The coolness accentuates an unexpected moisture in the air, as if a fine mist were rolling through the area. Looking upward, one can glimpse a snakelike alley of stars above the gulch.</description>
<position x="40" y="-440" z="0" />
<arc exit="northeast" move="northeast" destination="65" />
<arc exit="southeast" move="southeast" destination="63" />
<arc exit="climb" move="climb wall" destination="77" />
</node>
<node id="65" name="Ker'Leor, Valner's Gulch">
<description>A handful of brilliant sunset hues peek out from the lower portions of the gulch walls, while higher up, the soil grows dark brown, then black, then grey. Sharp crags of shale, raked by relentless winds, have eroded into little terraces upon which plants struggle to survive.</description>
<position x="60" y="-460" z="0" />
<arc exit="northeast" move="northeast" destination="66" />
<arc exit="southwest" move="southwest" destination="64" />
</node>
<node id="66" name="Ker'Leor, Valner's Gulch">
<description>Pulverized rock strewn along the pathway is colored in soft shades, muted by the ever-present dust. A tiny tree is perched here and there on the walls of the gulch, struggling to grow in spite of the lack of viable soil. Their roots, dangling like twisted wire, search the air for the smallest trace of moisture.</description>
<position x="80" y="-480" z="0" />
<arc exit="northeast" move="northeast" destination="67" />
<arc exit="southwest" move="southwest" destination="65" />
</node>
<node id="67" name="Ker'Leor, Valner's Gulch">
<description>The high regions of Ker'Leor dominate the northern gulch, rising steep and forbidding against the sky. The gulch takes a quick turn, bathed in blue-grey and peppered with shrubs. At the pinnacle of the turn rises a natural trail which meanders up a weathered plateau.</description>
<position x="100" y="-500" z="0" />
<arc exit="east" move="east" destination="68" />
<arc exit="southwest" move="southwest" destination="66" />
<arc exit="up" move="up" destination="78" />
</node>
<node id="68" name="Ker'Leor, Valner's Gulch">
<description>A trickle of water seeps from a reddish ribbon of soil low on the gulch's eastern wall. It barely darkens the dusty topsoil before evaporating. A lone tree stump, turned on its end, lies at the side of the pebbled pathway.</description>
<position x="160" y="-500" z="0" />
<arc exit="south" move="south" destination="69" />
<arc exit="west" move="west" destination="67" />
<arc exit="climb" move="climb wall" destination="79" />
</node>
<node id="69" name="Ker'Leor, Valner's Gulch">
<description>Dense stands of dried shrubs lend their brittle accent to the parched earthen alley. A section of nearby wall is veined with downward-facing grooves, as if fingers of water had once worked their way toward the path.</description>
<position x="160" y="-420" z="0" />
<arc exit="north" move="north" destination="68" />
<arc exit="southwest" move="southwest" destination="70" />
<arc exit="climb" move="climb wall" destination="204" />
</node>
<node id="70" name="Ker'Leor, Valner's Gulch">
<description>The ground is pitted with deep holes where boulders once sat within silt. All that are left of these monoliths, however, are stones about the size of human fists. A few dead leaves litter the path.</description>
<position x="140" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="69" />
<arc exit="southeast" move="southeast" destination="71" />
<arc exit="climb" move="climb rocky path" destination="80" />
</node>
<node id="71" name="Ker'Leor, Valner's Gulch">
<description>A sharp curve in the western wall of the gulch traps a mound of greyish dust against colorful ribbons of ancient soil. A great furrow in the path is strewn with tiny, rounded stones.</description>
<position x="160" y="-380" z="0" />
<arc exit="south" move="south" destination="72" />
<arc exit="northwest" move="northwest" destination="70" />
<arc exit="up" move="up" destination="74" />
</node>
<node id="72" name="Ker'Leor, Valner's Gulch">
<description>An up-ended bench sticks partially from the soil, utterly out of place in this barren stretch of land. The occasional stone catches your eye, with shapes that seem suspiciously man-made.</description>
<position x="160" y="-360" z="0" />
<arc exit="north" move="north" destination="71" />
<arc exit="southwest" move="southwest" destination="73" />
</node>
<node id="73" name="Ker'Leor, Valner's Gulch">
<description>The eastern wall of the gulch rises sharply, formed by a ledge which abuts the still-higher mountains of Ker'Leor. Barely visible in the craggy heights above, the towers of a mountain keep are ringed by clouds and stone.</description>
<position x="120" y="-320" z="0" />
<arc exit="northeast" move="northeast" destination="72" />
<arc exit="southwest" move="southwest" destination="59" />
</node>
<node id="74" name="Ker'Leor, Handsome Plateau">
<description>A deep trough splits this weathered edge of plateau, creating a furrow which dips into the gulch below. The trees that ring the area thin out, leaving a dusty surface void of vegetation.</description>
<position x="120" y="-380" z="0" />
<arc exit="south" move="south" destination="75" />
<arc exit="northwest" move="northwest" destination="76" />
<arc exit="down" move="down" destination="71" />
</node>
<node id="75" name="Ker'Leor, Handsome Plateau">
<description>Stripes of deep blue soil traverse exposed brown bedrock. A great, lone pine juts from its deadened surroundings like a razor ripping the sky. Its deep green color can almost be felt as much as seen.</description>
<position x="120" y="-360" z="0" />
<arc exit="north" move="north" destination="74" />
</node>
<node id="76" name="Ker'Leor, Handsome Plateau">
<description>A jagged edge of cliff rains pebbles into the gulch which encircles the plateau. Branches laden with grape-like fruit bow toward the ground, dipping and dancing with each gust of wind. A smattering of dirdel carpets the area between the trees.</description>
<position x="100" y="-420" z="0" />
<arc exit="north" move="north" destination="77" />
<arc exit="east" move="east" destination="204" />
<arc exit="southeast" move="southeast" destination="74" />
<arc exit="climb" move="climb cliff" destination="62" />
</node>
<node id="77" name="Ker'Leor, Handsome Plateau">
<description>Trees give way to small tufts of grass and pockets of bright yellow dirdel. A tumbleweed leans against the trunk of a spreading oak, teetering once in a while as if attempting to get past. The greyish soil is dotted with some crystalline substance which gives off a slightly metallic odor.</description>
<position x="100" y="-440" z="0" />
<arc exit="north" move="north" destination="78" />
<arc exit="northeast" move="northeast" destination="79" />
<arc exit="southeast" move="southeast" destination="204" />
<arc exit="south" move="south" destination="76" />
<arc exit="climb" move="climb wall" destination="64" />
<arc exit="go" move="go crackling ring" destination="225" />
</node>
<node id="78" name="Ker'Leor, Handsome Plateau">
<description>A grouping of flowering trees in various stages of bloom struggle to look respectable against the bluish-grey dirt which covers everything. Now and again a pine pierces the sky like an inverted exclamation point. Great boulders rest along the edge of the plateau, threatening to tumble toward the dusty gulch.</description>
<position x="100" y="-480" z="0" />
<arc exit="east" move="east" destination="79" />
<arc exit="south" move="south" destination="77" />
<arc exit="down" move="down" destination="67" />
</node>
<node id="79" name="Ker'Leor, Handsome Plateau">
<description>Tall grass, brittle and straw-like for the most part, waves in a soft wind. Bordered by trees on either side, the clearing is open to the sky above. A small portion of ground is darkened by a hint of water.</description>
<position x="140" y="-480" z="0" />
<arc exit="southwest" move="southwest" destination="77" />
<arc exit="west" move="west" destination="78" />
<arc exit="climb" move="climb wall" destination="68" />
</node>
<node id="80" name="Ker'Leor, Regnan's Trail">
<description>A deep furrow cut along the eastern edge of the gulch provides passage upward. Exposed roots, desperately breaking through the dry earth in search of water, provide tenuous support on the steep incline. The trail upward is blocked by large boulders from a recent rockslide, barring passage for all.</description>
<position x="260" y="-400" z="0" />
<arc exit="climb" move="climb stone ramp" destination="81" />
<arc exit="climb" move="climb rocky path" destination="70" />
</node>
<node id="81" name="Ker'Leor, Regnan's Trail">
<description>A wide canyon opens up ahead, the jagged path dropping off into nothingness. Along the edge of the cliff grow scraggly vines and plants, in deep green and pale violet colors, clinging to the drab brown rocks of the mountain. Far from the bottom of the ravine rise the sounds of the quarry -- stone grinding and the hollow echo of metal picks and chisels hammering against rock. A narrow steel bridge stretches across the ravine, and a large granite keep can be seen on the other side.</description>
<position x="260" y="-560" z="0" />
<arc exit="down" move="down" destination="80" />
<arc exit="go" move="go steel bridge" destination="82" />
</node>
<node id="82" name="Ker'Leor, Regnan's Trail">
<description>Harsh canyon winds buffet the bridge of strong and sturdy steel. Even in the midst of the fierce attack, the bridge neither shakes nor creaks. Misty clouds swirl about the walkway in a dizzying display, though a chest-high handrail aids in preventing travelers from falling to their deaths below. From this section of the bridge, the rough granite walls and towers of the keep loom overhead, and crouching gargoyles are barely visible at the staggering heights of their perches, obscured by cloaks of cloud.</description>
<position x="240" y="-560" z="0" />
<arc exit="east" move="east" destination="81" />
<arc exit="west" move="west" destination="83" />
</node>
<node id="83" name="Ker'Leor, Regnan's Trail">
<description>Spindly brown iffithyl bushes are scattered about the western side of the ravine, and thorny vines have wrapped themselves about the steel bridge and the handrail. Dirt from the ground to the west has been blown across the surface of the bridge, granting the keep's approach a less than shiny appearance. The decorative gargoyles hunched above seem ready to pounce down upon those encroaching on their territory.</description>
<position x="220" y="-560" z="0" />
<arc exit="east" move="east" destination="82" />
<arc exit="west" move="west" destination="84" />
</node>
<node id="84" name="Outside the Fornsted Walls">
<description>Massive walls of grey granite surge up from the barren earth here, their surface breached by a slim gate of iron bars, currently raised, which leads within. Clustered about the gate are several sentries garbed in blue and gold tabards. Beyond the gate, steep towers and a dusty road are partially visible. Occasionally, the soldiers stop a trader to search for illegal cargo.</description>
<position x="200" y="-560" z="0" />
<arc exit="go" move="go gate" destination="85" />
<arc exit="go" move="go steel bridge" destination="83" />
</node>
<node id="85" name="Fornsted, Arnshal Thoroughfare" note="Tanner|Furrier">
<description>Small, quaint houses clutter a wide dirt road, the practical lodgings densely packed together to conserve space. The dusty street leads westward to an imposing fortress, the only feasible gateway through the mountain pass. The north side of the street is occupied by a large lumber building. Wooden ladders flanking the gate lead to battlements atop the walls surrounding the village.</description>
<position x="180" y="-560" z="0" />
<arc exit="west" move="west" destination="91" />
<arc exit="go" move="go gate" destination="84" />
<arc exit="go" move="go pavilion" destination="86" />
<arc exit="climb" move="climb left ladder" destination="89" />
<arc exit="climb" move="climb right ladder" destination="90" />
</node>
<node id="86" name="Fornsted, Pavilion Center">
<description>Weathered hides have been expertly stitched together and stretched between strong wooden poles to form the walls of the pavilion. Various provisions and supplies are stowed here in wooden crates neatly arranged along the rear wall. Workers dressed in finely cured leathers busily load and unload new shipments.</description>
<position x="160" y="-600" z="0" />
<arc exit="north" move="north" destination="88" />
<arc exit="west" move="west" destination="87" />
<arc exit="out" move="out" destination="85" />
</node>
<node id="87" name="Fornsted, Pavilion Outpost" note="Gem Seller" color="#00FF00">
<description>A large wooden desk looks strangely out of place on the cobbled floor. Small tufts of grass struggle to sprout between the stones in the less trafficked corners. A Dwarven clerk stands at the desk, busily recording inventory and shipments in several ledgers stacked about him. The commerce minister is stationed within eyeshot of both the clerks and workers.</description>
<position x="140" y="-600" z="0" />
<arc exit="east" move="east" destination="86" />
</node>
<node id="88" name="Fornsted, Pavilion Tannery" note="Kisosa|Tannery|Furrier" color="#00FF00">
<description>Preserved hides of large creatures, complete with long claws and pointed teeth, have been nailed to boards and hung about as trophies or perhaps as a testament of the tanner's skill. The scent of fresh hides being cured by strong chemicals permeates the room. A large high-backed leather chair sits before a dark-stained worktable littered with various tools of the trade. A rack of sharp tools stands next to a grindstone in the far corner.</description>
<position x="160" y="-620" z="0" />
<arc exit="south" move="south" destination="86" />
</node>
<node id="89" name="Fornsted, Wall">
<description>On the stone walls surrounding Fornsted village and the keep, the surrounding areas are clearly visible. A looking glass is mounted upon a pedestal, pointed to the east. Rough slits are carved in the surface of the wall, allowing crossbows to be aimed below.</description>
<position x="180" y="-580" z="0" />
<arc exit="climb" move="climb ladder" destination="85" />
</node>
<node id="90" name="Fornsted, Wall">
<description>A massive iron cauldron rests on the walkway, a dangerous weapon in times of battle when filled with boiling oil or water. A pedestal facing southwest contains a metal scope allowing the soldiers of the keep to survey the landscape.</description>
<position x="200" y="-580" z="0" />
<arc exit="climb" move="climb ladder" destination="85" />
</node>
<node id="91" name="Fornsted, Arnshal Thoroughfare">
<description>A giant pair of wooden doors serves as the primary entrance to the keep which dominates the tiny village of quarriers, trappers, and traders. The dull and drab grey of the granite is marred by two brilliant banners hanging on either side of the doors, one bearing the rearing blue and gold banner of House Theren, the other bearing the crest of the lord currently residing in the keep. The street is packed with small houses, purely utilitarian in nature.</description>
<position x="160" y="-560" z="0" />
<arc exit="east" move="east" destination="85" />
<arc exit="southwest" move="southwest" destination="93" />
<arc exit="northwest" move="northwest" destination="92" />
<arc exit="go" move="go wooden doors" destination="94" />
</node>
<node id="92" name="Fornsted, Dust Path">
<description>A large lodge extends from the granite keep, surrounded by a spiked wooden fence and containing a dirt courtyard for soldiers to practice in. Across from the Therengian garrison house stands a ramshackle building frequented by dust-cloaked and burly workers carrying picks and mattocks.</description>
<position x="140" y="-580" z="0" />
<arc exit="southeast" move="southeast" destination="91" />
</node>
<node id="93" name="Fornsted, Dust Path">
<description>The dusty roadway of the village stops before a rustic cabin. Elegantly carved into the surface of the chapel door are the images of a cobra and a lion to symbolize the local deities. Behind a whitewashed picket fence outside the chapel is a tiny herb garden, lovingly tended to by the village's priests.</description>
<position x="140" y="-540" z="0" />
<arc exit="northeast" move="northeast" destination="91" />
<arc exit="go" move="go rustic cabin" destination="205" />
</node>
<node id="94" name="Arnshal Keep, First Floor">
<description>Dark ironwood doors lead from the stone keep to the village outside. The bland granite walls of the keep are brought to life by fulgent color in thick wool tapestries. Silver candelabra lining a long corridor breathe warmth and light into the cold stone. To the north and south stand staircases leading to the other floors of the keep.</description>
<position x="80" y="-560" z="0" />
<arc exit="north" move="north" destination="97" />
<arc exit="south" move="south" destination="98" />
<arc exit="west" move="west" destination="95" />
<arc exit="go" move="go ironwood doors" destination="91" />
</node>
<node id="95" name="Arnshal Keep, First Floor">
<description>The main corridor, which stretches the length of the entire keep, is filled with bright silver candelabra and multihued tapestries. A small gateway, just large enough for a caravan to fit through, leads to a steep and winding path down the mountain outside.</description>
<position x="60" y="-560" z="0" />
<arc exit="east" move="east" destination="94" />
<arc exit="go" move="go alabaster arch" destination="96" />
<arc exit="go" move="go gateway" destination="103" />
</node>
<node id="96" name="Arnshal Keep, Great Hall">
<description>This cavernous chamber is filled with several rows of rectangular wooden tables and benches. A raised dais at the far back of the room looks over Arnshal's Great Hall and holds a smaller table where the lord, visiting dignitaries, and the chief advisors and staff feast. A blazing firepit warms the cold stone of the hall.</description>
<position x="40" y="-560" z="0" />
<arc exit="out" move="out" destination="95" />
</node>
<node id="97" name="Arnshal Keep, First Floor">
<description>The shadowy cracked stone of a downward spiraling stairway is barely lit by flickering torches held in bronze wall sconces. A vibrant blue tapestry depicts a pale cloaked man strung up on a gallows, while flame-wielding villagers surround him.</description>
<position x="80" y="-580" z="0" />
<arc exit="south" move="south" destination="94" />
<arc exit="climb" move="climb stairway" destination="101" />
</node>
<node id="98" name="Arnshal Keep, First Floor">
<description>Bright yellow and orange tapestries hang from the walls, between them a flaring torch held in place by a sconce. A thick oak door, locked with a heavy iron bar, leads to the armory and the food storehouses for the keep and the village beyond. A stone staircase ascends to the second floor.</description>
<position x="80" y="-540" z="0" />
<arc exit="north" move="north" destination="94" />
<arc exit="climb" move="climb stairway" destination="99" />
</node>
<node id="99" name="Arnshal Keep, Second Floor">
<description>This hallway is brightly lit, with royal blue and purple tapestries along the wall and golden candelabra casting their glow across everything. Fine oak doors partially obscured by red curtains serve as entrances to guest chambers which provide all the beauty and luxury possible in this isolated fortress.</description>
<position x="80" y="-520" z="0" />
<arc exit="east" move="east" destination="100" />
<arc exit="climb" move="climb stairway" destination="98" />
</node>
<node id="100" name="Arnshal Keep, Second Floor">
<description>The second floor corridor ends before a set of double oak doors, behind them the antechamber and bedroom of the keep's lord. Large suits of antique armor stand sentinel before the doorway, their brightly polished steel shields bearing the crest of their master, and their halberds threatening off all who would do him harm.</description>
<position x="100" y="-520" z="0" />
<arc exit="west" move="west" destination="99" />
</node>
<node id="101" name="Arnshal Keep, Lower Level">
<description>The walls in this dreary corridor are devoid of shining candelabra or radiant silk and woolen tapestries to brighten the lifeless stone. The wooden floor is notched and scraped and bears numerous stains of unidentifiable natures. Roughened doors of unpolished pinewood on either side of the hall lead to the quarters of the keep's servants. A single swath of red paint across one door marks the living space of the male servants, while a blue slash marks that of the females.</description>
<position x="80" y="-600" z="0" />
<arc exit="west" move="west" destination="102" />
<arc exit="climb" move="climb stairway" destination="97" />
</node>
<node id="102" name="Arnshal Keep, Lower Level">
<description>A slow and steady dripping of water can be heard from deep below, as another staircase, even more cracked and dirty than the first, leads further underground here. Joining the water in its nonstop symphony are the sounds of metal chains rattling against each other or the granite stone, and the sounds of booted footsteps pacing back and forth from the dungeon below.</description>
<position x="60" y="-600" z="0" />
<arc exit="east" move="east" destination="101" />
<arc exit="climb" move="climb stairway" destination="215" />
</node>
<node id="103" name="Arnshal Road, Keep Entrance">
<description>Grinning stone gargoyles perch eternally over a small gateway leading into the Keep. Each gargoyle clasps a long pole in its stone claws. From one pole hangs the banner of Therengia while the banner of the Keep's current ruler hangs from the other.</description>
<description>Grinning stone gargoyles perch eternally over a small gateway leading into the Keep. Each gargoyle clasps a long pole in its stone claws. From one pole hangs the banner of Therengia while the banner of the Keep's current ruler hangs from the other. Torches burn back the darkness, casting flickering shadows against the walls of the Keep.</description>
<position x="60" y="-540" z="0" />
<arc exit="west" move="west" destination="104" />
<arc exit="go" move="go small gateway" destination="95" />
</node>
<node id="104" name="Arnshal Road, Causeway">
<description>Guards in the brilliant blue and gold tabards of Therengia stand at ease, pikes held in a loose but ready grip. A steady stream of travelers moves in each direction under the watchful eyes of crossbowmen in the battlements.</description>
<description>Bright torches march into the night. Guards in the brilliant blue and gold tabards of Therengia keep a watchful eye on the shadows, pikes held in a loose but ready grip. Crossbowmen stand at intervals in the battlements ready to cover retreat into the Keep if needed.</description>
<position x="40" y="-540" z="0" />
<arc exit="west" move="west" destination="105" />
<arc exit="go" move="go stone causeway" destination="103" />
</node>
<node id="105" name="Arnshal Road, Mountain Meadow">
<description>At the southern end of the meadow two large boulders narrow the path where the road winds down into the forest. The road has been cleared of hazards, ensuring a clear view for the guards watching the approach to the Keep. On the north side of the road, a small pool mirrors the mighty trees surrounding the meadow.</description>
<description>At the southern end of the meadow two large boulders narrow the path where the road winds down into the forest. A small guardhouse is partially hidden in the deeper shadows of the largest boulder. Torchlight flickers off rows of loaded crossbows hanging in easy reach of the sentries. On the north side of the road, a small pool mirrors the torchlight.</description>
<position x="0" y="-540" z="0" />
<arc exit="east" move="east" destination="104" />
<arc exit="southwest" move="southwest" destination="106" />
</node>
<node id="106" name="Arnshal Road, Caravan Route">
<description>Scrubby bushes and small boulders clutter the edges of the road, ensuring travelers stay in the watchtowers' line of sight as they leave or approach the Keep. A small guardhouse is slightly hidden in the shadow of a large boulder. Lighter spots of gravel reveal recently filled potholes and ruts, proving that this close to civilization the route is well maintained.</description>
<description>Bushes and small boulders clutter the edges of the road, ensuring travelers stay in the watchtowers' line of sight as they leave or approach the Keep. The smooth even grade of the road shows that, this close to civilization, the route is well maintained. A small guardhouse is slightly hidden in the shadow of a large boulder.</description>
<position x="-20" y="-520" z="0" />
<arc exit="northeast" move="northeast" destination="105" />
<arc exit="southwest" move="southwest" destination="107" />
</node>
<node id="107" name="Arnshal Road, Caravan Route">
<description>A sweeping view down the mountain is available from this vantage point. To the northeast, the watchtowers of the Keep are barely visible. Further down the mountain, the road twists and turns like a tortured snake through the ancient forest. A shallow depression in the shadow of a large boulder hints that water was once available here.</description>
<description>A sweeping view down the mountain is available from this vantage point. Faint light from the Keep to the northeast casts odd flickering shadows into the night. Further down the mountain, the road twists and turns like a tortured snake through the ancient forest. A shallow depression in the shadow of a large boulder hints that water was once available here.</description>
<position x="-40" y="-500" z="0" />
<arc exit="northeast" move="northeast" destination="106" />
<arc exit="south" move="south" destination="108" />
</node>
<node id="108" name="Arnshal Road, Caravan Route">
<description>Bordered by towering trees that dapple the road with shadows, orderly rows of stones line the edge of the route, designating the proper path. A deep layer of leaves cushions the forest floor, masking any sound of forest dwellers and surrounding an immense boulder that leans precariously over the southern edge of the road.</description>
<description>Bordered by towering trees that deepen the shadows along the road, small boulders line the edge of the route, designating the proper path. A deep layer of leaves cushions the forest floor, masking any sound of forest dwellers and surrounding an immense boulder that leans precariously over the southern edge of the road.</description>
<position x="-40" y="-480" z="0" />
<arc exit="north" move="north" destination="107" />
<arc exit="south" move="south" destination="109" />
</node>
<node id="109" name="Arnshal Road, Caravan Route">
<description>Loose pebbles skitter away under each step, creating colorful showers of stones off the edge of the path. A virtual rainbow of colors can be seen in the variety of stone that makes up this area, offset by the muted greys and greens of the local shrubbery. Ancient elms and hoary oaks compete for space and sunlight.</description>
<description>Loose pebbles skitter away under each step. The night-darkened landscape is filled with oddly looming shadows. Ancient elms and hoary oaks claw at the night sky, competing for space against the firmament.</description>
<position x="-40" y="-460" z="0" />
<arc exit="north" move="north" destination="108" />
<arc exit="south" move="south" destination="110" />
</node>
<node id="110" name="Arnshal Road, Caravan Route">
<description>The road continues its winding route down the mountain. Large boulders, stacked one atop another as if placed there for some purpose, march side by side with mighty trees. Smaller trees and scattered shrubs take up positions along the edge of the road. A gnarled and bent oak, a lonely sentinel, guards a gap in the stones as if guarding the gate to a keep.</description>
<description>The road continues its winding route down the mountain. Large boulders, stacked one atop another as if placed there for some purpose, cast looming shadows into the night. Scattered trees and shrubs blend into the shadows, seeming to disappear into the night. A gnarled and bent oak, a lonely sentinel, casts a determined shadow over a gap in the stones as if guarding the gate to a keep.</description>
<position x="-40" y="-440" z="0" />
<arc exit="north" move="north" destination="109" />
<arc exit="southwest" move="southwest" destination="111" />
</node>
<node id="111" name="Arnshal Road, Caravan Route">
<description>The road gently curves around a huge stone column that may once have been part of some long ago edifice. Odd markings seem to be etched into the side of the stone, chiseled by some strange hand, or the sharp blade of the wind. Stately elms and oaks hold back the march of the forest, preventing it from overtaking the road.</description>
<description>The road gently curves around a huge stone column that may once have been part of some long ago edifice. Stately elms and oaks hold back the deeper darkness of the forest, preventing it from overtaking the road.</description>
<position x="-60" y="-420" z="0" />
<arc exit="northeast" move="northeast" destination="110" />
<arc exit="southwest" move="southwest" destination="112" />
</node>
<node id="112" name="Arnshal Road, Stone Column">
<description>A huge column of multi-hued stone dominates the view. Tumbled boulders on the opposite side of the road suggest it once was one of a pair, perhaps the gateway to a forgotten city. The wind and rain have erased any evidence of the column's origin.</description>
<description>A huge stone column looms in the darkness. Tumbled boulders on the opposite side of the road suggest it once was one of a pair, perhaps the gateway to a forgotten city. Eerie light issues from tiny patches of lichen covering the stones.</description>
<position x="-80" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="111" />
<arc exit="northwest" move="northwest" destination="113" />
</node>
<node id="113" name="Arnshal Road, Caravan Route">
<description>Forced to curve around a huge stone column, the route is jagged with smooth fragments of stone that rear up through the sand and pebbles to trip unwary feet, evidence that a road of some kind has been here for ages. Ancient forest giants march to the horizon, towering over low bushes malformed by the screeching wind, and thorny fingers reach out to catch at unwary travelers.</description>
<description>Forced to curve around a huge stone column, the route is jagged with smooth fragments of stone that rear up through the sand and pebbles to trip unwary feet, evidence that a road of some kind has been here for ages. Thorny bushes reach through the night to catch at unwary travelers.</description>
<position x="-100" y="-420" z="0" />
<arc exit="southeast" move="southeast" destination="112" />
<arc exit="northwest" move="northwest" destination="114" />
</node>
<node id="114" name="Arnshal Road, Caravan Route">
<description>To the south and east, the walls give way abruptly to flat, level ground. Striated bands of color spread ribbons of rainbows across the walls of the ravine. The path slopes steeply down to the north through the deep cut. Acres of mingled elms, aspens and oak stretch to the horizon, the road into the ravine the only possible path.</description>
<description>To the south and east, the walls give way abruptly to flat, level ground. The path slopes steeply down to the north through the deep cut. Acres of mingled elms, aspens and oak darken the road into the ravine the only possible path.</description>
<position x="-160" y="-440" z="0" />
<arc exit="north" move="north" destination="115" />
<arc exit="southeast" move="southeast" destination="113" />
</node>
<node id="115" name="Arnshal Road, Ravine">
<description>Steep walls lean in overhead, providing a touch of shade. A dry dusty scent permeates the air while seed puffs and dust motes dance in the breeze. Scrub oak trees cling tenaciously to the lip of the ravine, sending long tendrils of roots in quest of moisture.</description>
<description>Steep walls lean in overhead, deepening the darkness of the night. Oak leaves rustle against each other, creating a strangely compelling music competing with the soughing of the wind in the pines.</description>
<position x="-160" y="-460" z="0" />
<arc exit="north" move="north" destination="116" />
<arc exit="south" move="south" destination="114" />
</node>
<node id="116" name="Arnshal Road, Ravine">
<description>Patches of lichen and scrubby brush dot the walls, bravely clinging to life in this harsh landscape. Small boulders and multi-hued pebbles are strewn across the floor of the ravine looking like nothing more than a giant child's abandoned game of marbles. Noble aspens peer down on the path from their vantage on the edge of the cut.</description>
<position x="-160" y="-480" z="0" />
<arc exit="north" move="north" destination="117" />
<arc exit="south" move="south" destination="115" />
</node>
<node id="117" name="Arnshal Road, Ravine">
<description>Layers of pastel stone paint odd designs across the walls as if laid down by the brush of an artist with a fondness for patterns in wind-scoured rock. Shrubs and boulders near the road form sculptures of their own, adding to nature's composition. </description>
<description>Deep shadows within the ravine hide the beauty that can only be appreciated by day. The deep chill of the mountain night turns breath to fog that shrouds the trees and shrubs in ghostly costume. Odd sculptures of stone and brush add their own confusing shadows.</description>
<position x="-160" y="-500" z="0" />
<arc exit="north" move="north" destination="118" />
<arc exit="south" move="south" destination="116" />
</node>
<node id="118" name="Arnshal Road, Ravine">
<description>Sharp slivers of stone and tumbled boulders litter the floor of the ravine making travel dangerous. In odd harmony, glorious colors fan out across the walls, a sunset of stone frozen for eternity. Smooth patches underfoot reveal that this road was once paved, long before the roots of mighty forest giants began to break the stone.</description>
<description>Sharp slivers of stone and tumbled boulders trip unwary feet in the darkness. Smooth patches underfoot reveal that this road was once paved, long before the roots of mighty forest giants began to break the stone.</description>
<position x="-160" y="-520" z="0" />
<arc exit="south" move="south" destination="117" />
<arc exit="northwest" move="northwest" destination="119" />
</node>
<node id="119" name="Arnshal Road, Ravine">
<description>The ravine curves sharply to the north and south, blocking the view of the path in either direction. Thorny shrubs and pale patches of lichen are the only signs of life. Sculptures of stone decorate the road with odd shapes, vaguely reminiscent of animals and people though worn by wind and rain. A lone oak bends as if to examine nature's artwork.</description>
<description>The sharp turning of the ravine to the north and south blocks any light that may be cast by night travelers coming from those directions. The only sound is the sighing of the wind through the brush and the occasional call of a nightbird.</description>
<position x="-180" y="-540" z="0" />
<arc exit="southeast" move="southeast" destination="118" />
<arc exit="northwest" move="northwest" destination="120" />
</node>
<node id="120" name="Arnshal Road, Ravine">
<description>Striated bands of color spread ribbons of rainbows across the walls of the ravine as the walls to the north and east abruptly give way to level ground. The path slopes steeply down to the north through the deep cut. Acres of oak, aspen and elm trees stretch to the horizon, the road into the ravine the only possible path.</description>
<description>The darkness within the ravine walls is nearly impenetrable, broken only by the sound of stones that occasionally clatter down from somewhere above. To the north and east, the walls abruptly give way to level ground and the path slopes steeply down to the north through the deep cut. Acres of oak and aspen trees stretch to the horizon, the road into the ravine the only possible path.</description>
<position x="-200" y="-560" z="0" />
<arc exit="southeast" move="southeast" destination="119" />
<arc exit="west" move="west" destination="121" />
</node>
<node id="121" name="Arnshal Road, Caravan Route">
<description>The road enters a small clearing here, a convenient rest stop for weary travelers. Low boulders edging a patch of soft grass provide comfortable seating around a large, flat-top boulder, an ideal table for a roadside picnic. Off to one side, a stone well offers the possibility of a cooling sip of water.</description>
<description>The road enters a small clearing here, a convenient rest stop for weary travelers. Low boulders edging a patch of soft grass sit to either side of a large flat-top boulder, a safe backdrop to pitch a tent against. Night glowing lichen grows against rocks used to line the path to the well on one side of the clearing.</description>
<position x="-220" y="-560" z="0" />
<arc exit="east" move="east" destination="120" />
<arc exit="southwest" move="southwest" destination="122" />
</node>
<node id="122" name="Arnshal Road, Caravan Route">
<description>The road curves sharply to the north and south, though thickly growing trees and shrubs block the view of the path in either direction. Boulders are tumbled about the area, perhaps flung there by some long-ago flood. Colorful shrubs define the edge of the road.</description>
<description>The road curves sharply to the north and south, though thickly growing trees and shrubs block the view of the path in either direction. Boulders are tumbled about the area, perhaps flung there by some long-ago flood. Barely visible in night's dark cloak, tangled shrubs define the edge of the road.</description>
<position x="-240" y="-540" z="0" />
<arc exit="northeast" move="northeast" destination="121" />
<arc exit="southwest" move="southwest" destination="123" />
</node>
<node id="123" name="Arnshal Road, Caravan Route">
<description>Colorful flowering shrubs offset the soft shadows under the trees. Along the dark earth, a cascade of red peonies flows in a bright stream punctuated by cataracts of blue gentians breaking against small boulders strewn under the trees. The scent of wild honey carries on the breeze.</description>
<description>The scent of wild honey carries on the night breeze. Deeper shadows beneath the trees mark the presence of bushes and stones, their forms softened by darkness. Stately forest giants rest peacefully against the darkened sky.</description>
<position x="-260" y="-520" z="0" />
<arc exit="northeast" move="northeast" destination="122" />
<arc exit="south" move="south" destination="124" />
</node>
<node id="124" name="Arnshal Road, Caravan Route">
<description>Squared off boulders lay in a jumbled heap on the west side of the road, along the banks of a dry streambed. Bundles of limbs and twigs entwined in vines and moss lay scattered amid the mess. To the east, more boulders are stacked in a seemingly random pattern. One scraggly aspen guards a gap in the stones.</description>
<description>Squared off boulders lay in a jumbled heap on the west side of the road, along the banks of a dry streambed. To the east, more boulders are stacked in a seemingly random pattern. One scraggly aspen casts a guarding shadow across a gap in the stones.</description>
<position x="-260" y="-500" z="0" />
<arc exit="north" move="north" destination="123" />
<arc exit="south" move="south" destination="125" />
</node>
<node id="125" name="Arnshal Road, Caravan Route">
<description>Layers of weathered stone, laid bare by wind and rain, display broad bands of color spread out across the face of the mountain. The roots of mighty trees have broken the stone into pastel rainbows of dirt and sand, and occasional flowers dot the landscape with brighter hues than the faded stone can muster.</description>
<description>Layers of weathered stone, laid bare by wind and rain, display moon-silvered striations spread out across the face of the mountain. The roots of mighty trees have broken the stone into a jumble of dirt and sand dotted with the forms of flowers slumbering through the night.</description>
<position x="-260" y="-480" z="0" />
<arc exit="north" move="north" destination="124" />
<arc exit="south" move="south" destination="126" />
</node>
<node id="126" name="Arnshal Road, Caravan Route">
<description>Myriad shrubs and rock create elaborate formations against the backdrop of elms, aspens and oak that dominate the forest. A mountain daisy bobs its head to the rhythm of the wind blowing down from the heights. One ancient oak bends in silent supplication to the earth, its spine bowed by the weight of years.</description>
<description>Myriad shrubs and rock create elaborate shadows against the backdrop of elms, aspens and oak that dominate the forest. A mountain daisy, petals furled against the dark, bobs its head to the rhythm of the wind blowing down from the heights. One ancient oak bends in silent supplication to the earth, its spine bowed by the weight of years.</description>
<position x="-260" y="-460" z="0" />
<arc exit="north" move="north" destination="125" />
<arc exit="south" move="south" destination="127" />
</node>
<node id="127" name="Arnshal Road, Caravan Route">
<description>A deep carpet of leaves layers the forest floor, filling the air with a light, earthy scent. Enveloped in the consuming embrace of a flowering vine, a spindly oak that is almost bare of leaves seems to be slowly losing its battle against the invader.</description>
<description>A deep carpet of leaves layers the forest floor, filling the night air with a light, earthy scent. Enveloped in the consuming embrace of a flowering vine, a spindly oak that is almost bare of leaves seems to be slowly losing its battle against the invader.</description>
<position x="-260" y="-440" z="0" />
<arc exit="north" move="north" destination="126" />
<arc exit="southwest" move="southwest" destination="128" />
</node>
<node id="128" name="Arnshal Road, Caravan Route">
<description>Glorious color spreads out in an epic canvas of stones and shrubs. Multi-hued boulders dot the landscape, creating odd silhouettes. Muted greys and greens of low shrubs offset the brilliant colors of their flowers reaching out to the warmth and sun. Above and behind it all, towering elms, delicate aspens and stately oaks nod in bemused silence at the panorama.</description>
<description>Large boulders dot the dark landscape, creating odd patterns in the hues of the night. Looming shadows reveal themselves to be low shrubs and trees taking on weird dimensions in the darkness. Above and behind it all, towering elms, delicate aspens and stately oaks cast guardian shadows over the smaller flora.</description>
<position x="-280" y="-420" z="0" />
<arc exit="northeast" move="northeast" destination="127" />
<arc exit="northwest" move="northwest" destination="129" />
</node>
<node id="129" name="Arnshal Road, Caravan Route">
<description>Scattered amongst the boulders lining the route, brightly hued flowers compete with the trees for sun and rain, their cheerful displays of color flung randomly about as though designed by playful fae.</description>
<description>Scattered amongst the boulders lining the route, flowers slumber through the night, their cheerful displays of color tucked away in wait for the morning light. Trees loom in the darkness, and shadowed undergrowth sends tendrils snaking across the path to trip unwary travelers.</description>
<position x="-300" y="-440" z="0" />
<arc exit="southeast" move="southeast" destination="128" />
<arc exit="northwest" move="northwest" destination="130" />
</node>
<node id="130" name="Arnshal Road, Caravan Route">
<description>Rainbow flecked granite mingles with milky quartz where the roots of great trees have exposed the ancient foundation of the mountains. An assortment of colorful stones and low flowering shrubs blurs the line between the road and the forest. The forest spreads to the horizon on every side.</description>
<description>Jumbled rocks show where the roots of great trees have exposed the ancient foundation of the mountains. Stones and shrubs cast a smudge of shadow at the knees of ancient trees, blurring the edge where road meets forest. The deeper darkness of the forest spreads to the horizon on every side.</description>
<position x="-320" y="-460" z="0" />
<arc exit="southeast" move="southeast" destination="129" />
<arc exit="northwest" move="northwest" destination="131" />
</node>
<node id="131" name="Arnshal Road, Caravan Route">
<description>The vines of a rambling rose bush climb onto the knees of ancient oaks. Towering elms entwine their limbs in a long arc over the route. Deep moss dampens the sounds of the forest.</description>
<description>Day flowers tuck their petals in close for the night. Ancient oaks gather the vines of rambling roses into their spreading arms. Stately elms cast a blanket of shadow over the smaller flora.</description>
<position x="-340" y="-480" z="0" />
<arc exit="north" move="north" destination="132" />
<arc exit="southeast" move="southeast" destination="130" />
</node>
<node id="132" name="Arnshal Road, Caravan Route">
<description>The trees grow so close together that they appear engaged in whispered conversation. Brightly flowered shrubs reach toward the sky, trying to emulate their taller cousins. The rich scent of forest loam mingles with the sweet nectar of wild rambling roses.</description>
<description>Growing close together, elms, deobars and aspens cast an impenetrable shadow over the road. Low lying shrubs deepen the darkness at the base of the trees. The rich scent of forest loam mingles with the sweet nectar of wild rambling roses.</description>
<position x="-340" y="-500" z="0" />
<arc exit="north" move="north" destination="133" />
<arc exit="south" move="south" destination="131" />
</node>
<node id="133" name="Arnshal Road, Caravan Route">
<description>The branches high overhead create a leafy roof over the forest floor. Light filters down between the spaces in the leaves, creating pools of amber light on the vegetation below. Tumbled boulders show dully against the verdant green.</description>
<description>Branches overhead try to block out the light of the stars, creating a dark tunnel. In the few spaces between the branches, stars twinkle intermittently. Tumbled boulders are lighter patches against darkness.</description>
<position x="-340" y="-520" z="0" />
<arc exit="north" move="north" destination="134" />
<arc exit="south" move="south" destination="132" />
</node>
<node id="134" name="Arnshal Road, Caravan Route">
<description>Clinging tendrils of creeping vines entwine the trunks of ancient oaks and aspens. Beeches and birches mingle with the other trees in an obscure dance of nature. Leaves of past autumns blanket the forest floor with a green and brown carpet.</description>
<description>The intoxicating scent of night-blooming trumpet flowers reveals their presence. Beeches and birches mingle with the other trees in an obscure dance of nature. Night sounds are muffled by the leaves of past autumns carpeting the forest floor.</description>
<position x="-340" y="-540" z="0" />
<arc exit="south" move="south" destination="133" />
<arc exit="northwest" move="northwest" destination="135" />
</node>
<node id="135" name="Arnshal Road, Caravan Route">
<description>Wild rose bushes edge the road in a perfect line on either side as if purposefully placed there. An occasional thorny branch reaches out to snag travelers on the road. Smaller bushes space themselves out between the roses to fill in any gaps, forming a formidable barrier to what treasures may be hidden beyond the edge of the road.</description>
<description>The scent of wild roses drifts on the night breeze. An occasional thorny branch reaches out to snag travelers on the road. Rose bushes intertwine with smaller shrubs, a formidable barrier to what treasures may be hidden beyond the edge of the road.</description>
<position x="-360" y="-560" z="0" />
<arc exit="southeast" move="southeast" destination="134" />
<arc exit="northwest" move="northwest" destination="136" />
</node>
<node id="136" name="Arnshal Road, Caravan Route">
<description>Branches arc overhead to create a protective cover against the wind. Light flits down from gaps in the canopy, creating halos of light over the road. The trees press close to the hedges lining the road in an effort to find a break in their strength.</description>
<description>Branches arc overhead to create a protective cover against the wind. Gaps in the canopy afford an occasional glimpse of the night sky. The trees press close to the hedges lining the road in an effort to find a break in its strength.</description>
<position x="-380" y="-580" z="0" />
<arc exit="southeast" move="southeast" destination="135" />
<arc exit="southwest" move="southwest" destination="137" />
</node>
<node id="137" name="Arnshal Road, Caravan Route">
<description>Various flowering shrubs line the road, a colorful bonanza against the monotonous browns and greens of the forest. The rainbow hues dazzle the eye with a vibrant display. Farther along, shrubs fade into hedges of myrtle that screen the forest floor from view.</description>
<description>The dark forms of shrubs line the road. The sweet scent of nectar lingers in the night. Farther along, dark mountain shrubbery fades into the deeper shadows of hedges lining the road.</description>
<position x="-400" y="-560" z="0" />
<arc exit="northeast" move="northeast" destination="136" />
<arc exit="south" move="south" destination="138" />
</node>
<node id="138" name="Arnshal Road, Caravan Route">
<description>Hedges of myrtle line the road, attempting to keep the forest from taking the road back into its clutches. A rainbow of flowers sprouts from the hedges to offset the uniform color of the forest. Tree branches overhead close together to form a web of shade.</description>
<description>Dark hedges line the road, attempting to keep the forest from taking the road back into its clutches. Overhead, tree branches form a dark web against the night sky. Creeping tendrils reach out from the darkness to snag the unwary.</description>
<position x="-400" y="-540" z="0" />
<arc exit="north" move="north" destination="137" />
<arc exit="south" move="south" destination="139" />
</node>
<node id="139" name="Arnshal Road, Caravan Route">
<description>Colorful flowers parade next to the edges of the road. Majestic trees reach for the heavens, their branches striving to block out the light of day and providing cool shade. One large boulder leans through the shrub as if to fall onto the road.</description>
<description>Majestic trees reach for the heavens, their branches blocking out the night sky. One large boulder leans through the shrub as if to fall onto the road. Sweet scents hint at the beauty waiting to be revealed at the dawn.</description>
<position x="-400" y="-520" z="0" />
<arc exit="north" move="north" destination="138" />
<arc exit="south" move="south" destination="140" />
</node>
<node id="140" name="Arnshal Road, Caravan Route">
<description>The road cuts through the dense forest where overhanging branches form a leafy arc blocking out most of the light. Ladders of light climb to the heavens through gaps in the canopy. Scattered rocks and boulders create pools of stone in a sea of soft green moss.</description>
<description>The road cuts through the dense forest where overhanging branches form a leafy arc blocking out most of the night sky. Occasional stars twinkle through gaps in the canopy. Scattered rocks and boulders create pools of stone in a sea of soft green moss.</description>
<position x="-400" y="-500" z="0" />
<arc exit="north" move="north" destination="139" />
<arc exit="southwest" move="southwest" destination="141" />
</node>
<node id="141" name="Arnshal Road, Mountain Approach">
<description>Young saplings stretch toward the sky, trying to emulate their older, taller neighbors. The road snakes through the edge of the forest where the trees grudgingly admit they cannot overcome the rockier ground. Occasional small boulders dot the edge where road meets forest.</description>
<position x="-420" y="-480" z="0" />
<arc exit="northeast" move="northeast" destination="140" />
<arc exit="southwest" move="southwest" destination="142" />
</node>
<node id="142" name="Arnshal Road, Mountain Approach">
<description>Hard stony ground prevents the forest from encroaching further. An ash-filled fire ring to the side of the road marks the stopover spot of previous travelers. Logs and stumps have been pulled up for seating around the fire. A few paces back, smaller logs are stacked waiting to be burned.</description>
<description>Hard stony ground prevents the forest from encroaching further. The great dome of the night sky arcs overhead. An ash-filled fire ring to the side of the road marks the stopover spot of previous travelers. Logs and stumps have been pulled up for seating around the fire. A few paces back, smaller logs are stacked waiting to be burned.</description>
<position x="-440" y="-460" z="0" />
<arc exit="northeast" move="northeast" destination="141" />
<arc exit="west" move="west" destination="143" />
</node>
<node id="143" name="Arnshal Road, Mountain Approach">
<description>The forested land of the valley dies away quite a bit to the east, and the rocky ground sloping upward at this stretch of roadway affords a fine view of the sentinel-like trees. As the boulder-strewn path ascends the base of the mountains, large and encircling walls can be seen further west.</description>
<position x="-460" y="-460" z="0" />
<arc exit="east" move="east" destination="142" />
<arc exit="up" move="up" destination="144" />
</node>
<node id="144" name="Arnshal Road, Mountain Approach">
<description>The craggy heights of the Gemfire Mountains rise to epic proportions, dizzying any that would trail their eyes toward the tops of those peaks. A fine carpeting of rocks, brandishing colors of browns and greys, makes a slightly less decorative adornment than the blanket of soft and dewy green grass in the valley to the east.</description>
<position x="-460" y="-480" z="0" />
<arc exit="west" move="west" destination="145" />
<arc exit="down" move="down" destination="143" />
</node>
<node id="145" name="Arnshal Road, Mountain Approach">
<description>Under the watchful eye and protective arm of the towering mountains, a thick stone wall reclines here. A narrow gateway, its portcullis raised, emulates a tunnel as it cuts through the dense wall to allow passage. To the east, a rocky road leads down the sloping mountain approach.</description>
<position x="-480" y="-480" z="0" />
<arc exit="east" move="east" destination="144" />
<arc exit="go" move="go narrow gateway" destination="146" />
</node>
<node id="146" name="Hvaral, Gate">
<description>High, thick walls surround a fairly small, but still bustling, town. The solid rock walls are breached by a narrow gateway, wide enough for but a single caravan to pass. Surmounting the gateway is a row of iron bars, their tips lovingly adorned with spikes that bear the appearance of lethality -- though they are raised now, it seems they would be easily enough lowered when needed.</description>
<position x="-500" y="-480" z="0" />
<arc exit="west" move="west" destination="147" />
<arc exit="go" move="go narrow gateway" destination="145" />
</node>
<node id="147" name="Hvaral, Theren Street">
<description>While the roadway is scattered with small rock buildings, the predominant feature along this stretch of packed dirt road is a well-frequented wooden stablehouse, to which traverse mounts of a wide variety of breeds and sizes. To the south, the stable connects to an even larger hall, while the imposing, gargoyle-decored walls loom eastward.</description>
<position x="-520" y="-480" z="0" />
<arc exit="east" move="east" destination="146" />
<arc exit="south" move="south" destination="153" />
<arc exit="west" move="west" destination="148" />
</node>
<node id="148" name="Hvaral, Elbaeryn Square">
<description>This square, dutifully named after the house controlling this region, serves as a focal point of the town. A fountain, Hvaral's main gathering place, protrudes from the road to the west, while to the east stands the imposing gate and wall of the fortified town. The sky-touching keep stands proudly in the south, keeping watch over all and ready to protect.</description>
<position x="-560" y="-480" z="0" />
<arc exit="east" move="east" destination="147" />
<arc exit="southwest" move="southwest" destination="170" />
<arc exit="west" move="west" destination="149" />
<arc exit="northwest" move="northwest" destination="150" />
</node>
<node id="149" name="Hvaral, Theren Street">
<description>A meticulously crafted if somewhat garishly designed fountain looms just west of the square, combating the constant heat and dust-choked air. Obviously a pretension of the town's latest inhabitants, the Therengians have constructed a beast spewing forth water from the stone heads of a lion, a bull, and an eagle. Wooden benches also occupying the area indicate that this is a popular gathering spot for the town.</description>
<position x="-580" y="-480" z="0" />
<arc exit="east" move="east" destination="148" />
</node>
<node id="150" name="Hvaral, Merchant Row">
<description>A domelike building stretches over the dusty road here, a receding doorway leading within its shadowed depths. Off to one side of the well-frequented dome stands the entrance to a caravan stable. To the southeast stretches the small town's main thoroughfare, while a tower watches over a smaller path to the northeast.</description>
<position x="-580" y="-500" z="0" />
<arc exit="northeast" move="northeast" destination="151" />
<arc exit="southeast" move="southeast" destination="148" />
<arc exit="go" move="go doorway" destination="174" />
<arc exit="go" move="go stable" destination="177" />
<arc exit="go" move="go gate" destination="178" />
</node>
<node id="151" name="Hvaral, Eagle Road">
<description>A large spire pierces through the roadway and rises upward, its monstrous stone constructs perched on ledges of quarried rock and grasping angrily for the clouds. The old Dwarven buildings nearby cling low to the ground as if shying away from the brooding tower.</description>
<position x="-560" y="-520" z="0" />
<arc exit="southwest" move="southwest" destination="150" />
<arc exit="west" move="west" destination="152" />
</node>
<node id="152" name="Hvaral, Eagle Road">
<description>A fence crafted of wooden poles sharpened into spikes driven into the ground stands guard around a large building set well off from the roadway and the other buildings, homes and shops, of the town. The Therengian barracks, home to a regiment of the Baron's Guard, seems well stocked -- a stable, the practice dummies of a training yard, and the heavy smoke of a forge are all evident even from the road.</description>
<position x="-580" y="-520" z="0" />
<arc exit="east" move="east" destination="151" />
</node>
<node id="153" name="Hvaral, Neristan Street">
<description>A sprawling mass of quarry rock and lumber beams comprise the town's inn. A sign attached to a pole, looming out over the dusty street, displays the dual images of a bed and a mug of something. Clutching at the lolling beast to the north is a stableyard for travelers to Hvaral.</description>
<position x="-520" y="-460" z="0" />
<arc exit="north" move="north" destination="147" />
<arc exit="southwest" move="southwest" destination="154" />
<arc exit="west" move="west" destination="156" />
</node>
<node id="154" name="Hvaral, Stalwart Road">
<description>The dust-choked road comes to an abrupt halt before the gently sloping archway of a red brick building. A small wreath of vibrant flowers, extraordinarily out of place in this harsh landscape, adorns the topmost point of the arch, indicating a more serene atmosphere.</description>
<position x="-540" y="-440" z="0" />
<arc exit="northeast" move="northeast" destination="153" />
<arc exit="go" move="go sloping archway" destination="155" />
</node>