-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map95_Ratha_NE.xml
2376 lines (2376 loc) · 186 KB
/
Map95_Ratha_NE.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="Coastal Road" id="95">
<node id="1" name="Shh'o'kumu Terrace, Por'oson Gate" note="Map90_Ratha.xml|Ratha">
<description>The great wall culminates here with the large and stately Por'oson Gate. Day and night, streams of travelers find paths through the gate to the agricultural lands and great forests to the northeast, or find access to the ports of the city below. A pair of wary guards watches the comings and goings here, constantly alert to potential trouble.</description>
<position x="20" y="-20" z="0" />
<arc exit="east" move="east" />
<arc exit="west" move="west" />
<arc exit="go" move="go por'oson gate" destination="2" />
</node>
<node id="2" name="Reshalia, Coastal Road">
<description>The heavy wooden Por'oson Gate stands open even at night, but the guards keep a close eye on anyone passing through, occasionally stopping a suspicious-looking traveler to ask his business. Torches flaring in heavy iron sconces provide bright illumination, although the shadows that remain seem even blacker by contrast.</description>
<description>The heavy wooden Por'oson Gate stands open day and night, and the guards keep an eye on everyone passing through, occasionally stopping a suspicious-looking traveler to ask his business. Most of those going in and out are local farmers bringing in loads of grain or other crops in huge, heaped wooden farm wagons, and the guards' most careful scrutiny is reserved for the few strangers who pass by.</description>
<position x="20" y="-40" z="0" />
<arc exit="north" move="north" destination="3" />
<arc exit="go" move="go por'oson gate" destination="1" />
</node>
<node id="3" name="Reshalia, Coastal Road">
<description>Heavy gravel covers the roadway, allowing the constant wagon traffic to pass over it without creating a muddy morass in wet weather. Deep ditches to either side provide for drainage but also create a hazard for any wagon wheel that slips into them. Stagnant water and cattails fill the low spots.</description>
<position x="20" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="4" />
<arc exit="south" move="south" destination="2" />
</node>
<node id="4" name="Reshalia, Coastal Road">
<description>Well-tended fields stretch out over the flat ground as far as can be seen, and the night breeze passing over them creates a gentle hissing sound in the still darkness. Off to the northwest, the tall cone of Reshalia's volcano lies slumbering on the horizon, visible only as a darker mass against the sky.</description>
<description>Well-tended fields stretch out over the flat ground as far as can be seen. Black dots that might be far-off workers move slowly across them. Off to the northwest, the tall cone of Reshalia's volcano lies slumbering on the horizon.</description>
<position x="40" y="-80" z="0" />
<arc exit="northeast" move="northeast" destination="5" />
<arc exit="southwest" move="southwest" destination="3" />
</node>
<node id="5" name="Reshalia, Coastal Road">
<description>A cluster of old buildings lies just a short bit off the road, slowly falling into ruin. The wood from which they were originally built has weathered down to a uniform dark grey, and any paint has long since disappeared. A few tendrils of wild kord slither around the exposed ribs of the rafters.</description>
<position x="60" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="6" />
<arc exit="southwest" move="southwest" destination="4" />
</node>
<node id="6" name="Reshalia, Coastal Road">
<description>A small farm pond has been created by damming a tiny stream running along the fields. Thick cattails and marsh grass choke most of it, and they are inhabited by loud swarms of frogs vocalizing their love calls into the night. A few cattle slumber nearby, visible only as small mounds in the darkness.</description>
<description>A small farm pond has been created by damming a tiny stream running along the fields. A few cattle graze nearby. Muddy ground gouged by deep hoof prints marks the favored watering spot, and thick cattails and marsh grass choke most of the rest of the pond.</description>
<position x="80" y="-120" z="0" />
<arc exit="east" move="east" destination="7" />
<arc exit="southwest" move="southwest" destination="5" />
</node>
<node id="7" name="Reshalia, Coastal Road">
<description>A line of haystacks along the side of the road creates the only hills visible for leagues in all directions. A few small cottages are scattered here and there among the grain fields, surrounded by mounds of trees.</description>
<position x="100" y="-120" z="0" />
<arc exit="east" move="east" destination="8" />
<arc exit="west" move="west" destination="6" />
</node>
<node id="8" name="Reshalia, Coastal Road">
<description>Carefully plowed fields march off to either side in neat geometry, each one squared up against its neighbors. Near the road, an abandoned farm cottage droops, doors missing, so that passersby see straight through the front door and out the back to the fields beyond.</description>
<position x="120" y="-120" z="0" />
<arc exit="east" move="east" destination="9" />
<arc exit="west" move="west" destination="7" />
</node>
<node id="9" name="Reshalia, Coastal Road">
<description>At just the right spot, it's possible to look down the neat rows plowed perpendicular to the road almost as far as the horizon. A tumble of black stones has been piled up next to the road. Near it, someone has made an amateur start on a stacked stone wall, but it crumbles after only a few lengths.</description>
<position x="140" y="-120" z="0" />
<arc exit="northeast" move="northeast" destination="10" />
<arc exit="west" move="west" destination="8" />
</node>
<node id="10" name="Reshalia, Coastal Road">
<description>Ruts in the road mark where the wheels of the farmers' wagons travel back and forth to town. In whole sections, the gravel has been washed away and the surface is only dirt.</description>
<position x="160" y="-140" z="0" />
<arc exit="northeast" move="northeast" destination="11" />
<arc exit="southwest" move="southwest" destination="9" />
</node>
<node id="11" name="Reshalia, Coastal Road">
<description>The ocean stretches out at the eastward horizon, a flat black expanse visible between the gently rolling hills. It blends into the darkness of the sky, making their line of separation hard to pick out.</description>
<description>The ocean stretches out at the eastward horizon, a flat blue-grey expanse visible between the gently rolling green hills. The color of the sky blends into the water, making their line of separation hard to pick out.</description>
<position x="180" y="-160" z="0" />
<arc exit="north" move="north" destination="12" />
<arc exit="southwest" move="southwest" destination="10" />
</node>
<node id="12" name="Reshalia, Coastal Road">
<description>Fields of cultivated kord lie to either side of the road, carefully tended and weeded by the farmer who owns this land. The fibrous plants grow tall and stalky, with only a few leaves scattered along the stem.</description>
<position x="180" y="-180" z="0" />
<arc exit="northeast" move="northeast" destination="13" />
<arc exit="south" move="south" destination="11" />
</node>
<node id="13" name="Reshalia, Coastal Road">
<description>Fields of grain stretch to the west, looking something like a child's nubby blanket that has been carelessly tossed on the ground. Occasionally a rough track, just wide enough for a wagon, branches off the main road and heads into the fields. To the east, the drop-off down to the ocean is not far, and if the wind is right, the sound of waves crashing at its base can faintly be heard.</description>
<position x="200" y="-200" z="0" />
<arc exit="northeast" move="northeast" destination="14" />
<arc exit="southwest" move="southwest" destination="12" />
</node>
<node id="14" name="Reshalia, Coastal Road">
<description>A point of black rock juts into the ocean like an arrowhead. The road curves with it, just at the edge of the fall down to the water, hugging a large bay cut into the coast. A narrow strip of sand lies at the base of the rocks.</description>
<position x="220" y="-220" z="0" />
<arc exit="southwest" move="southwest" destination="13" />
<arc exit="northwest" move="northwest" destination="15" />
</node>
<node id="15" name="Reshalia, Coastal Road">
<description>Streaks of reflected light gleam and waver across the black water below, glowing almost luminously on the white froth of the waves breaking along the shore. The constant rhythmic roar provides a background to the other quiet noises of the night.</description>
<description>Sea birds wheel and cry overhead, searching for food among the pools at the water's edge below. Their constant cries blend into a raucous harmony as they caw and cackle to each other, occasionally gliding down to rest on the rocks or a piece of bleached driftwood.</description>
<position x="200" y="-240" z="0" />
<arc exit="southeast" move="southeast" destination="14" />
<arc exit="west" move="west" destination="16" />
</node>
<node id="16" name="Reshalia, Coastal Road">
<description>The road winds around huge rocks, curving along the steep hill falling toward the ocean. Boulders stud the sandy beach below, the black basalt twisted into odd shapes by the force of the waves and its volcanic origin.</description>
<position x="180" y="-240" z="0" />
<arc exit="east" move="east" destination="15" />
<arc exit="northwest" move="northwest" destination="17" />
</node>
<node id="17" name="Reshalia, Coastal Road">
<description>A narrow band of sand lies at the base of the steep rocks on which the road runs, washed by the ceaseless rhythm of the waves rolling in. A huge pile of driftwood has collected just above high tide level, forming nooks and crannies that are inhabited by several kinds of creatures, judging from the tracks left in the sand.</description>
<position x="160" y="-260" z="0" />
<arc exit="north" move="north" destination="18" />
<arc exit="southeast" move="southeast" destination="16" />
</node>
<node id="18" name="Reshalia, Coastal Road">
<description>A thin stream tumbles down the cliff face, scattering on rocks in its way, and passing under the road's narrow wooden bridge to throw itself in a filmy veil off the cliff and into the ocean below.</description>
<position x="160" y="-280" z="0" />
<arc exit="northeast" move="northeast" hidden="True" destination="19" />
<arc exit="south" move="south" destination="17" />
</node>
<node id="19" name="Reshalia, Coastal Road">
<description>The road winds around tumbled black basalt rocks that fall steeply down into the bay. The water swirls at their base as the waves roll in, in places white with foam, in others a deep green that hints at its depth.</description>
<position x="100" y="-60" z="0" />
<arc exit="east" move="east" destination="20" />
<arc exit="southwest" move="southwest" hidden="True" destination="18" />
</node>
<node id="20" name="Reshalia, Coastal Road">
<description>Just offshore, huge boulders and slices of rock break the waves. Some are almost small islands, while others barely show above the surface of the water, suggesting that there may be more hidden and dangerous rocks lurking unseen below.</description>
<position x="120" y="-60" z="0" />
<arc exit="east" move="east" destination="21" />
<arc exit="west" move="west" destination="19" />
</node>
<node id="21" name="Reshalia, Coastal Road">
<description>A bit of the cliffside has split off and created a small island just about the same height as the roadway. A lone dwarf pine tree is growing on the very top of the massive rock, bent by the constant ocean breeze so that its leaves look like windswept smoke trailing out behind the trunk.</description>
<position x="140" y="-60" z="0" />
<arc exit="east" move="east" destination="22" />
<arc exit="west" move="west" destination="20" />
</node>
<node id="22" name="Reshalia, Coastal Road">
<description>Hugging the cliffside, the road has been well maintained, although a scar here and there shows where a bit of it slid down into the water below. Jagged boulders just offshore create a hazard to any boater attempting to navigate into the bay, as the spray flung up by the force of the waves attests.</description>
<position x="160" y="-60" z="0" />
<arc exit="east" move="east" destination="23" />
<arc exit="west" move="west" destination="21" />
</node>
<node id="23" name="Reshalia, Coastal Road">
<description>A good-sized bay cuts into the coast, and the road curves around the cliffs lining it. Across the stretch of water to the south, a pale line cutting across the hillside marks its path as it heads toward the city gates of Ratha.</description>
<position x="180" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="24" />
<arc exit="west" move="west" destination="22" />
</node>
<node id="24" name="Reshalia, Coastal Road">
<description>The road has been cut into the hillside, with a spectacular drop down to the ocean on one side and black tumbled rock on the other. Waves rolling in send spray flying as they crash on the rough boulders below.</description>
<position x="200" y="-80" z="0" />
<arc exit="north" move="north" destination="25" />
<arc exit="southwest" move="southwest" destination="23" />
</node>
<node id="25" name="Reshalia, Coastal Road">
<description>Steep hills rise to either side, black rock showing jaggedly through scars in the thin brown grass where the slope is too steep for any soil to remain. Here and there, a hardy juniper has taken hold and creates a spreading green mound.</description>
<position x="200" y="-100" z="0" />
<arc exit="north" move="north" destination="26" />
<arc exit="south" move="south" destination="24" />
</node>
<node id="26" name="Reshalia, Coastal Road">
<description>From a distance, the hillsides look as if someone has flung a green velvet cape over them. Thickets of shrubs grow head-high, blocking the view entirely for long stretches.</description>
<position x="200" y="-120" z="0" />
<arc exit="northeast" move="northeast" destination="27" />
<arc exit="south" move="south" destination="25" />
</node>
<node id="27" name="Reshalia, Coastal Road">
<description>There's only a small field here between the roadway and a sheer drop-off down to the ocean stretching away to the east. Occasional distant dots of lantern light streaking the black water mark ships passing between Ratha's harbor and the eastward islands.</description>
<description>There's only a small field here between the roadway and a sheer drop-off down to the ocean stretching away to the east. Occasional dark dots on the blue water mark ships passing between Ratha's harbor and the eastward islands.</description>
<position x="220" y="-140" z="0" />
<arc exit="north" move="north" destination="28" />
<arc exit="southwest" move="southwest" destination="26" />
</node>
<node id="28" name="Reshalia, Coastal Road">
<description>Lush green fields of grass, spotted with occasional shade trees, stretch off to the north and west. Just a short distance from the road is a small pond choked with water lilies. The songs of the frogs that make their homes there thrum through the air in harmony that is sometimes perfect counterpoint, and sometimes clashes in discord.</description>
<position x="220" y="-160" z="0" />
<arc exit="northeast" move="northeast" destination="29" />
<arc exit="south" move="south" destination="27" />
</node>
<node id="29" name="Reshalia, Coastal Road">
<description>A white-painted fence runs along the northern edge of the road as far as the eye can see, and occasionally divides off into square fields holding small groups of grazing horses. The amount of work required to keep the fence in its pristine condition is staggering, and suggests that its owner has enough money to hire the scores of painters and carpenters required.</description>
<position x="240" y="-180" z="0" />
<arc exit="east" move="east" destination="30" />
<arc exit="southwest" move="southwest" destination="28" />
</node>
<node id="30" name="Reshalia, Coastal Road">
<description>A flat blue line at the horizon to the east marks the presence of the ocean across a long, rolling field of low bushes. Dirty white sheep wander across the meadow in clumps.</description>
<position x="260" y="-180" z="0" />
<arc exit="northeast" move="northeast" destination="31" />
<arc exit="west" move="west" destination="29" />
</node>
<node id="31" name="Reshalia, Coastal Road">
<description>The road winds around rolling hillocks covered in grass and low brush. Occasional skittering noises drift through the darkness from the fields, suggesting that while some creatures will eat well tonight, others are not so lucky.</description>
<description>The road winds around rolling hillocks covered in grass and low brush. Far off to the west is a looming shadow on the horizon that might be either a cloud or the presence of a mountain.</description>
<position x="280" y="-200" z="0" />
<arc exit="northeast" move="northeast" destination="32" />
<arc exit="southwest" move="southwest" destination="30" />
</node>
<node id="32" name="Reshalia, Coastal Road">
<description>Large, obviously healthy sheep graze contentedly on the grasses growing between rocky outcroppings in their pasture. Their feeding cuts the plants very short and their sharp hooves cut into the soil, creating swathes of raw dirt in the areas they've grazed most recently.</description>
<position x="300" y="-220" z="0" />
<arc exit="north" move="north" hidden="True" destination="33" />
<arc exit="southwest" move="southwest" destination="31" />
</node>
<node id="33" name="Reshalia, Coastal Road">
<description>A small stream meanders across the fields, twisting and turning around the low hummocks and hills. Bright green grass marks its path as it wanders off toward the sea to the east.</description>
<position x="280" y="-40" z="0" />
<arc exit="northeast" move="northeast" destination="34" />
<arc exit="south" move="south" hidden="True" destination="32" />
</node>
<node id="34" name="Reshalia, Coastal Road">
<description>Tall trees run in a row between grassy fields, creating a clear boundary line between them. Alongside the road, a drainage ditch is filled with a tangle of wildflowers and weeds.</description>
<position x="300" y="-60" z="0" />
<arc exit="north" move="north" destination="35" />
<arc exit="southwest" move="southwest" destination="33" />
</node>
<node id="35" name="Reshalia, Coastal Road">
<description>Grazing sheep visible as white spots in the distance have cropped the pastureland to either side of the road down to only finger high. Patches of black basalt poke through in places where rainwater has eroded away the thin layer of dirt.</description>
<position x="300" y="-80" z="0" />
<arc exit="north" move="north" destination="36" />
<arc exit="south" move="south" destination="34" />
</node>
<node id="36" name="Reshalia, Coastal Road">
<description>A rough fence lines the road, built of saplings stretched between cairns of rocks acting as fenceposts. Shaggy sheep graze behind the barrier, the sticks and grass caught in their wool giving them a speckled and spotted look.</description>
<position x="300" y="-100" z="0" />
<arc exit="north" move="north" destination="37" />
<arc exit="south" move="south" destination="35" />
</node>
<node id="37" name="Reshalia, Coastal Road">
<description>Gravel mixes with dirt on the surface of the road, as if some helpful soul had attempted to lessen its churning by heavy wagon wheels in bad weather. Thickets of young bushes cover the low hills in all directions.</description>
<position x="300" y="-120" z="0" />
<arc exit="north" move="north" destination="38" />
<arc exit="south" move="south" destination="36" />
</node>
<node id="38" name="Reshalia, Coastal Road">
<description>Virtually all of the larger trees have been cut down, leaving only tangled bushes, weeds, and an occasional sapling too young or too twisted to produce decent lumber. Occasionally, the faint smell of smoke wafts by on the breeze, suggesting that the workers who felled this field are not far off.</description>
<position x="300" y="-140" z="0" />
<arc exit="northeast" move="northeast" destination="39" />
<arc exit="south" move="south" destination="37" />
</node>
<node id="39" name="Reshalia, Coastal Road">
<description>Here and there, a larger tree has been logged, leaving flat stumps surrounded by fringes of small crowded shoots. The dirt of the road has been worn down by wagon wheels dragging the lumber away, creating uncertain footing for both four-footed and two-footed travelers.</description>
<position x="320" y="-160" z="0" />
<arc exit="north" move="north" destination="40" />
<arc exit="southwest" move="southwest" destination="38" />
</node>
<node id="40" name="Reshalia, Coastal Road">
<description>Thick ruts scar the surface of the road where water flows in wet seasons, and the trees crowd close on either side, narrowing the roadway so much that it would be impossible to take a wagon any further.</description>
<position x="320" y="-180" z="0" />
<arc exit="north" move="north" destination="41" />
<arc exit="south" move="south" destination="39" />
</node>
<node id="41" name="Reshalia, Coastal Trail">
<description>The trail skirts around a small grove of gnarled, bent trees that are clearly far older than the rest of the forest. Moonlight glints off twisted roots and leaves, partially illuminating but never fully revealing the depths of the looming shadows cast by the misshapen trunks. Sounds and speech seem to flatten beneath the pressure of the still air.</description>
<description>The trail skirts around a small grove of gnarled, bent trees that are clearly far older than the rest of the forest. Birds flit from one branch to another, and fill the air with their bright song.</description>
<position x="320" y="-200" z="0" />
<arc exit="northeast" move="northeast" hidden="True" destination="42" />
<arc exit="south" move="south" destination="40" />
</node>
<node id="42" name="Reshalia, Coastal Trail">
<description>The trees thin out slightly, and a thick tangle of blackberry brambles covers both sides of the trail. Their sprawling, thorny branches snag at clothing, skin, and scales as travelers pass by.</description>
<position x="360" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="43" />
<arc exit="southwest" move="southwest" hidden="True" destination="41" />
</node>
<node id="43" name="Reshalia, Coastal Trail">
<description>Soaring ironwood trunks grow straight and tall like mighty pillars in a huge hall, while their dense branches create a canopy high overhead. One fallen giant lies still pristine on the forest floor, resisting rot and decay even after death.</description>
<position x="380" y="-80" z="0" />
<arc exit="northeast" move="northeast" destination="44" />
<arc exit="southwest" move="southwest" destination="42" />
</node>
<node id="44" name="Reshalia, Coastal Trail">
<description>The trail slopes sharply down to the southwest, and erosion has washed away much of the soil, leaving rocky shelves and gravel in which only a few scrubby dwarf pines can find enough soil to grow. Tall oaks and ironwood trees dominate the top of the slope, while an evergreen forest spills along its base.</description>
<position x="400" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="45" />
<arc exit="southwest" move="southwest" destination="43" />
</node>
<node id="45" name="Reshalia, Coastal Trail">
<description>Tossing in the ever-present sea breeze off the nearby ocean, the pine boughs give off a spicy scent that tickles your senses. Only a few lacy-fronded ferns grow on the forest floor amid the brown covering of dropped pine needles.</description>
<position x="420" y="-120" z="0" />
<arc exit="east" move="east" destination="46" />
<arc exit="southwest" move="southwest" destination="44" />
</node>
<node id="46" name="Reshalia, Coastal Trail">
<description>Dense pines crowd the trail, creating yielding layers of pine needles underfoot. The wind blowing through the full green boughs creates a soft rushing roar, muffling sounds and light from outside the grove.</description>
<position x="440" y="-120" z="0" />
<arc exit="east" move="east" destination="47" />
<arc exit="west" move="west" destination="45" />
</node>
<node id="47" name="Reshalia, Coastal Trail">
<description>A few pines intermix with the deciduous trees, creating a dark green background to the forest. A tumble of rocks traces a path eastward, looking almost as if at some time in the far-distant past there was a stone wall here.</description>
<position x="460" y="-120" z="0" />
<arc exit="northeast" move="northeast" destination="48" />
<arc exit="west" move="west" destination="46" />
</node>
<node id="48" name="Reshalia, Coastal Trail">
<description>Close to the path, one giant tree has been hollowed by insects or disease, creating a dark hole in the base of its trunk. Easily large enough for a Gnome to enter, nothing is visible from the outside but blackness.</description>
<position x="480" y="-140" z="0" />
<arc exit="northeast" move="northeast" destination="49" />
<arc exit="southwest" move="southwest" destination="47" />
</node>
<node id="49" name="Reshalia, Coastal Trail">
<description>A huge walnut tree spreads its massive branches over the trail, its bark black, thick, and deeply furrowed. Rustlings from above suggest that the tree's population remains active even at night.</description>
<description>A huge walnut tree spreads its massive branches over the trail, its bark black, thick, and deeply furrowed. Rustlings from above suggest that the tree boasts a large squirrel population.</description>
<position x="500" y="-160" z="0" />
<arc exit="northeast" move="northeast" destination="50" />
<arc exit="southwest" move="southwest" destination="48" />
</node>
<node id="50" name="Reshalia, Coastal Trail">
<description>An ancient tree has toppled over quite near the trail, its roots standing straight up and creating a small wall above the pit where they once lay covered. Ear-shaped orange and tan fungus covers the trunk like rows of ruffles on a ball gown. Seizing the opportunity of increased light, a tumble of wild cloudberry bushes grows head-high.</description>
<position x="520" y="-180" z="0" />
<arc exit="east" move="east" hidden="True" destination="51" />
<arc exit="southwest" move="southwest" destination="49" />
</node>
<node id="51" name="Reshalia, Coastal Trail">
<description>Years of erosion and passing feet have rutted and carved the trail, and the occasional tree roots winding across it create tripping hazards for the unwary. The path curves slightly as it climbs a steep ridge to the northeast at an angle.</description>
<position x="460" y="20" z="0" />
<arc exit="northeast" move="northeast" destination="52" />
<arc exit="west" move="west" hidden="True" destination="50" />
</node>
<node id="52" name="Reshalia, Coastal Trail">
<description>At the summit of the ridge, the land slopes away sharply to either side. The trees are enormous, and have shaded out most of the underbrush. Here and there a thin, almost branchless sapling reaches vainly for sunlight, in the hopes that lightning or some other calamity will clear a space for its growth.</description>
<position x="480" y="0" z="0" />
<arc exit="east" move="east" destination="53" />
<arc exit="southwest" move="southwest" destination="51" />
</node>
<node id="53" name="Reshalia, Coastal Trail">
<description>The trail runs alongside a narrow creek flowing swiftly eastward, too small for fish but boasting a large and audible population of toads trilling and harmonizing. Gentle hills rise to either side, covered in tall trees whose branches are lost in the darkness far overhead.</description>
<description>The trail runs alongside a small creek flowing swiftly eastward, too small for fish but boasting a large population of water bugs and crayfish. Gentle hills rise to either side, covered in tall trees whose branches form an interlaced cathedral-like ceiling far overhead.</description>
<position x="500" y="0" z="0" />
<arc exit="east" move="east" destination="54" />
<arc exit="west" move="west" destination="52" />
</node>
<node id="54" name="Reshalia, Coastal Trail">
<description>A small creek joins the larger stream here, running down a narrow cut in the rock from the west and throwing itself off the cliff edge in a spray of water that becomes lost in the churning rapids of the larger stream. The rock walls of the ravine have squeezed the water into a deep, surging torrent, and the ceaseless roar drowns out attempts at speech.</description>
<position x="520" y="0" z="0" />
<arc exit="west" move="west" destination="53" />
<arc exit="go" move="go wooden bridge" destination="55" />
</node>
<node id="55" name="Reshalia, Coastal Trail">
<description>A deep stream rushes through the narrow bottom of the gorge, the compressed water churning and roaring around huge boulders of black basalt that have fallen from the sides into the water's path. A narrow bridge built from slightly planed branches crosses the torrent between two of the larger boulders, its handrails a welcome feature to provide some aid in navigating the moisture-slicked passage.</description>
<position x="520" y="-20" z="0" />
<arc exit="go" move="go wooden bridge" destination="54" />
<arc exit="climb" move="climb steep trail" destination="56" />
</node>
<node id="56" name="Reshalia, Coastal Trail">
<description>The path inches along the side of the ravine, a shallow cut in the hillside providing at least a slightly more level surface. To one side, the hill rises so steeply that an outstretched arm can touch it, while to the other, it drops down into a rock-strewn gorge. The rush of water sounds from its bottom.</description>
<position x="520" y="-40" z="0" />
<arc exit="north" move="north" destination="57" />
<arc exit="climb" move="climb rock-strewn gorge" destination="55" />
</node>
<node id="57" name="Reshalia, Coastal Trail">
<description>To the northeast, the trail slopes gently upward to crest a low ridge crowned by tall trees. Southward, it drops sharply into a steep ravine, curving slightly to edge down the rocky incline in a long cut into the side of the hill.</description>
<position x="520" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="58" />
<arc exit="south" move="south" destination="56" />
</node>
<node id="58" name="Reshalia, Coastal Trail">
<description>Huge beech trees, their pale trunks easily larger around than two Kaldar could encircle with their arms, soar upward at widely spaced intervals. Here and there travelers have carved their initials into the thin bark, leaving a memory of their passing that often lasts for years.</description>
<position x="540" y="-80" z="0" />
<arc exit="northeast" move="northeast" destination="59" />
<arc exit="southwest" move="southwest" destination="57" />
</node>
<node id="59" name="Reshalia, Coastal Trail">
<description>The trees thin out slightly, allowing glimpses of the night sky through the gaps. Unlike the more open dense forest, bushes grow close to the pathway, seen only as looming mounds in the darkness that scratch at clothing and unprotected skin with whip-like branches and occasional thorns.</description>
<description>The forest thins slightly, allowing glimpses of sky through the trees. Taking advantage of the increased sunlight, a profusion of plants and low bushes covers the forest floor.</description>
<position x="560" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="60" />
<arc exit="southwest" move="southwest" destination="58" />
</node>
<node id="60" name="Reshalia, Coastal Trail">
<description>A huge boulder lies half-buried in the ground, apparently flung here by some unimaginable force, causing the trail to veer slightly around it. To the north, the trees give way to low shrubs and rolling hills.</description>
<position x="580" y="-120" z="0" />
<arc exit="north" move="north" destination="61" />
<arc exit="southwest" move="southwest" destination="59" />
</node>
<node id="61" name="Reshalia, Coastal Path">
<description>Edged on one side by solid rock, and on the other by a stand of thorn bushes, the trail narrows and is barely passable for larger travelers. The sandy dirt of the pathway has been washed out by storms, creating rutted and treacherous footing that becomes a small stream in wet weather.</description>
<position x="580" y="-140" z="0" />
<arc exit="north" move="north" destination="62" />
<arc exit="south" move="south" destination="60" />
</node>
<node id="62" name="Reshalia, Coastal Path">
<description>The hillside falls away to the east as the path curves sharply around the huge chunk of rock. Low dwarf pines stud the hillside, their roots exposed as erosion washes away the dirt, leaving small rocks and gravel.</description>
<position x="580" y="-160" z="0" />
<arc exit="east" move="east" destination="63" />
<arc exit="south" move="south" destination="61" />
</node>
<node id="63" name="Reshalia, Coastal Path" note="Altar|Phelim " color="#A6A3D9">
<description>The irregular shape of the immense boulder forms a small protected alcove, sheltering the area from the worst of the elements. A large chunk of driftwood stands upright in the back of the hollow, with clusters of narrow-leaved chamomile planted at its base in a carefully tended plot.</description>
<position x="600" y="-160" z="0" />
<arc exit="southeast" move="southeast" hidden="True" destination="64" />
<arc exit="west" move="west" destination="62" />
</node>
<node id="64" name="Reshalia, Coastal Path">
<description>The path veers around an immense boulder half-buried in the sandy soil to the southwest. Only a few creepers and tough-stemmed vines have sent exploring tendrils fingering up its sides, suggesting that it is a relatively recent addition to the landscape.</description>
<position x="580" y="-20" z="0" />
<arc exit="northeast" move="northeast" destination="65" />
<arc exit="northwest" move="northwest" hidden="True" destination="63" />
<arc exit="climb" move="climb immense boulder" destination="329" />
</node>
<node id="65" name="Reshalia, Coastal Path">
<description>Dense small-leaved evergreen shrubs create a lumpy blanket of dark green covering the rough terrain. Between two hillocks far off to the east, there is a flat smudge of blue, suggesting that the sea lies not far off.</description>
<position x="600" y="-40" z="0" />
<arc exit="northeast" move="northeast" destination="66" />
<arc exit="southwest" move="southwest" destination="64" />
</node>
<node id="66" name="Reshalia, Coastal Path">
<description>Only a faint trace through the thick shrubs marks the line of the trail, winding around small hills and occasional rocks as though whoever or whatever made it was simply seeking the easiest path through to its goal.</description>
<position x="620" y="-60" z="0" />
<arc exit="northeast" move="northeast" destination="67" />
<arc exit="southwest" move="southwest" destination="65" />
</node>
<node id="67" name="Reshalia, Coastal Path">
<description>The ground slopes away sharply to the south and east, providing a panoramic view of rolling hills covered in low shrubs stretching into the distance. Sea birds wheeling overhead hint that the ocean is not far off, although from here, it is out of sight.</description>
<position x="640" y="-80" z="0" />
<arc exit="east" move="east" destination="68" />
<arc exit="southwest" move="southwest" destination="66" />
</node>
<node id="68" name="Reshalia, Coastal Path">
<description>The slope of the sandy ground makes the path treacherous in spots, with feet having a tendency to slide downhill. Wild k'dira bushes crowding the path release a spicy scent each time they are brushed, filling the air with nose-tickling pungency.</description>
<position x="660" y="-80" z="0" />
<arc exit="east" move="east" destination="69" />
<arc exit="west" move="west" destination="67" />
</node>
<node id="69" name="Reshalia, Coastal Path">
<description>The tall shrubs give way at the base of the hill to a band of trees that follows the path of a narrow brook flowing eastward toward the sea. The water is shallow but clear, and small black beetles skim over its surface like ice skaters putting on a show.</description>
<position x="680" y="-80" z="0" />
<arc exit="west" move="west" destination="68" />
<arc exit="go" move="go log bridge" destination="70" />
</node>
<node id="70" name="Reshalia, Coastal Path">
<description>Tall trees grow thickly along a small stream, following its meandering path as far as the eye can see in either direction as it winds its way down toward the nearby ocean. Some thoughtful soul has lashed together five or six smaller tree trunks so that they form a narrow bridge over the water.</description>
<position x="680" y="-100" z="0" />
<arc exit="east" move="east" destination="71" />
<arc exit="go" move="go log bridge" destination="69" />
</node>
<node id="71" name="Reshalia, Coastal Path">
<description>The path winds among low rolling hills covered in thorny shrubs that range in size from knee-high to a Gnome, to twice the height of a Gor'Tog. Occasional rustling and scurrying noises betray the presence of a colony of some burrow-dwelling creature, but they keep well out of sight if not out of hearing.</description>
<position x="700" y="-100" z="0" />
<arc exit="northeast" move="northeast" destination="72" />
<arc exit="west" move="west" destination="70" />
</node>
<node id="72" name="Reshalia, Coastal Path">
<description>Huge shallow flat pans are laid out in a square, filled with a mixture of cloudy water and wet salt crystals. A large canvas tarpaulin held up by a tall post at each corner covers the pans for the evening. A large iron cauldron burbles in the darkness, dimly illuminated by the orange glow of a fire in a small stove that appears to have been improvised from scraps of old armor.</description>
<description>Huge shallow flat pans are laid out in a square, filled with a mixture of cloudy water and wet salt crystals. Tall posts at each corner of the square support a wooden framework that allows a canvas tarpaulin to be drawn over it in wet weather, and in sunny weather can be left open to bake under the hot sun. A large iron cauldron burbles on a small stove that appears to have been improvised from scraps of old armor.</description>
<position x="720" y="-120" z="0" />
<arc exit="northeast" move="northeast" destination="73" />
<arc exit="southwest" move="southwest" destination="71" />
</node>
<node id="73" name="Reshalia, Coastal Path">
<description>To the east stretches a line of tall dunes looming darkly against the paler night sky, sheltering this relatively flat area from the worst of the storms and spray off the ocean. A line of small, shallow ponds separated by dikes into squares stretches alongside the pathway, in various stages of evaporation. In the very shallowest pool, salt crystals coat the edges and sparkle in the dim light like powdered diamonds.</description>
<description>To the east stretches a line of tall dunes, sheltering this relatively flat area from the worst of the storms and spray off the ocean. A line of small, shallow ponds separated by dikes into squares stretches alongside the pathway, in various stages of evaporation. In the very shallowest pool, salt crystals coat the edges and sparkle in the daylight like powdered diamonds.</description>
<position x="740" y="-140" z="0" />
<arc exit="northeast" move="northeast" hidden="True" destination="74" />
<arc exit="southwest" move="southwest" destination="72" />
</node>
<node id="74" name="Reshalia, Coastal Path">
<description>Low thorny shrubs grow in patches in the pale sandy soil. The constant strong breeze from the east has bared their roots on the windward side, and created small hummocks to leeward.</description>
<position x="480" y="-210" z="0" />
<arc exit="east" move="east" destination="75" />
<arc exit="southwest" move="southwest" hidden="True" destination="73" />
</node>
<node id="75" name="Reshalia, Sand Dunes">
<description>Golden sand rises in tall dunes, pocked and swirled with scrubby sea grasses on their leeward sides. A huge grey log, weathered by long years of wind and sand-scouring, lies tossed by some forgotten storm far from any forest.</description>
<position x="500" y="-210" z="0" />
<arc exit="east" move="east" destination="76" />
<arc exit="west" move="west" destination="74" />
</node>
<node id="76" name="Reshalia, Sand Dunes">
<description>Sea grasses to the west give way to pure sand to the east, humped and hillocked as the never-ending ocean wind constantly pushes it into new patterns. The trail winds through the valleys between the dunes, changing its pathway as the dunes shift their locations.</description>
<position x="520" y="-210" z="0" />
<arc exit="east" move="east" destination="77" />
<arc exit="west" move="west" destination="75" />
</node>
<node id="77" name="Reshalia, Sand Dunes">
<description>The ocean must be almost within sight here -- the smell of salt and dead fish is carried on the breeze. Low dunes only slightly taller than a Gor'Tog's head block the view in all directions, leaving only the sea birds wheeling in slow circles overhead with a clear perspective on the geography.</description>
<position x="540" y="-210" z="0" />
<arc exit="east" move="east" destination="78" />
<arc exit="west" move="west" destination="76" />
</node>
<node id="78" name="Pokekehekepi olpo'staho" color="#008080">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="560" y="-210" z="0" />
<arc exit="southeast" move="southeast" destination="79" />
<arc exit="west" move="west" destination="77" />
</node>
<node id="79" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. The southern horizon is dominated by the glistening expanse of an ocean.</description>
<position x="580" y="-190" z="0" />
<arc exit="northeast" move="northeast" destination="80" />
<arc exit="northwest" move="northwest" destination="78" />
</node>
<node id="80" name="Pokekehekepi olpo'staho" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="600" y="-210" z="0" />
<arc exit="southeast" move="southeast" destination="81" />
<arc exit="southwest" move="southwest" destination="79" />
</node>
<node id="81" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. The southern horizon is dominated by the glistening expanse of an ocean.</description>
<position x="620" y="-190" z="0" />
<arc exit="northeast" move="northeast" destination="82" />
<arc exit="northwest" move="northwest" destination="80" />
</node>
<node id="82" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="640" y="-210" z="0" />
<arc exit="north" move="north" destination="83" />
<arc exit="southwest" move="southwest" destination="81" />
</node>
<node id="83" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="640" y="-230" z="0" />
<arc exit="northeast" move="northeast" destination="84" />
<arc exit="south" move="south" destination="82" />
</node>
<node id="84" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="660" y="-250" z="0" />
<arc exit="east" move="east" destination="85" />
<arc exit="southwest" move="southwest" destination="83" />
</node>
<node id="85" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="680" y="-250" z="0" />
<arc exit="northeast" move="northeast" destination="96" />
<arc exit="east" move="east" destination="86" />
<arc exit="west" move="west" destination="84" />
<arc exit="northwest" move="northwest" destination="97" />
</node>
<node id="86" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-250" z="0" />
<arc exit="north" move="north" destination="96" />
<arc exit="southeast" move="southeast" destination="87" />
<arc exit="west" move="west" destination="85" />
</node>
<node id="87" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="720" y="-230" z="0" />
<arc exit="east" move="east" destination="89" />
<arc exit="southeast" move="southeast" destination="90" />
<arc exit="west" move="west" destination="88" />
<arc exit="northwest" move="northwest" destination="86" />
</node>
<node id="88" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-230" z="0" />
<arc exit="east" move="east" destination="87" />
</node>
<node id="89" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="740" y="-230" z="0" />
<arc exit="west" move="west" destination="87" />
</node>
<node id="90" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. The southern horizon is dominated by the glistening expanse of an ocean.</description>
<position x="740" y="-210" z="0" />
<arc exit="northeast" move="northeast" destination="92" />
<arc exit="east" move="east" destination="91" />
<arc exit="northwest" move="northwest" destination="87" />
</node>
<node id="91" name="Pokekehekepi olpo'staho" color="#FF8000">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. The southern horizon is dominated by the glistening expanse of an ocean.</description>
<position x="760" y="-210" z="0" />
<arc exit="southeast" move="southeast" destination="93" />
<arc exit="west" move="west" destination="90" />
</node>
<node id="92" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="760" y="-230" z="0" />
<arc exit="east" move="east" destination="94" />
<arc exit="southwest" move="southwest" destination="90" />
</node>
<node id="93" name="Pokekehekepi, Beachhead" note="Halasa Selhin|Beach" color="#0000FF">
<description>Glittering like flowing gold, the beach runs into the ocean and disappears under the luminous waves.</description>
<position x="780" y="-190" z="0" />
<arc exit="northwest" move="northwest" destination="91" />
<arc exit="go" move="go halasa selhin" destination="245" />
</node>
<node id="94" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="780" y="-230" z="0" />
<arc exit="northeast" move="northeast" destination="95" />
<arc exit="west" move="west" destination="92" />
</node>
<node id="95" name="Pokekehekepi olpo'staho" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="800" y="-250" z="0" />
<arc exit="southwest" move="southwest" destination="94" />
</node>
<node id="96" name="Pokekehekepi ghedo" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-270" z="0" />
<arc exit="south" move="south" destination="86" />
<arc exit="southwest" move="southwest" destination="85" />
</node>
<node id="97" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="660" y="-270" z="0" />
<arc exit="north" move="north" destination="99" />
<arc exit="southeast" move="southeast" destination="85" />
<arc exit="west" move="west" destination="98" />
</node>
<node id="98" name="Pokekehekepi ghedo" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="640" y="-270" z="0" />
<arc exit="north" move="north" destination="102" />
<arc exit="northeast" move="northeast" destination="99" />
<arc exit="east" move="east" destination="97" />
</node>
<node id="99" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="660" y="-290" z="0" />
<arc exit="east" move="east" destination="124" />
<arc exit="south" move="south" destination="97" />
<arc exit="southwest" move="southwest" destination="98" />
</node>
<node id="100" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-310" z="0" />
<arc exit="northeast" move="northeast" destination="121" />
<arc exit="southwest" move="southwest" destination="124" />
<arc exit="west" move="west" destination="101" />
</node>
<node id="101" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. Looming up around this little dune valley are the great korgi, casting shadows over the smaller dunes.</description>
<position x="680" y="-310" z="0" />
<arc exit="east" move="east" destination="100" />
<arc exit="south" move="south" destination="124" />
<arc exit="west" move="west" destination="123" />
<arc exit="northwest" move="northwest" destination="108" />
</node>
<node id="102" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="640" y="-350" z="0" />
<arc exit="east" move="east" destination="109" />
<arc exit="south" move="south" destination="98" />
<arc exit="southwest" move="southwest" destination="103" />
</node>
<node id="103" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="620" y="-330" z="0" />
<arc exit="northeast" move="northeast" destination="102" />
<arc exit="west" move="west" destination="104" />
</node>
<node id="104" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="600" y="-330" z="0" />
<arc exit="east" move="east" destination="103" />
<arc exit="southeast" move="southeast" destination="105" />
<arc exit="west" move="west" destination="106" />
<arc exit="northwest" move="northwest" destination="127" />
</node>
<node id="105" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="620" y="-310" z="0" />
<arc exit="south" move="south" destination="107" />
<arc exit="northwest" move="northwest" destination="104" />
</node>
<node id="106" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="580" y="-330" z="0" />
<arc exit="north" move="north" destination="127" />
<arc exit="east" move="east" destination="104" />
<arc exit="southwest" move="southwest" destination="167" />
<arc exit="west" move="west" destination="166" />
<arc exit="northwest" move="northwest" destination="165" />
</node>
<node id="107" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="620" y="-290" z="0" />
<arc exit="north" move="north" destination="105" />
<arc exit="northeast" move="northeast" destination="108" />
<arc exit="northwest" move="northwest" destination="168" />
</node>
<node id="108" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. Looming up around this little dune valley are the great korgi, casting shadows over the smaller dunes.</description>
<position x="660" y="-330" z="0" />
<arc exit="southeast" move="southeast" destination="101" />
<arc exit="southwest" move="southwest" destination="107" />
</node>
<node id="109" name="Pokekehekepi ghedo" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="660" y="-350" z="0" />
<arc exit="east" move="east" destination="110" />
<arc exit="west" move="west" destination="102" />
</node>
<node id="110" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="680" y="-350" z="0" />
<arc exit="east" move="east" destination="111" />
<arc exit="west" move="west" destination="109" />
</node>
<node id="111" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-350" z="0" />
<arc exit="east" move="east" destination="112" />
<arc exit="west" move="west" destination="110" />
</node>
<node id="112" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="720" y="-350" z="0" />
<arc exit="east" move="east" destination="113" />
<arc exit="south" move="south" destination="121" />
<arc exit="west" move="west" destination="111" />
<arc exit="northwest" move="northwest" destination="125" />
</node>
<node id="113" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="740" y="-350" z="0" />
<arc exit="east" move="east" destination="114" />
<arc exit="southwest" move="southwest" destination="121" />
<arc exit="west" move="west" destination="112" />
</node>
<node id="114" name="Pokekehekepi ghedo" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="760" y="-350" z="0" />
<arc exit="east" move="east" destination="115" />
<arc exit="west" move="west" destination="113" />
</node>
<node id="115" name="Pokekehekepi ghedo" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="780" y="-350" z="0" />
<arc exit="northeast" move="northeast" destination="117" />
<arc exit="southeast" move="southeast" destination="116" />
<arc exit="west" move="west" destination="114" />
</node>
<node id="116" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="800" y="-330" z="0" />
<arc exit="northwest" move="northwest" destination="115" />
</node>
<node id="117" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="800" y="-370" z="0" />
<arc exit="southwest" move="southwest" destination="115" />
<arc exit="northwest" move="northwest" destination="118" />
</node>
<node id="118" name="Pokekehekepi olpo'staho" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="780" y="-390" z="0" />
<arc exit="east" move="east" destination="119" />
<arc exit="southeast" move="southeast" destination="117" />
</node>
<node id="119" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="800" y="-390" z="0" />
<arc exit="northeast" move="northeast" destination="120" />
<arc exit="west" move="west" destination="118" />
</node>
<node id="120" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="820" y="-410" z="0" />
<arc exit="southwest" move="southwest" destination="119" />
<arc exit="go" move="go shrine" destination="244" />
</node>
<node id="121" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="720" y="-330" z="0" />
<arc exit="north" move="north" destination="112" />
<arc exit="northeast" move="northeast" destination="113" />
<arc exit="southwest" move="southwest" destination="100" />
<arc exit="west" move="west" destination="122" />
</node>
<node id="122" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. Looming up around this little dune valley are the great korgi, casting shadows over the smaller dunes.</description>
<position x="680" y="-330" z="0" />
<arc exit="east" move="east" destination="121" />
<arc exit="southwest" move="southwest" destination="123" />
</node>
<node id="123" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun. Looming up around this little dune valley are the great korgi, casting shadows over the smaller dunes.</description>
<position x="660" y="-310" z="0" />
<arc exit="northeast" move="northeast" destination="122" />
<arc exit="east" move="east" destination="101" />
</node>
<node id="124" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="680" y="-290" z="0" />
<arc exit="north" move="north" destination="101" />
<arc exit="northeast" move="northeast" destination="100" />
<arc exit="west" move="west" destination="99" />
</node>
<node id="125" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-370" z="0" />
<arc exit="north" move="north" destination="126" />
<arc exit="southeast" move="southeast" destination="112" />
</node>
<node id="126" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-390" z="0" />
<arc exit="south" move="south" destination="125" />
<arc exit="west" move="west" destination="127" />
<arc exit="northwest" move="northwest" destination="128" />
</node>
<node id="127" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="580" y="-350" z="0" />
<arc exit="east" move="east" destination="126" />
<arc exit="southeast" move="southeast" destination="104" />
<arc exit="south" move="south" destination="106" />
</node>
<node id="128" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="680" y="-410" z="0" />
<arc exit="north" move="north" destination="131" />
<arc exit="northeast" move="northeast" destination="129" />
<arc exit="southeast" move="southeast" destination="126" />
<arc exit="northwest" move="northwest" destination="132" />
</node>
<node id="129" name="Pokekehekepi olpo'staho" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-430" z="0" />
<arc exit="east" move="east" destination="130" />
<arc exit="southwest" move="southwest" destination="128" />
</node>
<node id="130" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="730" y="-430" z="0" />
<arc exit="northeast" move="northeast" destination="141" />
<arc exit="west" move="west" destination="129" />
<arc exit="northwest" move="northwest" destination="137" />
</node>
<node id="131" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="680" y="-450" z="0" />
<arc exit="north" move="north" destination="138" />
<arc exit="northeast" move="northeast" destination="137" />
<arc exit="south" move="south" destination="128" />
<arc exit="west" move="west" destination="135" />
</node>
<node id="132" name="Pokekehekepi ghedo">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="660" y="-430" z="0" />
<arc exit="north" move="north" destination="135" />
<arc exit="southeast" move="southeast" destination="128" />
<arc exit="northwest" move="northwest" destination="133" />
</node>
<node id="133" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="640" y="-450" z="0" />
<arc exit="north" move="north" destination="136" />
<arc exit="southeast" move="southeast" destination="132" />
<arc exit="west" move="west" destination="134" />
</node>
<node id="134" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="620" y="-450" z="0" />
<arc exit="northeast" move="northeast" destination="136" />
<arc exit="east" move="east" destination="133" />
<arc exit="west" move="west" destination="153" />
<arc exit="northwest" move="northwest" destination="154" />
</node>
<node id="135" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="660" y="-450" z="0" />
<arc exit="east" move="east" destination="131" />
<arc exit="south" move="south" destination="132" />
<arc exit="northwest" move="northwest" destination="136" />
</node>
<node id="136" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="640" y="-470" z="0" />
<arc exit="north" move="north" destination="152" />
<arc exit="southeast" move="southeast" destination="135" />
<arc exit="south" move="south" destination="133" />
<arc exit="southwest" move="southwest" destination="134" />
</node>
<node id="137" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="700" y="-470" z="0" />
<arc exit="east" move="east" destination="139" />
<arc exit="southeast" move="southeast" destination="130" />
<arc exit="southwest" move="southwest" destination="131" />
</node>
<node id="138" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="680" y="-470" z="0" />
<arc exit="south" move="south" destination="131" />
</node>
<node id="139" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="720" y="-470" z="0" />
<arc exit="east" move="east" destination="140" />
<arc exit="west" move="west" destination="137" />
</node>
<node id="140" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="740" y="-470" z="0" />
<arc exit="east" move="east" destination="141" />
<arc exit="west" move="west" destination="139" />
</node>
<node id="141" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="760" y="-470" z="0" />
<arc exit="east" move="east" destination="142" />
<arc exit="southeast" move="southeast" destination="143" />
<arc exit="southwest" move="southwest" destination="130" />
<arc exit="west" move="west" destination="140" />
</node>
<node id="142" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="780" y="-470" z="0" />
<arc exit="south" move="south" destination="143" />
<arc exit="west" move="west" destination="141" />
</node>
<node id="143" name="Pokekehekepi olpo'staho" color="#00FF00">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="780" y="-450" z="0" />
<arc exit="north" move="north" destination="142" />
<arc exit="northeast" move="northeast" destination="144" />
<arc exit="northwest" move="northwest" destination="141" />
</node>
<node id="144" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="800" y="-470" z="0" />
<arc exit="north" move="north" destination="146" />
<arc exit="east" move="east" destination="145" />
<arc exit="southwest" move="southwest" destination="143" />
</node>
<node id="145" name="Pokekehekepi olpo'staho" color="#800000">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="820" y="-470" z="0" />
<arc exit="northeast" move="northeast" destination="147" />
<arc exit="east" move="east" destination="150" />
<arc exit="south" move="south" destination="148" />
<arc exit="west" move="west" destination="144" />
</node>
<node id="146" name="Pokekehekepi olpo'staho">
<description>Glistening with a silver sheen, the sands stretch out into the darkness beyond the range of vision.</description>
<description>Gleaming golden sand stretches out, seemingly endless under the glaring light of the daytime sun.</description>
<position x="800" y="-490" z="0" />