-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMap66_STR3.xml
5460 lines (5460 loc) · 517 KB
/
Map66_STR3.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 to Gondola Area" id="66">
<node id="1" name="Prairie">
<description>In stark relief to the rolling prairie, a small stand of deep green trees can be seen to the southeast. Overhead, a hawk cries out, then dives into the tall grasses. When he emerges moments later, he carries a barely-struggling prairie rat.</description>
<position x="-180" y="60" z="0" />
<arc exit="northeast" move="northeast" destination="12" />
<arc exit="southeast" move="southeast" destination="14" />
<arc exit="south" move="south" destination="2" />
</node>
<node id="2" name="Prairie">
<description>The taller grasses and flowers give way here to shorter buffalo grass and primroses. A small flock of prairie-chickens scratch in the dirt and grass for food. Though they move away from visitors to the area, there is not sufficient danger to send them squawking for shelter.</description>
<description>The taller grasses and flowers give way here to shorter buffalo grass and primroses. The pale primroses are in full bloom, casting their sweet scent across the prairie.</description>
<position x="-180" y="80" z="0" />
<arc exit="north" move="north" destination="1" />
<arc exit="west" move="west" destination="4" />
<arc exit="go" move="go path" destination="3" />
</node>
<node id="3" name="Derelict Road, Whistling Wood" note="Map68_Shard_South_Gate.xml|S Gate|sgate">
<description>The stone road, once the pinnacle of craftsmanship, is cracked and worn. Framed on both sides by the Whistling Wood, it winds its way southward to the Dark Hand. The crumbling remains of the old South Bridge of Shard can be seen to the north, set against the crystalline purity of the city's walls.</description>
<position x="-180" y="120" z="0" />
<arc exit="north" move="north" />
<arc exit="south" move="south" />
<arc exit="go" move="go path" destination="2" />
</node>
<node id="4" name="Prairie">
<description>The path skirts the edge of a slough hole. The swamp-like depression is filled with cattails, pickerelweed and soft rushes. A pair of lark sparrows is feeding on the mosquitoes and other insects that are flittering over the slough.</description>
<position x="-200" y="80" z="0" />
<arc exit="east" move="east" destination="2" />
<arc exit="west" move="west" destination="5" />
</node>
<node id="5" name="Prairie">
<description>The path weaves through a thick patch of prairie junegrass. The sod underfoot feels as solid as a stone road although it's composed of only grass and dirt. In the taller grasses at the path's edge, there are signs of trails and burrows made by small animals.</description>
<position x="-220" y="80" z="0" />
<arc exit="east" move="east" destination="4" />
<arc exit="southwest" move="southwest" destination="6" />
</node>
<node id="6" name="Prairie">
<description>In all directions, as far as the eye can see, stretch gentle rolling hills covered in billowing green and gold waves. A patch of dark green to the east and some sort of clearing to the far north are the only variations that can be seen from here.</description>
<position x="-240" y="100" z="0" />
<arc exit="north" move="north" destination="8" />
<arc exit="northeast" move="northeast" destination="5" />
<arc exit="northwest" move="northwest" destination="7" />
<arc exit="go" move="go gap" destination="37" />
</node>
<node id="7" name="Prairie">
<description>A male grouse, in full peacock-like display, struts proudly back and forth at the far end of the trail. Suddenly he stops, cups his wings behind him and then begins to slowly beat his wings. As he picks up the pace, the sound goes from a mute pop to the booming of a kettledrum. There is a brief rustling in the grass and out pops a hen.</description>
<position x="-260" y="80" z="0" />
<arc exit="southeast" move="southeast" destination="6" />
</node>
<node id="8" name="Prairie">
<description>A large field of tall sweet william and big bluestem prairie grass change the billowing waves of grass to lavender and blue-green. From their hidden vantage nearby, a pair of meadowlarks sings happily.</description>
<description>A large field of tall sweet william and big bluestem prairie grass change the billowing waves of grass to lavender and blue-green. From a hidden vantage nearby, an owl hoots briefly, then flutters from its hiding place to glide overhead.</description>
<position x="-240" y="80" z="0" />
<arc exit="north" move="north" destination="9" />
<arc exit="south" move="south" destination="6" />
</node>
<node id="9" name="Prairie">
<description>From the top of this small hill, a homestead -- complete with house, barn and fields -- can be seen to the north. Like an island suddenly appearing in the middle of an otherwise featureless sea, the homestead looks sadly out of place on the prairie.</description>
<description>From the top of this small hill, the vague outlines of several buildings can be seen in a large clearing to the north. Amid the tall waving grasses, the clearing looks like a wound on the surface of the prairie.</description>
<position x="-240" y="60" z="0" />
<arc exit="north" move="north" destination="10" />
<arc exit="south" move="south" destination="8" />
</node>
<node id="10" name="Prairie, Old Homestead">
<description>A rough split-rail fence marks the start of the homestead. Parts of the fence, including the gate, have fallen into disrepair. Beyond the gate, the homestead looks abandoned and forlorn.</description>
<position x="-240" y="40" z="0" />
<arc exit="south" move="south" destination="9" />
<arc exit="go" move="go rough gate" destination="11" />
</node>
<node id="11" name="Prairie, Old Homestead">
<description>The encroachment of the prairie has been halted for the time being as signs of activity become apparent. Though the sod house and barn are in ruin, the fresh scent of horse droppings and hoof and foot prints in every direction suggest the homestead is not abandoned.</description>
<position x="-220" y="20" z="0" />
<arc exit="north" move="north" destination="34" />
<arc exit="northwest" move="northwest" destination="30" />
<arc exit="go" move="go rough gate" destination="10" />
<arc exit="go" move="go corral" destination="35" />
<arc exit="go" move="go old barn" destination="36" />
</node>
<node id="12" name="Prairie, Prairie Dog Town" note="Prairie Dog Town">
<description>Cone-shaped piles of dirt, each with an entrance hole, dot a large expanse of land. After a moment, a prairie dog peeks from one hole then cautiously climbs out. He looks cautiously around, then lets out a ringing bark and suddenly the area is swarming with other dogs.</description>
<position x="-160" y="40" z="0" />
<arc exit="southwest" move="southwest" destination="1" />
<arc exit="northwest" move="northwest" destination="13" />
</node>
<node id="13" name="Prairie, Prairie Dog Town">
<description>A prairie dog sentinel carefully watches the borders of his town. Every so often, he flicks his tail and the other dogs in the area pause. When he gives no additional signals of danger, they continue with their activities. Some are eating grasses, while others are grooming one another. A couple are even busy digging a new mound.</description>
<position x="-180" y="20" z="0" />
<arc exit="southeast" move="southeast" destination="12" />
</node>
<node id="14" name="Prairie, Wylder Spring" color="#008000">
<description>A large weeping willow hangs over the western end of Wylder Spring. Beneath it the air is cool and shaded, a welcome respite from the heat of the ever-present prairie sun. Cattails and shallow water grasses grow around the edge of the pond.</description>
<description>A large weeping willow hangs over the western end of Wylder Spring. Cattails and shallow water grasses grow around the edge of the pond. Bullfrogs, hidden in the cattails, croak endlessly through the night.</description>
<position x="-160" y="80" z="0" />
<arc exit="northeast" move="northeast" destination="18" />
<arc exit="southeast" move="southeast" destination="15" />
<arc exit="northwest" move="northwest" destination="1" />
</node>
<node id="15" name="Prairie, Wylder Spring" color="#008000">
<description>A cloud of gnats swirls along the shore, choking unwary travelers who inhale a lung-full of their almost invisible bodies. A bullfrog leaps from a waterlily into the spring and submerges, leaving only his eyes and nostrils visible.</description>
<description>A cloud of gnats swirls along the shore, choking unwary travelers who inhale a lung-full of their almost invisible bodies. As fireflies dance up and down over the surface of the spring, their brief flashes of light are reflected in the water.</description>
<position x="-140" y="100" z="0" />
<arc exit="east" move="east" destination="16" />
<arc exit="northwest" move="northwest" destination="14" />
</node>
<node id="16" name="Prairie, Wylder Spring" color="#008000">
<description>The path passes between several young willows along the shore and a row of cottonwoods that sit farther back. The air is filled with the white puffball-like seeds of the cottonwood.</description>
<position x="-120" y="100" z="0" />
<arc exit="northeast" move="northeast" destination="17" />
<arc exit="west" move="west" destination="15" />
<arc exit="climb" move="climb tall cottonwood" destination="462" />
</node>
<node id="17" name="Prairie, Wylder Spring" color="#008000">
<description>A family of ducks floats calmly on the surface of the spring, weaving through waterlillies and the trailing limbs of a weeping willow near the shore before venturing into the clearer waters in the middle. To the east, the rolling gold and green of the prairie returns.</description>
<position x="-100" y="80" z="0" />
<arc exit="east" move="east" destination="19" />
<arc exit="southwest" move="southwest" destination="16" />
<arc exit="northwest" move="northwest" destination="18" />
</node>
<node id="18" name="Prairie, Wylder Spring" color="#008000">
<description>A startled jackrabbit bounds quickly from the spring into the surrounding prairie grass. A variety of animal tracks, including some left by the jackrabbit, can be seen in the muddy shoreline.</description>
<position x="-140" y="60" z="0" />
<arc exit="southeast" move="southeast" destination="17" />
<arc exit="southwest" move="southwest" destination="14" />
</node>
<node id="19" name="Prairie">
<description>In the distance a small herd of bison grazes among the prairie grasses. From the tracks in the dirt here, it looks as if they sometimes travel to the spring for water.</description>
<position x="-80" y="80" z="0" />
<arc exit="east" move="east" destination="20" />
<arc exit="west" move="west" destination="17" />
</node>
<node id="20" name="Haizen Jan Aradan, Prairie">
<description>As if announcing the transition to high desert plains, a solitary prophet tree lifts silvery-barked and heavily spiked limbs to the sky. Its deep scarlet blossoms hang like a benediction over the plains and frame a distant view of the vividly variegated badlands to the east.</description>
<description>A solitary tree lifts its heavily spiked limbs toward the dark heavens. To the east, hulking shadows rise from the ground.</description>
<position x="-60" y="80" z="0" />
<arc exit="east" move="east" destination="21" />
<arc exit="west" move="west" destination="19" />
</node>
<node id="21" name="Haizen Jan Aradan, Prairie">
<description>The ground slopes downward into a wide, shallow depression to the northeast. Sparse prairie shortgrass grows along the perimeter, thickening into a lush green field dotted with pink and purple flowers toward the center of the depression. Beyond the hollow, colorfully striated cliffs rise above the horizon.</description>
<description>The ground slopes downward into a wide, shallow depression to the northeast, where the air seems very still. Deep shades of night rise beyond the hollow.</description>
<position x="-40" y="80" z="0" />
<arc exit="north" move="north" destination="28" />
<arc exit="northeast" move="northeast" destination="29" />
<arc exit="east" move="east" destination="22" />
<arc exit="west" move="west" destination="20" />
</node>
<node id="22" name="Haizen Jan Aradan, Prairie">
<description>The ground slopes downward into a wide, shallow depression to the northwest. Sparse prairie shortgrass grows along the perimeter, thickening into a lush green field dotted with pink and purple flowers toward the center of the depression. To the northeast, colorfully striated cliffs rise above the horizon.</description>
<description>The ground slopes downward into a wide, shallow depression to the northwest, where the air seems very still. Deep shades of night rise above the northeastern horizon.</description>
<position x="20" y="80" z="0" />
<arc exit="northeast" move="northeast" destination="23" />
<arc exit="west" move="west" destination="21" />
<arc exit="northwest" move="northwest" destination="29" />
</node>
<node id="23" name="Haizen Jan Aradan, Prairie">
<description>The ground slopes downward into a wide, shallow depression to the west. Sparse prairie shortgrass grows along the perimeter, thickening into a lush green field dotted with pink and purple flowers toward the center of the depression. To the northeast, colorfully striated cliffs rise above the horizon.</description>
<description>The ground slopes downward into a wide, shallow depression to the west, where the air seems very still. Deep shades of night rise above the northeastern horizon.</description>
<position x="40" y="60" z="0" />
<arc exit="southwest" move="southwest" destination="22" />
<arc exit="west" move="west" destination="29" />
<arc exit="northwest" move="northwest" destination="24" />
</node>
<node id="24" name="Haizen Jan Aradan, Prairie">
<description>The ground slopes downward into a wide, shallow depression to the southwest. Sparse prairie shortgrass grows along the perimeter, thickening into a lush green field dotted with pink and purple flowers toward the center of the depression. To the northeast, colorfully striated cliffs rise above the horizon.</description>
<description>The ground slopes downward into a wide, shallow depression to the southwest, where the air seems very still. Deep shades of night rise above the northeastern horizon.</description>
<position x="20" y="40" z="0" />
<arc exit="east" move="east" destination="25" />
<arc exit="southeast" move="southeast" destination="23" />
<arc exit="southwest" move="southwest" destination="29" />
<arc exit="west" move="west" destination="27" />
</node>
<node id="25" name="Haizen Jan Aradan, Prairie">
<description>Colorful buttes formed from tinted layers of soil rise majestically above the expanse of the savannah to the northeast. To the southwest, the land sinks into a wide shallow depression full of shortgrass punctuated by pink and purple flowers.</description>
<description>Dark, shadowy buttes rise intimidatingly above the flat expanse of the savannah to the northeast. To the southwest, the land sinks into a wide shallow depression.</description>
<position x="40" y="40" z="0" />
<arc exit="northeast" move="northeast" destination="26" />
<arc exit="west" move="west" destination="24" />
</node>
<node id="26" name="Haizen Jan Aradan, Prairie">
<description>The distinctively colored plateaus of the Mosaic Bluffs rise above the northern horizon. Massive columns tower over the surrounding prairie and slender spires arch in fantastic shapes.</description>
<description>To the north, dark mesas rise above the flat horizon of the grasslands. Only the occasional chirping of crickets and the swish of grasses waving in the breeze break the quiet evening solitude.</description>
<position x="60" y="20" z="0" />
<arc exit="southwest" move="southwest" destination="25" />
<arc exit="climb" move="climb steep trail" destination="488" />
</node>
<node id="27" name="Haizen Jan Aradan, Prairie">
<description>The ground slopes downward into a wide, shallow depression to the southeast. Sparse prairie shortgrass grows along the perimeter, thickening into a lush green field dotted with pink and purple flowers toward the center of the depression. To the northeast, colorfully striated cliffs rise above the horizon.</description>
<description>The ground slopes downward into a wide, shallow depression to the southeast, where the air seems very still. Deep shades of night rise above the northeastern horizon.</description>
<position x="-20" y="40" z="0" />
<arc exit="east" move="east" destination="24" />
<arc exit="southeast" move="southeast" destination="29" />
<arc exit="southwest" move="southwest" destination="28" />
</node>
<node id="28" name="Haizen Jan Aradan, Prairie">
<description>The ground slopes downward into a wide, shallow depression to the east. Sparse prairie shortgrass grows along the perimeter, thickening into a lush green field dotted with pink and purple flowers toward the center of the depression. To the northeast, colorfully striated cliffs rise above the horizon.</description>
<description>The ground slopes downward into a wide, shallow depression to the east, where the air seems very still. Deep shades of night rise above the northeastern horizon.</description>
<position x="-40" y="60" z="0" />
<arc exit="northeast" move="northeast" destination="27" />
<arc exit="east" move="east" destination="29" />
<arc exit="south" move="south" destination="21" />
</node>
<node id="29" name="Haizen Jan Aradan, Prairie">
<description>At the center of this broad, shallow crater the earth is alive with lush green prairie shortgrass brightened by tiny pink and purple sweet vetch blossoms.</description>
<description>The prairie shortgrass grows thick at the center of this broad, shallow crater. Protected from night breezes by the slight surrounding rise, the air is calm and quiet.</description>
<position x="0" y="60" z="0" />
<arc exit="northeast" move="northeast" destination="24" />
<arc exit="east" move="east" destination="23" />
<arc exit="southeast" move="southeast" destination="22" />
<arc exit="southwest" move="southwest" destination="21" />
<arc exit="west" move="west" destination="28" />
<arc exit="northwest" move="northwest" destination="27" />
</node>
<node id="30" name="Prairie, Old Homestead">
<description>Vaguely straight rows of ripening wheat wave gently in the wind. In the shaded furrows between, blue bells, goldenrods, and oxeye daisies grow happily.</description>
<position x="-240" y="0" z="0" />
<arc exit="southeast" move="southeast" destination="11" />
<arc exit="go" move="go trampled path" destination="31" />
</node>
<node id="31" name="Prairie, A Large Clearing">
<description>Looming overhead, a wayward pine tree spreads heavy branches over this verdant clearing, its benevolent presence offering a fragrant shelter from the elements. Weaving across the area is a narrow path that leads to a neat cottage veiled with goldenbell vines, the doorway framed by clay planters clustered with flowers and herbs.</description>
<position x="-280" y="0" z="0" />
<arc exit="northeast" move="northeast" destination="32" />
<arc exit="go" move="go trampled path" destination="30" />
<arc exit="go" move="go ivy-veiled cottage" destination="233" />
<arc exit="go" move="go pine tree" destination="232" />
</node>
<node id="32" name="Prairie, Secluded Building">
<description>Weathered to the soft gold hues of its surroundings, a wood-framed building stands behind a screen of graceful bluestem and plumegrasses. The stately prairie denizens dapple the building with a mosaic of moving shadows. To the southwest is the towering silhouette of a wayward pine tree, almost obscuring the cottage tucked against its base.</description>
<position x="-260" y="-20" z="0" />
<arc exit="southwest" move="southwest" destination="31" />
<arc exit="go" move="go pine tree" destination="33" />
<arc exit="go" move="go wood-framed building" destination="231" />
</node>
<node id="33" name="Survivalist Supplies, Back Room" color="#FF0000">
<description>Fragrant pine boughs hang to the ground, sheltering this quiet space from the elements. Flickering light from a fire crackling in a stone-lined pit sends dancing reflections against the forest-green curtain that divides the trunk into a cozy semicircle. A case sits below a shelf that has been affixed so carefully that the tree trunk is growing unharmed around it.</description>
<position x="-260" y="-40" z="0" />
<arc exit="out" move="out" destination="32" />
<arc exit="go" move="go green curtain" destination="232" />
</node>
<node id="34" name="Prairie, Old Homestead">
<description>Pumpkin vines compete with the prairie grasses for dominance of an old vegetable and herb garden. Carrot tops, dillweed and even some sunflower plants poke out here and there. Among the vines, open holes in the soil reveal that someone has reaped what was sown long ago.</description>
<position x="-220" y="0" z="0" />
<arc exit="south" move="south" destination="11" />
</node>
<node id="35" name="Prairie, Corral">
<description>Small piles of fodder upon the ground, the remains of a recent meal, suggest that someone has recently found a use for the dilapidated corral. The rest of the split-rail corral lies in ruin, with only a few standing posts remaining, making it hard to determine where the prairie stops and the structure begins.</description>
<position x="-220" y="40" z="0" />
<arc exit="north" move="north" destination="11" />
<arc exit="east" move="east" destination="36" />
</node>
<node id="36" name="Prairie, Old Homestead">
<description>The dark, damp barn is little more than a large shed divided into two stalls. Newly cut hay is stored in one of the stalls, while in the other a bedroll has been neatly stretched out. More than mice now inhabit what was once an empty, echoing structure.</description>
<position x="-200" y="40" z="0" />
<arc exit="west" move="west" destination="35" />
<arc exit="northwest" move="northwest" destination="11" />
</node>
<node id="37" name="Abandoned Road">
<description>Several long-abandoned crates sit on the side of the road. Some have cracked open, spilling their contents -- rusted unmarked tins, long-decayed pelts, sacks of putrid half-sprouted grains and seeds. The wind must have picked up some of the grains before they sprouted because a wide band of wheat, barley and oats grows in a widening arc from the crates.</description>
<position x="-300" y="100" z="0" />
<arc exit="southeast" move="southeast" destination="38" />
<arc exit="west" move="west" destination="39" />
<arc exit="go" move="go gap" destination="6" />
</node>
<node id="38" name="Abandoned Road">
<description>The old road ends in a wide meadow. A flock of sheep is grazing while a shepherd boy looks on. Suddenly there is a bark and bleat, followed by a ewe and lamb breaking out of the taller grasses at the meadow's edge. A sheep dog comes trotting out after them, quite proud of his find.</description>
<description>The old road ends in a wide meadow. A shepherd sits before a fire while another one sleeps nearby. Their flock looks like white cotton scattered around the clearing. A pair of sheep dogs silently patrols the perimeter, guarding their charges from the night predators.</description>
<position x="-270" y="130" z="0" />
<arc exit="northwest" move="northwest" destination="37" />
<arc exit="go" move="go wooden gate" destination="636" />
</node>
<node id="39" name="Abandoned Road">
<description>Clumps of grass and flowers dot the surface of an old gravel road. The prairie grasses on either side are slowly creeping in, and in a few years will have obscured the road completely. Every now and again, the wind carries the muted city noises from Shard, but otherwise all that can be heard is an almost silent rush of the wind through the grass.</description>
<description>Clumps of brush and flowers dot the surface of an old gravel road. The prairie grasses on either side are slowly creeping in, and in a few years will have obscured the road completely. There is a dim glow to the west from the lights of Shard.</description>
<position x="-340" y="100" z="0" />
<arc exit="north" move="north" destination="45" />
<arc exit="east" move="east" destination="37" />
<arc exit="west" move="west" destination="40" />
</node>
<node id="40" name="East Trade Route, Journey's Rest">
<description>For centuries, the Journey's Rest has been a stopping point for travelers arriving to and leaving from the fabled city of Shard. Marble benches provide a place to rest weary feet and chat with passing merchants or wanderers. To the east lies an expanse of farm fields stretching as far as the naked eye can see.</description>
<position x="-360" y="100" z="0" />
<arc exit="east" move="east" destination="39" />
<arc exit="west" move="west" destination="41" />
</node>
<node id="41" name="Shard, East Bridge">
<description>Marble balustrades on either side of the walkway shine with a mysterious light of their own, marking the boundaries of the bridge's width. The ancient planks underfoot are hard and sturdy, defying the erosion of time.</description>
<position x="-380" y="100" z="0" />
<arc exit="east" move="east" destination="40" />
<arc exit="west" move="west" destination="42" />
</node>
<node id="42" name="Shard, East Bridge">
<description>Here the bridge rises to its highest point, affording a view of the tremendous expanse of farmlands east of the lake. To the west the Tower of Shard rises majestically over the walls of the city.</description>
<position x="-400" y="100" z="0" />
<arc exit="east" move="east" destination="41" />
<arc exit="west" move="west" destination="43" />
</node>
<node id="43" name="Shard, East Bridge">
<description>Directly west, Shard's east gate stands sentinel over traffic crossing into and out of the city. To the east, the bridge arcs to the shore of the Lake of Tears. Years of caravan traffic has left its mark in the planking of this otherwise well-maintained structure.</description>
<position x="-420" y="100" z="0" />
<arc exit="east" move="east" destination="42" />
<arc exit="west" move="west" destination="44" />
</node>
<node id="44" name="Shard, East Bridge" note="East Bridge|E Bridge|Premium Portal|Portal|Kraelyst start point|travel start point" color="#FF00FF">
<description>The extravagance of the eastern quarter of Shard is evident here milk-white marble railings gleam on the cloudiest days. The marble and the life-sculpted deobar supports show that no expense was spared in olden times, and the new paving stones that cover the roadway blend unobtrusively with the old construction.</description>
<description>The extravagance of the eastern quarter of Shard is evident here; milk-white marble railings gleam on the cloudiest days. The marble and the life-sculpted deobar supports show that no expense was spared in olden times, and the new paving stones that cover the roadway blend unobtrusively with the old construction.</description>
<position x="-440" y="100" z="0" />
<arc exit="east" move="east" destination="43" />
<arc exit="go" move="go city gate" destination="216" />
<arc exit="go" move="go meeting portal" destination="618" />
</node>
<node id="45" name="Eastern Lakeside, Small Path">
<description>To the southwest, a sloped bridge leads over the water of the Lake of Tears and into the crystal-walled city of Shard. A small dell filled with bright, bold flowers lines the road that leads out of the eastern wall. The way curves around the Lake of Tears to the north and west.</description>
<position x="-340" y="80" z="0" />
<arc exit="north" move="north" destination="46" />
<arc exit="south" move="south" destination="39" />
</node>
<node id="46" name="Eastern Lakeside, Small Path">
<description>The lonely road meanders northwest, a tall crystal gate to the south and west welcoming travelers heading for the great city. Copperleaf trees are planted alongside the path, metallic leaves glittering as sunlight brushes over their scintillating surfaces. They tinkle softly in the breeze, their cadence the living rhythm of nature's percussion.</description>
<description>Copperleaf trees bow their heads in nightly prayers, their metallic leaves pattering against each other with the languid rhythms of a lazy storm. The lakeside ripples, its surface dark with the tide of evening.</description>
<position x="-340" y="60" z="0" />
<arc exit="north" move="north" destination="47" />
<arc exit="south" move="south" destination="45" />
</node>
<node id="47" name="Eastern Lakeside, Small Path" note="food cart">
<description>Bushes bearing pale snowflower blossoms cluster at the water's edge. A tall willow tree sways gently in the breeze, its long, fine branches dipping down into the water.</description>
<description>The night sky frames the slender form of a willow tree. Her countenance, though rugged, bears all the regal grace of a queen, her form rising against the sweeping scape of the lake, proud and graceful beneath the stars.</description>
<position x="-340" y="20" z="0" />
<arc exit="north" move="north" destination="48" />
<arc exit="south" move="south" destination="46" />
<arc exit="go" move="go winding trail" destination="256" />
</node>
<node id="48" name="Eastern Shore, Road by the Gate">
<description>Tall stalks of hyacinthe and delicate clementine blossoms perfume the air. The wind blows a cool comforting breeze over the water of the lake, calming and soothing the weary traveler.</description>
<description>Tall stalks of nightflower and jes-rose blossoms perfume the air. The wind blows a cool, comforting breeze over the water of the lake, calming and soothing the weary traveler.</description>
<position x="-340" y="-20" z="0" />
<arc exit="north" move="north" destination="49" />
<arc exit="south" move="south" destination="47" />
</node>
<node id="49" name="Eastern Shore, Road by the Gate">
<description>The gates of Shard to the south glimmer with refracted colors and hues. The shimmering water of the lake ripples and glistens beneath the glowing city, framing the great capital of Ilithi in an aura of pure light.</description>
<position x="-340" y="-40" z="0" />
<arc exit="north" move="north" destination="50" />
<arc exit="south" move="south" destination="48" />
</node>
<node id="50" name="Northern Lakeside, East Gate Road">
<description>The road bordering the city is wide and clean, bringing the orderliness of the Elothean people to even the most humble of places. Delicate crystal flowers twine around dark metal stalks in a roadside garden glistening beneath the sun.</description>
<description>Crystal flowers, obviously lifesculpted, reach their glowing, diamond-like petals to the dark sky. Grey mist settles around them, edging in from the expansive shore of the lake.</description>
<position x="-340" y="-80" z="0" />
<arc exit="north" move="north" destination="51" />
<arc exit="south" move="south" destination="49" />
</node>
<node id="51" name="Northern Lakeside, East Gate Road">
<description>Trader and adventurer alike pass to and from the crystal city along this lakeside path, pausing occasionally to inhale the clean pure air.</description>
<description>Traders and adventurers wander southeast toward the slumbering city, or west to the expanse of the southern road. The water of the lake ripples tranquilly beneath the night sky.</description>
<position x="-340" y="-100" z="0" />
<arc exit="north" move="north" destination="52" />
<arc exit="south" move="south" destination="50" />
</node>
<node id="52" name="Northern Lake Shore, East Gate Road" note="Sirese">
<description>The edge of the lake laps against a shore of fine crystal-white sands. Small wood-violets and sirese flowers lie scattered about the edges of the road, adding splashes of brightness along the dreary route.</description>
<position x="-340" y="-160" z="0" />
<arc exit="south" move="south" destination="51" />
<arc exit="northwest" move="northwest" destination="53" />
</node>
<node id="53" name="Northern Lake Shore, East Gate Road">
<description>A wrought-iron bridge painted a bright white color twines and spirals in ornate geometric patterns as it arches silently over a small stream and towards a two-story stone mansion set in a nearby grassy field. Running parallel to the lake, the little creek vanishes swiftly into the forest bordering the path. The fine Elothean work of the bridge is complimented by a vine brimming with blood-red iera flowers, its petals glistening with moisture.</description>
<position x="-380" y="-200" z="0" />
<arc exit="southeast" move="southeast" destination="52" />
<arc exit="northwest" move="northwest" destination="54" />
<arc exit="go" move="go wrought-iron bridge" destination="235" />
</node>
<node id="54" name="Northern Lake Shore, East Gate Road">
<description>Willow trees tremble at the edge of the road, their slender branches wavering in the tremulous breeze that drifts past. Initials worn past reading are carved on one of the ageless trunks, the letters long forgotten to time and to rain that has slowly eroded their meaning away.</description>
<position x="-400" y="-220" z="0" />
<arc exit="southeast" move="southeast" destination="53" />
<arc exit="northwest" move="northwest" destination="55" />
</node>
<node id="55" name="Northern Lake Shore, Seeing Stones">
<description>A circle of the fabled Elothean Seeing Stones stand tall here. Obelisks of some luminous obsidian-like rock, they stand in a perfect ring, their tips rising high near the roadside.</description>
<description>The evening sky drapes her cloak over a circle of tall stone obelisks that stand by the roadside. Aligned with certain heavenly forms above, they stand tall and proud amidst the night's shadows.</description>
<position x="-420" y="-240" z="0" />
<arc exit="southeast" move="southeast" destination="54" />
<arc exit="northwest" move="northwest" destination="56" />
</node>
<node id="56" name="Northern Lakeside, Small Garden">
<description>To the east, the tall, slender forms of some black stones peek over a wicker garden fence that neatly edges in the path, a touch of order in this small pocket of wilderness. A tall wrought-iron arch spirals over the East Gate Road, blooming roses twined around the dark metal. The heady scent of flowers perfumes the air.</description>
<description>To the east, something black and slender peeks over a wicker garden fence that neatly edges in the path, a touch of order in this small pocket of wilderness. A tall wrought-iron arch spirals over the East Gate Road, the roses that twine around the dark metal closed for the evening. The vaguest remnant of their perfume lingers in the air, the scent slowly being erased by the hand of the lakeside breeze.</description>
<position x="-440" y="-260" z="0" />
<arc exit="southeast" move="southeast" destination="55" />
<arc exit="northwest" move="northwest" destination="57" />
</node>
<node id="57" name="Northern Lakeside, Crystal Shore">
<description>The fine sands of the shore glisten in the sun. Thousands of crystal fragments refract light, the beach alongside the road a shimmering skin that carpets the dust from travel and commerce.</description>
<description>Moonlight washes over the pearlescent sands of the lake, their colors and hues shadowed and complimented by the indigo sky.</description>
<position x="-460" y="-280" z="0" />
<arc exit="southeast" move="southeast" destination="56" />
<arc exit="northwest" move="northwest" destination="58" />
<arc exit="go" move="go gravel pathway" destination="555" />
</node>
<node id="58" name="Northern Lakeside, Eastern Shore">
<description>A delicate lily bends over with the weight of dew and small grains of sand on its silken petals. Golden pollen drifts in the air, a heady scent that mingles with the crispness of the water nearby.</description>
<position x="-480" y="-300" z="0" />
<arc exit="southeast" move="southeast" destination="57" />
<arc exit="west" move="west" destination="59" />
</node>
<node id="59" name="Northern Lakeside, Willow Grove">
<description>The willow trees stand tall and wave their soft branches. Bright orange blossoms cling to the bark on delicate vines.</description>
<description>The dark clamour of evening's music rings out over Ilithi. Here in the quiet willow grove it seems the loudest. The branches of the trees sway and caper in the breeze, their rustling leaves singing a sweet accompaniment.</description>
<position x="-540" y="-300" z="0" />
<arc exit="east" move="east" destination="58" />
<arc exit="west" move="west" destination="60" />
</node>
<node id="60" name="Westside Lakeshore, East Gate Road">
<description>An ornate silver sign points to the east, indicating the direction where one of the city's gates stands. The roadside cups the lake's edge, curving protectively around the shore.</description>
<position x="-560" y="-300" z="0" />
<arc exit="east" move="east" destination="59" />
<arc exit="west" move="west" destination="61" />
</node>
<node id="61" name="Westside Lakeshore, East Gate Road">
<description>The still waters beyond the shore shimmer, their surface sparkling like a ripple of liquid glass as winds brush over the skin of the lake. To the west the busy Southern Trade Route winds its way to the north edge of the crystal city. Southeast, the far east gate of Shard devours the end of the path.</description>
<position x="-580" y="-300" z="0" />
<arc exit="east" move="east" destination="60" />
<arc exit="west" move="west" destination="62" />
</node>
<node id="62" name="Lake of Tears, East Gate Road">
<description>The sparkling metropolis of Shard towers from its perch on the lake, a crystal jewel set into the vibrant crown of the water. Tall, colorless spires cast shadows over the ground, sunlight streaking against the fantastic city and refracting around the multitude of buildings as a faint aura of glistening rainbows.</description>
<description>Crystal buildings and pinnacles loom over the wall that surrounds Shard, their faceted faces reflected in the dark water below. Stars twinkle with a soft abandon, their smiling points glittering alongside the tall spires of Shard that stand resolutely over the lake.</description>
<position x="-600" y="-300" z="0" />
<arc exit="east" move="east" destination="61" />
<arc exit="west" move="west" destination="63" />
</node>
<node id="63" name="Lake of Tears, East Gate Road" note="RTI03|RT-S-GPS" color="#C2B280">
<description>The expansive body of water that Shard is constructed over ripples as a slight breeze brushes over the lake, the cool calmness radiating from the serene blue surface almost hypnotic.</description>
<description>The expansive body of water that Shard is constructed over ripples as a slight breeze brushes over the lake, the cool calmness radiating from the serene cobalt surface almost hypnotic.</description>
<position x="-620" y="-300" z="0" />
<arc exit="east" move="east" destination="62" />
<arc exit="west" move="west" destination="64" />
</node>
<node id="64" name="Lake of Tears, East Gate Road">
<description>This part of the path branches around the shimmering lakeside that encircles the crystal city. To the southeast, the far gate of Shard lies open for trade and for commerce.</description>
<position x="-640" y="-300" z="0" />
<arc exit="east" move="east" destination="63" />
<arc exit="west" move="west" destination="65" />
</node>
<node id="65" name="Southern Trade Route, Road to Shard">
<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="-660" y="-300" z="0" />
<arc exit="northeast" move="northeast" destination="71" />
<arc exit="east" move="east" destination="64" />
<arc exit="south" move="south" destination="66" />
<arc exit="go" move="go muddy trail" destination="217" />
</node>
<node id="66" name="South Trade Route, Journey's Rest">
<description>The Southern Trade Route meets Shard's North Bridge here at the Journey's Rest. Travelers often use this convenient stopping point to recheck their gear before moving on.</description>
<position x="-660" y="-280" z="0" />
<arc exit="north" move="north" destination="65" />
<arc exit="south" move="south" destination="67" />
<arc exit="go" move="go hidden trail" destination="617" />
</node>
<node id="67" name="Shard, North Bridge">
<description>North Bridge gently slopes down towards the shore where it joins the Southern Trade Route connecting Shard to the Northlands.</description>
<position x="-660" y="-260" z="0" />
<arc exit="north" move="north" destination="66" />
<arc exit="south" move="south" destination="68" />
</node>
<node id="68" name="Shard, North Bridge">
<description>The Tower of Shard stabs upward over the city walls directly south, accompanied by a smaller, darker tower masked in its own gloom. To the north a vast field leads up to the edge of the Dragon's Breath Forest.</description>
<position x="-660" y="-240" z="0" />
<arc exit="north" move="north" destination="67" />
<arc exit="south" move="south" destination="69" />
</node>
<node id="69" name="Shard, North Bridge">
<description>The elegance of Elven architecture spills over onto the north bridge from the city proper as evident in the crystal inlay and carefully carved wooden trestles. The wooden planks and marble supports do not show any indications of time's passage.</description>
<position x="-660" y="-220" z="0" />
<arc exit="north" move="north" destination="68" />
<arc exit="south" move="south" destination="70" />
</node>
<node id="70" name="Shard, North Bridge" note="North Bridge|N Bridge|Kraelyst start point|travel start point" color="#808000">
<description>To the north of this opulent bridge, the Dragon Spine Mountains span the horizon and exhale a dense forest known simply as the Dragon's Breath. The North city gates stand close by, guarded by sharp-eyed soldiers on the city wall.</description>
<position x="-660" y="-200" z="0" />
<arc exit="north" move="north" destination="69" />
<arc exit="go" move="go city gate" destination="215" />
</node>
<node id="71" name="Southern Trade Route, Road to Shard">
<description>The well-tended trade route bears signs of both old and recent travel, from scraps of worn leather and clothing tossed aside, to an ancient waystation standing beside the path, as it most likely has for countless years.</description>
<position x="-640" y="-320" z="0" />
<arc exit="southwest" move="southwest" destination="65" />
<arc exit="northwest" move="northwest" destination="72" />
<arc exit="go" move="go ancient waystation" destination="495" />
</node>
<node id="72" name="Southern Trade Route, Road to Shard">
<description>Swarms of people head both south and north along the road. Dignitaries, Traders, peasants, mages - people from all walks of life traverse the road to and from Shard, a panoply of cultural richness.</description>
<position x="-660" y="-340" z="0" />
<arc exit="southeast" move="southeast" destination="71" />
<arc exit="northwest" move="northwest" destination="73" />
</node>
<node id="73" name="Southern Trade Route, Road to Shard" note="RTI04|RT-S-HC" color="#C2B280">
<description>Elegant rosewood trees line the roadside, their pale red leaves rustling as they slowly drift to the ground. To the south, the tips of a crystal city peek into view.</description>
<position x="-680" y="-360" z="0" />
<arc exit="north" move="north" destination="74" />
<arc exit="southeast" move="southeast" destination="72" />
</node>
<node id="74" name="Southern Trade Route, Road to Shard">
<description>The golden farmlands to the north shimmer with fiery ripples as the wind dances over them. To the south, the road widens, showing signs of frequent trade and use. An abandoned wagon rests forlornly on a patch of grass near the roadside, a Trader's dream shattered by a broken wheel.</description>
<description>The evening winds languidly glide in from the northern farmlands and over the dusky road. Shadows cast eerie figures over a broken wagon resting on a patch of grass to one side of the route.</description>
<position x="-680" y="-380" z="0" />
<arc exit="north" move="north" destination="75" />
<arc exit="south" move="south" destination="73" />
</node>
<node id="75" name="Golden Grain Fields, Main Road">
<description>The fields to the south begin to thin, accomodating for the road as it widens for increasing travel. On the horizon in the same direction, a shimmering crystal city waits astride a sparkling blue lake. On the other, northern horizon, the shadows of dark mountains loom hungrily over the fields that languish below them.</description>
<description>The dusk of evening's cloak lingers over the edge of the golden fields to the north and the expansive road leading to Shard in the south. Starlight glistens, boldly highlighting the crystal metropolis in all her glory on the distant horizon.</description>
<position x="-680" y="-400" z="0" />
<arc exit="east" move="east" destination="76" />
<arc exit="south" move="south" destination="74" />
<arc exit="go" move="go winding path" destination="683" />
<arc exit="go" move="go path" destination="683" />
</node>
<node id="76" name="Golden Grain Fields, Dusky Path">
<description>A small chipmunk lounges on a cracked wooden fence, happily munching on the fruit of some poor farmer's hard labors. The shadow of a homesteading lurks over the rippling fields of grain to the west.</description>
<description>A small black chipmunk lounges on a cracked wooden fence, its eyes shut in repose. The shadow of a homesteading lurks over the rippling sheafs of grain to the west, its windows glowing with golden firelight.</description>
<position x="-660" y="-400" z="0" />
<arc exit="east" move="east" destination="77" />
<arc exit="west" move="west" destination="75" />
</node>
<node id="77" name="Golden Grain Fields, Dusky Path">
<description>The fields that surround the road seem to stretch on forever, bright burnished wheat swaying gently to the cadence of a slight breeze. The wide expanse of sky stretches far over the shimmering grains of the farmland.</description>
<description>The fields that surround the road seem to go on forever, a ripple of varying graytones swaying in a night breeze. The wide expanse of night curves over the slumbering farmland like the stretched skin of some massive, darkling creature.</description>
<position x="-640" y="-400" z="0" />
<arc exit="northeast" move="northeast" destination="78" />
<arc exit="west" move="west" destination="76" />
</node>
<node id="78" name="Golden Grain Fields, The Well">
<description>A stone well rises from the earth beside the road, its rock surface polished, the rope and gears in prime condition. A young Elothean girl struggles with a heavy bucket of water, smiling at you through her disheveled golden locks.</description>
<description>The night sky drapes its silken folds over a stone well. An Elothean girl settles an empty bucket on its rim, readying it to draw water for the evening meal.</description>
<position x="-620" y="-420" z="0" />
<arc exit="east" move="east" destination="79" />
<arc exit="southwest" move="southwest" destination="77" />
</node>
<node id="79" name="Golden Grain Fields">
<description>Workers swing long, sharp scythes back and forth, slicing through the dense gold of the fields. Swift hands bundle the shafts of grain, laying them aside in tall piles.</description>
<description>Half-cut fields of wheat create a jagged wall to the east and west of the path. Bundled grains and rolls of hay lie forgotten beside the path, their burden too heavy to be concerned with the notion of theft.</description>
<position x="-600" y="-420" z="0" />
<arc exit="east" move="east" destination="80" />
<arc exit="west" move="west" destination="78" />
</node>
<node id="80" name="Edge of the Fields, Dusky Path">
<description>An ocean of golden wheat stretches as far as the eye can see. Wooden yokes and leather harness rest over a weathered oak fence, shiny from use. Footprints left by meandering livestock are impressed into the soft, fallow earth below.</description>
<position x="-580" y="-420" z="0" />
<arc exit="north" move="north" destination="81" />
<arc exit="west" move="west" destination="79" />
<arc exit="climb" move="climb low stile" destination="221" />
</node>
<node id="81" name="Edge of the Fields, Dusky Path">
<description>A dusky path leads south, deeper into the fields, and north towards the forest. The tip of Wyvern Mountain peeks over the abundant grains, as do the tall spires of Shard in the distance.</description>
<position x="-580" y="-440" z="0" />
<arc exit="northeast" move="northeast" destination="109" />
<arc exit="south" move="south" destination="80" />
<arc exit="go" move="go bridle path" destination="82" />
</node>
<node id="82" name="Farmland, Bridle Path">
<description>Packed by the passage of foot-sore travelers and trader caravans, the rich loamy soil forms a smooth dark surface. Undulating across the horizon, the open grassland is broken only by a thin line of trees atop a small rise. The path splits itself here, sending a narrow ribbon of dirt twisting to the northeast while turning itself westward.</description>
<position x="-600" y="-440" z="0" />
<arc exit="northeast" move="northeast" destination="83" />
<arc exit="west" move="west" destination="90" />
<arc exit="go" move="go dusky path" destination="81" />
</node>
<node id="83" name="Farmland, Bridle Path">
<description>The wooden palisade of Steelclaw Clan rises to intimidating heights, the only break in its uniformity the gateway to the southwest. The dirt path winds around the wall, although portions of the soft earth have broken away and fallen into the trench surrounding the palisade.</description>
<position x="-580" y="-460" z="0" />
<arc exit="north" move="north" destination="84" />
<arc exit="southwest" move="southwest" destination="82" />
</node>
<node id="84" name="Farmland, Bridle Path">
<description>The sturdy palisade wall to the west rises high above, the sharpened tips of the logs used to build the wall pointing at the sky like a line of sentry spears raised in defense. Filled with trash and refuse, the trench continues its way around the wooden wall.</description>
<position x="-580" y="-520" z="0" />
<arc exit="south" move="south" destination="83" />
<arc exit="northwest" move="northwest" destination="85" />
</node>
<node id="85" name="Farmland, Bridle Path">
<description>To the south, the palisade wall of Steelclaw Clan rises intimidatingly into the air, its wooden surface pocked with shadows. The packed dirt of the path is soft in spots, as though the road were being eaten away from below.</description>
<position x="-600" y="-540" z="0" />
<arc exit="north" move="north" destination="86" />
<arc exit="southeast" move="southeast" destination="84" />
</node>
<node id="86" name="Farmland, Bridle Path">
<description>Large fields, filled with a great variety of crops, lie spread out in the meadow beside the dirt path. A few figures can be seen in the distance walking through the fields, although it is impossible to say if they are farmers looking over their crops, or young lovers looking for some time alone.</description>
<position x="-600" y="-560" z="0" />
<arc exit="northeast" move="northeast" destination="87" />
<arc exit="south" move="south" destination="85" />
</node>
<node id="87" name="Farmland, Bridle Path">
<description>Farmland stretches from horizon to horizon, creating a panoramic view of harmony with nature. Being smart farmers, the people of Steelclaw clan have kept the majority of their fields fallow, to regain nutrients for the next planting season. To the north, a low line of trees can be seen.</description>
<position x="-580" y="-580" z="0" />
<arc exit="northeast" move="northeast" destination="88" />
<arc exit="southwest" move="southwest" destination="86" />
</node>
<node id="88" name="Farmland, Bridle Path" note="Berengaria|shrine" color="#A6A3D9">
<description>Some devout farmer has erected a shrine to Berengaria, goddess of the growing earth, beside the packed-earth trail. Although it may just be wishful thinking, the crops growing in the fields adjacent to the shrine seem healthier than those farther away. The line of trees to the north looms imposingly over the fields.</description>
<position x="-560" y="-600" z="0" />
<arc exit="northeast" move="northeast" destination="89" />
<arc exit="southwest" move="southwest" destination="87" />
</node>
<node id="89" name="Farmland, Bridle Path">
<description>The farmlands end abruptly at a line of trees, the demarcation of an old skyfruit orchard. Those fields abutting the trees are scraggly and look as though they yield little come harvest time. Skyfruit trees, while producing glorious, highly desired fruit, are notorious for stealing all the nutrients from the soil and requiring long, loving care for the fields to recover.</description>
<position x="-540" y="-620" z="0" />
<arc exit="southwest" move="southwest" destination="88" />
</node>
<node id="90" name="Steelclaw Clan, Entrance" note="Steelclaw Clan">
<description>A forbidding curtain of wood, formed of thick oak logs banded with iron, thrusts itself from the landscape. At the foot of the palisade, encircling it like a belt to trews, lies a steep-sided trench spanned by the narrow flying bridge that provides the only visible access into the Clan.</description>
<position x="-760" y="-440" z="0" />
<arc exit="east" move="east" destination="82" />
<arc exit="go" move="go flying bridge" destination="91" />
</node>
<node id="91" name="Steelclaw Clan, Bailey">
<description>Passing between the mammoth beams that serve as gateposts, the bridge discharges its passengers in a neatly kept cobblestone-and-dirt courtyard. Scores of brightly roofed buildings ring the bowl-shapped bailey and offer a cheerful contrast to the massive hill and great hall rising in the distance.</description>
<description>Passing between the mammoth beams that serve as gateposts, the bridge discharges its passengers in a cobbled courtyard. Torches on the surrounding walls light the bowl-shapped bailey as grooms and ostlers go about their night-time chores.</description>
<position x="-780" y="-480" z="0" />
<arc exit="east" move="east" destination="94" />
<arc exit="northwest" move="northwest" destination="92" />
<arc exit="go" move="go palisade gate" destination="90" />
</node>
<node id="92" name="Steelclaw Clan, Bailey">
<description>Dust devils swirl briefly in the wind before settling back to coat the ragged grass lining the thin path running at the base of the palisade. Overhead, the walkway that runs along the top of the protective walls reverberates with the watchful pacing of the guards.</description>
<position x="-800" y="-500" z="0" />
<arc exit="north" move="north" destination="93" />
<arc exit="southeast" move="southeast" destination="91" />
<arc exit="go" move="go kirm morzindu" destination="561" />
</node>
<node id="93" name="Steelclaw Clan, Bailey">
<description>Heaps of rusting metal, piles of broken poles and mounds of indistinguishable debris vie against each other for control of this forlorn dark corner of the bailey. Wobbling precariously, each pile resembles a block of ice on a hot day as the topmost junk trickles down to become the bottommost junk in a continuous cascade of clinks, clanks and clatters.</description>
<position x="-800" y="-520" z="0" />
<arc exit="south" move="south" destination="92" />
<arc exit="go" move="go dark corner" destination="202" />
</node>
<node id="94" name="Steelclaw Clan, Rothan Square">
<description>Nestled under the watchful gaze of the palisade lies a large open bailey dotted with neatly whitewashed wood and stone buildings. Wisps of woodsmoke curl through the air before moving on to mingle with the spicy, sweet and earthy fragrances of a busy community and the raucous clang of metal striking metal, a farrier or weaponsmith at work, harmonizes with the shouted curses of traders chivvying recalcitrant yaks.</description>
<description>Silent and forlorn, the small area of merchant carts and artisan shops has been transformed from a place of comfortable familiarity into a surreal and forbidding landscape held captive by night's velvet grasp. Faint glimmers of light can be spotted across the bailey and the measured patterns sliced into the darkness as they move reveals they must be the shuttered lanterns carried by Clan journeymen on watch.</description>
<position x="-760" y="-480" z="0" />
<arc exit="north" move="north" destination="98" />
<arc exit="east" move="east" destination="95" />
<arc exit="west" move="west" destination="91" />
</node>
<node id="95" name="Steelclaw Clan, Jainder's Stone">
<description>Rising upwards like a victorious fist, a thick slab of basalt towers over the neighboring shops and homes. Rather than removing the obstacle, the bailey folk have simply paved around the black bulk and small benches and tables have been placed around its circumference. Bundles of flowers and herbs, in various states of decay, are scattered amongst the tables and at the base of the stone.</description>
<position x="-700" y="-480" z="0" />
<arc exit="northeast" move="northeast" destination="96" />
<arc exit="west" move="west" destination="94" />
<arc exit="northwest" move="northwest" destination="97" />
</node>
<node id="96" name="Steelclaw Clan, Telo Jegu">
<description>Meandering around the trunk of an ironwood tree, the cobblestone path exhausts itself at the edge of a spacious square where two of the palisade walls join together. Nestled against the timber lies a series of stone buildings and sheds surrounding a large earthen circle fenced with painted rails. Inside the fence, hard-eyed men and women raise puffs of dust as they spar against one another or stand alone, swinging gleaming weapons through intricate patterns.</description>
<position x="-680" y="-500" z="0" />
<arc exit="southwest" move="southwest" destination="95" />
<arc exit="go" move="go stone building" destination="213" />
</node>
<node id="97" name="Steelclaw Clan, Zindu">
<description>Slim wooden homes, shutters painted in bright, crisp colors, invite strollers to admire the herb and flower gardens decorating their front paths. Jutting from the facade of each residence and overhanging the street, enclosed balconies painted with family crests offer cozy perches for suitors to woo dowered daughters.</description>
<position x="-720" y="-500" z="0" />
<arc exit="southeast" move="southeast" destination="95" />
<arc exit="go" move="go side street" destination="539" />
</node>
<node id="98" name="Steelclaw Clan, Jainder's Way">
<description>A balky mule pulls a trader's colorful caravan up to the small stone building housing the Trader's outpost. An apprentice runs out the tiled entrance to hold the lead on the caravan, soothing the mule with her gentle touch, while others work quickly to unload the goods delivered as the master trader passes through the tiled entrance to present his contracts to the clerks within.</description>
<position x="-760" y="-500" z="0" />
<arc exit="north" move="north" destination="99" />
<arc exit="south" move="south" destination="94" />
<arc exit="go" move="go tiled entrance" destination="548" />
</node>
<node id="99" name="Steelclaw Clan, Cistern" note="Cistern">
<description>Children scamper unfettered about the perimeter of the bailey's water supply, dodging knots of merchants discussing the latest shipments of trader goods, or sit quietly at the feet of scarred veterans listening raptly to tales of long ago battles and blood long since shed. Young men and women, ladling water into round earthenware jars, exchange flirtatious banter and shy glances in a dance older than civilization as bystanders yell out encouragment from the open doorway of large wooden building.</description>
<description>Though the touch of night's dark cloak has emptied the normally thronging plaza, a blaze of light and noise from the doorway of the Broken Blade falls across the cistern's waters.</description>
<position x="-760" y="-560" z="0" />
<arc exit="north" move="north" destination="101" />
<arc exit="northeast" move="northeast" destination="100" />
<arc exit="south" move="south" destination="98" />
<arc exit="go" move="go doorway" destination="207" />
</node>
<node id="100" name="Steelclaw Clan, Alcove">
<description>The cobblestoned streets peter out, leaving a packed-earth trail that leads to a dead-end not far from the cistern. The rhythmic hammering of a forge echoes through the open door of a simple stone building to the right. A large sign hangs above the doorway, the words carved on it somewhat worn from weather.</description>
<position x="-740" y="-580" z="0" />
<arc exit="southwest" move="southwest" destination="99" />
<arc exit="go" move="go open door" destination="212" />
</node>
<node id="101" name="Steelclaw Clan, Jainder's Way">
<description>Small shacks and a rough stone stable, weathered a dull grey, crowd against one another with an almost furtive air, as if shrinking from the solid bulk of the motte that rises behind them. Only the stone avenue appears resolute, continuing its journey towards the heart of the Clan - the massive great hall that crouches atop the summit of the hill.</description>
<position x="-760" y="-600" z="0" />
<arc exit="north" move="north" destination="103" />
<arc exit="east" move="east" destination="102" />
<arc exit="south" move="south" destination="99" />
<arc exit="go" move="go weathered stable" destination="549" />
</node>
<node id="102" name="Steelclaw Clan, Havor Way">
<description>Filling the air with a subtle fragrance, a climbing rose drapes its brilliant mantle across a lattice frame, dripping splashes of color across the silver-grey flagstones that lead beneath an intricately carved rosewood arch.</description>
<position x="-740" y="-600" z="0" />
<arc exit="west" move="west" destination="101" />
<arc exit="go" move="go rosewood arch" destination="107" />
</node>
<node id="103" name="Steelclaw Clan, Jainder's Walk">
<description>Massive ironwood timbers creak as the cobblestoned street gives way to the broad wooden ramp leading up to the Lamentine bridge. Swallows, their nests safely tucked up under the bridge supports, dart gracefully hither and fro around the beams and out across the walls to the rich farm lands and dinner.</description>
<description>Stark blackness lines the ramp and bridge supports in odd shadows and shapes and the area is still as it slumbers. An occasional soft chirring can be heard as the swallows that nest under the bridge question the presence of all comers.</description>
<position x="-760" y="-620" z="0" />
<arc exit="south" move="south" destination="101" />
<arc exit="go" move="go ramp" destination="104" />
</node>
<node id="104" name="Steelclaw Clan, Lamentine Bridge">
<description>From the dizzying height of Lamentine Bridge, the countryside unfolds like a weaver's tapestry with the green and amber of orchards and grain fields stitched neatly together by roads and fences. Planks worn smooth by the footfall of a dozen generations, the bridge sways slightly under the hand of the wind.</description>
<position x="-760" y="-640" z="0" />
<arc exit="north" move="north" destination="105" />
<arc exit="down" move="down" destination="103" />
</node>
<node id="105" name="Steelclaw Clan, Lamentine Bridge">
<description>As the bridge's endcap draws nigh, the bulk and size of the motte can be clearly seen. Tons of clay, soil and rock have been layered and then pounded into a solid mound that rises two stories above the bailey and provides an obstacle that even the most determined foe would find difficult. Perched upon the crown of the motte sits the austere walls of the Barbarian Guild.</description>
<position x="-760" y="-660" z="0" />
<arc exit="north" move="north" destination="106" />
<arc exit="south" move="south" destination="104" />
</node>
<node id="106" name="Steelclaw Clan, Motte">
<description>Fresh-faced men and women, dressed in apprentice black, gather about veteran warriors and snatches of generous praise and sharp corrections can be heard as a disarm technique is displayed or grip adjusted. Other apprentices, younger than the rest and carrying bundles, rush towards and from the path leading down into the bailey. Black flagstones trail towards the marquetry doors of the guild.</description>
<description>Lanterns, hung on tall poles, cast pools of light upon the flagstones and guild doors, attracting night insects who flutter about the edges. An occasional bat can be seen swooping through the light in chase and though no one is visible, from the shadows floats the unmistakable feeling of being watched.</description>
<position x="-760" y="-680" z="0" />
<arc exit="south" move="south" destination="105" />
<arc exit="go" move="go marquetry doors" destination="205" />
<arc exit="go" move="go wooden shack" destination="554" />
</node>
<node id="107" name="Steelclaw Clan, Chapel Garden">
<description>Clumps of deep green thyme, tall chamomile plants, their heads dusted in gold, and soft coral periwinkles intertwine their leaves in a living quilt, warming the harsh grey stone of the chapel that rises above it. With its tall twin doors standing open, the chapel patiently waits for all those having need of their god's presence.</description>
<position x="-730" y="-600" z="0" />
<arc exit="go" move="go doors" destination="108" />
<arc exit="go" move="go rosewood arch" destination="102" />
</node>
<node id="108" name="Steelclaw Clan, Chapel" note="Shrine3-4|Chapel" color="#A6A3D9">
<description>Leaded glass windows fill the eastern wall, allowing the first light of day to illuminate the intricate mosaic that covers the chapel floor from wall to wall. At each of the other three cardinal points an altar stands - the southern one formed of living wood, the northern of a roughly hewn slab of basalt and the western carved from bone. Dozens of candles, guttering nubs and brightly burning pillars, adorn each altar yet the surfaces and facings are clean, without wax drip or scorch mark.</description>
<position x="-720" y="-600" z="0" />
<arc exit="out" move="out" destination="107" />
</node>
<node id="109" name="Jademist River, Edge of the Fields">
<description>Tall wooden fences stand reaching for the sky, their thin, lanky forms protectively guarding the precious fields behind them.</description>
<position x="-560" y="-460" z="0" />
<arc exit="northeast" move="northeast" destination="110" />
<arc exit="southwest" move="southwest" destination="81" />
<arc exit="go" move="go heavy gate" destination="656" />
</node>
<node id="110" name="Beside the Jademist River, The Road to Shard">
<description>The road moves slightly away from the river. To the south, expansive fields of golden wheat spread out as far as the eye can see, gilding the path to the crystal city beyond.</description>
<position x="-540" y="-480" z="0" />
<arc exit="northeast" move="northeast" destination="111" />
<arc exit="southwest" move="southwest" destination="109" />
<arc exit="west" move="west" destination="671" />
</node>
<node id="111" name="Beside the Jademist River, The Road to Shard">
<description>A slender sword of gleaming silver heralds the presence of Shard on the distant southern horizon where the city shimmers in the sun. The blackness of the forest to the north is easily forgotten, even in the distant presence of such splendor. The Jademist River vanishes on its way southeast, disappearing into fields of golden wheat.</description>
<description>A slender sword of faint silver heralds the presence of Shard on the distant southern horizon where the city shimmers in the moonlight. The deep blackness of the forest to the north is easily forgotten, even in the distant presence of such splendor. The Jademist River vanishes on its way southeast, disappearing into fields of gray wheat.</description>
<position x="-520" y="-500" z="0" />
<arc exit="north" move="north" destination="112" />
<arc exit="southwest" move="southwest" destination="110" />
</node>
<node id="112" name="Beside the Jademist River, The Road to Shard">
<description>The churning rapids of the Jademist River slow as they skirt the road, their fine mist settling over the ground and curling about you in lazy circles. The jagged mountains break out of the canopy of dense forest, their snowy white peaks distant and austere.</description>
<position x="-520" y="-520" z="0" />
<arc exit="northeast" move="northeast" destination="113" />
<arc exit="south" move="south" destination="111" />
</node>
<node id="113" name="Beside the Jademist River, The Road to Shard">
<description>The rapids of the Jademist rush by, hurrying southeastward. Small flowers dare to bloom near the water's edge, petals bearing foamy droplets that have strayed from their path. The road dances dangerously close to the angry river, playing touch-and-go with the high bank as it winds south and north.</description>
<position x="-500" y="-540" z="0" />
<arc exit="northeast" move="northeast" destination="114" />
<arc exit="southwest" move="southwest" destination="112" />
</node>
<node id="114" name="Beside the Jademist River, The Road to Shard" note="ruined caravan">
<description>The river is at its widest and most furious here. Like an angered lioness, it rages southward as if caught in a frenzy. Rapids rush by, water breaking against rocks and stony banks. The gentle fog that hazes over the moving surface partially hides the danger of being swept away in the violent currents.</description>
<position x="-480" y="-560" z="0" />
<arc exit="north" move="north" destination="115" />
<arc exit="southwest" move="southwest" destination="113" />
</node>
<node id="115" name="Edge of the Wood, The Western Riverbank" color="#008000">
<description>A small white bridge gracefully arches over the rushing water of the furious Jademist River. The soft pattering of the water's movements sings a cadence as alluring as any fae's melody. A curious pale green fog lurks around the stones near the edge of the riverbank, occluding the rapidly shifting surface.</description>
<description>The white paint of a small bridge reflects the white-hot light of twinkling stars above. It shimmers in the darkness, the rushing water beneath echoing in the stillness of the night.</description>
<position x="-480" y="-580" z="0" />
<arc exit="north" move="north" destination="116" />
<arc exit="south" move="south" destination="114" />
<arc exit="go" move="go small bridge" destination="198" />
</node>
<node id="116" name="Edge of the Wood, Western Riverbank" color="#008000">
<description>A great river courses strong and proud beside the road, a light mist softly rising from its surface. Rocks jutting from the banks try to catch the running water, daring to thwart its progress, yet it runs on steadily.</description>
<position x="-480" y="-600" z="0" />
<arc exit="northeast" move="northeast" destination="117" />
<arc exit="south" move="south" destination="115" />
</node>
<node id="117" name="Edge of the Wood, The Western Riverbank" color="#008000">
<description>The western riverbank of the Jademist River flanks the road, both for the moment holding a mutual course through Ilithi. Further north lies the dense lushness of the Dragon's Breath Forest, while to the south, the road meanders toward the mystical Lake of Tears.</description>
<description>The western riverbank flanks the road, its surface darkened by the setting of the sun. To the north, the dense Dragon's Breath Forest seems impenetrable, an impassible wall of dense vegetation.</description>
<position x="-460" y="-620" z="0" />
<arc exit="northeast" move="northeast" destination="118" />
<arc exit="southwest" move="southwest" destination="116" />
</node>
<node id="118" name="Edge of the Wood, Cove by the River" color="#008000">
<description>A small cove dips into the edge of the forest, the trees leaning back just enough to allow a shallow pool to collect beneath them, their bright green leaves skimming against the glass-like surface of the water.</description>
<description>A shallow pool rests covered in a dense mist, the fog too thick to see through. The soft whistling of a nightingale's song echoes like a whisper sounding through the forest, the haunting notes lingering in the treetops.</description>
<position x="-440" y="-640" z="0" />
<arc exit="north" move="north" destination="119" />
<arc exit="southwest" move="southwest" destination="117" />
</node>
<node id="119" name="Dragon's Breath Forest, Edge of the Wood" color="#008000">
<description>Very little sunlight streaks through the dense canopy of brush to the north. Even here, where the forest thins, the lingering darkness of the trees seems to settle like an ill wind brushing over a grave.</description>
<description>The tip of Wyvern Mountain peeks over the night's southern horizon, its snowy tip flush against the velvet night. A thousand twinkling stars provide the only scarce light to illuminate the path.</description>
<position x="-440" y="-660" z="0" />
<arc exit="north" move="north" destination="120" />
<arc exit="south" move="south" destination="118" />
<arc exit="go" move="go cedar gates" destination="704" />
</node>
<node id="120" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>To the south and the east, the glistening movement of water glimmers brightly through the scale-like leaves of the dense growth surrounding the road, the distant sound of rushing water confirming the presence of a river nearby. The forest stands tall and stark, a wall of impermeable vegetation save where the road has carved its way through.</description>
<description>Jade-green leaves glisten, their scale-like surface almost reptilian in nature. The path winds north and south, shadows of the night greeting both directions and limiting the view.</description>
<position x="-440" y="-680" z="0" />
<arc exit="northeast" move="northeast" destination="121" />
<arc exit="south" move="south" destination="119" />
</node>
<node id="121" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>The forest begins to lose some of its denseness as it thins to the south. The canopy above is interspersed with shafts of light, the trees allowing light to fall through to dapple the path below them.</description>
<description>Moonlight pierces the dense canopy of leaves, leaves eerily trembling before the intruding illumination. Patches of blue, grey, and red mottle the path, colored like stained glass.</description>
<position x="-420" y="-700" z="0" />
<arc exit="north" move="north" destination="122" />
<arc exit="southwest" move="southwest" destination="120" />
<arc exit="west" move="west" destination="141" />
</node>
<node id="122" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>Rocks and stones lie scattered along the path, the road crumbling as roots and vines grow into it. This is a place not often walked by travelers. The denseness of nature, as if this was her very heart, is quite apparent. To the east, a faint break in the walls of green shows an otherwise unnoticeable branch in the path.</description>
<position x="-420" y="-720" z="0" />
<arc exit="northeast" move="northeast" destination="123" />
<arc exit="east" move="east" destination="140" />
<arc exit="south" move="south" destination="121" />
</node>
<node id="123" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>The dark twisting forms of eerie trees curl and twine towards the sky. Gnarled branches bearing dense leaves with sharp edges glisten with a keen edge.</description>
<position x="-400" y="-740" z="0" />
<arc exit="north" move="north" destination="124" />
<arc exit="southwest" move="southwest" destination="122" />
</node>
<node id="124" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>Trees close in around you, dark shadows like angry ghosts looming sullenly in unidentifiable shapes. A flash of movement, a rustle in the leaves, and it is easy to understand why so many swear that this forest possesses a preternatural sentience. Leaves, sharp like keen, straight blades, extend from the dense underbrush to languidly stab at the air.</description>
<description>The cool night wind rustles leaves sharp as blades, their surface glistening with a metallic sheen. A call, a song of a bird lost within the brush, echoes through the uncanny silence.</description>
<position x="-400" y="-760" z="0" />
<arc exit="northeast" move="northeast" destination="125" />
<arc exit="south" move="south" destination="123" />
</node>
<node id="125" name="Fayrin's Rest, Telgi Mod'Sunhin">
<description>Massive oaks extend a silver-grey canopy of leaves that fades quickly into inkblack darkness from here to the east, north and south. The air shimmers and whispers sibilantly of long growth and gradual decay. A few slender cedars and elm mark the beginning of a denser forest to the west, one marked by greater undergrowth and steeper rises. You also see a small obelisk.</description>
<description>Massive oaks extend a silver-grey canopy of leaves that fades quickly into inkblack darkness from here to the east, north and south. The air shimmers and whispers softly, sibilantly, of long growth and and gradual decay. A few slender cedars and elms mark the beginning of a denser forest to the west, one marked by greater undergrowth and steeper rises. You also see a small, faintly glowing obelisk.</description>
<description>Massive oaks extend a silver-grey canopy of leaves that fades quickly into inkblack darkness from here to the east, north and south. The air shimmers and whispers softly, sibilantly, of long growth and gradual decay. A few slender cedars and elms mark the beginning of a denser forest to the west, one marked by greater undergrowth and steeper rises. You also see a small, faintly glowing obelisk.</description>
<description>Massive oaks extend a silver-grey canopy of leaves that fades quickly into inkblack darkness from here to the east, north and south. The air shimmers and whispers softly, sibilantly, of long growth and gradual decay. A few slender cedars and elms mark the beginning of a denser forest to the west, one marked by greater undergrowth and steeper rises.</description>
<position x="-340" y="-780" z="0" />
<arc exit="east" move="east" destination="126" />
<arc exit="southwest" move="southwest" destination="124" />
</node>
<node id="126" name="Fayrin's Rest, Telgi Mod'Sunhin">
<description>The road winds with easy grace through a lightly wooded clearing. A large burrow of Halflings snuggles against a cedar to the north, fitted with a series of curtained windows and filtered vents. To the other side of the Telgi is an ancient oak, gnarled with age and disease.</description>
<position x="-320" y="-780" z="0" />
<arc exit="northeast" move="northeast" destination="127" />
<arc exit="west" move="west" destination="125" />
<arc exit="climb" move="climb narrow staircase" destination="192" />
</node>
<node id="127" name="Fayrin's Rest, Anloraten Crossing" note="Fayrin's Rest">
<description>It is not much of a meeting place for roads and their travelers: a broad lane wandering through an impressive forest, a dirt path created from disturbed underbrush. But such as it is, this crossing is a major traffic area for Fayrin's Rest. Several local residents sit on benches in front of small dwellings to watch the arrivals and departures, by turns amused, pleased, curious and disdainful of what they see.</description>
<description>It is not much of a meeting place for roads and their travelers: a broad lane and a dirt path wandering through a forest as dark as the night and twice as long. But such as it is, this crossing is a major traffic area for Fayrin's Rest. A few local residents leave their small dwellings to come here after dark, sitting on benches and watching the arrivals and departures -- by turns amused, pleased, curious and disdainful.</description>
<position x="-300" y="-800" z="0" />
<arc exit="north" move="north" destination="128" />
<arc exit="east" move="east" destination="129" />
<arc exit="southeast" move="southeast" destination="139" />
<arc exit="southwest" move="southwest" destination="126" />
</node>
<node id="128" name="Fayrin's Rest, Jarrowkin Path">
<description>Bright lights shine from the south, for Anloraten Crossing lies that direction. Warm lights glow to the north, however, where an enormous oak ends the path. No simple aged tree, this. It's an oak that's broader than many a house, with branches as thick and sturdy as a S'lai Guard. There's a sign attached to the oak, and an entryway that leads inside to many cheerfully raised voices and the welcome smell of homecooked food.</description>
<position x="-300" y="-820" z="0" />
<arc exit="south" move="south" destination="127" />
<arc exit="go" move="go entry" destination="142" />
</node>
<node id="129" name="Fayrin's Rest, Telgi Mod'Sunhin">
<description>A burrow and a few inconspicuous squat houses sit off both sides of the road, almost completely concealed by oaks and cedars, elms and waves of rolling brown earth. A few Halfling children watch you discreetly as they create and manage a town several feet long, comprised of small pebbles, twigs and a devoured turkey leg. One of the children winks so briefly that it might have been a joke shared among the light, the thin emerald shade and the two of you.</description>
<description>This portion of the road seems deserted save for the silent sentry of long, slender saplings and longer, heavier trees that drape protectively over the road. Animals stir through the undergrowth, and a kirikante shrills a sharp chpppt! somewhere in the distance. To the east darkness burgeons sublime. To the west and north a soft glow radiates warmth...a glow that bespeaks food, a roof, and companionship over a drink.</description>
<position x="-200" y="-800" z="0" />
<arc exit="east" move="east" destination="130" />
<arc exit="west" move="west" destination="127" />
<arc exit="northwest" move="northwest" destination="132" />
</node>
<node id="130" name="Fayrin's Rest, Telgi Mod'Sunhin">
<description>The forest is shady here, beneath towering oaks that spread their branches like gods chanting spells of creation. Small cylindrical houses of limed earth and wood cluster at ground level. People engaged in gardening and chatting with neighbors glance briefly your way and nod, before returning to their activities.</description>
<position x="-180" y="-800" z="0" />
<arc exit="northeast" move="northeast" destination="131" />
<arc exit="west" move="west" destination="129" />
</node>
<node id="131" name="The Edge of the Forest, Before the Dragon's Breath" color="#008000">
<description>The lushness of the forest begins to form a living wall, the leaves of the towering trees tinted with the dark hue of brightly-polished scales. The path to the north dwindles into the more sinister area of the harsh mountains.</description>
<position x="-160" y="-820" z="0" />
<arc exit="southwest" move="southwest" destination="130" />
<arc exit="go" move="go woodland path" destination="151" />
</node>
<node id="132" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>A twisting path winds a lazy route through the brush and bracken. Nearby, several small homes encircle the base of an elderly oak, like tiny acorns shed by the massive tree. The delicious smell of fresh bread wafts from one of the homes, mingling comfortably with the cool scents of the surrounding woodland.</description>
<position x="-220" y="-820" z="0" />
<arc exit="northeast" move="northeast" destination="138" />
<arc exit="southeast" move="southeast" destination="129" />
<arc exit="west" move="west" destination="133" />
<arc exit="northwest" move="northwest" destination="134" />
</node>
<node id="133" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>A grassy mound punctuated by cheerful red and yellow doors runs along one side of the path as it curves around the base of an enormous cedar. Small wooden homes cluster beneath the tree's spreading branches, their rooftops accumulating a layer of scented needles which drop softly from above with every stirring of the breeze.</description>
<position x="-260" y="-820" z="0" />
<arc exit="northeast" move="northeast" destination="134" />
<arc exit="east" move="east" destination="132" />
<arc exit="northwest" move="northwest" destination="135" />
</node>
<node id="134" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>Water tumbles along the bed of a stream to the north, sparkling as it catches the light. Along its banks, patches of wildflowers and ferns grow around moss-covered treestumps, dotting the area with splashes of color. Several homes stand near the stream, enjoying the tranquil melody of the brook and blending softly with the vivid natural beauty of the woods.</description>
<description>Water tumbles along the bed of a stream to the north, sparkling where it catches the light. The air is filled with the sound of frogs croaking in their nightly chorus. Several homes stand near the stream, sharing the tranquil melody of the brook with the night's inquisitive wildlife.</description>
<position x="-240" y="-840" z="0" />
<arc exit="northeast" move="northeast" destination="137" />
<arc exit="east" move="east" destination="138" />
<arc exit="southeast" move="southeast" destination="132" />
<arc exit="southwest" move="southwest" destination="133" />
<arc exit="west" move="west" destination="135" />
<arc exit="northwest" move="northwest" destination="136" />
</node>
<node id="135" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>A stone bridge arches over a creek to the northeast as the trail continues to wind its way through the trees. A cluster of willows leans over the edge of the stream, their pale green fronds dangling down to drift along in the water.</description>
<position x="-280" y="-840" z="0" />
<arc exit="east" move="east" destination="134" />
<arc exit="southeast" move="southeast" destination="133" />
<arc exit="go" move="go stone bridge" destination="136" />
</node>
<node id="136" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>The air is sweet with the smell of apples that grow in a tiny clearing beside a nearby stream. A stone bridge crosses the stream to the southwest, the water babbling cheerfully as it tumbles over the smooth rock-lined streambed. Pale yellow, purple and white irises grow in profusion along the banks of the stream, their yellow-bearded blossoms swaying gently in the breeze.</description>
<position x="-260" y="-860" z="0" />
<arc exit="east" move="east" destination="137" />
<arc exit="southeast" move="southeast" destination="134" />
<arc exit="go" move="go stone bridge" destination="135" />
</node>
<node id="137" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>The path bends as it curves around the trunk of an aged ash tree. Bees fly in and out of a hole in the tree, their wings buzzing with a monotonous drone as they bear their burden of nectar back to the local hive. Several small homes crouch in the shade of the tree, their brightly-painted front doors picking out the colors of the surrounding wildflowers.</description>
<description>The path bends as it curves around the trunk of an aged ash tree. The low drone of crickets drifts from its branches, filling the night air with soft music. Several small homes crouch in the shadow of the tree, warm yellow light glowing through their cheerfully-colored curtains.</description>
<position x="-220" y="-860" z="0" />
<arc exit="southeast" move="southeast" destination="138" />
<arc exit="southwest" move="southwest" destination="134" />
<arc exit="west" move="west" destination="136" />
</node>
<node id="138" name="Fayrin's Rest, Modren Daelfa" color="#00FFFF">
<description>A patch of close-cropped grass stands between the trail and a cluster of rustic homes. In parts, the area is muddied by small hoofprints, and a noticeable thinning in the low-level foliage suggests this area is regularly grazed by local herds. A few clumps of bright yellow ragwort have managed to escape consumption, thanks only to the bitter taste of their flowers.</description>
<position x="-200" y="-840" z="0" />
<arc exit="southwest" move="southwest" destination="132" />
<arc exit="west" move="west" destination="134" />
<arc exit="northwest" move="northwest" destination="137" />
</node>
<node id="139" name="Fayrin's Rest, Jarrowkin Path">
<description>Rows of spruce trees border the paved road that leads downhill to an outpost, a stable and a large stone inn. A carved marble fountain rests in the center of the road, helping to separate the incoming and departing caravans. On a nearby hillside, a flock of sheep grazes, oblivious to the industrious traffic.</description>
<position x="-280" y="-780" z="0" />
<arc exit="northwest" move="northwest" destination="127" />
<arc exit="go" move="go trader outpost" destination="524" />
<arc exit="go" move="go stable" destination="526" />
<arc exit="go" move="go stone inn" destination="756" />
</node>
<node id="140" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>The outline of a small dwelling manages to break through the dense forest before being swallowed back up by a screen of leaves and branches. Motes of light drift softly through the air, glinting with the promise of a sun so rarely seen here.</description>
<description>The outline of a small dwelling manages to break through the dense forest before being swallowed back up by a screen of leaves and branches. Ragged patches of moonlight break through the trees before disappearing like a drowning victim beneath the surface of a dark and unforgiving lake.</description>
<position x="-400" y="-720" z="0" />
<arc exit="west" move="west" destination="122" />
<arc exit="go" move="go crumbling doorway" destination="194" />
</node>
<node id="141" name="Dragon's Breath Forest, A Dark Path" color="#008000">
<description>The forest here deepens, walls of green thriving with life untapped by mortals for its precious resources. A break in the trees leads deeper into the blackness of the forest, the absence of light dissuading reckless progress.</description>
<position x="-440" y="-700" z="0" />
<arc exit="east" move="east" destination="121" />
<arc exit="go" move="go break" destination="196" />
</node>
<node id="142" name="Marachek's Oak, Main Hall">
<description>Everything in this spacious reception area has been whittled or sculpted from the giant oak, all save the glowing eggs and Marachek himself. The latter sits on a high stool behind a counter opposite the stairwell and a longcase clock, beaming brightly, always willing to meet new arrivals or ask departing visitors to return as soon as possible. They usually do, drawn off the road outside to Marachek's Oak by its reputation for hospitality.</description>
<position x="-360" y="-880" z="0" />
<arc exit="go" move="go small archway" destination="147" />
<arc exit="go" move="go longcase clock" destination="148" />
<arc exit="go" move="go road" destination="128" />
<arc exit="go" move="go blue door" destination="143" />
<arc exit="climb" move="climb ornate stairwell" destination="144" />
</node>
<node id="143" name="Marachek's Oak, Feasterie" note="Feasterie" color="#FF0000">
<description>The walls of this large, round eatery bulge like the sides of a filled barrel. Tables and chairs radiate outwards like spokes on a wheel from a cylindrical buffet in the center of the room, heaped with good food and serviced from within by several plump, beaming Halflings. Aside from a secluded booth to one side all is festive excitement, set to the tune of clattering kitchen utensils echoing up from below.</description>
<position x="-340" y="-900" z="0" />
<arc exit="go" move="go blue door" destination="142" />
<arc exit="go" move="go secluded booth" destination="527" />
</node>
<node id="144" name="Marachek's Oak, Hallway">
<description>A gold rug runs the length of this passageway with its rounded walls, damping the sound of footsteps to a softly sushing rustle. The only light filters up from below the stairs, lending a deep, dark glow to this tranquil corridor.</description>
<position x="-360" y="-860" z="0" />
<arc exit="south" move="south" destination="145" />
<arc exit="climb" move="climb ornate stairwell" destination="142" />
</node>
<node id="145" name="Marachek's Oak, Hallway">
<description>This portion of the second floor passageway lives in perpetual dusk. The air smells of freshly fallen leaves and damp, gravid earth. A heavily carved chair stands sentry at the end of the hall, under an old faded tapestry whose design can barely be made out.</description>
<position x="-360" y="-840" z="0" />
<arc exit="north" move="north" destination="144" />
<arc exit="go" move="go archway" destination="146" />
</node>