-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map98_Road_to_Aesry.xml
2243 lines (2243 loc) · 199 KB
/
Map98_Road_to_Aesry.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="Road to Aesry (Frostweavers, Snow Gobs)" id="98">
<node id="1" name="Aesry Surlaenis'a, Shadaer" note="Dock">
<description>Ocean spray soaks the wooden boards of the pier. Cloaked in shadows, the main dock of the island extends to the west, surrounded by the forms of sleeping ships. The sound of drunken laughter comes from the direction of the wooden ladder that leads to Denison's Pub.</description>
<description>Ocean spray soaks the wooden boards of the pier. Gulls and terns fly above the main dock to the west, their harsh cries mingling with the shouts of bosuns and captains ready to set sail. Sailors walking along the pier glance longingly at the wooden ladder which leads to Denison's Pub.</description>
<position x="25" y="28" z="0" />
<arc exit="north" move="north" destination="3" />
<arc exit="south" move="south" destination="4" />
<arc exit="west" move="west" destination="2" />
<arc exit="climb" move="climb wooden ladder" destination="5" />
</node>
<node id="2" name="Harbor Docks, Aesry Surlaenis'a">
<description>Sturdy oak planks stretch eastward towards the lights of the harbor and the shouting sailors in Denison's Pub. Two beams of light pierce the darkness, emanating from a point high on the island's slope.</description>
<description>Sturdy oak planks stretch eastward, leading to the harbor proper and the trail to the rest of Surlaenis island. Twin points of light beckon from a point high on the island's slope, guiding ships through the dangerous shoals at the harbor's mouth. A small pod of dolphins play a game of tag in the water below.</description>
<position x="5" y="28" z="0" />
<arc exit="east" move="east" destination="1" />
<arc exit="go" move="go halasa selhin" destination="338" />
</node>
<node id="3" name="Aesry Surlaenis'a, Shadaer">
<description>Weathered by the sun and the salty sea air, the wooden pier stretches to the south. Ships of all types anchor for the night, though some small boats fish near the dangerous shoals at the harbor mouth.</description>
<description>Weathered by the sun and the salty sea air, the wooden pier stretches to the south. Ships of all types anchor near the pier, or sail away with sails billowing in the wind. Several dolphins frolic in the water, leaping over the wakes of passing ships.</description>
<position x="25" y="-12" z="0" />
<arc exit="south" move="south" destination="1" />
<arc exit="climb" move="climb wooden ladder" destination="6" />
<arc exit="go" move="go lybadel" destination="148" />
</node>
<node id="4" name="Aesry Surlaenis'a, Shadaer">
<description>A few small boats are anchored away from the pier. The waters below are alive with scores of fish that come to feed off of the trash that is dumped into the harbor each night. The reek of decaying garbage rises from the water.</description>
<description>Several small boats, each with several hundred yards of fishing net tied on deck, are docked to this corner of the pier. A veritable swarm of gulls rest in the water as the fishermen clean their catch. The reek of rotting fish guts rises from the water.</description>
<position x="25" y="48" z="0" />
<arc exit="north" move="north" destination="1" />
<arc exit="climb" move="climb wooden ladder" destination="7" />
</node>
<node id="5" name="Aesry Surlaenis'a, Shadaer">
<description>The ale-stained walls and shattered glass windows of Denison's Pub dominate this stretch of the wooden walkway. A dented silver bell hangs above the remains of a bench broken in a brawl. To the west, a wooden ladder leads down to the pier.</description>
<position x="45" y="28" z="0" />
<arc exit="north" move="north" destination="6" />
<arc exit="south" move="south" destination="7" />
<arc exit="climb" move="climb wooden ladder" destination="1" />
<arc exit="go" move="go denison's pub" destination="300" />
</node>
<node id="6" name="Aesry Surlaenis'a, Shadaer">
<description>A flurry of activity surrounds an elegant black building. The crest of the Traders' Guild is carved into the surface of the white birch doors that lead into the foyer. Across from the building, a wooden ladder leads down to the pier.</description>
<position x="45" y="-32" z="0" />
<arc exit="east" move="east" destination="23" />
<arc exit="south" move="south" destination="5" />
<arc exit="climb" move="climb wooden ladder" destination="3" />
<arc exit="go" move="go birch doors" destination="316" />
<arc exit="go" move="go warehouse door" destination="289" />
</node>
<node id="7" name="Aesry Surlaenis'a, Shadaer">
<description>Carved white birch columns support the blue tile roof of a prosperous shop on the eastern side of the street. A sign hangs from the shop's tiled awning, painted with the words, Bariyu's Water Supplies. Across from the building, a wooden ladder leads down to the pier.</description>
<position x="45" y="48" z="0" />
<arc exit="north" move="north" destination="5" />
<arc exit="south" move="south" destination="8" />
<arc exit="climb" move="climb wooden ladder" destination="4" />
<arc exit="go" move="go low-thatched hut" destination="314" />
</node>
<node id="8" name="Aesry Surlaenis'a, Shadaer">
<description>A dingy shack perches precariously above the ocean waves. Strands of seaweed hang from the front of the shack, drying in the sun. On the far side of the house, a rickety ladder reaches down to the dark sand of the beach.</description>
<position x="45" y="68" z="0" />
<arc exit="north" move="north" destination="7" />
<arc exit="climb" move="climb rickety ladder" destination="9" />
<arc exit="go" move="go cramped-looking shed" destination="315" />
<arc exit="go" move="go dingy shack" destination="335" />
</node>
<node id="9" name="Aesry Surlaenis'a, Lezeni's Cove">
<description>Gentle waves lap against the poles that support the pier and harbor buildings. The salty sea breeze combines with the rhythm of the waves, creating a relaxing, hypnotic sound. Several ropes hang from the shack above into the water beneath the pier.</description>
<position x="45" y="88" z="0" />
<arc exit="up" move="up" destination="10" />
<arc exit="climb" move="climb rickety ladder" destination="8" />
<arc exit="climb" move="climb rock jetty" destination="17" />
</node>
<node id="10" name="Aesry Surlaenis'a, Above Lezeni's Cove">
<description>A path winds up the cliffs from the sand of the cove, twisting around jutting rocks and shacks anchored into the rocks. The wind whistles sharply through the crevices and the air is sticky with salt.</description>
<position x="85" y="108" z="0" />
<arc exit="up" move="up" destination="11" />
<arc exit="down" move="down" destination="9" />
</node>
<node id="11" name="Aesry Surlaenis'a, Above Lezeni's Cove" color="#00FFFF">
<description>A wide shelf in the cliffs is packed with small dwellings, each one close to another, some abandoned, some noisy with the cries and shouts of the inhabitants. The climb up the cliff continues to the southeast.</description>
<position x="85" y="88" z="0" />
<arc exit="southeast" move="southeast" destination="12" />
<arc exit="down" move="down" destination="10" />
</node>
<node id="12" name="Aesry Surlaenis'a, Above Lezeni's Cove" color="#00FFFF">
<description>A larger dwelling or two cantilevers over the face of the cliffs, no doubt with a nice view of Surlaenis Harbor. As to how sturdy such structures are, however, there is definite question. The wind thrums constantly and blows sand and bits of debris along the path and between the abodes.</description>
<position x="105" y="108" z="0" />
<arc exit="southeast" move="southeast" destination="13" />
<arc exit="northwest" move="northwest" destination="11" />
</node>
<node id="13" name="Aesry Surlaenis'a, Above Lezeni's Cove" color="#00FFFF">
<description>The path levels out as it arcs around a promontory in the cliff. A piece of sailcloth caught in a crack in the rocks whips in the wind like a flag, flapping and moaning with each lash of breeze.</description>
<position x="125" y="128" z="0" />
<arc exit="east" move="east" destination="14" />
<arc exit="northwest" move="northwest" destination="12" />
</node>
<node id="14" name="Aesry Surlaenis'a, Above Lezeni's Cove" color="#00FFFF">
<description>A hollow in the cliff provides a sheltered area for the collection of dwellings perched upon the level surfaces of the cliff. Like the nests of some cliff-dwelling birds, they huddle together in available spaces on the precipice, some nicely maintained, some in squalid condition.</description>
<position x="145" y="128" z="0" />
<arc exit="west" move="west" destination="13" />
<arc exit="down" move="down" destination="15" />
</node>
<node id="15" name="Aesry Surlaenis'a, Above Lezeni's Cove" color="#00FFFF">
<description>A long, sloping path leads up to a higher section of the cliffs and down to the sand and rocks below. A crumbling wood shack, roofless and decaying, barely remains upright in the gusty winds. Prickly cocklebur grasses grow in pockets of sand all along the path.</description>
<position x="105" y="148" z="0" />
<arc exit="up" move="up" destination="14" />
<arc exit="down" move="down" destination="16" />
</node>
<node id="16" name="Aesry Surlaenis'a, Near Lezeni's Cove" color="#00FFFF">
<description>Sea oats and cocklebur grasses grow plentifully in the sandy soil. To the southwest, the white wavecaps in the water reflect the light from the flashing beacons of the Sentinels above. Salty wet air and spray blows on the wind from the damp rocky beach below.</description>
<description>Sea oats and cocklebur grasses grow plentifully in the sandy soil. To the southwest, the water sparkles from this higher viewpoint, the sunlight catching on the wavecaps. A rocky beach below is damp and dark from the wet breezes and spray that blow across it.</description>
<position x="65" y="128" z="0" />
<arc exit="south" move="south" destination="19" />
<arc exit="up" move="up" destination="15" />
<arc exit="down" move="down" destination="17" />
</node>
<node id="17" name="Aesry Surlaenis'a, Near Lezeni's Cove" color="#00FFFF">
<description>A wide, rocky beach, with grass-covered sand dunes to the east, borders the waters near Surlaenis Harbor. The waves crash upon the pebbles, grinding the edges smoother as they scrape against each other. Gulls wheel overhead looking for scraps of food, their keer, keer cry calling forlornly.</description>
<position x="45" y="128" z="0" />
<arc exit="south" move="south" destination="18" />
<arc exit="up" move="up" destination="16" />
<arc exit="climb" move="climb rock jetty" destination="9" />
<arc exit="go" move="go sea" destination="20" />
</node>
<node id="18" name="Aesry Surlaenis'a, Near Lezeni's Cove" color="#00FFFF">
<description>A wide, rocky beach, with grass-covered sand dunes to the east, borders the waters near Surlaenis Harbor. The waves crash upon the pebbles, grinding the edges smoother, the tide leaving seaweed to dry upon the wet rocks.</description>
<position x="45" y="148" z="0" />
<arc exit="north" move="north" destination="17" />
<arc exit="up" move="up" destination="19" />
</node>
<node id="19" name="Aesry Surlaenis'a, Near Lezeni's Cove" color="#00FFFF">
<description>Sea oats and cocklebur grasses grow plentifully in the sandy soil. To the southwest, the white wavecaps in the water reflect the light from the flashing beacons of the Sentinels above. Salty wet air and spray blows on the wind from the damp rocky beach below.</description>
<description>Sea oats and cocklebur grasses grow plentifully in the sandy soil. To the southwest, the water sparkles from this higher viewpoint, the sunlight catching on the wavecaps. A rocky beach below is damp and dark from the wet breezes and spray that blow across it.</description>
<position x="65" y="148" z="0" />
<arc exit="north" move="north" destination="16" />
<arc exit="down" move="down" destination="18" />
</node>
<node id="20" name="Aesry Surlaenis'a, Cove" color="#0000FF">
<description>The water splashes playfully on the rocky beach, each ebb and flow grinding the stones against each other with a rasping sound. A glint of a fish flashes in the wake of the waves, but quickly darts out of sight. The small rocks shift underfoot as the water continues its constant advance and retreat upon the shore.</description>
<position x="25" y="128" z="0" />
<arc exit="west" move="swim west" destination="22" />
<arc exit="northwest" move="swim northwest" destination="21" />
<arc exit="go" move="go beach" destination="17" />
</node>
<node id="21" name="Aesry Surlaenis'a, Cove" color="#0000FF">
<description>The depth of the water suddenly increases where the rock-littered shelf underfoot ends at a sharp demarcation, and the waves swell and dip before they break to the east. To the south and west the deep water is rougher as it rounds a jutting finger of rock, while the distant docks of Surlaenis rise in the opposite direction.</description>
<position x="5" y="108" z="0" />
<arc exit="southeast" move="swim southeast" destination="20" />
<arc exit="south" move="swim south" destination="22" />
<arc exit="southwest" move="swim southwest" destination="150" />
<arc exit="west" move="swim west" destination="149" />
</node>
<node id="22" name="Aesry Surlaenis'a, Cove" color="#0000FF">
<description>The depth of the water suddenly increases where the rock-littered shelf underfoot ends at a sharp demarcation, and the waves swell and dip before they break to the east. To the south and west the deep water is rougher as it rounds a jutting finger of rock, while the distant docks of Surlaenis rise in the opposite direction.</description>
<position x="5" y="128" z="0" />
<arc exit="north" move="swim north" destination="21" />
<arc exit="east" move="swim east" destination="20" />
<arc exit="west" move="swim west" destination="150" />
<arc exit="northwest" move="swim northwest" destination="149" />
</node>
<node id="23" name="Aesry Surlaenis'a, Shadaer">
<description>Redolent with the salty scent of the sea, a fickle breeze ruffles the pennants hanging before the offices of affluent trading consortiums. The wooden boards of the walkway are cool after the day's heat. Shouts of sailors reveling in a night's shore leave come from the west.</description>
<description>Redolent with the salty scent of the sea, a fickle breeze ruffles the pennants hanging before the offices of affluent trading consortiums. The wooden boards of the walkway are warm with the day's heat. Shouts of sailors unloading cargo and preparing for a night's shore leave come from the west.</description>
<position x="65" y="-32" z="0" />
<arc exit="east" move="east" destination="24" />
<arc exit="west" move="west" destination="6" />
</node>
<node id="24" name="Aesry Surlaenis'a, Shadaer">
<description>Salt-stained wooden boards echo with each traveller's footsteps. Houses of black oak are supported by platforms made of sturdy ironwood, each with an entire tree trunk driven into the sand below. The walkway stretches westward to the pier, and east to ascend the outer slope of the island.</description>
<position x="85" y="-32" z="0" />
<arc exit="east" move="east" destination="25" />
<arc exit="west" move="west" destination="23" />
</node>
<node id="25" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Strong smells of tar and ocean air waft on the wind coming from the harbor to the west. Vast expanses of white sand lie to the north and south, split in two by a wooden walkway rising up the slope of the island.</description>
<position x="105" y="-32" z="0" />
<arc exit="north" move="north" destination="26" />
<arc exit="west" move="west" destination="24" />
<arc exit="climb" move="climb wooden walkway" destination="37" />
<arc exit="climb" move="climb narrow trail" destination="29" />
</node>
<node id="26" name="Aesry Surlaenis'a, Open Yard">
<description>The grass-covered sand dunes piled at the base of the rocky sea cliff have been smoothed and flattened into a broad yard. Hoofprints of all sizes crisscross the area around a grey-boarded barn and a low stable tucked against the base of the rocks.</description>
<position x="105" y="-52" z="0" />
<arc exit="north" move="north" destination="27" />
<arc exit="south" move="south" destination="25" />
<arc exit="go" move="go low stable" destination="323" />
<arc exit="go" move="go grey-boarded barn" destination="324" />
</node>
<node id="27" name="Aesry Surlaenis'a, Winding Track">
<description>A well-beaten track winds among the dunes, with a variety of jumps and obstacles placed at intervals along its landward side to create an exercise area. Fences, a wooden gate, and a brick-painted wall provide jumping challenges, while a blue barrel and a red barrel mark the ends of the course.</description>
<position x="105" y="-72" z="0" />
<arc exit="north" move="north" destination="28" />
<arc exit="south" move="south" destination="26" />
</node>
<node id="28" name="Aesry Surlaenis'a, Among the Dunes" note="jousting lists" color="#FF0000">
<description>To the north, the dark bulk of the rocky sea cliff juts into the ocean, cutting off the palely glimmering expanse of sand and creating a semi-sheltered area where driftwood has accumulated from long-forgotten storms. Against the cliffs, a broad area has been cleared and jousting lists built from the flatter planks that have been washed up.</description>
<description>To the north, the rocky sea cliff juts into the ocean, cutting off the expanse of sand and creating a semi-sheltered area where driftwood has accumulated from long-forgotten storms. Against the cliffs, a broad area has been cleared and jousting lists built from the flatter planks that have been washed up.</description>
<position x="105" y="-92" z="0" />
<arc exit="south" move="south" destination="27" />
</node>
<node id="29" name="Aesry Surlaenis'a, Cliff Path">
<description>The narrow trail claws its way up from the harbor area and wends a long distance along the rocky breadth of the sea cliff. The rim of Aesry Surlaenis'a looms high above, its massive weight seemingly impervious to the force of the sea beating against its foundation in a frothy rage.</description>
<position x="85" y="-52" z="0" />
<arc exit="north" move="north" destination="30" />
<arc exit="climb" move="climb narrow trail" destination="25" />
</node>
<node id="30" name="Aesry Surlaenis'a, Cliff Path">
<description>A small patch of crimson wildflowers has managed to take root where the trail merges into a slim ledge. Bright heads nodding in the breeze, they provide a lively contrast to the stark rock and dizzying height.</description>
<position x="85" y="-72" z="0" />
<arc exit="south" move="south" destination="29" />
<arc exit="northwest" move="northwest" destination="31" />
</node>
<node id="31" name="Aesry Surlaenis'a, Cliff Path">
<description>Relentless in her onslaught, the sea has found a foothold and worn away at the very bones of the island, leaving the trail undercut and hanging far out over the restless waves. Looking down, it's as if the trail floats upon the surface of the water and the blue-green roil is mesmerizing to behold.</description>
<position x="65" y="-92" z="0" />
<arc exit="southeast" move="southeast" destination="30" />
<arc exit="up" move="up" destination="32" />
</node>
<node id="32" name="Aesry Surlaenis'a, Cliff Path">
<description>The surface of the promontory is crazed as if slammed by a god's fist. A web of cracks, thread-thin to foot-wide, spreads in all directions and the trail has eroded to mere inches in width making traversing it a hazard. A constant sprinkling of dust rains down from the stressed basalt.</description>
<position x="65" y="-112" z="0" />
<arc exit="north" move="north" destination="33" />
<arc exit="down" move="down" destination="31" />
</node>
<node id="33" name="Aesry Surlaenis'a, Cliff Path">
<description>Running jaggedly from northeast to southwest, a massive fissure has cleaved the face of the rock like an old battle scar. A warm damp breeze wheezes forth from the darkness, and faintly, the steady drip, drip of falling water can be heard from deep inside the stone.</description>
<position x="65" y="-132" z="0" />
<arc exit="south" move="south" destination="32" />
<arc exit="up" move="up" destination="34" />
<arc exit="go" move="search go dark opening" destination="36" />
</node>
<node id="34" name="Aesry Surlaenis'a, Cliff Path">
<description>The winding trail, after one last twist and turn, abruptly ends its sojourn at the edge of an outcrop. Small stunted bushes huddle together around the edge of the formation and rattle their branches at each intrusion of the wind. Far below, a wave-swept cove lies in the lee of the surrounding promontories and a thin switchback trail hacked into the stone leads downwards.</description>
<position x="65" y="-152" z="0" />
<arc exit="down" move="down" destination="33" />
<arc exit="climb" move="climb switchback trail" destination="35" />
</node>
<node id="35" name="Aesry Surlaenis'a, Cove">
<description>The cool sea laps gently at the sands of the small cove as it settles beneath the cloak of night. Tiny luminous sea creatures drift slowly in scattered tide pools, unconsciously imitating the glory of a starry sky, while feeding the misshapen bodies of the sand crabs that live amongst them.</description>
<description>A crescent of warm black sand nestles at the base of the trail, softening the harsh lines of the towering escarpments. The sea sends forth restless tendrils of aquamarine to wash at the sands, leaving behind foam-flecked reminders of its relentless energy. Far overhead, a lone cypress clings stubbornly to the rock casting its cool shadow over a tangle of driftwood and debris.</description>
<position x="45" y="-172" z="0" />
<arc exit="climb" move="climb switchback trail" destination="34" />
<arc exit="go" move="go cool sea" destination="176" />
</node>
<node id="36" name="Sea Caves, Tunnel" note="Map98a_Sea_Caves.xml">
<description>Cool wind blows in from the sea and down into the tunnel. Flecks of mica glitter in the walls, floor, and ceiling of the basalt passageway. Green moss grows tentatively across the ground and partway up the sides of the tunnel where the late rays of sunlight fall before the sun goes to its rest. The sound of the pounding surf echoes faintly down the hall.</description>
<position x="105" y="-172" z="0" />
<arc exit="southeast" move="southeast" destination="178" />
<arc exit="go" move="go wide opening" destination="33" />
</node>
<node id="37" name="Aesry Surlaenis'a, Shadaer Jama">
<description>To the west, the wooden walkway slopes downward to the dark wooden buildings of the harbor. As it rises to the east, it follows the natural contours of the island, leading to a dark stone cleft far above.</description>
<position x="145" y="-32" z="0" />
<arc exit="east" move="east" destination="38" />
<arc exit="climb" move="climb wooden walkway" destination="25" />
</node>
<node id="38" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The salt-stained boards of the wooden walkway lead west from the base of a long stone ramp. Gritty sand fills the spaces between the planks, blown by the wind from the far reaches of the island.</description>
<position x="165" y="-32" z="0" />
<arc exit="west" move="west" destination="37" />
<arc exit="climb" move="climb stone ramp" destination="39" />
</node>
<node id="39" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Sparse shoots of grass struggle to grow in the sandy soil where the beach ends and the rest of the island begins. A large stone ramp leads down to the beach, its surface slick with spray from the ocean. The dark wooden buildings of the harbor rise to the west, breaking the clean line of the sands.</description>
<position x="185" y="-32" z="0" />
<arc exit="southeast" move="southeast" destination="40" />
<arc exit="climb" move="climb stone ramp" destination="38" />
</node>
<node id="40" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The grass alongside the dirt path is well-nibbled by the wild sheep which roam in the grassy fields. A strong breeze, redolent with the scent of ocean air, rustles through the grass.</description>
<position x="205" y="-12" z="0" />
<arc exit="northwest" move="northwest" destination="39" />
<arc exit="climb" move="climb dirt path" destination="41" />
</node>
<node id="41" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Lush green hills surround the dirt road. Delicate wildflowers dot the fields, their brilliant colors contrasting with the emerald grass. Blades of grass bow in homage before the fickle breeze</description>
<description>Lush green hills surround the dirt road. Delicate wildflowers dot the fields, their brilliant colors contrasting with the emerald grass. Blades of grass bow in homage before the fickle breeze.</description>
<position x="205" y="-32" z="0" />
<arc exit="northeast" move="northeast" destination="42" />
<arc exit="climb" move="climb dirt path" destination="40" />
</node>
<node id="42" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Rising abruptly from the emerald grass is a cliff of dark basalt stone. The dirt road ends at the base of a long switchback trail. In the distance, tall waves lap against the white sand beach, their white foam gleaming in the light.</description>
<position x="225" y="-52" z="0" />
<arc exit="southwest" move="southwest" destination="41" />
<arc exit="climb" move="climb switchback trail" destination="43" />
</node>
<node id="43" name="Aesry Surlaenis'a, Shadaer Jama">
<description>A long switchback trail leads down a cliff of dark basalt stone. To the northeast, a dense forest of silverwood and white birch stretches up the mountain's slope to the snowline far above.</description>
<position x="245" y="-52" z="0" />
<arc exit="climb" move="climb switchback trail" destination="42" />
<arc exit="north" move="north" destination="44" />
</node>
<node id="44" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The basalt road runs precariously alongside a steep drop, climbing upwards towards a dense forest. Emerald green grass carpets the rolling hills below.</description>
<position x="245" y="-72" z="0" />
<arc exit="south" move="south" destination="43" />
<arc exit="climb" move="climb basalt road" destination="45" />
</node>
<node id="45" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Wide gaps between trees here at the forest's edge reveal the sparkling blue ocean below. A basalt road leads downward, while a thin dirt path continues east into the trees.</description>
<position x="265" y="-92" z="0" />
<arc exit="east" move="east" destination="46" />
<arc exit="climb" move="climb basalt road" destination="44" />
</node>
<node id="46" name="Aesry Surlaenis'a, Shadaer Jama">
<description>White flowers grow in a small clearing away from the path. One of the few varieties that bloom year round, the geshiloira petals are the exact color of winter snow.</description>
<position x="285" y="-92" z="0" />
<arc exit="southeast" move="southeast" destination="47" />
<arc exit="west" move="west" destination="45" />
</node>
<node id="47" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Silverwood bark gleams in the faint light shining through the branches above. A fallen branch, its surface covered in red-capped mushrooms, rests beside a narrow trail.</description>
<position x="305" y="-72" z="0" />
<arc exit="northwest" move="northwest" destination="46" />
<arc exit="climb" move="climb narrow trail" destination="48" />
</node>
<node id="48" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Wafting on the air from beneath the trees is the aroma of decaying plants. The rich brown earth of the forest is renewed each year by the falling leaves of the trees. A narrow trail curves downward towards the beach.</description>
<position x="305" y="-52" z="0" />
<arc exit="climb" move="climb narrow trail" destination="47" />
<arc exit="south" move="south" destination="49" />
</node>
<node id="49" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Gleaming silverwood mingles with white birch beside the path, the more fragile trees vying with their hardier cousins for the light. A rocky trail to the east leads upward, towards the cleft in the mountain wall.</description>
<position x="305" y="-32" z="0" />
<arc exit="north" move="north" destination="48" />
<arc exit="climb" move="climb rocky trail" destination="50" />
</node>
<node id="50" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Black velvet shadows fill the gaps between tree trunks. The dirt path curves eastward from the rocky trail which leads downward. Mournful hoots of hunting owls echo through the darkness.</description>
<description>Black velvet shadows fill the gaps between tree trunks. The dirt path curves eastward from the rocky trail which leads downward. Faint birdsong fills the shadows.</description>
<position x="305" y="-12" z="0" />
<arc exit="east" move="east" destination="51" />
<arc exit="climb" move="climb rocky trail" destination="49" />
</node>
<node id="51" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Dark green forest closes around the wide dirt path, the trunks of the trees partially blocking the view of the mountain pass to the north. The trees thicken to the south and west, creating a tunnel of shadows.</description>
<position x="325" y="-12" z="0" />
<arc exit="northeast" move="northeast" destination="52" />
<arc exit="west" move="west" destination="50" />
</node>
<node id="52" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Dark basalt towers above, the natural walls of the selhin dava rising several thousand feet above the path. Brilliant white light shines from the Twin Sentinels of Aesry Surlaenis'a, guarding either side of the pass. A narrow dirt path runs through the pass.</description>
<position x="345" y="-32" z="0" />
<arc exit="southwest" move="southwest" destination="51" />
<arc exit="climb" move="climb dirt path" destination="53" />
</node>
<node id="53" name="Aesry Surlaenis'a, Selhin Dava">
<description>Shadow and light paint a tapestry on the leaves of the forest below. White birch mingles with silverwood, providing glimpses of color among the green. Far below, the deep blue ocean waves caress the white sands of the beach surrounding the island. Disrupting the natural line of the beach, the dark wood of the harbor juts into the sea at the end of Shadaer Jama.</description>
<position x="345" y="-52" z="0" />
<arc exit="east" move="east" destination="54" />
<arc exit="climb" move="climb dirt path" destination="52" />
<arc exit="climb" move="climb steep trail" destination="87" />
</node>
<node id="54" name="Aesry Surlaenis'a, Selhin Dava">
<description>A tall basalt wall blocks the path eastwards, where the dip in the terrain creates a natural pass. A great iron-reinforced gate, or Selhin Ilga, is the entrance through the wall, and is carefully guarded by specially trained soldiers to ensure no enemies breach the inner domain of Surlaenis.</description>
<position x="365" y="-52" z="0" />
<arc exit="west" move="west" destination="53" />
<arc exit="go" move="go selhin ilga" destination="55" />
</node>
<node id="55" name="Aesry Surlaenis'a, Selhin Ilga">
<description>Here between the inner and outer gates of the great wall, the sun rarely shines. The huge wall towers twenty feet overhead and is equally thick. The cool damp stone echoes with the sounds of travelers, as the guards that man Selhin Ilga pace atop the wall, ready for any disturbance.</description>
<position x="385" y="-52" z="0" />
<arc exit="east" move="east" destination="56" />
<arc exit="west" move="west" destination="54" />
</node>
<node id="56" name="Aesry Surlaenis'a, Selhin Dava">
<description>The great inner gate, or ilga, and the huge basalt wall of the Selhin Dava protect the city from any unwelcome outsiders. Sharp winds blow through the pass and gust over the birch woods that flourish to the east. Here within the shadow of the wall, travelers check their equipment before journeying on to the city proper. A pair of stone stairs hewn into the rock mirror each other as they climb to the south and north, leading to the top of the wall.</description>
<position x="405" y="-52" z="0" />
<arc exit="east" move="east" destination="57" />
<arc exit="go" move="go selhin ilga" destination="55" />
</node>
<node id="57" name="Aesry Surlaenis'a, Selhin Dava">
<description>Spread below to the east is a view of the whole of inner Surlaenis. The bowl-shaped interior of the island slopes back down to a mist-mantled blue lake, with a smaller island floating in its midst. The city surrounds this lough and looks like a miniature model from this height. The northern quadrant of the island is a steep rocky incline, while the southern slopes are greener and more lush with forest and meadowland. Opposite, to the east, is a heavily forested slope, covered with dense dark trees.</description>
<description>Spread below to the east is the dark basin of the interior reaches of Surlaenis. A single misty light glows eternally in the center of the dark lake at the base of the inner slopes, surrounded by lights from the encircling streets and buildings winking far below.</description>
<position x="425" y="-52" z="0" />
<arc exit="west" move="west" destination="56" />
<arc exit="climb" move="climb earthen stairs" destination="58" />
</node>
<node id="58" name="Aesry Surlaenis'a, Shadaer Jama" color="#008000">
<description>Sound softens beneath the birch trees due to the thick mulch of old leaves that blankets the ground. Small cones hang from the weeping side branches of the graceful trees, dripping moisture from their tips. Split logs reinforce the earthen steps that climb up to the crown of the pass.</description>
<position x="445" y="-52" z="0" />
<arc exit="east" move="east" destination="59" />
<arc exit="climb" move="climb earthen steps" destination="57" />
</node>
<node id="59" name="Aesry Surlaenis'a, Shadaer Jama" color="#008000">
<description>Young birch woods line the upper slopes as the harbor road approaches the crest of Selhin Dava. A few dry leaves scutter across the packed surface of the road and tumble with every breeze on the slopes beneath the trees.</description>
<position x="465" y="-52" z="0" />
<arc exit="west" move="west" destination="58" />
<arc exit="climb" move="climb terrace stairs" destination="60" />
</node>
<node id="60" name="Aesry Surlaenis'a, Shadaer Jama" color="#008000">
<description>Birches border the road, their slender twiggy branches arching overhead and patterning the view of the sky. Their attenuated trunks stand pale against the dark soil until they disappear into a shadowy blur in the distance.</description>
<position x="485" y="-52" z="0" />
<arc exit="east" move="east" destination="61" />
<arc exit="climb" move="climb terrace stairs" destination="59" />
<arc exit="go" move="go narrow path" destination="62" />
</node>
<node id="61" name="Aesry Surlaenis'a, Shadaer Jama" color="#008000">
<description>Wooden timbers reinforce the packed earthen stairs cut into the hillside. The road's descent is steeper and longer than usual, and this group of steps has a smooth, polished handrailing for the weary to cling to and catch a breath. The heathered slopes meet birch woods here, the eastern lower inclines covered with scrub and grasses, the birch climbing the higher terraces to the pass.</description>
<position x="505" y="-52" z="0" />
<arc exit="west" move="west" destination="60" />
<arc exit="climb" move="climb earthen stairs" destination="73" />
</node>
<node id="62" name="Aesry Surlaenis'a, Birch Path" color="#008000">
<description>The narrow path threads its way among the birches, with the steep slant of the hillside banking the western edge. Young birches nevertheless manage to cling to the near vertical slope. The rustle of leaves and twigs is constant as the drooping branches move with the slightest disturbance in the air.</description>
<position x="485" y="-32" z="0" />
<arc exit="southeast" move="southeast" destination="63" />
<arc exit="go" move="go shadaer jama" destination="60" />
</node>
<node id="63" name="Aesry Surlaenis'a, Birch Path" color="#008000">
<description>The ground is soft underfoot. Birch trees spread in all directions, their silvery-grey leaves whispering the language of trees in a soothing rustle. Spots of greenish moss grow on some of the thicker trunks.</description>
<position x="505" y="-12" z="0" />
<arc exit="south" move="south" destination="64" />
<arc exit="northwest" move="northwest" destination="62" />
</node>
<node id="64" name="Aesry Surlaenis'a, Birch Path" color="#008000">
<description>The trees cluster so densely that it is difficult to be certain of the path. One larger tree, with blackish-grey bark, stands like a mother to her smaller children, her crown well above the rest of the wood. Fluttering leaves and flickering shadows dance in constant motion.</description>
<position x="505" y="8" z="0" />
<arc exit="north" move="north" destination="63" />
<arc exit="south" move="south" destination="65" />
</node>
<node id="65" name="Aesry Surlaenis'a, End of Path" color="#008000">
<description>The path comes to an abrupt end at the top of a steep bank. The tops of birch trees fill the view below and to the southeast, and tendrils of a dense mist float amongst the growth. The bank of the dropoff is crumbling dirt, covered with many seasons' fallen leaves. Each footfall rattles the dead foliage underfoot, loudly jarring the suddenly noticeable quiet.</description>
<position x="505" y="28" z="0" />
<arc exit="north" move="north" destination="64" />
<arc exit="climb" move="climb steep bank" destination="66" />
</node>
<node id="66" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>A leaf-covered hillside leads up to the west. Some partially uprooted birches lean down the sharp incline -- many broken and dead branches prop one tree at a near horizonal angle. To the east, smaller stunted trees with a green-grey moss coating the bark overlap their boughs to form a net of branches. A faint, green-tinged mist creeps silently throughout.</description>
<position x="505" y="48" z="0" />
<arc exit="east" move="east" destination="67" />
<arc exit="climb" move="climb hillside" destination="65" />
</node>
<node id="67" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>Every tree within sight is splattered with a greenish-grey moss, a clinging growth that looks more like a disease than a co-habitant. The leaves covering the ground are crusted with the same stringy substance, which perhaps emerges from the ground to grow up the trunks of the trees. The branches are still as the fog twines about them, and the familar rustling of their twigs and leaves is absent.</description>
<position x="525" y="48" z="0" />
<arc exit="southeast" move="southeast" destination="68" />
<arc exit="west" move="west" destination="66" />
</node>
<node id="68" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>Heart-shaped, dark green leathery leaves of wild ginger grow in a sweeping arc over the ground. The spicy fragrance fills the air with a wet, warm odor. Moss hangs from the birch branches in twisted strands like locks of hair. Sounds still suddenly, except for a sourceless, arrhythmic dripping sound.</description>
<position x="545" y="68" z="0" />
<arc exit="southwest" move="southwest" destination="69" />
<arc exit="northwest" move="northwest" destination="67" />
<arc exit="down" move="down" destination="72" />
</node>
<node id="69" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>Five mature birches grew and died here -- nothing stands now but their skeletons, thoroughly coated in the moss. An unpleasant green-tinted mist fills the air, as a steamy vapor evaporates from the mossy surfaces. Brittle broken twigs thatch the soggy ground.</description>
<position x="525" y="88" z="0" />
<arc exit="north" move="north" destination="70" />
<arc exit="northeast" move="northeast" destination="68" />
</node>
<node id="70" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>The wall of the hillside blocks the view west. Small saplings grow along it except near a dark vertical gash. Sathramoss covers most of the hole, and in one more season, will completely cloak it. A vaporous mist hovers about the moss, forming along its edges.</description>
<position x="525" y="68" z="0" />
<arc exit="southeast" move="southeast" destination="71" />
<arc exit="south" move="south" destination="69" />
</node>
<node id="71" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>A dress woven of grass and leaves hangs caught on a broken branch, as if someone had left it behind in a desperate escape. The ground is very boggy here, and footprints fill quickly with green water. Sound is deadened by the birch growth, voices muffled by the heavy misty air.</description>
<position x="545" y="88" z="0" />
<arc exit="northwest" move="northwest" destination="70" />
</node>
<node id="72" name="Aesry Surlaenis'a, Lower Birch Wood" color="#008000">
<description>A dip in the terrain houses a shelter where the infrangible barrier of trees prevents further movement into the wood. Beneath a canopy of tangled boughs hangs a hammock, woven from the living branches of two white-barked birches. Although the moss spreads over the ground like embroidery, the trees here are as yet untouched by the blight. The mist is thinner, but lingers heavily within the surrounding forest.</description>
<position x="565" y="68" z="0" />
<arc exit="up" move="up" destination="68" />
</node>
<node id="73" name="Aesry Surlaenis'a, Shadaer Jama" color="#008000">
<description>Wooden timbers reinforce the packed earthen stairs cut into the hillside. The high stair climb may have created the need for the wooden handrail which gives the weary a place to cling to and catch a breath. A line of birch trees grows up the western slopes as the heathery moorland yields to the slender shapes of silvery forest.</description>
<position x="525" y="-52" z="0" />
<arc exit="east" move="east" destination="74" />
<arc exit="climb" move="climb earthen stairs" destination="61" />
</node>
<node id="74" name="Aesry Surlaenis'a, Shadaer Jama">
<description>A burbling sound betrays the presence of running water somewhere nearby. Patches of heather and surlaenis knotweed conceal any springs or small streams that might be the source, but lusher growth does clump around a gouged indentation in the hillside.</description>
<description>A burbling sound betrays the presence of running water somewhere nearby. The dark and the overgrowth of heather conceal any springs or small streams that might be the source.</description>
<position x="545" y="-52" z="0" />
<arc exit="west" move="west" destination="73" />
<arc exit="climb" move="climb terrace stairs" destination="75" />
<arc exit="go" move="go overgrown indentation" destination="288" />
</node>
<node id="75" name="Aesry Surlaenis'a, Shadaer Jama">
<description>A whiff of a sour scent drifts from somewhere nearby. Scraggly groups of wild plum trees just to the north of the road are the tallest trees in the rather moor-like terrain. The hard packed surface of the dirt road continues up and down the slope in a straight east-west direction.</description>
<description>A whiff of a sour scent drifts from somewhere nearby. Scraggly groups of trees to the north are silhouetted against the night sky. The dirt packed surface of the harbor road continues up and down the slope in a straight east-west direction.</description>
<position x="545" y="-72" z="0" />
<arc exit="east" move="east" destination="76" />
<arc exit="climb" move="climb terrace stairs" destination="74" />
</node>
<node id="76" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The chirring of hidden insects vibrates within the tall wild grasses and low shrubs that border the road. Dark rocks emerge above the heath and jut out erratically from the steeply sloping ground. An occasional black-brown rabbit streaks over the gabbro boulders before diving safely out of sight into the rough terrain.</description>
<description>The chirring of hidden insects vibrates within the tall wild grasses and low shrubs that border the road. Dark shapes emerge above the heath and jut out erratically from the steeply sloping ground.</description>
<position x="565" y="-72" z="0" />
<arc exit="west" move="west" destination="75" />
<arc exit="climb" move="climb terrace stairs" destination="77" />
</node>
<node id="77" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Approximately halfway between Selhin Dava and the shore of Cha'walkas, the road widens to a circular, level area enclaved by heather and tall grass. Many travelers use this point as a resting place, if not a spot to survey the surrounding view.</description>
<position x="565" y="-92" z="0" />
<arc exit="east" move="east" destination="78" />
<arc exit="climb" move="climb terrace stairs" destination="76" />
</node>
<node id="78" name="Aesry Surlaenis'a, Shadaer Jama">
<description>This section of the road is paved with the bedrock of a stone outcropping. The stairs are solid rock, and hewn from the same granite vein. Each broad step is smoothly cut, but undulating lines like abstract ocean waves decorate each tread. A single jutting boulder walls off a portion of the view to the north, and its flat facing surface is decorated with the abstract carving of a dragon-like monster.</description>
<position x="585" y="-92" z="0" />
<arc exit="west" move="west" destination="77" />
<arc exit="climb" move="climb granite stairs" destination="79" />
</node>
<node id="79" name="Aesry Surlaenis'a, Shadaer Jama">
<description>This section of the road is paved with the bedrock of a stone outcropping. The stairs are solid rock, and hewn from the same granite vein. Each broad step is smoothly cut, but undulating lines like abstract ocean waves decorate each tread. Some tangling blackberry brambles cover the hillside slopes on both sides of the road.</description>
<position x="585" y="-112" z="0" />
<arc exit="climb" move="climb granite stairs" destination="78" />
<arc exit="east" move="east" destination="80" />
</node>
<node id="80" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The road slopes gently at an angle down to the east before pausing at the brink of another set of stairs cut into the hillside. Off to the south, farmland fields lie in curving narrow strips, some fallow, some planted, in a rhythmic rotation of life and rest.</description>
<position x="605" y="-112" z="0" />
<arc exit="west" move="west" destination="79" />
<arc exit="climb" move="climb terrace stairs" destination="81" />
</node>
<node id="81" name="Aesry Surlaenis'a, Shadaer Jama">
<description>Some large granite stones protrude from the packed dirt surface of the road, aligned like the vertebrae of an animal crouching beneath the soil. The bulges aren't great enough to trip a traveler, but resound like cobblestones when trod upon. Knee-high grasses wave along the sides of the road, the cultivated fields to the north deteriorating to the rockier slopes covered with more of the tall wild grasses.</description>
<position x="605" y="-132" z="0" />
<arc exit="east" move="east" destination="82" />
<arc exit="climb" move="climb terrace stairs" destination="80" />
</node>
<node id="82" name="Aesry Surlaenis'a, Shadaer Jama" color="#008000">
<description>Dark granite stone reinforces the steep stairs cut into the hillside. A group of birch trees shelters this section of dirt road. Given the constant twittering and rattling branches, the cluster of trees is a popular perch for local songbirds which dart in and out of the branches.</description>
<description>Dark granite stone reinforces the steep stairs cut into the hillside. A group of birch trees shelters this section of dirt road, their branches reaching upwards towards the night sky.</description>
<position x="625" y="-132" z="0" />
<arc exit="west" move="west" destination="81" />
<arc exit="climb" move="climb stone stairs" destination="83" />
</node>
<node id="83" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The moderately sloping trail from the east ends abruptly at an earthen and stone stairway carved from the hillside which leads up towards the pass. Low hedges of dark green shrubs divide the bordering fields into protected terraces, creating a crazy-quilt of farms.</description>
<position x="645" y="-152" z="0" />
<arc exit="east" move="east" destination="84" />
<arc exit="climb" move="climb stone stairs" destination="82" />
</node>
<node id="84" name="Aesry Surlaenis'a, Shadaer Jama">
<description>The hard, packed surface of the road which leads up over the pass to the west begins its climb here. Eluned's prayer gate lies a short distance further east. Tilled fields border either side of the road, the air fragrant with rich soil and cultivated vegetation.</description>
<position x="665" y="-152" z="0" />
<arc exit="east" move="east" destination="85" />
<arc exit="west" move="west" destination="83" />
<arc exit="go" move="go lone stable" destination="286" />
</node>
<node id="85" name="Aesry Surlaenis'a, Eluned Prayer Gate">
<description>Gentle terraces of tilled earth rise to the west, leading towards the Selhin Dava. A large prayer gate, watched over by two guards, stands as the only demarcation between the inner slope and the city. Dedicated to Eluned of the Waters, the prayer gate bears an anloral sculpture of a leaping dolphin at its peak.</description>
<position x="685" y="-152" z="0" />
<arc exit="west" move="west" destination="84" />
<arc exit="go" move="bow dolphin;go prayer gate" destination="86" />
</node>
<node id="86" name="Aesry Surlaenis'a, Beneath the Prayer Gate" note="Map99_Aesry_Surlaenis'a.xml|Town|Aesry Surlaenis'a">
<description>Smooth mother-of-pearl walls rise to form a gentle arch above. Mosaics of interlocking shells form images of life beneath Elanthia's oceans. Blue-grey dolphins frolic among sea-green waves as gentle merfolk herd schools of fish into nets of woven kelp. To the east, the Staho Pivo'hrr'schu'Mus leads into the city proper.</description>
<position x="705" y="-152" z="0" />
<arc exit="east" move="east" />
<arc exit="west" move="west" destination="85" />
</node>
<node id="87" name="Aesry Surlaenis'a, Falachui Ikeme" note="Bobcats|Blood Wolves">
<description>The trees begin to thin as the trail climbs at a steep angle up the mountainside. Young stands of fir and modwir crowd the slender birch trees as both compete on the rocky soil. Winding through the dark tree trunks, the path is cushioned by a layer of decaying reddish-brown pine needles.</description>
<position x="345" y="-132" z="0" />
<arc exit="west" move="west" destination="88" />
<arc exit="climb" move="climb steep trail" destination="53" />
</node>
<node id="88" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Slender shapes seem to dart from shadow to shadow beneath the sheltering branches of the trees, only to vanish before you can turn your head. The dark wood and leaves are surprisingly healthy, given the altitude and the cold.</description>
<position x="325" y="-132" z="0" />
<arc exit="east" move="east" destination="87" />
<arc exit="northwest" move="northwest" destination="89" />
</node>
<node id="89" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Thin strands of milkweed drift past, lofted from a bird's nest by an errant breeze. The path branches here to the north and west, making its way around the impenetrable tangle of briars which form a nearby thicket. A hole, half-hidden at the base of the brambles, emits the pungent, musky scent of a badger or skunk.</description>
<position x="305" y="-152" z="0" />
<arc exit="north" move="north" destination="92" />
<arc exit="southeast" move="southeast" destination="88" />
<arc exit="west" move="west" destination="90" />
</node>
<node id="90" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Branches tangle overhead, caught by tendrils of ivy that mingle with the brambles in a nearby briar patch. The thicket is home to a variety of wildlife -- chittering squirrels, shy rabbits and raucous crows are but a few of the more easily identified residents.</description>
<position x="285" y="-152" z="0" />
<arc exit="east" move="east" destination="89" />
<arc exit="southwest" move="southwest" destination="91" />
<arc exit="northwest" move="northwest" destination="96" />
</node>
<node id="91" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>The path ends at the top of a dropoff, leaving no choice but to turn back the way you came. The ocean is visible to the south -- sparkling blue water capped by white foam as the waves crest and roll toward the shore. A pod of dolphins leaps into the air, racing before the prow of a ship just entering the island's western harbor.</description>
<description>The path ends at the top of a dropoff, leaving no choice but to turn back the way you came. The ocean is visible to the south -- sparkling moonlit water capped by white foam as the waves crest and roll toward the shore.</description>
<position x="265" y="-132" z="0" />
<arc exit="northeast" move="northeast" destination="90" />
</node>
<node id="92" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Leaves rustle softly as some unseen animal stalks within the thicket. Evidently the creature poses little threat to the denizens of the briars, as birds' songs continue, unabated by the disturbance. A faint musky scent wafts through the air.</description>
<position x="305" y="-172" z="0" />
<arc exit="north" move="north" destination="93" />
<arc exit="south" move="south" destination="89" />
</node>
<node id="93" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>The air is cool beneath the overhanging branches of the modwir trees that line the path. Soft green moss clings to tree trunks, and the fragrance of leaf mold mingles with the sharp scent of fir needles.</description>
<position x="305" y="-192" z="0" />
<arc exit="south" move="south" destination="92" />
<arc exit="west" move="west" destination="94" />
</node>
<node id="94" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>A flash of red disappears into the darkness as a cardinal darts down to land in the nearby thicket. Deep green vines bearing dark purple berries twine among the brambles, lending a splash of color against the thorny brown backdrop.</description>
<position x="285" y="-192" z="0" />
<arc exit="east" move="east" destination="93" />
<arc exit="west" move="west" destination="95" />
</node>
<node id="95" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Dark grey tufts of matted fur dangle from the branches of a briar patch, pulled from the pelt of a wolf or other creature. Sunlight filters through the leaves to paint the ground with shifting shades of green.</description>
<description>Moonlight filters through the leaves, illuminating tufts of dark grey fur caught on the thorns of a nearby briar patch. Deep within the tangled underbrush, unilluminated by the pallid light of the moons, leaves rustle and branches break with a sharp *snap* as some unseen creature makes its way, padding softly through the thicket.</description>
<position x="265" y="-192" z="0" />
<arc exit="north" move="north" destination="97" />
<arc exit="east" move="east" destination="94" />
<arc exit="south" move="south" destination="96" />
<arc exit="northwest" move="northwest" destination="98" />
</node>
<node id="96" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Half-hidden beneath fallen pine needles, a patch of dried mud captures the paw prints of some large animal. The wind blows strongly on the mountainside, carrying with it the scent of pine needles intermingled with the sharper musky scent of a fox den.</description>
<position x="265" y="-172" z="0" />
<arc exit="north" move="north" destination="95" />
<arc exit="southeast" move="southeast" destination="90" />
</node>
<node id="97" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>A rustling cushion of dried leaves covers the path as it skirts a small pond. Runoff from the snow fields high atop the mountain trickles down the cliff face on the far side of the pond, and collects here, leaving the water icy-cold on even the warmest summer days.</description>
<position x="265" y="-212" z="0" />
<arc exit="northeast" move="northeast" destination="99" />
<arc exit="south" move="south" destination="95" />
<arc exit="west" move="west" destination="98" />
<arc exit="northwest" move="northwest" destination="101" />
<arc exit="go" move="go narrow path" destination="102" />
</node>
<node id="98" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>A boulder juts up through the ground cover, the surface dappled with darker pockets where erosion has worn away the basalt. Tiny peridot chips embedded in the rock sparkle as the light refracts through the crystals.</description>
<position x="245" y="-212" z="0" />
<arc exit="north" move="north" destination="101" />
<arc exit="east" move="east" destination="97" />
<arc exit="southeast" move="southeast" destination="95" />
</node>
<node id="99" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Twisted roots stretch across the path, catching the feet of unwary hunters as they pass beneath the shelter of the modwir trees that line the trail. A spider industriously spins her web from tree branch to trunk, the pale grey strands glistening in the light.</description>
<position x="285" y="-232" z="0" />
<arc exit="southwest" move="southwest" destination="97" />
<arc exit="northwest" move="northwest" destination="100" />
</node>
<node id="100" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>The path comes to an abrupt end at the base of a tall cliff. Gnarled roots and crevices mark the surface, providing purchase for the agile to scramble up the slope. Narrow rivulets of frigid water trickle down the cliff face from the snow fields above, collecting in a nearby pond.</description>
<position x="260" y="-260" z="0" />
<arc exit="southeast" move="southeast" destination="99" />
<arc exit="southwest" move="southwest" destination="101" />
<arc exit="climb" move="climb tall cliff" destination="103" />
<arc exit="go" move="go wide crevice" destination="331" />
</node>
<node id="101" name="Aesry Surlaenis'a, Falachui Ikeme">
<description>Stunted modwirs cling with gnarled roots to the thin patches of dirt that nestle between the rocky outcroppings beside the path. The wind is chill, cutting through layers of clothing and armor alike.</description>
<position x="245" y="-232" z="0" />
<arc exit="northeast" move="northeast" destination="100" />
<arc exit="southeast" move="southeast" destination="97" />
<arc exit="south" move="south" destination="98" />
</node>
<node id="102" name="Aesry Surlaenis'a, Chedirnan">
<description>The deep, still water of the pool reflects the sky and the surrounding trees with crystal clarity, disturbed only along the cliff edge where multiple tiny waterfalls eddy the surface. Huge boulders that have separated from the cliff face lie scattered here and there, surrounded by rhododendron and ferns. Behind one immense block that fell within inches of the cliff face, a rough stairway leads upward in a narrow gap.</description>
<position x="305" y="-212" z="0" />
<arc exit="go" move="go narrow path" destination="97" />
<arc exit="climb" move="climb rough stairway" destination="122" />
</node>
<node id="103" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Snow covers the rocky ground at the highest reaches of the island, nestling in the angular hollows between jagged basalt stones. The trade road leading to the city of Aesry Surlaenis'a winds around the mountainside about a thousand feet below. Rivulets of frigid water trickle over the side of the cliff, falling into a pond far, far below.</description>
<position x="260" y="-300" z="0" />
<arc exit="east" move="east" destination="104" />
<arc exit="climb" move="climb tall cliff" destination="100" />
</node>
<node id="104" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Gusts of wind dance between the jagged rocks strewn across the mountainside. Rivulets of ice mingle with lighter trachytic flows, winding against the dark basalt backdrop like an eternally frozen river. While it would be a difficult climb, it might be possible to scramble up the ice to the trail above.</description>
<position x="280" y="-300" z="0" />
<arc exit="southeast" move="southeast" destination="105" />
<arc exit="west" move="west" destination="103" />
<arc exit="climb" move="climb wall ice" destination="110" />
</node>
<node id="105" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Olivine deposits form dull green streaks through a dark basalt boulder on the upper side of the trail. Though cold now, once this area must have burned with the volcano's fiery rage.</description>
<position x="300" y="-280" z="0" />
<arc exit="northeast" move="northeast" destination="106" />
<arc exit="northwest" move="northwest" destination="104" />
</node>
<node id="106" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Snowdrops bloom between the rocks which line a sheltered hollow along the trail. When open, the pale blue, almost white, petals reveal the flower's crimson heart.</description>
<position x="320" y="-300" z="0" />
<arc exit="northeast" move="northeast" destination="107" />
<arc exit="southwest" move="southwest" destination="105" />
</node>
<node id="107" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>A cold wind howls along the stark rocks of the trail, chilling the body as it depresses the spirits. Local legend holds that the spirits of animals slain by the volcano still roam the hillsides, unaware of their demise.</description>
<position x="340" y="-320" z="0" />
<arc exit="southwest" move="southwest" destination="106" />
<arc exit="northwest" move="northwest" destination="108" />
</node>
<node id="108" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>The skeleton of a horse or other large animal lies in a tumbled heap a short way down the slope. One leg is obviously broken, and the iron head and curved brass flights of a crossbow bolt are visible nearby. The bones gleam whitely, picked clean by the scavengers who roam the mountainside, ever hungry for their next meal.</description>
<position x="320" y="-340" z="0" />
<arc exit="southeast" move="southeast" destination="107" />
<arc exit="west" move="west" destination="109" />
</node>
<node id="109" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Icy tendrils of mist sway along the snow-covered surface of the mountainside. High above the treeline, the wind blows cold and strong, making the already low temperature seem even worse and lending credibility to the S'Kra Mur notion of hell as a place of ice and frost.</description>
<position x="300" y="-340" z="0" />
<arc exit="east" move="east" destination="108" />
<arc exit="southwest" move="southwest" destination="110" />
</node>
<node id="110" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Frozen rivulets of ice tumble over the side of the mountain, reflecting the sunlight in a spectacular display. The rocky trail is slick underfoot, making travel hazardous. It might be possible to scramble down the ice to the trail below, but the climb would almost certainly be treacherous.</description>
<description>Frozen rivulets of ice tumble over the side of the mountain, reflecting the moonlight with a soft glow. The rocky trail is slick underfoot, making travel hazardous. It might be possible to scramble down the ice to the trail below, but the climb would almost certainly be treacherous.</description>
<position x="280" y="-320" z="0" />
<arc exit="northeast" move="northeast" destination="109" />
<arc exit="northwest" move="northwest" destination="111" />
<arc exit="climb" move="climb wall ice" destination="104" />
</node>
<node id="111" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Beneath the shelter of an overhanging rock, an irregular circle of blackened rocks outlines the charred remains of a long-extinguished campfire. Outside, the wind whistles about the area in a disconsolate howl, as if bemoaning the loss of its victims.</description>
<position x="260" y="-340" z="0" />
<arc exit="southeast" move="southeast" destination="110" />
<arc exit="west" move="west" destination="112" />
</node>
<node id="112" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Glassy bands of obsidian streak the surface of the mountainside, reflecting the light with a painful glare. Gusts of wind drive the snow before them, forming deep drifts that nestle in the hollows between the rocks.</description>
<description>Glassy bands of obsidian reflect moonlight, shining softly as if Katamba bathed the mountainside in its eerie dark glow. Gusts of wind drive the snow before them, forming deep drifts that nestle in the hollows between the rocks.</description>
<position x="240" y="-340" z="0" />
<arc exit="east" move="east" destination="111" />
<arc exit="northwest" move="northwest" destination="113" />
</node>
<node id="113" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Icy spears dangle from a rocky overhang, the arm-thick icicles catching at hair and clothing of careless travelers. Pale grey fragments of ash crunch underfoot, providing a bit of traction on the treacherous surface of the path.</description>
<position x="220" y="-360" z="0" />
<arc exit="east" move="east" destination="114" />
<arc exit="southeast" move="southeast" destination="112" />
</node>
<node id="114" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Bundles of wood and kindling tied with string are stacked outside the burnt-out shell of a waystation high on the mountainside. No trees grow nearby, so all wood must be carted up the trail from the forests below, a laborious process required to keep the station stocked for emergencies. A faint scent of smoke lingers in the air from the charred timbers.</description>
<position x="240" y="-360" z="0" />
<arc exit="west" move="west" destination="113" />
<arc exit="up" move="up" destination="115" />
</node>
<node id="115" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Far below, the warm waters of the ocean glisten in the sunlight. Ships' sails billow in the breeze as they skip across the surface of the harbor. The same wind, at this altitude, chills the traveler to the bone. The sunlight that warms the waters below seems merely to accentuate the cold.</description>
<description>Far below, the warm waters of the ocean glisten in the moonlight. Ships' sails billow in the breeze as they skip across the surface of the harbor. The same wind, at this altitude, chills the traveler to the bone.</description>
<position x="240" y="-380" z="0" />
<arc exit="east" move="east" destination="116" />
<arc exit="down" move="down" destination="114" />
</node>
<node id="116" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>A faint mist hovers over the ice and snow, swirling about in an uneasy dance. Rounded boulders, smoothed by exposure to the elements, are scattered across the snowfield like a child's discarded marbles. Swirls of olivine streak the glossy black surfaces, heightening the impression.</description>
<position x="260" y="-380" z="0" />
<arc exit="east" move="east" destination="117" />
<arc exit="west" move="west" destination="115" />
</node>
<node id="117" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>Snow drifts down from an overhanging ledge about fifty feet above. Travelers must move quietly to avoid vibrations that might trigger an avalanche. Further up the trail you can see the outline of a cabin.</description>
<position x="280" y="-380" z="0" />
<arc exit="west" move="west" destination="116" />
<arc exit="up" move="up" destination="118" />
</node>
<node id="118" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>The path slopes sharply upward as it nears the end, reaching the summit after a strenuous scramble over the rock-strewn trail. Gusts of wind further unbalance those who attempt to make their way, howling about to catch at clothing and hair impartially.</description>
<position x="280" y="-400" z="0" />
<arc exit="up" move="up" destination="119" />
<arc exit="down" move="down" destination="117" />
</node>
<node id="119" name="Aesry Surlaenis'a, Geshi'selhin Chui">
<description>The trail ends at a rocky promontory on the rim of the mountain. From this point, balanced on a ledge about twenty paces across, there is a view of both the ocean at the base of the mountain, and the town nestled in the crater. A cabin stands here, providing shelter for the guards who maintain the watch, and a signal fire beside it stands ready to be lit to warn the town of the approach of invaders from the sea.</description>
<position x="280" y="-420" z="0" />
<arc exit="down" move="down" destination="118" />
<arc exit="go" move="go log cabin" destination="120" />
</node>
<node id="120" name="Mountain Cabin">
<description>Mud and moss chink the gaps between the logs in the cabin's walls, and colorful woolen blankets are hung along the interior to further reduce the drafts. A sturdy wooden table is placed over a trap door in the floor beside the brick hearth.</description>
<position x="280" y="-440" z="0" />
<arc exit="out" move="out" destination="119" />
<arc exit="go" move="go trap door" destination="121" />
</node>
<node id="121" name="Mountain Cabin, Cold Cellar">
<description>Dried hams and sausages hang from the rafters of the cold cellar, safely out of reach of rodents. Along the walls, metal-lined wooden bins filled with sand hold carrots, potatoes, apples and pears, while other bins hold various grains. Wax-sealed terra cotta urns filled with oil rest within a sand-filled pit, cushioned against breakage.</description>
<position x="280" y="-460" z="0" />
<arc exit="go" move="go trap door" destination="120" />
</node>
<node id="122" name="Aesry Surlaenis'a, Amakra">
<description>Atop the boulder, a narrow ledge climbs the cliff face upward. Tiny yellow flowers sprout from cracks in the sheer rock, clinging tenaciously in any tiny bit of soil that accumulates.</description>
<position x="305" y="-232" z="0" />
<arc exit="climb" move="climb narrow ledge" destination="123" />
<arc exit="climb" move="climb rough stairway" destination="102" />
</node>
<node id="123" name="Aesry Surlaenis'a, Amakra">
<description>The ledge widens slightly, creating a resting spot and a high vantage point. To one side, a very steep slope formed of tumbled gravel forms a precarious path upward. Far in the distance, tiny ships and fishing boats move in and out of the harbor, their crews too far off to make out.</description>
<description>The ledge widens slightly, creating a resting spot and a high vantage point. To one side, a very steep slope formed of tumbled gravel forms a precarious path upward. Far in the distance, tiny golden lights glide on the shimmering black expanse of ocean, creating streaks of brightness on the night-lit water.</description>
<position x="325" y="-232" z="0" />
<arc exit="climb" move="climb steep slope" destination="124" />
<arc exit="climb" move="climb narrow ledge" destination="122" />
</node>
<node id="124" name="Aesry Surlaenis'a, Bu'amakra">
<description>The slope ends abruptly at a wall of dirty grey that breathes cold even more intense than the thin chill air. Faintly visible under the streaks of grit is a hint of pristine white. An occasional loud cracking sound bears witness to the ponderous, imperceptible movement of the glacial ice.</description>
<position x="345" y="-232" z="0" />
<arc exit="go" move="go small fissure" destination="125" />
<arc exit="climb" move="climb steep slope" destination="123" />
</node>
<node id="125" name="Aesry Surlaenis'a, Geshiger" note="Safe Room|Fissure">
<description>The interior of the underground compartment is slick with ice crystals and powdery frost. Cold air wafts from deeper within the small space, seeping through unseen cracks and a larger crevice. Oddly, the back of the cavern seems no darker than the front.</description>
<description>The interior of the underground compartment is slick with ice crystals and powdery frost. Cold air wafts from deeper within the small space, seeping through unseen cracks. Oddly, the back of the cavern seems no darker than the front.</description>
<position x="365" y="-212" z="0" />
<arc exit="out" move="out" destination="124" />
<arc exit="go" move="go narrow crevice" destination="126" />
</node>
<node id="126" name="Aesry Surlaenis'a, Geshiger">
<description>Huge boulders and bands of jumbled rock hang suspended in solid blue-green ice. Sharp slices of frigid air cut with every breath, and in the pale light, clouds of foggy mist churn as warm air collides with the cold. The floor of the passageway is crisp with tiny snow-like particles, collected as condensation froze and fell.</description>
<position x="385" y="-212" z="0" />
<arc exit="down" move="down" destination="127" />
<arc exit="go" move="go crevice" destination="125" />
<arc exit="northeast" move="northeast" destination="128" />
</node>
<node id="127" name="Aesry Surlaenis'a, Geshiger">
<description>A deep gash cuts across the floor of the passageway -- a misstep would plunge the hapless wanderer to immeasurable depths and a hopeless doom. Chunks of fallen boulders, all coated in powdery frost, create an obstacle course requiring careful navigation.</description>
<position x="374" y="-224" z="0" />
<arc exit="north" move="north" destination="128" />
<arc exit="up" move="up" destination="126" />
</node>
<node id="128" name="Aesry Surlaenis'a, Geshiger">
<description>The long, narrow tunnel snakes deeper into the glacier, the low ceiling requiring all except the shortest races to bend to avoid protrusions of ice flow hanging from the ceiling. Ice so cold that touching it sucks the very strength from the living threatens to entomb any attempting this journey -- only sheer will prevails.</description>
<position x="398" y="-225" z="0" />
<arc exit="north" move="north" destination="129" />
<arc exit="northeast" move="northeast" destination="130" />
<arc exit="south" move="south" destination="127" />
<arc exit="southwest" move="southwest" destination="126" />
</node>
<node id="129" name="Aesry Surlaenis'a, Geshiger">
<description>The narrow passage to the south opens out into a large echoing cavern, with icy walls soaring into darkness. The soft brushing sound is that of falling particles of frozen mist -- it whispers as it touches the floor, the chunks of fallen rock, or your face.</description>
<position x="398" y="-247" z="0" />
<arc exit="east" move="east" destination="130" />
<arc exit="south" move="south" destination="128" />
<arc exit="northeast" move="northeast" destination="131" />
</node>
<node id="130" name="Aesry Surlaenis'a, Geshiger">
<description>The dimensions of the cavern are hard to judge, as the walls soar into darkness. Softly whispering frozen mist continues to fall from the air, coating everything it touches with a fine, white powder. The floor slopes at a sharp angle to the north.</description>
<position x="420" y="-247" z="0" />
<arc exit="northwest" move="northwest" destination="131" />
<arc exit="southwest" move="southwest" destination="128" />
<arc exit="west" move="west" destination="129" />
</node>
<node id="131" name="Aesry Surlaenis'a, Geshiger">
<description>Near the northern end of the cavern, the walls and floor converge to form an alcove. A vertical crevice, barely wide enough to squeeze through, leads deeper into the rock. Overhead, icicles hang like pointy teeth in a gaping maw, glistening hungrily and shedding a glowing blue-green light through the massive layers of ice.</description>
<position x="409" y="-258" z="0" />
<arc exit="southeast" move="southeast" destination="130" />
<arc exit="go" move="go crevice" destination="132" />
<arc exit="southwest" move="southwest" destination="129" />
</node>
<node id="132" name="Aesry Surlaenis'a, Geshiger">
<description>This high chamber appears to be carved out of solid ice. Icicles of tremendous proportions hang overhead like stalactites from a dim, invisible ceiling. Cubical chunks tumble about the floor and emerge from the wall, stuck fast. Although the cold air penetrates all, closer examination reveals the crystalline structure is not frozen water, but clear quartz-like rocks that will never thaw even should the cold be banished.</description>
<position x="448" y="-288" z="0" />
<arc exit="north" move="north" destination="133" />
<arc exit="northeast" move="northeast" destination="134" />
<arc exit="down" move="down" destination="135" />
<arc exit="go" move="go crevice" destination="131" />
</node>
<node id="133" name="Aesry Surlaenis'a, Geshiger">
<description>Ice-clear rock lines the winding passageway that slopes deeper into the mountainside, allowing light from the surface to filter through and dimly illuminate all. Northwards, warmer air brushes through, a sweet scented air that speaks of hope. The floor is still slick underfoot with a sheet of ice.</description>
<position x="448" y="-308" z="0" />
<arc exit="east" move="east" destination="134" />
<arc exit="south" move="south" destination="132" />
</node>
<node id="134" name="Aesry Surlaenis'a, Geshiger">
<description>A webbing of dripping spun-ice bars the passageway. The barrier appears to melt and reform as tendrils creep from the floor and walls to join, and then dissolve into a dripping puddle. Warm air seeps past it, though a frigid wind sails through the turns of the corridor to the south.</description>
<position x="468" y="-308" z="0" />
<arc exit="west" move="west" destination="133" />
<arc exit="go" move="go ice barrier" destination="287" />
<arc exit="southwest" move="southwest" destination="132" />
<arc exit="down" move="down" destination="137" />
</node>
<node id="135" name="Aesry Surlaenis'a, Geshiger">
<description>The cold of the void, a cold no life could survive for long, fills the tunnel. Bits of crystal glint where light touches them, the hard cold rock speaking of the unforgiving state of eternal winter.</description>
<position x="448" y="-268" z="0" />
<arc exit="up" move="up" destination="132" />
<arc exit="down" move="down" destination="136" />
<arc exit="east" move="east" destination="137" />
</node>
<node id="136" name="Aesry Surlaenis'a, Geshiger">
<description>The cold blue-green glow filtering through the mass of ice and tumbled rock casts a weird dead light on everything it touches. No sound echoes -- the very vibrations freeze as if in the void.</description>
<position x="448" y="-248" z="0" />
<arc exit="northeast" move="northeast" destination="137" />
<arc exit="up" move="up" destination="135" />
<arc exit="east" move="east" destination="138" />
</node>
<node id="137" name="Aesry Surlaenis'a, Geshiger">
<description>A thud of sound thrums through the rock walls, the purpose and rhythm mysterious. From time to time, a swirl of air picks up the frozen particles littering the floor and spins them about in a small tornado storm.</description>
<position x="468" y="-268" z="0" />
<arc exit="southwest" move="southwest" destination="136" />
<arc exit="southeast" move="southeast" destination="139" />
<arc exit="west" move="west" destination="135" />
<arc exit="down" move="down" destination="138" />
<arc exit="up" move="up" destination="134" />
</node>
<node id="138" name="Aesry Surlaenis'a, Geshiger">
<description>A cathedral of ice rises around you, the ceiling lost in shadowy darkness. The floor is smooth and slick underfoot, like polished marble. Large sections of the side walls have peeled off under the enormous pressure, and an occasional echoing crack bears testimony to the slow movement of the ice.</description>
<position x="468" y="-248" z="0" />
<arc exit="east" move="east" destination="139" />
<arc exit="up" move="up" destination="137" />
<arc exit="west" move="west" destination="136" />
</node>
<node id="139" name="Aesry Surlaenis'a, Geshiger">
<description>The cavern narrows slightly, with the floor ankle deep in piles of dry, powdery ice crystals. Its walls, frosted like the sides of a cake, round and swell with the swirling formations of rime. Light bounces off the tiny granules to sparkle like distant stars or diamond fragments.</description>
<position x="488" y="-248" z="0" />
<arc exit="northwest" move="northwest" destination="137" />
<arc exit="southeast" move="southeast" destination="141" />
<arc exit="west" move="west" destination="138" />
<arc exit="east" move="east" destination="140" />
</node>
<node id="140" name="Aesry Surlaenis'a, Geshiger">
<description>Deep inside the cavern, only blue light filters in through the frozen ice mass. The corners and niches are a deep, pure indigo, shading almost to azure on the more exposed surface of a pile of ice crystals.</description>
<position x="508" y="-248" z="0" />
<arc exit="west" move="west" destination="139" />
<arc exit="down" move="down" destination="141" />
<arc exit="southeast" move="southeast" destination="142" />
</node>
<node id="141" name="Aesry Surlaenis'a, Geshiger">
<description>A skeleton of white bones hangs caught on a shelf of rock above. Coated in a light dusting of icy powder, it is fast becoming one with the bitter cold frost and rock that surrounds all. Drifts of brittle ice particles hug the base of the walls.</description>
<position x="508" y="-228" z="0" />
<arc exit="northeast" move="northeast" destination="142" />
<arc exit="up" move="up" destination="140" />
<arc exit="northwest" move="northwest" destination="139" />
</node>
<node id="142" name="Aesry Surlaenis'a, Geshiger">
<description>A waterfall once fell through a crack in the rock overhead, but is now frozen in frothy turmoil into a solid chunk of hard glacial ice. Only the imagination can recall the roar of sound such a torrent would have made as it flowed. Underfoot, ice smooth as a mirror levels the floor.</description>
<position x="518" y="-238" z="0" />
<arc exit="northwest" move="northwest" destination="140" />
<arc exit="southwest" move="southwest" destination="141" />
<arc exit="go" move="go vertical slit" destination="143" />
</node>
<node id="143" name="Aesry Surlaenis'a, Geshiger">
<description>Smooth, slick ice lines the walls of the small cavern, and the air seems dead and lifeless. Buried deep within the glacier, narrow passageways leading eastward go further still.</description>
<position x="541" y="-238" z="0" />
<arc exit="northeast" move="northeast" destination="145" />
<arc exit="east" move="east" destination="144" />
<arc exit="go" move="go dark slit" destination="142" />
</node>
<node id="144" name="Aesry Surlaenis'a, Geshiger">
<description>Within the cold ice cave, strange swirls and angular cuts sliced into the glassy walls speak an indecipherable tale. Piles of ice-dust glimmer like anthills of diamond slivers, curiously scattered about the chamber.</description>
<position x="554" y="-238" z="0" />
<arc exit="east" move="east" destination="147" />
<arc exit="west" move="west" destination="143" />
<arc exit="northeast" move="northeast" destination="146" />
<arc exit="up" move="up" destination="145" />
</node>
<node id="145" name="Aesry Surlaenis'a, Geshiger">
<description>A ridge of packed ice creates a slippery slope to traverse. Small holes bored into the frozen material emit a nasty-smelling odor, exhaling tendrils of smoky fog that freeze to tiny crystalized grains.</description>
<position x="554" y="-251" z="0" />
<arc exit="southwest" move="southwest" destination="143" />
<arc exit="southeast" move="southeast" destination="147" />
<arc exit="east" move="east" destination="146" />
<arc exit="down" move="down" destination="144" />
</node>
<node id="146" name="Aesry Surlaenis'a, Geshiger">
<description>Crystalline stalactites of purest ice hang from the ceiling in fang-like rows. The dim blue light casts weird shadows and creates an alien landscape where nothing appears as it did on the surface under the sun and moons.</description>
<position x="567" y="-251" z="0" />
<arc exit="southwest" move="southwest" destination="144" />
<arc exit="west" move="west" destination="145" />
<arc exit="down" move="down" destination="147" />
</node>
<node id="147" name="Aesry Surlaenis'a, Geshiger">
<description>This deep within the glacier, the light dims and shadows fill all corners and crevices. Tiny ice particles swirl in the soft breezes created by any movement, creating the shapes of creatures flickering in the darkness, gone before one can put a name or fear to them.</description>
<position x="567" y="-238" z="0" />
<arc exit="northeast" move="rt lie; northeast" destination="152" />
<arc exit="west" move="west" destination="144" />
<arc exit="northwest" move="northwest" destination="145" />
<arc exit="up" move="rt stand; up" destination="146" />
</node>
<node id="148" name="Lybadel, Main Deck" note="Map998_Transports.xml">
<description>In the middle of the ship, the main deck is closest to the water of all the open decks, and on a hard heel the waves can wash over the exposed planks. For this reason, everything is securely fastened down to keep it from sliding or being washed away, and the hatches are tightly dogged shut. Forward lies the forecastle and an oak door leading to the galley, while aft rises the quarterdeck and under it, a cabin door.</description>
<position x="-35" y="-12" z="0" />
<arc exit="go" move="go surlaenis" destination="3" />
<arc exit="go" move="go riverhaven" />
</node>
<node id="149" name="Aesry Surlaenis'a, Cove" color="#0000FF">
<description>The farther from shore, the rougher the surf. Huge swells of saltwater sweep any flotsam great distances in a flash, all adrift in ceaseless motion.</description>
<position x="-15" y="108" z="0" />
<arc exit="east" move="swim east" destination="21" />
<arc exit="southeast" move="swim southeast" destination="149" />
<arc exit="south" move="swim south" destination="150" />
<arc exit="southwest" move="swim southwest" destination="154" />
</node>
<node id="150" name="Aesry Surlaenis'a, Cove" color="#0000FF">
<description>Though hardly calm, the cove is still sheltered and the waves gentle enough to avoid the dangers of a lonely death, dashed against the rocks. The water is very deep, the bottom unseen in the dark below. Upon its surface, the swells set all afloat drifting.</description>
<position x="-15" y="128" z="0" />
<arc exit="north" move="swim north" destination="149" />
<arc exit="northeast" move="swim northeast" destination="21" />
<arc exit="east" move="swim east" destination="22" />
<arc exit="west" move="swim west" destination="154" />
</node>
<node id="152" name="Aesry Surlaenis'a, Geshiger">
<description>Tunneling through walls of ice, this passageway slopes downwards to the southwest. The colorless, hard surrounding surfaces show no sign of mortal passage, and no sign of thaw.</description>
<position x="580" y="-251" z="0" />