-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map69_Shard_West_Gate.xml
4263 lines (4263 loc) · 834 KB
/
Map69_Shard_West_Gate.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
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="Shard West Gate Hunting Area and Horse Clan" id="69">
<node id="1" name="Southern Trade Route, Road to Shard" note="Map66_STR3.xml|North Gate|N Gate|NorthGate|ngate">
<description>Wyvern Mountain towers far into the sky to the southwest, a monument to time and myth. East of it reclines Shard, a shimmer of light against the omnipresent darkness of the glowering peak.</description>
<position x="680" y="437" z="0" />
<arc exit="northeast" move="northeast" />
<arc exit="east" move="east" />
<arc exit="south" move="south" />
<arc exit="go" move="go muddy trail" destination="2" />
</node>
<node id="2" name="Shard, Northwestern Shore">
<description>A muddy path wends its way amidst the reeds which border the shore of the Lake of Tears. To the southeast, the towers of Shard loom above the city walls, gleaming as brightly as a paladin's soul.</description>
<position x="660" y="437" z="0" />
<arc exit="east" move="east" destination="1" />
<arc exit="west" move="west" destination="3" />
</node>
<node id="3" name="Shard, Northwestern Shore">
<description>A snake slithers quickly into the reeds, passing out of sight. The wise traveler watches with a wary eye, never knowing whether or not a new creature will prove dangerous.</description>
<position x="640" y="437" z="0" />
<arc exit="east" move="east" destination="2" />
<arc exit="southwest" move="southwest" destination="4" />
</node>
<node id="4" name="Shard, Northwestern Shore">
<description>The water of the lake laps against the trail as travelers clamber from rock to rock to make their way around the shoreline. A faint scent of roasting meats wafts over the lake from a local inn, making the mouth water and hurrying wayfarers on to their destination.</description>
<position x="620" y="457" z="0" />
<arc exit="northeast" move="northeast" destination="3" />
<arc exit="southwest" move="southwest" destination="5" />
</node>
<node id="5" name="Shard, Northwestern Shore">
<description>A muddy path wanders through the reeds to the west of the city of Shard, the dark-brown mud clinging to the hem of cloaks and trousers of those who travel this route. Somewhere to the east, a fish or some other creature splashes in the lake, disturbing the stillness of the trail.</description>
<position x="600" y="477" z="0" />
<arc exit="northeast" move="northeast" destination="4" />
<arc exit="south" move="south" destination="6" />
</node>
<node id="6" name="Wyvern Trail, Journey's Rest">
<description>A small area has been cleared here for travelers to stop and rest before crossing the bridge to Shard's west gate, or stop and recheck their packs before leaving the city's comfortable embrace entirely. Wyvern Mountain stands in the western distance, a great waterfall cascading down its face. Haunting voices rise in a synchronous harmony that chills the bones, revealing the presence of a shrine to the World Dragon nearby.</description>
<description>A small area has been cleared here for travelers to stop and rest before crossing the bridge to Shard's west gate, or stop and recheck their packs before leaving the city's comfortable embrace entirely. Wyvern Mountain stands in the western distance, a great waterfall cascading down its face.</description>
<position x="600" y="497" z="0" />
<arc exit="east" move="east" destination="7" />
<arc exit="west" move="west" destination="11" />
<arc exit="go" move="go muddy trail" destination="5" />
<arc exit="go" move="search go narrow path" destination="362" />
</node>
<node id="7" name="Shard, West Bridge">
<description>The bridge leads to and from the west district of the great city of Shard, under the careful watch of the guards and the respectful silence of Wyvern Mountain. Chanting fills the air as voices rise in praise of some hidden deity.</description>
<description>The bridge leads to and from west district of the great city of Shard, under the careful watch of the guards and the respectful silence of Wyvern Mountain. A white ribbon of water showers down the mountain's face.</description>
<position x="620" y="497" z="0" />
<arc exit="east" move="east" destination="8" />
<arc exit="west" move="west" destination="6" />
</node>
<node id="8" name="Shard, West Bridge">
<description>The Tower of Shard glows slightly in night's gloom with a hidden power, masked only slightly by the lights from the city streets. Wyvern Mountain is visible to the west standing a stoic watch over the lands, and perhaps waiting for a mysterious event to transpire.</description>
<description>The Tower of Shard stabs into the sky above the city to the east, the power of presence evident even from this far away. It is overshadowed, however, by the hulking majesty of Wyvern Mountain on the western horizon. A white streak is visible cascading down the mountain's side from its highest peak to the darkness at its base.</description>
<position x="640" y="497" z="0" />
<arc exit="east" move="east" destination="9" />
<arc exit="west" move="west" destination="7" />
</node>
<node id="9" name="Shard, West Bridge">
<description>The dark of night hovers over the lake, twined with a mysterious chanting that resonates all around. There's no mystery to why this bridge is all but deserted when the sun flees from the heavens.</description>
<description>The Lake of Tears stretches out below and to the sides of this causeway, surrounding the city of Shard and serving as its oldest defender. Wyvern Mountain dominates the landscape west beyond the Journey's Rest.</description>
<position x="660" y="497" z="0" />
<arc exit="east" move="east" destination="10" />
<arc exit="west" move="west" destination="8" />
</node>
<node id="10" name="Shard, West Bridge" note="West Bridge|W Bridge|Kraelyst start point|travel start point" color="#808000">
<description>Eerie chanting echoes over the bridge, filling the air with an ominous reminder that the World Dragon is still an influential power. Wyvern Mountain rises up blotting out the western sky.</description>
<description>The walls of Shard gleam with an inner light rivaling the sun for magnificence, the carefully cut crystal reflecting and refracting light in amazing patterns. Wyvern Mountain rises up in the west, a huge shadow against the daytime sky.</description>
<position x="680" y="497" z="0" />
<arc exit="west" move="west" destination="9" />
<arc exit="go" move="go city gate" destination="31" />
</node>
<node id="11" name="Western Road, Foot of Wyvern Mountain">
<description>A dull roar can be heard from the west as water cascades down the face of Wyvern Mountain, its looming presence casting shadows that deepen the darkness and chill the air. To the east is the Lake of Tears, its waters casting glimmering reflections against the crystal walls of Shard. Around the base of the mountain, a crude road curves into the distance.</description>
<description>A dull roar can be heard from the west as water cascades down the face of Wyvern Mountain, its looming presence casting shadows that absorb light and chill the air. To the east is the Lake of Tears, its waters casting glimmering reflections against the crystal walls of Shard. Around the base of the mountain, a crude road curves into the distance.</description>
<position x="580" y="497" z="0" />
<arc exit="east" move="east" destination="6" />
<arc exit="northwest" move="northwest" destination="12" />
</node>
<node id="12" name="Western Road, Foot of Wyvern Mountain" note="RTI11|RT-S-GR" color="#C2B280">
<description>Chunks of rock and debris have fallen from the heights of the mountain to lie scattered haphazardly on the road. The air is dense with the scent of mosses and damp earth, and the sound of Wyvern's great waterfall rumbles all around. To the north, the Dragon Spine Mountains lurch in jagged silhouette against the skyline.</description>
<position x="560" y="477" z="0" />
<arc exit="north" move="north" destination="13" />
<arc exit="southeast" move="southeast" destination="11" />
</node>
<node id="13" name="Western Road, Foot of Wyvern Mountain">
<description>The road narrows slightly as it bends to follow the base of Wyvern Mountain. Shade-loving columbine and blue iris, their blossoms curled tightly against the night, thrive in the great shadows of the Spine.</description>
<description>The road narrows slightly as it bends to follow the base of Wyvern Mountain. Shade-loving columbine and blue iris stretch to reach any stray beams of sunlight that manage to filter past the great shadows of the Spine.</description>
<position x="560" y="457" z="0" />
<arc exit="south" move="south" destination="12" />
<arc exit="northwest" move="northwest" destination="14" />
</node>
<node id="14" name="Western Road, Foot of Wyvern Mountain">
<description>The road rises slightly, continuing its long trek. Wyvern Mountain towers overhead, its misty, snow-capped reaches so distant that they seem almost unreal, as if painted against the sky. A small spring trickles across the road here, feeding clusters of mint and sorrel with its mineral-rich water.</description>
<description>The road rises slightly, continuing its long trek. Wyvern Mountain towers overhead, its misty, snow-capped reaches so distant that they seem almost unreal, as if painted against the sky. A small spring trickles across the road, feeding nearby clusters of mint and sorrel with its mineral-rich water.</description>
<position x="540" y="437" z="0" />
<arc exit="southeast" move="southeast" destination="13" />
<arc exit="west" move="west" destination="15" />
<arc exit="climb" move="climb rockslide" destination="382" />
</node>
<node id="15" name="Western Road, Foot of Wyvern Mountain" note="Wyvern Mountain">
<description>Large boulders hug the foot of the slopes, silently keeping vigil over the road beneath them. Occasionally there are slithering or skittering sounds among the rocks, but no sign of the creatures inhabiting their shadowed crevices. To the north, the Dragon Spine range pushes up towards the sky, a stark frame for the chill reaches of Wyvern Mountain.</description>
<position x="500" y="437" z="0" />
<arc exit="north" move="north" destination="16" />
<arc exit="east" move="east" destination="14" />
<arc exit="go" move="go rocky path" destination="452" />
</node>
<node id="16" name="Western Road, Foot of Wyvern Mountain">
<description>Some unknown force has left one slope of the mountain fire-blackened and sheared nearly smooth. Carved into the base of the slope is a line of flowing, irregular symbols, weathered and almost entirely chipped away. On the other side of the road, a blanket of tiny starflowers covers the scorched land, beginning the cycle of renewal.</description>
<position x="500" y="417" z="0" />
<arc exit="south" move="south" destination="15" />
<arc exit="northwest" move="northwest" destination="17" />
</node>
<node id="17" name="Western Road, Foot of Wyvern Mountain">
<description>A chill breeze rustles periodically through the low brush and plants flanking the scree-covered road. Towards the north, the Dragon Spine can be seen, jutting out like rocky teeth from a nest of brown and green vegetation. Above, Wyvern Mountain looms against the southern skyscape, its jagged profile immense and austere.</description>
<position x="480" y="397" z="0" />
<arc exit="north" move="north" destination="18" />
<arc exit="southeast" move="southeast" destination="16" />
</node>
<node id="18" name="Western Road, Foot of Wyvern Mountain">
<description>Traversing around the base of the mountain, the road is eternally cloaked in shadow as it is greeted on both sides by tall, white-capped peaks. Hardy slopes of juniper and pine flourish to the east, fanning out to meet the Dragon Spine range. Towards the south, the edge of the great Wyvern lifts up at a steady incline, rocky and hazardous.</description>
<position x="480" y="377" z="0" />
<arc exit="south" move="south" destination="17" />
<arc exit="northwest" move="northwest" destination="19" />
</node>
<node id="19" name="Western Road, Foot of Wyvern Mountain">
<description>Like a monument crafted by the gods themselves, Wyvern Mountain reaches towards the heavens, its massive circumference dominating the southern landscape. A sparkling haze, heavy with ice crystals, hangs over its upper reaches as the mountain's rocky and sparsely vegetated slopes cascade down to eventually embrace the road beneath.</description>
<position x="460" y="357" z="0" />
<arc exit="southeast" move="southeast" destination="18" />
<arc exit="northwest" move="northwest" destination="20" />
</node>
<node id="20" name="Western Road, Below the Spine">
<description>Winding along the bottom of otherwise rugged terrain, the road continues to skirt the mountains as they keep watch in timeless vigil. Above, the Dragon Spine begins its curving trek towards the Dragon's Breath Forest, while here only juniper and tufts of white starflowers and the graceful stalks of gold yarrow grace the scene. To the west, the land opens up into swathes of deep green.</description>
<position x="440" y="337" z="0" />
<arc exit="north" move="north" destination="21" />
<arc exit="southeast" move="southeast" destination="19" />
</node>
<node id="21" name="Western Road, Below the Spine">
<description>Stunted pines and prickly hawthorn grow rampant along the edges of the road. Occasionally, groups of tiny mountain chickadees alight there to search for seeds, then scatter back into the air. The Spine towers to the northeast, its peaks a jagged silhouette.</description>
<position x="440" y="317" z="0" />
<arc exit="northeast" move="northeast" destination="22" />
<arc exit="south" move="south" destination="20" />
</node>
<node id="22" name="Western Road, Below the Spine">
<description>The road is filled with bumps and cracks created by the restless earth under the surrounding mountain ranges. Their rocky peaks dominate the sky and cast constant shadows on the land below.</description>
<position x="460" y="297" z="0" />
<arc exit="northeast" move="northeast" destination="23" />
<arc exit="southwest" move="southwest" destination="21" />
</node>
<node id="23" name="Western Road, Below the Spine">
<description>Flung from the upper slopes as though in protest against any traveler's intrusion, rubble and scree are scattered in all directions. Despite the obstacles, the road continues to wind around the base of the Dragon Spine Range. Toward the northeast, rolling hills lead down into a wide basin that is lush with a green-gold cloak of vegetation. Hulking to the south is Wyvern Mountain, guarding a rocky pass.</description>
<position x="480" y="277" z="0" />
<arc exit="northeast" move="northeast" destination="24" />
<arc exit="southwest" move="southwest" destination="22" />
<arc exit="climb" move="climb mountain trail" destination="387" />
</node>
<node id="24" name="Western Road, Lightly Forested Hills" color="#008000">
<description>The crisp scent of evergreens floats though the forested hills, carried by ranks of lodgepole pines. Growing in the shadows of the Spine, the pines are tall and grasping, reaching up for every bit of sunlight. In their dense branches, the bittersweet call of orioles or mockingbirds sounds occasionally, though the wary birds stay well out of sight. Toward the south the pines make way for more rugged country as the road passes below the mountains.</description>
<position x="500" y="257" z="0" />
<arc exit="north" move="north" destination="25" />
<arc exit="southwest" move="southwest" destination="23" />
</node>
<node id="25" name="Western Road, Lightly Forested Hills" color="#008000">
<description>Rolling onward through the hills, the road is roughly channeled, the result of rainwater pouring down the slopes in heavy storms. On either side, the tall pines rise like silent sentinels, guarding the passage to the lands beyond. The surrounding forest is shadowy and quiet, with only occasional rustling from deep amongst the trees revealing the presence of other beings.</description>
<position x="500" y="237" z="0" />
<arc exit="northeast" move="northeast" destination="26" />
<arc exit="south" move="south" destination="24" />
</node>
<node id="26" name="Western Road, Lightly Forested Hills" color="#008000">
<description>Exquisitely sharp peaks throw back the weather that tries to press forward from the warmer climes of the east. Lofting so stark and tall that they swallow the sky, they almost seem to be straining to throw off the bonds of the earth. Often, little showers of pebbles rattle down, tumbling to a final stop on the dark, ice-scoured road.</description>
<position x="520" y="217" z="0" />
<arc exit="north" move="north" destination="27" />
<arc exit="southwest" move="southwest" destination="25" />
</node>
<node id="27" name="Western Road, Lightly Forested Hills" color="#008000">
<description>A constant, chill breeze snakes across the road, driven down from somewhere on the upper reaches of the Wyvern's slopes. Little paths reach towards thinly wooded gullies that split the forests to the south, then ghost away, overwhelmed by lush vegetation.</description>
<position x="520" y="197" z="0" />
<arc exit="south" move="south" destination="26" />
<arc exit="northwest" move="northwest" destination="28" />
</node>
<node id="28" name="Western Road, Wyvern Wood" color="#008000">
<description>Dropping from a cleft in the Dragon Spine, Wyvern Wood curves southerly, then wings out toward the western end of the mountain that is its namesake. Its stands of huge cedar trees, punctuated by groves of silverwillow and aspen, form a dense green mosaic unsullied by any signs of civilization.</description>
<position x="500" y="177" z="0" />
<arc exit="southeast" move="southeast" destination="27" />
<arc exit="northwest" move="northwest" destination="29" />
</node>
<node id="29" name="Western Road, Wyvern Wood" color="#008000">
<description>Thanks to the pervasive forest, a fragrant mat of leaves and conifer needles litters the ground year-round. The damp, cool air carries the tiny symphony of sounds that make up life in these dense woodlands -- the fluting calls of birds, the rattle of branches, and the chanting of tree frogs are nearly always present in varied harmonies.</description>
<position x="480" y="157" z="0" />
<arc exit="southeast" move="southeast" destination="28" />
<arc exit="west" move="west" destination="30" />
</node>
<node id="30" name="Western Road, Wyvern Wood" color="#008000">
<description>Stretching to capture any light that can filter down past the mountain peaks and through the dense canopy of cedar, a spindly maple clings to the road's embankment. Its surface roots splay in all directions, forming knotted tangles that require cautious passage.</description>
<position x="460" y="157" z="0" />
<arc exit="east" move="east" destination="29" />
<arc exit="northwest" move="northwest" destination="32" />
</node>
<node id="31" name="Shard, West City Gates" note="Map67_Shard.xml|Shard|West Gate|W Gate|WestGate|wgate">
<description>The sound of chanting voices carries over the Lake of Tears and past the West Gate. If the guards appear disturbed by the steady droning sound, they do not show it as they pace the wallwalks, eyes constantly scanning for any sign of danger in the night.</description>
<description>Glossy black and opaque, the diamondique West Gates of the city gleam alongside the brightly burnished armor of its guards. The crystal walls are equally bright, all resulting in a whole that would be blinding were they any more perfect or the sun any more bright.</description>
<position x="700" y="497" z="0" />
<arc exit="north" move="north" />
<arc exit="east" move="east" />
<arc exit="south" move="south" />
<arc exit="go" move="go city gate" destination="10" />
</node>
<node id="32" name="Western Road, Wyvern Wood" color="#008000">
<description>Two huge cedar trees bank the road, their branches forming a natural arch overhead. Further from the road larger, older trees abound, their trunks so massive that they stand like the ancient watchtowers of some wildwood civilization.</description>
<position x="440" y="137" z="0" />
<arc exit="southeast" move="southeast" destination="30" />
<arc exit="west" move="west" destination="33" />
</node>
<node id="33" name="Western Road, Wyvern Wood" color="#008000">
<description>Nestled along the road between the trees is a patch of ground lilies, their closed blooms pearly in the night. The road is fairly straight and wide, although the presence of slippery piles of leaves and large fallen branches makes the path less than easy going. Tall red cedars trail off into the distance, the larger ones making up the heart of the Wyvern Wood to the east.</description>
<description>Nestled along the road between the trees is a patch of ground lilies, basking in filtered beams of sunlight. The road is fairly straight and wide, although the presence of slippery piles of leaves and large fallen branches makes the path less than easy going. Tall red cedars trail off into the distance, the larger ones making up the heart of the Wyvern Wood to the east.</description>
<position x="420" y="137" z="0" />
<arc exit="east" move="east" destination="32" />
<arc exit="west" move="west" destination="34" />
</node>
<node id="34" name="Western Road, Wyvern Wood" color="#008000">
<description>The road bends sharply to the southwest, curving around a large cedar tree that has seen fit to grow in the middle of the road. Several rowan trees line the western half of the road around the defiant cedar, while aspen and silverwillow struggle for space and light among the towering forests to the east.</description>
<position x="400" y="137" z="0" />
<arc exit="east" move="east" destination="33" />
<arc exit="southwest" move="southwest" destination="35" />
<arc exit="climb" move="climb cedar tree" destination="437" />
</node>
<node id="35" name="Western Road, Wyvern Wood" color="#008000">
<description>Feathery rowan trees encroach from the west, beginning to mix with the stately cedars that mark the edges of Wyvern Wood. Royal ferns cluster in the damp mounds of earth at the edge of the roadway, their heavy fronds deep green in the shadows of the taller trees.</description>
<position x="380" y="157" z="0" />
<arc exit="northeast" move="northeast" destination="34" />
<arc exit="northwest" move="northwest" destination="36" />
</node>
<node id="36" name="Western Road, Open Forest" color="#008000">
<description>Weaving through groves of rowan trees, the road is dappled with veils of shadow cast by their arching boughs. To the east, towering red cedars begin to fill the skyline as this expansive montane forest collides with the edges of the denser woodlands.</description>
<position x="360" y="137" z="0" />
<arc exit="southeast" move="southeast" destination="35" />
<arc exit="west" move="west" destination="37" />
</node>
<node id="37" name="Western Road, Open Forest" color="#008000">
<description>The long, weary road tumbles through lush open forest, nestled between the great mountains that make up this rugged region. As though the earth itself was left uneasy by the heritage of the Dragon Priests, another mountain range has been thrown up in the northwest.</description>
<position x="340" y="137" z="0" />
<arc exit="east" move="east" destination="36" />
<arc exit="west" move="west" destination="38" />
</node>
<node id="38" name="Western Road, Himineldar Foothills">
<description>The northern horizon darkens with the ice-laden peaks of the Himineldar Shel range. Its slopes flow down to meet the majestic foothills of the Dragon Spine Mountains, as though two mighty serpents of stone and earth have met upon a colossal field of battle and become locked in eternal struggle.</description>
<position x="320" y="137" z="0" />
<arc exit="east" move="east" destination="37" />
<arc exit="west" move="west" destination="39" />
</node>
<node id="39" name="Western Road, Himineldar Foothills">
<description>Tumbling through the lower slopes of the Himineldar, the Western Road travels up and down gentle foothills through an open forest of aspen, pine, and fir. As if confirming the old Dwarven saying, "Mountains make their own weather," thick clouds ring the peaks above. They cluster just below the tree line, paying homage to the rocky, snow-glittered heights.</description>
<position x="300" y="137" z="0" />
<arc exit="east" move="east" destination="38" />
<arc exit="west" move="west" destination="40" />
</node>
<node id="40" name="Western Road, Himineldar Foothills">
<description>The road crests one of the foothills, opening outward to a good view of the forest that stretches into the distance in a tapestry of green and gold and brown. Lodgepole pine trees prevail on these rocky slopes, climbing up the flanks of the mountains like an army holding siege to an icy fortress.</description>
<position x="280" y="137" z="0" />
<arc exit="east" move="east" destination="39" />
<arc exit="west" move="west" destination="41" />
</node>
<node id="41" name="Western Road, Himineldar Foothills">
<description>Skirting around the base of the great Himineldar, the rugged road dips between foothills, passing jagged chunks of boulder and struggling young trees. Tall clumps of switchgrass have taken hold amongst the mountains, dividing the austere grey crags and crevices with inlets of pale gold.</description>
<position x="260" y="137" z="0" />
<arc exit="east" move="east" destination="40" />
<arc exit="southwest" move="southwest" destination="42" />
</node>
<node id="42" name="Western Road, Himineldar Foothills">
<description>The Himineldar Shel adorn the northwest skyline like a massive sculpture of granite that trails into the far distance. Conifers stunted by icy winds huddle around their base, sometimes scaling up the rocks in nearly-perfect lines. To the west, the road bends away from the forest toward the mountains, traveling a smoother path beneath the deep blue shadow of the peaks.</description>
<position x="240" y="157" z="0" />
<arc exit="northeast" move="northeast" destination="41" />
<arc exit="northwest" move="northwest" destination="43" />
</node>
<node id="43" name="Western Road, Himineldar Foothills">
<description>Flurries of chilling wind sweep down almost constantly from the snow-packed peaks, their icy fingers seeming to search for warmth to destroy. To the north are the majestic Himineldar -- rocky giants laced with ribbons of green trees that grow sparse and then fade away at the uppermost reaches. A dense mist hangs around the heights, giving the mountains a hazy, dreamlike aura from this distance. Among the wind-gnarled pines of the foothills, the road continues along its winding path.</description>
<position x="220" y="137" z="0" />
<arc exit="southeast" move="southeast" destination="42" />
<arc exit="west" move="west" destination="44" />
</node>
<node id="44" name="Western Road, Himineldar Foothills">
<description>The side of the mountain has been sheared away. Shattered blocks of rock scattered among the overgrown brush hint that this area may once have been a quarry, though the lush growth of lupine among the fragments show that it is long abandoned. To the east, thin young saplings mark the beginning of a spanning forest, while to the west, rocky grasslands roll down into a basin nestled in the shadows of the Himineldar.</description>
<position x="200" y="137" z="0" />
<arc exit="east" move="east" destination="43" />
<arc exit="west" move="west" destination="45" />
</node>
<node id="45" name="Western Road, Himineldar Foothills">
<description>The rocky road leads around the base of a sheer mountain, surrounded by the greenbriar brush and bear grass that cling to the stone-ridden foothills. Nearby lie the remains of a cart, forgotten long ago by the wayside. Only planks from the sideboard and a heavily damaged wheel are left to decay in the chilling winds that claim this trail.</description>
<position x="180" y="137" z="0" />
<arc exit="east" move="east" destination="44" />
<arc exit="southwest" move="southwest" destination="46" />
</node>
<node id="46" name="Western Road, Himineldar Foothills">
<description>Grassy hills to the southwest roll to meet the sweeping base of the Himineldar, their rugged, icy peaks looming over the entire northern landscape and stretching east toward Wyvern Wood and the Dragon Spine Mountains beyond. The road is fairly well maintained, carefully curving around the base of the mountains as it navigates its way through the rough terrain.</description>
<position x="160" y="157" z="0" />
<arc exit="northeast" move="northeast" destination="45" />
<arc exit="southwest" move="southwest" destination="47" />
</node>
<node id="47" name="Western Road, Rolling Hills">
<description>The jagged slopes of the Himineldar Shel have peppered their lower reaches with blocks of stone that somehow slipped from its grip. Attempts to offset the toll of winter freezes and heavy rains on the road have utilized these fragments of the mountain for repairs and though perhaps a bit bumpy for cart or caravan, they provide a comfortable walk through otherwise rugged terrain.</description>
<position x="140" y="177" z="0" />
<arc exit="northeast" move="northeast" destination="46" />
<arc exit="northwest" move="northwest" destination="48" />
</node>
<node id="48" name="Western Road, Rolling Hills">
<description>The road bends around the base of one of the hills, traveling through an area of thick bear grass and golden switchgrass. Softened by the hillside, a cool breeze whispers through the brush, filling the air with the crisp scent of forests and icy peaks.</description>
<position x="120" y="157" z="0" />
<arc exit="southeast" move="southeast" destination="47" />
<arc exit="west" move="west" destination="49" />
<arc exit="go" move="go faint path" />
</node>
<node id="49" name="Western Road, Rolling Hills">
<description>A roughly-cut hillside to the west stretches to meet the tall grasses and aspen of the eastern slopes. From somewhere beyond the hill, the wind carries the sounds of goats and sheep bleating and the occasional bark of a sheepdog to echo off rocky slopes in an oddly harmonious duet.</description>
<position x="100" y="157" z="0" />
<arc exit="east" move="east" destination="48" />
<arc exit="west" move="west" destination="50" />
</node>
<node id="50" name="Western Road, Rolling Hills">
<description>Along the edges of a lowland valley, the grassy knolls surrounding the road are so closely cropped that they must be used for grazing. As if in confirmation, the horizon is dotted with tufts of white, grey, and brown that appear to be herds of some kind, though they are too distant to make out clearly. Rocky hills continue to the east, tumbling up to the feet of the mighty Himineldar Shel.</description>
<position x="80" y="157" z="0" />
<arc exit="east" move="east" destination="49" />
<arc exit="southwest" move="southwest" destination="51" />
</node>
<node id="51" name="Western Road, Rolling Hills">
<description>The road slopes over the edge of a band of rolling hills, providing a view of the darkness-cloaked valley basin below. Drifts of white mountain heather, blossoms slumbering through the night, grow along the hills that crest like emerald-green waves to curve behind the lowlands that stretch along the base of the mountains.</description>
<description>The road slopes over the edge of a band of rolling hills, providing a view of the verdant basin below. Drifts of white mountain heather grow along the hills that crest like emerald-green waves to curve behind the lowlands that stretch along the base of the mountains.</description>
<position x="60" y="177" z="0" />
<arc exit="northeast" move="northeast" destination="50" />
<arc exit="southwest" move="southwest" destination="52" />
</node>
<node id="52" name="Western Road, Lowland Valley">
<description>Nestled between the Himineldar Shel and the dense forest to the south is a secluded valley quilted with glimmering stretches of marshy fens. From the valley's center, nighttime's subdued illumination merely outlines bits of trails and game paths that are quickly lost in the darkness.</description>
<description>Nestled between the Himineldar Shel and the dense forest to the south is a secluded valley quilted with glimmering stretches of marshy fens. From the valley's center spreads a webbing of either footpaths or game trails leading back to the main road.</description>
<position x="40" y="197" z="0" />
<arc exit="northeast" move="northeast" destination="51" />
<arc exit="northwest" move="northwest" destination="53" />
</node>
<node id="53" name="Western Road, Lowland Valley">
<description>A stone croft sits near the road, its doorframe gaping empty and one wall collapsed. Time and the icy winds have partnered to do a through job of erasing any signs of the original inhabitants, and a tangle of silverleaf vines have climbed the remaining walls, ready to begin their patient work of pulling the stonework back down to the waiting earth.</description>
<position x="20" y="177" z="0" />
<arc exit="southeast" move="southeast" destination="52" />
<arc exit="west" move="west" destination="54" />
</node>
<node id="54" name="Western Road, Lowland Valley">
<description>Under the shadow of the Himineldar, the icy waters of the Ilaya Gish come surging out of the mountains, winding their way toward the south. Milky with the burden of suspended minerals carried from the heart of the mountains, the river sprays fans of fine mist in the air as it sluices through the valley.</description>
<position x="0" y="177" z="0" />
<arc exit="east" move="east" destination="53" />
<arc exit="southwest" move="southwest" destination="55" />
</node>
<node id="55" name="Western Road, Lowland Valley" note="bridge|Ilaya Gish">
<description>A crude stone bridge crosses the Ilaya Gish, its surface worn nearly smooth from repeated seasons of freezing, thawing, and floods. The riverbanks themselves have been reinforced in some places with stones placed behind heavy netting in an effort to keep the waters at bay when snowmelt runs high. Marshy lowlands span the western banks, edging a long bluff.</description>
<position x="-20" y="197" z="0" />
<arc exit="northeast" move="northeast" destination="54" />
<arc exit="west" move="west" destination="56" />
</node>
<node id="56" name="Western Road, Lowland Valley">
<description>A thin band of aspen trees laces the borders of a seep -- a deep, waterlogged mat of dead moss and leaves underlying the forest-ringed wetland. Cinnamon and royal ferns thrive in the damp, insulating detritus, and wild calla lilies lift their heart-shaped white faces to the sky. A long bluff stretches out to the west, marking the border of higher lands.</description>
<position x="-40" y="197" z="0" />
<arc exit="east" move="east" destination="55" />
<arc exit="southwest" move="southwest" destination="57" />
</node>
<node id="57" name="Western Road, Low Cliffs" note="safe room">
<description>Dividing the valley from a rolling plateau, the bluff drops down into rich lowlands and bogs that surround a winding river. A narrow path laced with hoof prints traverses the striated bands composing the rocky face of the bluff and ends at the higher steppe beyond.</description>
<position x="-60" y="217" z="0" />
<arc exit="northeast" move="northeast" destination="56" />
<arc exit="climb" move="climb narrow path" destination="58" />
</node>
<node id="58" name="The Western Road, Vista" note="Vista">
<description>Rolling plains stretch to a range of faraway mountains on the western horizon. The road, however, links the bluff and the rising ground to the northwest, a region of low ridges and small groves of trees.</description>
<position x="-120" y="217" z="0" />
<arc exit="west" move="west" destination="59" />
<arc exit="northwest" move="northwest" destination="225" />
<arc exit="climb" move="climb narrow path" destination="57" />
</node>
<node id="59" name="Gilen Otso Steppes, Grasslands">
<description>Scattered groves of white oaks stand like pale sentinels in the moonlight, yielding to seemingly endless waves of golden plumegrass and threadbush. With a slight swish and hiss, the grasses quickly close over any evidence of passage.</description>
<description>Scattered groves of pale-barked white oaks yield to seemingly endless waves of golden plumegrass and threadbrush. With a slight swish and hiss, the grasses quickly close over any evidence of passage.</description>
<position x="-180" y="217" z="0" />
<arc exit="east" move="east" destination="58" />
<arc exit="northwest" move="northwest" destination="60" />
</node>
<node id="60" name="Gilen Otso Steppes, Grasslands">
<description>The call of a great horned owl floats hauntingly through the air and is soon answered by another owl further away, the notes of the duet echoing for long moments. Passing breezes move through the thin-bladed grasses to create a constant soft whisper that just touches the edge of awareness.</description>
<description>The lilting song of a savannah sparrow drifts occasionally through the air, the notes falling in a crystalline cascade so sweet and sharp that the sound lingers for long moments. Passing breezes move through the thin-bladed grasses to create a constant soft whisper that just touches the edge of awareness.</description>
<position x="-200" y="197" z="0" />
<arc exit="southeast" move="southeast" destination="59" />
<arc exit="south" move="south" destination="63" />
<arc exit="west" move="west" destination="61" />
</node>
<node id="61" name="Gilen Otso Steppes, Bluff">
<description>A basalt-studded bluff looms over the savannah, lifting above the ocean of grasses. Scrub oaks cling tenaciously to its sides, obscuring the base of the sun-blackened boulders at its crest.</description>
<position x="-220" y="197" z="0" />
<arc exit="east" move="east" destination="60" />
<arc exit="southwest" move="southwest" destination="62" />
</node>
<node id="62" name="Gilen Otso Steppes, Bluff">
<description>A barely visible game trail climbs the bluff, threading between sun-scorched slabs of basalt thrust upward by some ancient upheaval. A canopy of oak with an understory of shrubby hawthorn crowds the trail as it reaches a level stretch of ground that is churned by cloven hoofprints.</description>
<position x="-240" y="217" z="0" />
<arc exit="northeast" move="northeast" destination="61" />
<arc exit="climb" move="climb game trail" destination="77" />
</node>
<node id="63" name="Gilen Otso Steppes, Game Trail" color="#00FFFF">
<description>The barest trace of a game trail wends its way through undulating waves of grasses, nearly invisible in the subdued illumination of the stars. Gusty breezes whisk brittle seed pods along the ground, transporting the embryonic plants to some distant new home.</description>
<description>The barest trace of a game trail wends its way through undulating waves of grasses, their green-gold hues punctuated by the dusty orange of globemallow blossoms. Gusty breezes whisk brittle seed pods along the ground, transporting the embryonic plants to some distant new home.</description>
<position x="-200" y="217" z="0" />
<arc exit="north" move="north" destination="60" />
<arc exit="southeast" move="southeast" destination="64" />
</node>
<node id="64" name="Gilen Otso Steppes, Game Trail" color="#00FFFF">
<description>Each of countless blades of grass is frosted by moonlight, creating a shimmering vista that spans the earth in all directions. From the indigo sky overhead, nighthawks can often be heard calling to one another in their liquid tremolo -- a cascade of sound that breaks the dark.</description>
<description>Each of countless blades of grass is gilded by sunlight, creating a shimmering vista that spans the earth in all directions. A sprinkling of fast-moving clouds scatters a changeless yet ever-changing pattern of brightness and darkness over the landscape.</description>
<position x="-180" y="237" z="0" />
<arc exit="east" move="east" destination="65" />
<arc exit="northwest" move="northwest" destination="63" />
</node>
<node id="65" name="Gilen Otso Steppes, Game Trail" color="#00FFFF">
<description>The tall, lavender-spiked plumes of windfeather plants rise in thick clusters, their silvery-green stems anchoring the gossamer strands of hundreds of spiderwebs. Glinting like miniscule diamonds in refracted starlight, the webs create a misty haze just above the ground.</description>
<description>The tall, lavender-spiked plumes of windfeather plants rise in thick clusters, their silvery-green stems anchoring the gossamer strands of hundreds of spiderwebs. Given the blossoms' attraction for moths and butterflies, the little webspinners have made a wise choice of location.</description>
<position x="-160" y="237" z="0" />
<arc exit="south" move="south" destination="66" />
<arc exit="west" move="west" destination="64" />
</node>
<node id="66" name="Gilen Otso Steppes, Game Trail" note="RTI06|RT-HC-GPS" color="#C2B280">
<description>Thick-spiked windfeather and mature bluestem create a nighttime mosaic worked in moonlight and shadows that stretches to the horizon, competing with the vastness of the sky. Occasionally, the joyful, raucous yips of coyotes can be heard as they hunt for field mice or create their particular and unique brand of trouble.</description>
<description>Thick-spiked windfeather and mature bluestem create a tapestry of purple and russet that stretches to the horizon, competing with the vastness of the sky. Occasionally, the joyful, raucous yips of coyotes can be heard as they hunt for field mice or create their particular and unique brand of trouble.</description>
<position x="-160" y="257" z="0" />
<arc exit="north" move="north" destination="65" />
<arc exit="go" move="go faint path" destination="67" />
</node>
<node id="67" name="Gilen Otso Steppes, Game Trail" color="#00FFFF">
<description>Patches of ricegrass peek out from amongst the loftier bluestem, ruffled edges heavy with the whitish buds that create its name and attract foraging antelope and bison. Overwhelmed by the heavy growth, the trail ghosts almost entirely away.</description>
<position x="-180" y="277" z="0" />
<arc exit="go" move="go faint path" destination="66" />
<arc exit="southeast" move="southeast" destination="68" />
</node>
<node id="68" name="Gilen Otso Steppes, Game Trail" note="RTI05|RT-HC-S" color="#C2B280">
<description>The trail fades into a narrow channel left by the course of a long-ago flash flood, though a network of tracks on the other side indicates that it continues. Nearly overgrown with a lush tangle of evening primrose bushes that fill the night with their intoxicating scent, the channel still bears the marks of the torrent that created it.</description>
<description>The trail fades into a narrow channel left by the course of a long-ago flash flood, though a network of tracks on the other side indicates that it continues. Nearly overgrown with a lush tangle of evening primrose bushes, the channel still bears the marks of the torrent that created it.</description>
<position x="-160" y="297" z="0" />
<arc exit="northwest" move="northwest" destination="67" />
<arc exit="down" move="down" destination="69" />
</node>
<node id="69" name="Gilen Otso Steppes, Game Trail" note="RTI10|RT-HC-CW" color="#C2B280">
<description>Ridges in the earth mark the place where water once flowed, and will likely flow again if rains are heavy. Thanks to the presence of a bare trace of silt left behind by the flood, ghostflowers -- now slumbering through the night -- inhabit the sides of the channel. The rounded, bushy plants are crowded with translucent, pale yellow blossoms in branched clusters.</description>
<description>Ridges in the earth mark the place where water once flowed, and will likely flow again if rains are heavy. Thanks to the presence of a bare trace of silt left behind by the flood, ghostflowers inhabit the sides of the channel. The rounded, bushy plants are crowded with translucent, pale yellow blossoms in branched clusters.</description>
<position x="-160" y="317" z="0" />
<arc exit="northeast" move="northeast" destination="70" />
<arc exit="up" move="up" destination="68" />
</node>
<node id="70" name="Gilen Otso Steppes, Game Trail" note="RTI09|RT-HC-GR" color="#C2B280">
<description>Screens of grass part to allow passage but quickly close ranks again, as though reminding travelers that they are merely visitors in this place. Trilling through the night, the steady pulse of crickets becomes a nocturne that accompanies the darkness as it stakes its claim on the prairie.</description>
<description>Screens of grass part to allow passage but quickly close ranks again, as though reminding travelers that they are merely visitors in this place. Trilling through the bright air, the sonata of savannah sparrows and meadowlarks accompanies the sun as it stakes its claim on the prairie.</description>
<position x="-140" y="297" z="0" />
<arc exit="south" move="south" destination="71" />
<arc exit="southwest" move="southwest" destination="69" />
</node>
<node id="71" name="Gilen Otso Steppes, Game Trail" note="RTI08|RT-HC-HEG" color="#C2B280">
<description>The tawny expanse of grasses is broken by the dark crowns of several oak trees nearby. Clumps of coyote mint thrust themselves up amongst the grasses, permeating the air with a sharp-sweet scent when crushed underfoot.</description>
<position x="-140" y="317" z="0" />
<arc exit="north" move="north" destination="70" />
<arc exit="south" move="south" destination="72" />
</node>
<node id="72" name="Gilen Otso Steppes, Game Trail" color="#00FFFF">
<description>Goldenbell vines swirl along the ground in intricate patterns washed in indigo by the night and sending long, delicate runners in all directions to establish areas of new growth. Cloven hoofprints stamp their own design around the borders of the living tapestry as the game trail widens slightly.</description>
<description>Goldenbell vines swirl along the ground in intricate patterns of jade and bright yellow, sending long, delicate runners of pale green in all directions to establish areas of new growth. Cloven hoofprints stamp their own design around the borders of the living tapestry as the game trail widens slightly.</description>
<position x="-140" y="337" z="0" />
<arc exit="north" move="north" destination="71" />
<arc exit="southeast" move="southeast" destination="73" />
</node>
<node id="73" name="Gilen Otso Steppes, Game Trail" color="#00FFFF">
<description>A litter of acorns and leaves cloaks the ground beneath a prairie grove of venerable white oaks, their bark like burnished silver under the caress of moonbeams. Beyond the grove, the plains are a flow of deep indigo shadows awash in starlight, their rich palette of vegetation dimmed by the power of the night.</description>
<description>A litter of acorns and leaves cloaks the ground beneath a prairie grove of venerable white oaks, their bark like burnished silver in the light. Beyond the grove, the plains are awash in the cheerful yellow blossoms of brittlebush and the burning red blooms of firefall vines.</description>
<position x="-120" y="357" z="0" />
<arc exit="northwest" move="northwest" destination="72" />
<arc exit="go" move="go shaded path" destination="74" />
</node>
<node id="74" name="Gilen Otso Steppes, Shattered Oak">
<description>The faint smell of burning wood can still be detected from the scorched innards of the oak. Snapped like a gidii's wishbone, one half of the gallant tree still stands while its counterpart lies listless upon the ground. Small birds have taken up refuge under the fallen branches and dart to-and-fro through the newly created underbrush.</description>
<position x="-140" y="357" z="0" />
<arc exit="go" move="go shaded path" destination="73" />
<arc exit="climb" move="climb shattered tree" destination="75" />
<arc exit="go" move="go underbrush" destination="532" />
</node>
<node id="75" name="Shattered Oak, Lower Limb">
<description>Despite the violent event that cleaved it, the upright half of the tree remains strong and firm as if it were standing by sheer will alone. Like a stage prop, the western face of the tree appears to be as normal as any other tree, while the flat eastern face is nothing more than splinters and the charred innards of a once mighty oak. The upper leaves and branches dance with the wind and clearly appear to be less stable.</description>
<position x="-160" y="337" z="0" />
<arc exit="up" move="up" destination="76" />
<arc exit="down" move="down" destination="74" />
</node>
<node id="76" name="Shattered Oak, Upper Limbs">
<description>At the highest limbs, the impact of what must have been a massive lightning strike and the resulting fracture of the great tree can be measured with dramatic sways caused by the slightest of breezes. The remains of a bird's nest is tucked amongst the top branches, but the former tenants are nowhere to be seen.</description>
<position x="-180" y="337" z="0" />
<arc exit="down" move="down" destination="75" />
</node>
<node id="77" name="Gilen Otso Steppes, Bluff">
<description>Chunks of basalt lurch at an angle along the side of the bluff, providing a set of natural steps descending from the crest to the rich soil of the surrounding grasslands below. In the far distance, stands of oak and aspen form prairie groves -- shaded islands of darkness against the moonlit background of grasses.</description>
<description>Chunks of basalt lurch at an angle along the side of the bluff, providing a set of natural steps descending from the crest to the rich soil of the surrounding grasslands below. In the far distance, stands of oak and aspen form prairie groves -- shaded islands of dark green, vivid against the tawny background.</description>
<position x="-320" y="217" z="0" />
<arc exit="north" move="north" destination="78" />
<arc exit="northwest" move="northwest" destination="79" />
<arc exit="climb" move="climb bluff" destination="62" />
</node>
<node id="78" name="Gilen Otso Steppes, Bluff">
<description>Soaring above the steppes, the top of the bluff provides a view that affirms the vastness of these lands. Silvered by moonlight, tallgrass and plumegrasses sweep away in all directions, rippling like a windswept sea broken by occasional islands of trees.</description>
<description>Soaring above the steppes, the top of the bluff provides a view that affirms the vastness of these lands. Tallgrass and plumegrasses sweep away in all directions, rippling like some golden sea broken by occasional islands of trees.</description>
<position x="-320" y="197" z="0" />
<arc exit="south" move="south" destination="77" />
</node>
<node id="79" name="Gilen Otso Steppes, Bluff">
<description>The constant whisper of grasses rides the soft wind, carrying with it the tangy scent of sage. Looking down toward the base of the bluff, low-growing soapweed clings tightly to the dark earth.</description>
<position x="-340" y="197" z="0" />
<arc exit="southeast" move="southeast" destination="77" />
<arc exit="south" move="south" destination="80" />
</node>
<node id="80" name="Gilen Otso Steppes, Grasslands">
<description>White clover and wild indigo huddle under the tall canopy of bluestem and switchgrass. A few overturned pebbles appear scorched -- mute evidence of the lightning fires that sometimes sweep across the steppes to force their constant cycle of destruction and renewal.</description>
<position x="-340" y="217" z="0" />
<arc exit="north" move="north" destination="79" />
<arc exit="southwest" move="southwest" destination="81" />
</node>
<node id="81" name="Gilen Otso Steppes, Grasslands">
<description>Low-growing grackleberry bushes cluster close together, their white fruit tucked securely within a weave of thorns. At their base, a warren of little holes indicates that some creature of the steppes has taken advantage of the bushes' spiny protection to make a home here.</description>
<position x="-360" y="237" z="0" />
<arc exit="northeast" move="northeast" destination="80" />
<arc exit="west" move="west" destination="82" />
</node>
<node id="82" name="Gilen Otso Steppes, Grasslands">
<description>Thickets of golden currant bushes cluster in a grouping so dense at the center that it is nearly impenetrable. Occasional rustling noises hint that some small nocturnal denizen of the steppes is making a meal of the crimson-gold fruit.</description>
<description>Thickets of golden currant bushes cluster in a grouping so dense at the center that it is nearly impenetrable. In this world dominated by softer hues, the translucent fruit stands out like jewels, almost startling in its crimson-gold color.</description>
<position x="-400" y="237" z="0" />
<arc exit="east" move="east" destination="81" />
<arc exit="northwest" move="northwest" destination="83" />
</node>
<node id="83" name="Gilen Otso Steppes, Grasslands">
<description>Some creature of the plateaus came to the end of its life here; all that is left is an arch of bleached ribs rising stark and oddly graceful above a ridge of vertebrae. Only the wind knows what manner of death this was -- and it is not telling. Grasses and sedge grow in a tangle between the bones, pulling them relentlessly back to the quiet earth.</description>
<description>Some creature of the plateaus came to the end of its life here all that is left is an arch of bleached ribs rising stark and oddly graceful above a ridge of vertebrae. Only the wind knows what manner of death this was -- and it is not telling. Grasses and sedge grow in a tangle between the bones, pulling them relentlessly back to the quiet earth.</description>
<position x="-420" y="217" z="0" />
<arc exit="southeast" move="southeast" destination="82" />
<arc exit="west" move="west" destination="84" />
</node>
<node id="84" name="Gilen Otso Steppes, Grasslands">
<description>A yellow fawn lily creates a sudden blaze of color against the more subdued golds and greyish-green of the surrounding grass and sedges. Barely visible through the heavy weave of vegetation is the soil of the grasslands, so rich that it is almost black.</description>
<position x="-460" y="217" z="0" />
<arc exit="east" move="east" destination="83" />
<arc exit="west" move="west" destination="88" />
<arc exit="go" move="go overgrown path" destination="85" />
</node>
<node id="85" name="Julge Dolen Zaldeni, Grasslands">
<description>Faint trails wind through the grasslands, leading from nowhere to nowhere. The ground beneath the undulating stalks rises and falls, gradually sloping downward toward the north.</description>
<position x="-540" y="137" z="0" />
<arc exit="north" move="north" destination="86" />
<arc exit="go" move="go overgrown path" destination="84" />
</node>
<node id="86" name="Julge Dolen Zaldeni, Grasslands">
<description>Clover sprigs, thistle clumps, and small bushes break the surface of the grass. Each variety of plant battles for its share of sunlight and water -- competition is not reserved to those that go on four legs.</description>
<position x="-540" y="117" z="0" />
<arc exit="northeast" move="northeast" destination="87" />
<arc exit="south" move="south" destination="85" />
</node>
<node id="87" name="Julge Dolen Zaldeni, Grasslands">
<description>A valley unfolds beneath the crest of a rise. Weeping willows and cedar trees surround the streambed that snakes through the low-lying ground. A profusion of wildflowers dots the expanse, and trees of various types grow in protection from the wind that lashes the grasslands above the depression.</description>
<position x="-520" y="97" z="0" />
<arc exit="southwest" move="southwest" destination="86" />
<arc exit="go" move="go east trail" destination="107" />
<arc exit="go" move="go west trail" destination="132" />
</node>
<node id="88" name="Gilen Otso Steppes, Grasslands">
<description>Foxweed sends a profusion of slender, branched stems in all directions to stake its claim, so determined and pervasive that it even climbs nearby shrubs. The branchlets are tipped with countless tiny white flowers that send a heavy lemony scent through the air.</description>
<position x="-500" y="217" z="0" />
<arc exit="east" move="east" destination="84" />
<arc exit="west" move="west" destination="89" />
</node>
<node id="89" name="Gilen Otso Steppes, Grasslands">
<description>Tall lanceleaf plants reach skyward with spires of pale yellow flowers that loft above the steppes. A spider has taken advantage of their height to craft a web at the corollas' upper reaches, and the number of silk-wrapped forms dotting the gossamer strands give silent proof of the little weaver's good hunting instincts.</description>
<position x="-520" y="217" z="0" />
<arc exit="east" move="east" destination="88" />
<arc exit="go" move="go faint trail" destination="90" />
<arc exit="go" move="go narrow track" destination="133" />
</node>
<node id="90" name="Gilen Otso Steppes, Grasslands">
<description>Russet-tipped plumegrasses feather passersby with a fine scattering of pale yellow pollen when touched. Whispering eternally in a dry sibilance perhaps understood only by the earth itself, they loom so high in some spots that the rest of the world nearly seems to disappear.</description>
<position x="-540" y="237" z="0" />
<arc exit="go" move="go faint trail" destination="89" />
<arc exit="southeast" move="southeast" destination="91" />
</node>
<node id="91" name="Gilen Otso Steppes, Grasslands">
<description>The runners of a prairie rose sprawl among the grasses, its sturdy thorns creating an effective defense against any browsing antelope or bison that might be attracted to its tender buds. Occasionally, the scent of woodsmoke fills the air, sharp with the tang of sage.</description>
<position x="-520" y="257" z="0" />
<arc exit="south" move="south" destination="92" />
<arc exit="northwest" move="northwest" destination="90" />
</node>
<node id="92" name="Gilen Otso Steppes, Grasslands">
<description>Clumps of savannah grass mingle with bluestem, their paler stalks forming a pleasant contrast in texture and hue. Tiny paths tangle and criss-cross through the grasses -- perhaps a colony of field mice or some other small prairie denizen lives nearby.</description>
<position x="-520" y="277" z="0" />
<arc exit="north" move="north" destination="91" />
<arc exit="west" move="west" destination="93" />
</node>
<node id="93" name="Gilen Otso Steppes, Grasslands">
<description>Groundwater must be closer to the surface in this particular spot, as the vegetation shifts just slightly to more moisture-loving types. Little clusters of purple saxifrage form dense cushions here, their distinctive maroon-tinged leaves flattened close against the earth.</description>
<position x="-540" y="277" z="0" />
<arc exit="east" move="east" destination="92" />
<arc exit="southwest" move="southwest" destination="94" />
</node>
<node id="94" name="Gilen Otso Steppes, Blackberry Hillock">
<description>A tangle of blackberry bushes sends tendrils of new growth along the ground. Occasional rustles can be heard from deep within the mounds of vines, but the inhabitants stay well hidden.</description>
<position x="-560" y="297" z="0" />
<arc exit="northeast" move="northeast" destination="93" />
<arc exit="west" move="west" destination="95" />
</node>
<node id="95" name="Gilen Otso Steppes, Blackberry Hillock">
<description>A low hillock is cloaked with a heavy growth of blackberry bushes. The thorny vegetation creates a formidable barrier that effectively blocks access to the top, but thins just enough at its base to allow passage.</description>
<position x="-580" y="297" z="0" />
<arc exit="east" move="east" destination="94" />
<arc exit="southwest" move="southwest" destination="96" />
</node>
<node id="96" name="Gilen Otso Steppes, Grasslands">
<description>The cadence of cicadas thrums on all sides, persistent even in the disturbance created by passersby. The earth is strewn with the matted, grassy carpeting of the previous seasons' growth.</description>
<position x="-600" y="317" z="0" />
<arc exit="northeast" move="northeast" destination="95" />
<arc exit="go" move="go faint path" destination="97" />
</node>
<node id="97" name="Gilen Otso Steppes, Grasslands">
<description>A tracery of delicate cloven hoofprints weaves back and forth over a small patch of clear ground, then disappears again into the shelter of the grasses. Too small for cattle, the tracks must be from deer or antelope that take advantage of the wealth of vegetation available for grazing and browsing.</description>
<position x="-620" y="317" z="0" />
<arc exit="go" move="go faint path" destination="96" />
<arc exit="southwest" move="southwest" destination="98" />
</node>
<node id="98" name="Gilen Otso Steppes, Grasslands">
<description>Golden plumegrass surges and breaks like waves around a large grouping of blue ash trees not far away. Underfoot, several prairie dog holes partly hidden by the vegetation make it necessary to step carefully.</description>
<position x="-640" y="337" z="0" />
<arc exit="northeast" move="northeast" destination="97" />
<arc exit="west" move="west" destination="99" />
</node>
<node id="99" name="Gilen Otso Steppes, Grasslands">
<description>Cooling the air slightly, a steady breeze carries with it the subtle combination of scent and taste that signals water somewhere in the distance. Soft chittering noises from several directions provide a reminder that one never travels unseen across the grasslands.</description>
<position x="-660" y="337" z="0" />
<arc exit="east" move="east" destination="98" />
<arc exit="northwest" move="northwest" destination="100" />
</node>
<node id="100" name="Gilen Otso Steppes, Prairie Grove">
<description>A large stand of blue ash and sycamore forms a prairie grove -- an island of trees in the midst of grasslands. Spaced just widely enough to allow passage between them, the trees provide shelter, shade, and the sense of a world apart within their shadows.</description>
<position x="-680" y="317" z="0" />
<arc exit="southeast" move="southeast" destination="99" />
<arc exit="west" move="west" destination="101" />
</node>
<node id="101" name="Gilen Otso Steppes, Prairie Grove">
<description>Starlight filters down through the canopy of leaves overhead to create a haze of misty illumination that softens the edges of all it touches. The night drops her velvet cloak over all, and the occasional sleepy chirping of birds in branches high above lends the grove an atmosphere of tranquility.</description>
<description>Lifting their boughs to the prairie skies, the trees create a splendid canopy of emerald and deep green that cools the air and paints the ground with a translucent wash of moving shadows. A little circle of tawny mushrooms peeks through the thickest grasses around the base of the trees, gleaming like bits of gold in the darker vegetation.</description>
<position x="-700" y="317" z="0" />
<arc exit="east" move="east" destination="100" />
<arc exit="northwest" move="northwest" destination="102" />
</node>
<node id="102" name="Gilen Otso Steppes, Prairie Grove">
<description>Thriving in the shelter of the sycamores and ash, bluestem and bear grass grow sweet and thick. Purple asters and bright yellow fawn lilies are scattered like gems on the heavy carpet of greenery. Petals turned inward in the dreamtime of flowers, their color is dimmed but not extinguished by the darkness.</description>
<description>Thriving in the shelter of the sycamores and ash, bluestem and bear grass grow sweet and thick. Purple asters and bright yellow fawn lilies are scattered like gems on the heavy carpet of greenery, their color heightened against the darker pools of shadow cast by the trees.</description>
<position x="-720" y="297" z="0" />
<arc exit="southeast" move="southeast" destination="101" />
<arc exit="west" move="west" destination="103" />
<arc exit="go" move="go narrow path" destination="360" />
</node>
<node id="103" name="Gilen Otso Steppes, Prairie Grove">
<description>Pellets of white bone and silvery-grey fur scattered around the base of two of the largest sycamores indicate that owls have found a home in the deepest part of the grove. The masters of silent flight are nowhere to be seen -- darkness has swept them away on their nocturnal hunt.</description>
<description>Pellets of white bone and silvery-grey fur scattered around the base of two of the largest sycamores indicate that owls have found a home in the deepest part of the grove, where even at midday the full power of the sun is held at bay. Stillness falls over everything like a velvety cloak, the constant whisper of the grasses silenced in this place.</description>
<position x="-740" y="297" z="0" />
<arc exit="east" move="east" destination="102" />
<arc exit="northwest" move="northwest" destination="104" />
</node>
<node id="104" name="Gilen Otso Steppes, Prairie Grove">
<description>Graceful blue ash and sycamores gather at the edges of a prairie grove, their leaves forming a lacy mosaic of light, shadow, and shades of green that shifts with each passing breeze. From within the grove cool depths beckon, while in the meadows beyond, vast stretches of grassland provide an invitation of a different sort.</description>
<position x="-760" y="277" z="0" />
<arc exit="southeast" move="southeast" destination="103" />
<arc exit="west" move="west" destination="105" />
</node>
<node id="105" name="Gilen Otso Steppes, Grasslands">
<description>The trees thin out slightly, giving way to plumegrass that flows up the side of a rain-softened ridge of volcanic ash and red earth. Cresting the ridge, a scattering of wild indigo and goldenrod feather their silhouettes against the sky.</description>
<position x="-780" y="277" z="0" />
<arc exit="east" move="east" destination="104" />
<arc exit="south" move="south" destination="106" />
</node>
<node id="106" name="Gilen Otso Steppes, Grasslands">
<description>Greyish volcanic ash blends with darker soil as a series of gentle ridges drops away to meet level ground occupied by closely crowded tufts of bluestem grass and coyote mint. Tiny spine-fringed seeds cling to some of the grasses, carried there by the ceaseless breezes that play across the steppes.</description>
<position x="-780" y="297" z="0" />
<arc exit="north" move="north" destination="105" />
<arc exit="go" move="go path" destination="168" />
</node>
<node id="107" name="Julge Dolen Zaldeni, Grasslands">
<description>The trail takes a precipitous drop from the top of the ridge. Bushes grow along the ridge side, their roots combining with the loose rocks and dirt to make the descent treacherous.</description>
<position x="-500" y="97" z="0" />
<arc exit="down" move="down" destination="108" />
<arc exit="go" move="go trail" destination="87" />
</node>
<node id="108" name="Julge Dolen Zaldeni, Valley">
<description>Thick-rooted bushes choke the steep trail. Many generations of creatures have worn the path down the side of the ridge, traveling the quickest route to the running water in the valley below.</description>
<position x="-500" y="57" z="0" />
<arc exit="up" move="up" destination="107" />
<arc exit="down" move="down" destination="109" />
</node>
<node id="109" name="Julge Dolen Zaldeni, Valley">
<description>The tough shrubs littering the side of the ridge give way to wildflowers and lush grass that thrive on the moist soil of the valley floor.</description>
<position x="-500" y="37" z="0" />
<arc exit="north" move="north" destination="111" />
<arc exit="up" move="up" destination="108" />
</node>
<node id="111" name="Julge Dolen Zaldeni, Valley">
<description>Starflowers and wild carrots spread along the valley floor side by side with sedge and buffalo grass. Faint trails of hoofprints meander through the grasses in no discernible direction, though to the south a trail leading up the ridge can be seen.</description>
<position x="-500" y="17" z="0" />
<arc exit="south" move="south" destination="109" />
<arc exit="west" move="west" destination="112" />
</node>
<node id="112" name="Julge Dolen Zaldeni, Valley">
<description>A portion of the ridge bows into the valley, where the water curved around the hard granite that underlaid the softer limestone. Near to the edge of the ridge, the soil is more arid. The taller grasses begin to give up ground to their more sedate, shorter cousins.</description>
<position x="-520" y="17" z="0" />
<arc exit="east" move="east" destination="111" />
<arc exit="west" move="west" destination="113" />
</node>
<node id="113" name="Julge Dolen Zaldeni, Valley">
<description>Blades of grass stretch to eye level on a Gor'Tog and are intermingled with shorter grasses and sedges. The patter of small feet is barely audible over the rustling of the plants as rodents slip easily along the ground.</description>
<position x="-540" y="17" z="0" />
<arc exit="east" move="east" destination="112" />
<arc exit="west" move="west" destination="114" />
</node>
<node id="114" name="Julge Dolen Zaldeni, Grasslands">
<description>Tall, head-high grass mixes with short, broad-bladed grass emerging from the detritus at the base of the slope. Some of the blades are crushed and broken, but most simply spring back when disturbed.</description>
<position x="-580" y="17" z="0" />
<arc exit="east" move="east" destination="113" />
<arc exit="southwest" move="southwest" destination="115" />
</node>
<node id="115" name="Julge Dolen Zaldeni, Grasslands">
<description>The trail leads up from the valley floor, winding along the slope of the ridge to the grasslands above. To the northeast, the path tapers off within the grasses and trees covering the river valley.</description>
<position x="-600" y="37" z="0" />
<arc exit="northeast" move="northeast" destination="114" />
<arc exit="up" move="up" destination="129" />
</node>
<node id="129" name="Julge Dolen Zaldeni, Grasslands">
<description>Underneath a tumbled rock, a small nest of twigs and grass makes a cozy home for some field mice. The creatures dart about looking for seeds borne by the wind, but scatter rapidly if anything larger than a rat approaches.</description>
<position x="-600" y="57" z="0" />
<arc exit="south" move="south" destination="130" />
<arc exit="down" move="down" destination="115" />
</node>
<node id="130" name="Julge Dolen Zaldeni, Grasslands">
<description>Wind whisks along the path, moving from the top of the ridge to the valley below. It brings with it the dry dust and chaff frisked from the grasses above, and the scent of the earth.</description>
<description>Wind whisks along the path, moving from the top of the ridge to the valley below. It brings with it the dry dust and chaff frisked from the grasses above, and the scent of the sun.</description>
<position x="-600" y="77" z="0" />
<arc exit="north" move="north" destination="129" />
<arc exit="up" move="up" destination="131" />
</node>
<node id="131" name="Julge Dolen Zaldeni, Grasslands">
<description>The trail broadens from the east, until two horses could pass abreast. The rocky path is bordered by clumps of grass and weeds on either side that cling to the sides of the ridge.</description>
<position x="-600" y="97" z="0" />
<arc exit="east" move="east" destination="132" />
<arc exit="down" move="down" destination="130" />
</node>
<node id="132" name="Julge Dolen Zaldeni, Grasslands">
<description>Meandering along the ridge, the trail widens to the west as it begins its descent to the valley. Loose rocks, disturbed by passing wildlife, skitter a few feet before coming to rest again.</description>
<position x="-580" y="97" z="0" />
<arc exit="west" move="west" destination="131" />
<arc exit="go" move="go trail" destination="87" />
</node>
<node id="133" name="Tanis Belta Gaizen, Narrow Track">
<description>Just visible past a series of low ridges, a long plateau looms against the horizon like a cresting wave. The steppes seem to want no part of primly terraced hills, choosing to be graced instead with this chain of bluffs stratified in thick red layers of ancient lava alternating with multicolored bands of ash-based rock. These cliffs were born in fire.</description>
<position x="-560" y="177" z="0" />
<arc exit="northwest" move="northwest" destination="134" />
<arc exit="go" move="go narrow track" destination="89" />
</node>
<node id="134" name="Tanis Belta Gaizen, Narrow Track">
<description>The land surges into low, rolling hills interlaced with a gallery forest. The startling fringe of deep green, startling against the subdued hues of the plains, indicates places where streams coursing through give rise to stands of cedar and juniper trees gathered along the water's edge.</description>
<position x="-580" y="157" z="0" />
<arc exit="southeast" move="southeast" destination="133" />
<arc exit="southwest" move="southwest" destination="135" />
<arc exit="go" move="go subtle trail" destination="580" />
</node>
<node id="135" name="Tanis Belta Gaizen, Narrow Track">
<description>Asserting its presence, the high desert begins to slip in amongst the grasslands. The country eases into the color of old broken pottery, the faded green of sage, and the sunbleached white of rice grass.</description>
<position x="-600" y="177" z="0" />
<arc exit="northeast" move="northeast" destination="134" />
<arc exit="south" move="south" destination="136" />
</node>
<node id="136" name="Tanis Belta Gaizen, Narrow Track">
<description>Prophet trees stand tall and austere, cloaked in silvery channeled bark and multiple limbs that are upturned to the sky as though in prayer. At the end of each branch are heavy, daggerlike leaves surrounding tiny bursts of red flowers like exploding candles.</description>
<position x="-600" y="197" z="0" />
<arc exit="north" move="north" destination="135" />
<arc exit="northwest" move="northwest" destination="137" />
</node>
<node id="137" name="Tanis Belta Gaizen, Ravine">
<description>Flowing up to the edge of a deep ravine, the land has the long, gentle lines of all ancient ground. Distant cliffs -- reefs of ages past -- are banded in the bright red of fire coral. The occasional call of a canyon wren trills through the air, a descant against the theme of the constant breezes.</description>
<position x="-620" y="177" z="0" />
<arc exit="southeast" move="southeast" destination="136" />
<arc exit="south" move="south" destination="138" />
</node>
<node id="138" name="Tanis Belta Gaizen, Ravine">
<description>Bordering the ravine, the track meanders to an overlook that opens over a grotesque landscape. Ancient deposits of mud and clay have been deeply eroded by the elements, and sharp ridges have been cut into side-ridges and then further divided, as if by some mad sculptor, into intricately torturous shapes.</description>
<position x="-620" y="197" z="0" />
<arc exit="north" move="north" destination="137" />
<arc exit="climb" move="climb steep trail" destination="139" />
</node>
<node id="139" name="Tanis Belta Gaizen, Ravine">
<description>Angling sharply, the track dips just below the ravine's edge, as though yearning for whatever lies beyond. The soil here is powdery and unstable, crumbling away at the slightest pressure and sending constant little torrents of sand plummeting downward.</description>
<position x="-640" y="197" z="0" />
<arc exit="climb" move="climb narrow track" destination="140" />
<arc exit="climb" move="climb steep trail" destination="138" />
</node>
<node id="140" name="Tanis Belta Gaizen, Streambed">
<description>Abruptly, the track switchbacks into the abyss of the ravine and comes to the edge of what elsewhere would be a waterway, but now is only sand. Current once flowed here, leaving sculpted channels and riffles that look almost as though they could cascade downstream.</description>
<position x="-660" y="197" z="0" />
<arc exit="southeast" move="southeast" destination="141" />
<arc exit="climb" move="climb narrow track" destination="139" />
</node>
<node id="141" name="Tanis Belta Gaizen, Streambed">
<description>Fanning wide between the ravine's sheer walls, the streambed courses along deep, V-shaped gouges scoured out by flash floods and past debris piled up where it was flung long ago by tumbling water.</description>
<position x="-640" y="217" z="0" />
<arc exit="west" move="west" destination="142" />
<arc exit="northwest" move="northwest" destination="140" />
</node>
<node id="142" name="Tanis Belta Gaizen, Streambed">
<description>Upstream, a side trail crosses the streambed, dappled with a myriad of tracks mingled together in the traffic of the ravine. The shadowed walls of rock and clay channel cool breezes along the dry watercourse.</description>
<position x="-660" y="217" z="0" />
<arc exit="east" move="east" destination="141" />
<arc exit="west" move="west" destination="143" />
</node>
<node id="143" name="Tanis Belta Gaizen, Canyon">
<description>The ravine walls loft higher, now more rock than earth. In a flow of sand that sparkles with tiny fragments of eroded quartz, the streambed disappears in a maze of narrow sandstone passageways with perpendicular walls.</description>
<position x="-680" y="217" z="0" />
<arc exit="north" move="north" destination="144" />
<arc exit="east" move="east" destination="142" />
</node>
<node id="144" name="Tanis Belta Gaizen, Canyon">
<description>There are little worlds in the streambed -- burrows holding creatures that become active in the cool of the evening, inch-high flowerbeds of dense sedge, and tiny castles of eroded stone. The canyon walls drop a cloak of cool shadow over everything, and the vast expanse of steppes above seems distant in this place.</description>
<position x="-680" y="197" z="0" />
<arc exit="south" move="south" destination="143" />
<arc exit="southwest" move="southwest" destination="145" />
</node>
<node id="145" name="Tanis Belta Gaizen, Canyon">
<description>Stalks as tall as javelins, a group of blue yucca tower over the dry watercourse, surrounded by a thick bed of golden poppies. Each yucca stalk is heavily flowered with waxy white blossoms.</description>
<position x="-700" y="217" z="0" />
<arc exit="northeast" move="northeast" destination="144" />
<arc exit="west" move="west" destination="146" />
</node>
<node id="146" name="Tanis Belta Gaizen, Canyon">
<description>Where the sand is coarse it throws up dark edges, forming paths that radiate around sculpted stones or delicately paralleling cutbacks. High above, the cliffs become surreal -- boulders are perched atop eroded, sandy spires, the whole construct looking as though it could collapse at the touch of a breeze.</description>
<position x="-720" y="217" z="0" />
<arc exit="north" move="north" destination="147" />
<arc exit="east" move="east" destination="145" />
</node>
<node id="147" name="Tanis Belta Gaizen, Canyon">
<description>Steadily, the canyon walls deepen, forking upward to the sheer cliffs and unclimbable overhangs that make up the formidable palisades of the high plains netherworld.</description>
<position x="-720" y="197" z="0" />
<arc exit="south" move="south" destination="146" />
<arc exit="northwest" move="northwest" destination="148" />
</node>
<node id="148" name="Tanis Belta Gaizen, Canyon">
<description>Further upstream, a tall wall of quartz blocks the way. At its crest is a lip worn smooth as glass over which flash floods have poured for countless eons. Below it is a splash basin where thundering water has hollowed out the bedrock.</description>
<position x="-740" y="177" z="0" />
<arc exit="southeast" move="southeast" destination="147" />
<arc exit="west" move="west" destination="149" />
</node>
<node id="149" name="Tanis Belta Gaizen, Quartz Wall">
<description>At the base of the wall the still air seems charged somehow, as though waiting for the torrents of water that have so often filled this canyon with their deafening roar. The sheer wall lofts high, with a gloss that lends the illusion of a slick of water flowing down the cliff face, though this is simply the result of stray beams of light refracting off the translucent quartz.</description>
<position x="-760" y="177" z="0" />
<arc exit="east" move="east" destination="148" />
<arc exit="west" move="west" destination="150" />
<arc exit="climb" move="climb wall" destination="429" />
</node>
<node id="150" name="Tanis Belta Gaizen, Canyon">
<description>The wash meanders along the base of the wall as the cliffs on either side gradually gain height, throwing deep shadows that chill the air regardless of time of day or season. Like shatter lines in glass, a delicate webwork of cracks shroud the face of the dark quartz, some widened into deep clefts in the side of the rock.</description>
<position x="-780" y="177" z="0" />
<arc exit="east" move="east" destination="149" />
<arc exit="south" move="south" destination="153" />
<arc exit="southwest" move="southwest" destination="151" />
<arc exit="go" move="go cleft" destination="154" />
</node>
<node id="151" name="Tanis Belta Gaizen, Canyon">
<description>High on a grim rampart of stone, a skeleton has been suspended from a crude bolt driven deep into the rock. Tattered robes, perhaps once red but now faded to the color of the sandstone itself, dangle in long shreds from the remains. Its skull angles up towards the distant sky, jaws gaping in a soundless scream and empty eye sockets eternally gazing toward unattainable freedom.</description>
<position x="-800" y="197" z="0" />
<arc exit="northeast" move="northeast" destination="150" />
<arc exit="west" move="west" destination="152" />
</node>
<node id="152" name="Tanis Belta Gaizen, Canyon">
<description>Faint clattering echoes periodically between the canyon walls, a sound like stones being dislodged from somewhere above. The shadowed spires of rock provide no hint of what may be causing the disturbances.</description>
<position x="-800" y="237" z="0" />
<arc exit="east" move="east" destination="151" />
<arc exit="northwest" move="northwest" destination="153" />
</node>
<node id="153" name="Tanis Belta Gaizen, Streambed">
<description>Sand glitters in elaborately flowing ridges and spirals as though the breezes themselves have been playfully crafting designs with its water-smoothed grains. Yellow-flowered clusters of coyote mint grow in thick bunches alongside the streambed and gather around the base of a weathered platform.</description>
<position x="-780" y="197" z="0" />
<arc exit="north" move="north" destination="150" />
<arc exit="southeast" move="southeast" destination="152" />
</node>
<node id="154" name="Tanis Belta Gaizen, Cleft">
<description>The cleft opens into a wide passage that arches dark and smooth overhead. A few beams of ambient light flicker in from just outside, but are quickly quenched to wavering threads, as though the passage itself forbids their presence. The sand of the canyon floor gives way to finer silt, and cool, faintly sour air drifts in from somewhere in the darkness beyond.</description>
<position x="-780" y="157" z="0" />
<arc exit="west" move="west" destination="155" />
<arc exit="go" move="go cleft" destination="150" />
</node>
<node id="155" name="Tanis Belta Gaizen, Dark Passage">
<description>The passage ceiling and walls seem to pull closer, and the air grows thick with a sickly-sweet scent overlaid with the odor of decay. Papery rustling sounds come almost constantly from overhead, though the pervasive darkness blocks any sight of whatever is moving about.</description>
<position x="-800" y="157" z="0" />
<arc exit="east" move="east" destination="154" />
<arc exit="southwest" move="southwest" destination="156" />
</node>
<node id="156" name="Tanis Belta Gaizen, Dark Passage">
<description>Standing in relief against the darkness, faint streaks of sickly yellow phosphorescence glimmer along the walls, somehow eerie even though their source is just a humble moss that clings damply to the stone in great, furry patches.</description>
<position x="-820" y="177" z="0" />
<arc exit="northeast" move="northeast" destination="155" />
<arc exit="south" move="south" destination="157" />
</node>
<node id="157" name="Tanis Belta Gaizen, Dark Passage">
<description>Chill air whispers along the passage, plucking insistently at passersby like a petulant spirit before dissipating as quickly as it arose. The darkness lifts enough to limn the outlines of a grotesque, towering figure incised into the rocky walls.</description>
<position x="-820" y="197" z="0" />
<arc exit="north" move="north" destination="156" />
<arc exit="southwest" move="southwest" destination="158" />
</node>
<node id="158" name="Tanis Belta Gaizen, Dark Passage">
<description>Like a cleansing draught, the crisp scent of sage flows in through the jagged cleft that leads back out into light and air uncontaminated with whatever has imbued its noxious presence into the stone of the passage.</description>
<position x="-840" y="217" z="0" />
<arc exit="northeast" move="northeast" destination="157" />
<arc exit="west" move="west" destination="159" />
</node>
<node id="159" name="Tanis Belta Gaizen, Canyon">
<description>On either side of a cliff face that is broken by deep clefts and jagged cracks, sheer sandstone lofts upward to explode in a myriad of spires, pinnacles, eroded flows, and delicately balanced stones. Between the parallel walls of rock, the air is immediately still with the intricate quiet of contained space.</description>
<position x="-860" y="217" z="0" />
<arc exit="north" move="north" destination="160" />
<arc exit="east" move="east" destination="158" />
</node>
<node id="160" name="Tanis Belta Gaizen, Canyon">
<description>Water on stone, day by countless day, sculpted this honeycombed labyrinth crowned by the rim of the sky curving over the steppes above. At its upper end, tucked among a few trees stubbornly rooted between bare rock, water pours from an underground spring that courses down the canyon and then sinks into the rocks as suddenly as it appeared.</description>
<position x="-860" y="197" z="0" />
<arc exit="north" move="north" destination="161" />
<arc exit="south" move="south" destination="159" />
</node>
<node id="161" name="Tanis Belta Gaizen, Canyon">
<description>Chanting canyon frogs, elegant white-barked aspens and lacy willows, and the maze of rock shaped like elaborate turrets all conspire to create a world apart. Someone or something has lingered here, though -- one of the wind-smoothed walls of stone is distorted with complex etchings.</description>
<position x="-860" y="177" z="0" />
<arc exit="south" move="south" destination="160" />
<arc exit="northwest" move="northwest" destination="162" />
</node>
<node id="162" name="Tanis Belta Gaizen, Stream Bank">
<description>As though called down by the water, a heavily-tracked game trail drops from deep clefts in the sheer rock of the canyon wall to flank the stream bank. Beside the trail, the stream flows like a guide. Only inches deep in some places, it flows over a cool bed of sparkling sand.</description>
<position x="-880" y="157" z="0" />
<arc exit="southeast" move="southeast" destination="161" />
<arc exit="climb" move="climb stream bank" destination="163" />
</node>
<node id="163" name="Tanis Belta Gaizen, Stream" color="#0000FF">
<description>Willows drape their sweep of emerald veiling over the stream, while underneath the shadow of the trees comes the sweet sound of moving water. In little side pools are bright green mats of algae, occasionally ruffled by swarms of water beetles or hungry tadpoles.</description>
<position x="-920" y="117" z="0" />
<arc exit="southwest" move="swim southwest" destination="164" />
<arc exit="climb" move="climb stream bank" destination="162" />
</node>
<node id="164" name="Tanis Belta Gaizen, Stream" color="#0000FF">
<description>The stream widens and flows over a ledge to form a clear, deep pool. Splashing water sparkles on the surrounding tree trunks, sending soft echoes between the canyon walls.</description>
<position x="-940" y="137" z="0" />
<arc exit="northeast" move="swim northeast" destination="163" />
<arc exit="south" move="swim south" destination="165" />
</node>
<node id="165" name="Tanis Belta Gaizen, Canyon">
<description>Closing in above the stream as though sheltering it from the world beyond, the cliffs loom close, blocking the sky and creating a pervasive chill. An incessant wind whines between the narrows, whipping around spires of stone and kicking up gusts of sand.</description>
<position x="-940" y="157" z="0" />
<arc exit="north" move="north" destination="164" />
<arc exit="southeast" move="southeast" destination="166" />
</node>
<node id="166" name="Tanis Belta Gaizen, Canyon">
<description>A narrow embankment lifts away from the stream to press up against a wind-sculpted divide in the canyon walls. Little light can reach this place; it is a world of shadows and stone. Ferns luxuriate in damp clefts in the rocks, and the only sound is the quiet chatter of the nearby water.</description>
<position x="-920" y="177" z="0" />
<arc exit="east" move="east" destination="167" />
<arc exit="northwest" move="northwest" destination="165" />
</node>
<node id="167" name="Tanis Belta Gaizen, Canyon">
<description>Unexpected colors gleam against the pale sand where some clay pots lie broken and scattered. A burial mound appears to have been desecrated, its carefully stacked rocks ripped away and any valuable contents meant to accompany the occupant on his or her final journey now gone. Bones have been pulled into the open and appear to be crushed, and in a final violation, the skull is missing.</description>
<position x="-900" y="177" z="0" />
<arc exit="west" move="west" destination="166" />
</node>
<node id="168" name="Zaldi Taipa, Cedar Path" note="Kraelyst start point|travel start point" color="#808000">
<description>Silhouetted against the moon-silvered sky, tents are arranged in an orderly grouping that takes maximum advantage of trees that will provide shade in the heat of the day and the partial shelter of a few low ridges. A nearby clump of juniper lists slightly to one side, almost excavated by something that has dug underneath its low branches to create a hollow in the shadows.</description>
<description>Silhouetted against the wide prairie sky, colorful tents are arranged in an orderly grouping that takes maximum advantage of shade trees and the partial shelter of a few low ridges. A nearby clump of juniper lists slightly to one side, almost excavated by something that has dug underneath its low branches to create a hollow in the shadows.</description>
<position x="-740" y="337" z="0" />
<arc exit="southwest" move="southwest" destination="169" />
<arc exit="go" move="go path" destination="106" />
</node>
<node id="169" name="Zaldi Taipa, Cedar Path">
<description>Though the grasses in this area grow thick and abundant, they are closely cropped in many spots. Even the thorny runners of prairie roses and heavy, furred bark of mesquite show signs of determined nibbling. The air is filled with the musky scent of sheep and goats, and only the occasional stamp of a hooved foot or the call of a ewe to her restless lamb mark the quiet passage of the night's hours.</description>
<description>Though the grasses in this area grow thick and abundant, they are closely cropped in many spots. Even the thorny runners of prairie roses and heavy, furred bark of mesquite show signs of determined nibbling. A reverberating chorus of baas and bleats rises almost constantly, and the air is filled with the musky scent of sheep and goats.</description>
<position x="-760" y="357" z="0" />
<arc exit="northeast" move="northeast" destination="168" />
<arc exit="west" move="west" destination="170" />
</node>
<node id="170" name="Zaldi Taipa, Cedar Path">
<description>An occasional quiet growl can be heard from the herding dogs that drowse nearby, protective of the flocks throughout the night. Moonlight glints off the edges of tender new blades of grass springing up even in heavily grazed areas, a reminder that given a chance, the prairie will prevail over this temporary intrusion.</description>
<description>Often, a sharp bark pierces the air as herding dogs go about their business of keeping unruly goats or inattentive sheep from wandering too far. Green-gold patches of new grasses peek up from more heavily grazed areas, a reminder that given a chance, the prairie will prevail over this temporary intrusion.</description>
<position x="-800" y="357" z="0" />
<arc exit="east" move="east" destination="169" />
<arc exit="southwest" move="southwest" destination="171" />
</node>
<node id="171" name="Zaldi Taipa, Cedar Path">
<description>A few young white oaks provide shelter for any of the flock that wants a resting place for the night. The oaks' weathered bark bears a meshwork of scars in spots where rams and bucks have rubbed their horns or butted the trees in play.</description>
<description>A few young white oak trees provide shade and shelter for any of the flock that wants a resting place. The oaks' weathered bark bears a meshwork of scars in spots where rams and bucks have rubbed their horns or butted the trees in play.</description>
<position x="-820" y="377" z="0" />
<arc exit="northeast" move="northeast" destination="170" />
<arc exit="southeast" move="southeast" destination="172" />
</node>
<node id="172" name="Zaldi Taipa, Cedar Path" note="Zaldi Taipa|Horse Clan">