-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map7_NTR.xml
5822 lines (5822 loc) · 540 KB
/
Map7_NTR.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="Northern Trade Road" id="7">
<node id="1" name="The Marsh, Stone Road" note="Marsh">
<description>Dirt meets stone here as a road begins its winding journey north along a cut-out hillside shrouded by a grove of trees. Just a few hundred feet north a large growth of reeds forces a jog to the northwest. In a clump of weeds sits a makeshift stone bench and small pile of stones. If it was once a shrine, someone has long since removed the statue and abandoned its care.</description>
<position x="360" y="330" z="0" />
<arc exit="north" move="north" destination="2" />
<arc exit="southeast" move="southeast" destination="64" />
</node>
<node id="2" name="The Marsh, Stone Road">
<description>Tapping your foot on the ground, the hardness of stone confirms you are on the road. You feel your way about searching for the hillside to the west or the reeds to the east. Once oriented, a sense of calm returns and you consider your options.</description>
<description>The stones of the road fit seamlessly together, locked to each other without mortar. Traces of rust form two paths in this curve where the iron rims of the wagon wheels have paid the price of taking the turn too fast. A bullfrog croaks out his presence somewhere in the tall reeds that line the road. The shade of the trees to the northwest is alluring yet daunting.</description>
<position x="360" y="290" z="0" />
<arc exit="south" move="south" destination="1" />
<arc exit="northwest" move="northwest" destination="3" />
<arc exit="go" move="go reeds" destination="8" />
</node>
<node id="3" name="The Marsh, Stone Road">
<description>Tapping your foot on the ground, the hardness of stone confirms you are on the road. You feel your way about, searching for the hillside to the west or the reeds to the east. Once oriented, a sense of calm returns and you consider your options.</description>
<description>Gnats swarm annoyingly about your head, prompting you to bat at them with your hand in vain. To the north, you can see where the road leaves the shadows and enters the safety of daylight about a half a mile away. Curving to the southeast, the road leads you to the closest exit for this grove. Moss clings to the stones of the road where it meets the water and reeds to the east.</description>
<position x="330" y="260" z="0" />
<arc exit="north" move="north" destination="4" />
<arc exit="southeast" move="southeast" destination="2" />
<arc exit="go" move="go reeds" destination="24" />
</node>
<node id="4" name="The Marsh, Stone Road">
<description>Tapping your foot on the ground, the hardness of stone confirms you are on the road. You feel your way about searching for the hillside to the west or the reeds to the east. Once oriented, a sense of calm returns and you consider your options.</description>
<description>Some reeds have been hacked away close to the road, undoubtedly destined to become someone's new basket. The removal has left an opening in the reeds allowing you to peer into the marsh on the other side which seemingly waits for its next victim. A water beetle that is traveling through the mud stops and waves its feelers at you in what seems to be a challenge before continuing on its way.</description>
<position x="330" y="230" z="0" />
<arc exit="north" move="north" destination="5" />
<arc exit="south" move="south" destination="3" />
<arc exit="go" move="go high reeds" destination="9" />
</node>
<node id="5" name="The Marsh, Stone Road">
<description>Tapping your foot on the ground, the hardness of stone confirms you are on the road. You feel your way about searching for the hillside to the west or the reeds to the east. Once oriented, a sense of calm returns and you consider your options.</description>
<description>The lack of direct sunlight here is daunting. You can't seem to suppress the notion this is the perfect place for highway bandits to ply their trade. Squinting at the deeper shadows, you search the area for possible ambush locations and poke at the reeds just to make sure. A quick glance north and south confirms you are in the middle of the grove.</description>
<position x="330" y="200" z="0" />
<arc exit="north" move="north" destination="6" />
<arc exit="south" move="south" destination="4" />
<arc exit="go" move="go high reeds" destination="10" />
</node>
<node id="6" name="The Marsh, Stone Road">
<description>High reeds create a thick wall to the southeast. A makeshift target is tacked to the closest tree. Someone has been practicing their archery, and on closer inspection you see the arrowheads that are now and forever a part of the tree. To the northwest you see a large bridge now in ruin, which used to span the river. To the south the road heads directly into the shadows of a grove of trees.</description>
<position x="330" y="80" z="0" />
<arc exit="south" move="south" destination="5" />
<arc exit="northwest" move="northwest" destination="7" />
<arc exit="go" move="go high reeds" destination="11" />
</node>
<node id="7" name="The Marsh, Stone Road">
<description>A large stone bridge that once spanned the expanse of the river here, now lays in ruin. The town of Riverhaven, the bridge's orginal destination, sits on the other side. Gazing at the town, the orange glow of the town's street torches forms an eerie dome in the night sky. To the southeast, a wall of reeds creeps down from a group of trees into the river and attempts to survive the currents of the river.</description>
<description>A large stone bridge that once spanned the expanse of the river here, now lays in ruin. The town of Riverhaven, the bridge's original destination, sits on the other side. Gazing at the town, you notice a haze of brown lingers in the air, no doubt the result of the forges and smoke houses at work. To the southeast, a wall of reeds creeps down from a group of trees into the river and attempts to survive its currents.</description>
<description>A large stone bridge that once spanned the river here now lies in ruins. The town of Riverhaven, the bridge's original destination, sits on the other side. Gazing at the town, you notice that a brown haze lingers in the air, no doubt the result of the forges and smokehouses at work. To the southeast, a wall of reeds creeps down from a group of trees into the river and attempts to survive its currents.</description>
<description>A large stone bridge that once spanned the river here now lies in ruins. The town of Riverhaven, the bridge's original destination, sits on the other side. Gazing at the town, you notice that the orange glow of the town's street torches forms an eerie dome in the night sky. To the southeast, a wall of reeds creeps down from a group of trees into the river and attempts to survive the currents of the river.</description>
<position x="310" y="60" z="0" />
<arc exit="southeast" move="southeast" destination="6" />
<arc exit="none" move="dive river" destination="197" />
</node>
<node id="8" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="290" z="0" />
<arc exit="north" move="north" hidden="True" destination="12" />
<arc exit="northeast" move="northeast" hidden="True" destination="34" />
<arc exit="east" move="east" destination="34" />
<arc exit="southeast" move="southeast" hidden="True" destination="50" />
<arc exit="south" move="south" hidden="True" destination="56" />
<arc exit="southwest" move="southwest" hidden="True" destination="51" />
<arc exit="west" move="west" hidden="True" destination="38" />
<arc exit="northwest" move="northwest" hidden="True" destination="17" />
<arc exit="go" move="go high reeds" destination="3" />
</node>
<node id="9" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="370" y="230" z="0" />
<arc exit="north" move="north" hidden="True" destination="44" />
<arc exit="northeast" move="northeast" destination="13" />
<arc exit="east" move="east" hidden="True" destination="29" />
<arc exit="southeast" move="southeast" hidden="True" destination="34" />
<arc exit="south" move="south" hidden="True" destination="27" />
<arc exit="southwest" move="southwest" hidden="True" destination="50" />
<arc exit="west" move="west" hidden="True" destination="10" />
<arc exit="northwest" move="northwest" hidden="True" destination="13" />
<arc exit="go" move="go high reeds" destination="4" />
</node>
<node id="10" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="370" y="200" z="0" />
<arc exit="north" move="north" hidden="True" destination="39" />
<arc exit="northeast" move="northeast" hidden="True" destination="41" />
<arc exit="east" move="east" hidden="True" destination="10" />
<arc exit="southeast" move="southeast" hidden="True" destination="13" />
<arc exit="south" move="south" hidden="True" destination="31" />
<arc exit="southwest" move="southwest" hidden="True" destination="47" />
<arc exit="west" move="west" hidden="True" destination="13" />
<arc exit="northwest" move="northwest" hidden="True" destination="62" />
<arc exit="go" move="go high reeds" destination="5" />
</node>
<node id="11" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="370" y="80" z="0" />
<arc exit="north" move="north" hidden="True" destination="30" />
<arc exit="northeast" move="northeast" hidden="True" destination="29" />
<arc exit="east" move="east" hidden="True" destination="35" />
<arc exit="southeast" move="southeast" destination="49" />
<arc exit="south" move="south" hidden="True" destination="42" />
<arc exit="southwest" move="southwest" hidden="True" destination="23" />
<arc exit="west" move="west" hidden="True" destination="60" />
<arc exit="northwest" move="northwest" hidden="True" destination="54" />
<arc exit="go" move="go high reeds" destination="6" />
</node>
<node id="12" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="260" z="0" />
<arc exit="north" move="north" hidden="True" destination="13" />
<arc exit="northeast" move="northeast" hidden="True" destination="29" />
<arc exit="east" move="east" hidden="True" destination="10" />
<arc exit="southeast" move="southeast" hidden="True" destination="37" />
<arc exit="south" move="south" hidden="True" destination="62" />
<arc exit="southwest" move="southwest" hidden="True" destination="37" />
<arc exit="west" move="west" destination="24" />
<arc exit="northwest" move="northwest" hidden="True" destination="43" />
</node>
<node id="13" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="200" z="0" />
<arc exit="north" move="north" hidden="True" destination="14" />
<arc exit="northeast" move="northeast" destination="59" />
<arc exit="east" move="east" hidden="True" destination="42" />
<arc exit="southeast" move="southeast" hidden="True" destination="33" />
<arc exit="south" move="south" hidden="True" destination="29" />
<arc exit="southwest" move="southwest" destination="9" />
<arc exit="west" move="west" hidden="True" destination="15" />
<arc exit="northwest" move="northwest" hidden="True" destination="50" />
</node>
<node id="14" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="230" z="0" />
<arc exit="north" move="north" hidden="True" destination="15" />
<arc exit="northeast" move="northeast" hidden="True" destination="8" />
<arc exit="east" move="east" hidden="True" destination="43" />
<arc exit="southeast" move="southeast" hidden="True" destination="52" />
<arc exit="south" move="south" hidden="True" destination="52" />
<arc exit="southwest" move="southwest" hidden="True" destination="49" />
<arc exit="west" move="west" hidden="True" destination="50" />
<arc exit="northwest" move="northwest" hidden="True" destination="34" />
</node>
<node id="15" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="80" z="0" />
<arc exit="north" move="north" hidden="True" destination="16" />
<arc exit="northeast" move="northeast" hidden="True" destination="39" />
<arc exit="east" move="east" hidden="True" destination="36" />
<arc exit="southeast" move="southeast" hidden="True" destination="40" />
<arc exit="south" move="south" destination="41" />
<arc exit="southwest" move="southwest" hidden="True" destination="34" />
<arc exit="west" move="west" hidden="True" destination="60" />
<arc exit="northwest" move="northwest" hidden="True" destination="8" />
</node>
<node id="16" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="550" y="190" z="0" />
<arc exit="north" move="north" hidden="True" destination="17" />
<arc exit="northeast" move="northeast" destination="25" />
<arc exit="east" move="east" hidden="True" destination="62" />
<arc exit="southeast" move="southeast" hidden="True" destination="16" />
<arc exit="south" move="south" hidden="True" destination="27" />
<arc exit="southwest" move="southwest" hidden="True" destination="42" />
<arc exit="west" move="west" hidden="True" destination="32" />
<arc exit="northwest" move="northwest" hidden="True" destination="13" />
</node>
<node id="17" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="170" z="0" />
<arc exit="north" move="north" hidden="True" destination="18" />
<arc exit="northeast" move="northeast" hidden="True" destination="24" />
<arc exit="east" move="east" hidden="True" destination="35" />
<arc exit="southeast" move="southeast" hidden="True" destination="18" />
<arc exit="south" move="south" hidden="True" destination="61" />
<arc exit="southwest" move="southwest" hidden="True" destination="47" />
<arc exit="west" move="west" destination="29" />
<arc exit="northwest" move="northwest" hidden="True" destination="62" />
</node>
<node id="18" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="290" z="0" />
<arc exit="north" move="north" hidden="True" destination="19" />
<arc exit="northeast" move="northeast" destination="63" />
<arc exit="east" move="east" hidden="True" destination="46" />
<arc exit="southeast" move="southeast" hidden="True" destination="61" />
<arc exit="south" move="south" hidden="True" destination="52" />
<arc exit="southwest" move="southwest" hidden="True" destination="28" />
<arc exit="west" move="west" destination="19" />
<arc exit="northwest" move="northwest" hidden="True" destination="39" />
</node>
<node id="19" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="290" z="0" />
<arc exit="north" move="north" hidden="True" destination="20" />
<arc exit="northeast" move="northeast" hidden="True" destination="33" />
<arc exit="east" move="east" destination="18" />
<arc exit="southeast" move="southeast" hidden="True" destination="21" />
<arc exit="south" move="south" hidden="True" destination="49" />
<arc exit="southwest" move="southwest" hidden="True" destination="59" />
<arc exit="west" move="west" destination="34" />
<arc exit="northwest" move="northwest" hidden="True" destination="33" />
</node>
<node id="20" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="170" z="0" />
<arc exit="north" move="north" hidden="True" destination="21" />
<arc exit="northeast" move="northeast" hidden="True" destination="60" />
<arc exit="east" move="east" hidden="True" destination="15" />
<arc exit="southeast" move="southeast" hidden="True" destination="14" />
<arc exit="south" move="south" hidden="True" destination="35" />
<arc exit="southwest" move="southwest" hidden="True" destination="27" />
<arc exit="west" move="west" hidden="True" destination="55" />
<arc exit="northwest" move="northwest" hidden="True" destination="54" />
</node>
<node id="21" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="50" z="0" />
<arc exit="north" move="north" destination="22" />
<arc exit="northeast" move="northeast" hidden="True" destination="23" />
<arc exit="east" move="east" destination="23" />
<arc exit="southeast" move="southeast" hidden="True" destination="62" />
<arc exit="south" move="south" hidden="True" destination="23" />
<arc exit="southwest" move="southwest" hidden="True" destination="51" />
<arc exit="west" move="west" hidden="True" destination="31" />
<arc exit="northwest" move="northwest" hidden="True" destination="20" />
</node>
<node id="22" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="20" z="0" />
<arc exit="north" move="north" hidden="True" destination="23" />
<arc exit="northeast" move="northeast" hidden="True" destination="51" />
<arc exit="east" move="east" hidden="True" destination="13" />
<arc exit="southeast" move="southeast" hidden="True" destination="21" />
<arc exit="south" move="south" destination="21" />
<arc exit="southwest" move="southwest" hidden="True" destination="48" />
<arc exit="west" move="west" destination="58" />
<arc exit="northwest" move="northwest" hidden="True" destination="43" />
</node>
<node id="23" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="50" z="0" />
<arc exit="north" move="north" hidden="True" destination="24" />
<arc exit="northeast" move="northeast" hidden="True" destination="10" />
<arc exit="east" move="east" hidden="True" destination="25" />
<arc exit="southeast" move="southeast" hidden="True" destination="47" />
<arc exit="south" move="south" hidden="True" destination="33" />
<arc exit="southwest" move="southwest" hidden="True" destination="56" />
<arc exit="west" move="west" destination="21" />
<arc exit="northwest" move="northwest" hidden="True" destination="38" />
</node>
<node id="24" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="370" y="260" z="0" />
<arc exit="north" move="north" hidden="True" destination="12" />
<arc exit="northeast" move="northeast" hidden="True" destination="25" />
<arc exit="east" move="east" destination="12" />
<arc exit="southeast" move="southeast" hidden="True" destination="8" />
<arc exit="south" move="south" hidden="True" destination="8" />
<arc exit="southwest" move="southwest" hidden="True" destination="50" />
<arc exit="west" move="west" hidden="True" destination="56" />
<arc exit="northwest" move="northwest" hidden="True" destination="20" />
<arc exit="go" move="go high reeds" destination="4" />
</node>
<node id="25" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="580" y="160" z="0" />
<arc exit="north" move="north" hidden="True" destination="26" />
<arc exit="northeast" move="northeast" hidden="True" destination="35" />
<arc exit="east" move="east" hidden="True" destination="19" />
<arc exit="southeast" move="southeast" hidden="True" destination="12" />
<arc exit="south" move="south" hidden="True" destination="14" />
<arc exit="southwest" move="southwest" destination="16" />
<arc exit="west" move="west" hidden="True" destination="36" />
<arc exit="northwest" move="northwest" hidden="True" destination="31" />
</node>
<node id="26" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="140" z="0" />
<arc exit="north" move="north" hidden="True" destination="23" />
<arc exit="northeast" move="northeast" destination="27" />
<arc exit="east" move="east" hidden="True" destination="37" />
<arc exit="southeast" move="southeast" hidden="True" destination="17" />
<arc exit="south" move="south" hidden="True" destination="15" />
<arc exit="southwest" move="southwest" hidden="True" destination="38" />
<arc exit="west" move="west" hidden="True" destination="39" />
<arc exit="northwest" move="northwest" hidden="True" destination="16" />
</node>
<node id="27" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="110" z="0" />
<arc exit="north" move="north" hidden="True" destination="28" />
<arc exit="northeast" move="northeast" destination="36" />
<arc exit="east" move="east" hidden="True" destination="13" />
<arc exit="southeast" move="southeast" hidden="True" destination="17" />
<arc exit="south" move="south" hidden="True" destination="53" />
<arc exit="southwest" move="southwest" destination="26" />
<arc exit="west" move="west" destination="49" />
<arc exit="northwest" move="northwest" hidden="True" destination="18" />
</node>
<node id="28" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="170" z="0" />
<arc exit="north" move="north" hidden="True" destination="29" />
<arc exit="northeast" move="northeast" hidden="True" destination="43" />
<arc exit="east" move="east" hidden="True" destination="39" />
<arc exit="southeast" move="southeast" destination="32" />
<arc exit="south" move="south" hidden="True" destination="10" />
<arc exit="southwest" move="southwest" hidden="True" destination="14" />
<arc exit="west" move="west" destination="59" />
<arc exit="northwest" move="northwest" hidden="True" destination="45" />
</node>
<node id="29" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="370" y="170" z="0" />
<arc exit="north" move="north" hidden="True" destination="10" />
<arc exit="northeast" move="northeast" hidden="True" destination="9" />
<arc exit="east" move="east" destination="17" />
<arc exit="southeast" move="southeast" hidden="True" destination="30" />
<arc exit="south" move="south" hidden="True" destination="59" />
<arc exit="southwest" move="southwest" hidden="True" destination="22" />
<arc exit="west" move="west" hidden="True" destination="10" />
<arc exit="northwest" move="northwest" hidden="True" destination="29" />
</node>
<node id="30" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="140" z="0" />
<arc exit="north" move="north" hidden="True" destination="31" />
<arc exit="northeast" move="northeast" hidden="True" destination="16" />
<arc exit="east" move="east" hidden="True" destination="59" />
<arc exit="southeast" move="southeast" hidden="True" destination="45" />
<arc exit="south" move="south" hidden="True" destination="43" />
<arc exit="southwest" move="southwest" hidden="True" destination="26" />
<arc exit="west" move="west" hidden="True" destination="30" />
<arc exit="northwest" move="northwest" hidden="True" destination="27" />
</node>
<node id="31" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="80" z="0" />
<arc exit="north" move="north" hidden="True" destination="26" />
<arc exit="northeast" move="northeast" hidden="True" destination="22" />
<arc exit="east" move="east" hidden="True" destination="32" />
<arc exit="southeast" move="southeast" hidden="True" destination="10" />
<arc exit="south" move="south" hidden="True" destination="24" />
<arc exit="southwest" move="southwest" hidden="True" destination="31" />
<arc exit="west" move="west" destination="38" />
<arc exit="northwest" move="northwest" hidden="True" destination="13" />
</node>
<node id="32" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="200" z="0" />
<arc exit="north" move="north" hidden="True" destination="33" />
<arc exit="northeast" move="northeast" hidden="True" destination="46" />
<arc exit="east" move="east" hidden="True" destination="60" />
<arc exit="southeast" move="southeast" hidden="True" destination="24" />
<arc exit="south" move="south" hidden="True" destination="40" />
<arc exit="southwest" move="southwest" hidden="True" destination="24" />
<arc exit="west" move="west" hidden="True" destination="23" />
<arc exit="northwest" move="northwest" destination="28" />
</node>
<node id="33" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="550" y="220" z="0" />
<arc exit="north" move="north" hidden="True" destination="63" />
<arc exit="northeast" move="northeast" hidden="True" destination="48" />
<arc exit="east" move="east" hidden="True" destination="24" />
<arc exit="southeast" move="southeast" hidden="True" destination="55" />
<arc exit="south" move="south" hidden="True" destination="40" />
<arc exit="southwest" move="southwest" hidden="True" destination="12" />
<arc exit="west" move="west" hidden="True" destination="55" />
<arc exit="northwest" move="northwest" hidden="True" destination="47" />
</node>
<node id="34" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="290" z="0" />
<arc exit="north" move="north" hidden="True" destination="35" />
<arc exit="northeast" move="northeast" hidden="True" destination="57" />
<arc exit="east" move="east" destination="19" />
<arc exit="southeast" move="southeast" hidden="True" destination="45" />
<arc exit="south" move="south" hidden="True" destination="9" />
<arc exit="southwest" move="southwest" hidden="True" destination="62" />
<arc exit="west" move="west" destination="8" />
<arc exit="northwest" move="northwest" hidden="True" destination="33" />
</node>
<node id="35" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="550" y="100" z="0" />
<arc exit="north" move="north" hidden="True" destination="28" />
<arc exit="northeast" move="northeast" hidden="True" destination="36" />
<arc exit="east" move="east" hidden="True" destination="22" />
<arc exit="southeast" move="southeast" hidden="True" destination="14" />
<arc exit="south" move="south" hidden="True" destination="54" />
<arc exit="southwest" move="southwest" destination="46" />
<arc exit="west" move="west" hidden="True" destination="39" />
<arc exit="northwest" move="northwest" hidden="True" destination="35" />
</node>
<node id="36" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="80" z="0" />
<arc exit="north" move="north" hidden="True" destination="19" />
<arc exit="northeast" move="northeast" hidden="True" destination="37" />
<arc exit="east" move="east" hidden="True" destination="57" />
<arc exit="southeast" move="southeast" hidden="True" destination="13" />
<arc exit="south" move="south" hidden="True" destination="58" />
<arc exit="southwest" move="southwest" destination="27" />
<arc exit="west" move="west" hidden="True" destination="58" />
<arc exit="northwest" move="northwest" hidden="True" destination="55" />
</node>
<node id="37" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="370" y="110" z="0" />
<arc exit="north" move="north" hidden="True" destination="13" />
<arc exit="northeast" move="northeast" destination="38" />
<arc exit="east" move="east" destination="49" />
<arc exit="southeast" move="southeast" hidden="True" destination="46" />
<arc exit="south" move="south" hidden="True" destination="57" />
<arc exit="southwest" move="southwest" hidden="True" destination="52" />
<arc exit="west" move="west" hidden="True" destination="53" />
</node>
<node id="38" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="80" z="0" />
<arc exit="north" move="north" hidden="True" destination="30" />
<arc exit="northeast" move="northeast" hidden="True" destination="39" />
<arc exit="east" move="east" destination="31" />
<arc exit="southeast" move="southeast" hidden="True" destination="10" />
<arc exit="south" move="south" hidden="True" destination="12" />
<arc exit="southwest" move="southwest" destination="37" />
<arc exit="west" move="west" hidden="True" destination="20" />
<arc exit="northwest" move="northwest" hidden="True" destination="33" />
</node>
<node id="39" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="200" z="0" />
<arc exit="north" move="north" hidden="True" destination="39" />
<arc exit="northeast" move="northeast" hidden="True" destination="35" />
<arc exit="east" move="east" hidden="True" destination="40" />
<arc exit="southeast" move="southeast" hidden="True" destination="59" />
<arc exit="south" move="south" hidden="True" destination="61" />
<arc exit="southwest" move="southwest" hidden="True" destination="60" />
<arc exit="west" move="west" hidden="True" destination="58" />
<arc exit="northwest" move="northwest" hidden="True" destination="55" />
</node>
<node id="40" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="620" y="250" z="0" />
<arc exit="north" move="north" hidden="True" destination="41" />
<arc exit="northeast" move="northeast" destination="47" />
<arc exit="east" move="east" destination="51" />
<arc exit="southeast" move="southeast" hidden="True" destination="38" />
<arc exit="south" move="south" hidden="True" destination="57" />
<arc exit="southwest" move="southwest" hidden="True" destination="14" />
<arc exit="west" move="west" destination="44" />
<arc exit="northwest" move="northwest" hidden="True" destination="41" />
</node>
<node id="41" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="110" z="0" />
<arc exit="north" move="north" destination="15" />
<arc exit="northeast" move="northeast" hidden="True" destination="8" />
<arc exit="east" move="east" hidden="True" destination="42" />
<arc exit="southeast" move="southeast" hidden="True" destination="48" />
<arc exit="south" move="south" hidden="True" destination="50" />
<arc exit="southwest" move="southwest" hidden="True" destination="19" />
<arc exit="west" move="west" hidden="True" destination="58" />
<arc exit="northwest" move="northwest" hidden="True" destination="38" />
</node>
<node id="42" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="140" z="0" />
<arc exit="north" move="north" hidden="True" destination="25" />
<arc exit="northeast" move="northeast" hidden="True" destination="26" />
<arc exit="east" move="east" hidden="True" destination="32" />
<arc exit="southeast" move="southeast" hidden="True" destination="27" />
<arc exit="south" move="south" hidden="True" destination="28" />
<arc exit="southwest" move="southwest" hidden="True" destination="27" />
<arc exit="west" move="west" hidden="True" destination="26" />
<arc exit="northwest" move="northwest" hidden="True" destination="38" />
</node>
<node id="43" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="230" z="0" />
<arc exit="north" move="north" hidden="True" destination="19" />
<arc exit="northeast" move="northeast" hidden="True" destination="16" />
<arc exit="east" move="east" hidden="True" destination="28" />
<arc exit="southeast" move="southeast" hidden="True" destination="44" />
<arc exit="south" move="south" hidden="True" destination="10" />
<arc exit="southwest" move="southwest" hidden="True" destination="24" />
<arc exit="west" move="west" hidden="True" destination="20" />
<arc exit="northwest" move="northwest" hidden="True" destination="52" />
</node>
<node id="44" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="580" y="250" z="0" />
<arc exit="north" move="north" hidden="True" destination="34" />
<arc exit="northeast" move="northeast" hidden="True" destination="40" />
<arc exit="east" move="east" destination="40" />
<arc exit="southeast" move="southeast" hidden="True" destination="45" />
<arc exit="south" move="south" destination="57" />
<arc exit="southwest" move="southwest" hidden="True" destination="24" />
<arc exit="west" move="west" hidden="True" destination="32" />
<arc exit="northwest" move="northwest" hidden="True" destination="48" />
</node>
<node id="45" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="550" y="280" z="0" />
<arc exit="north" move="north" hidden="True" destination="46" />
<arc exit="northeast" move="northeast" hidden="True" destination="31" />
<arc exit="east" move="east" destination="57" />
<arc exit="southeast" move="southeast" hidden="True" destination="50" />
<arc exit="south" move="south" hidden="True" destination="20" />
<arc exit="southwest" move="southwest" hidden="True" destination="60" />
<arc exit="west" move="west" hidden="True" destination="18" />
<arc exit="northwest" move="northwest" hidden="True" destination="52" />
</node>
<node id="46" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="140" z="0" />
<arc exit="north" move="north" hidden="True" destination="35" />
<arc exit="northeast" move="northeast" destination="35" />
<arc exit="east" move="east" hidden="True" destination="12" />
<arc exit="southeast" move="southeast" hidden="True" destination="47" />
<arc exit="south" move="south" hidden="True" destination="14" />
<arc exit="southwest" move="southwest" hidden="True" destination="28" />
<arc exit="west" move="west" hidden="True" destination="45" />
<arc exit="northwest" move="northwest" hidden="True" destination="14" />
</node>
<node id="47" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="650" y="220" z="0" />
<arc exit="north" move="north" hidden="True" destination="11" />
<arc exit="northeast" move="northeast" hidden="True" destination="9" />
<arc exit="east" move="east" hidden="True" destination="23" />
<arc exit="southeast" move="southeast" hidden="True" destination="36" />
<arc exit="south" move="south" hidden="True" destination="26" />
<arc exit="southwest" move="southwest" destination="40" />
<arc exit="west" move="west" hidden="True" destination="48" />
<arc exit="northwest" move="northwest" hidden="True" destination="29" />
</node>
<node id="48" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="550" y="130" z="0" />
<arc exit="north" move="north" hidden="True" destination="49" />
<arc exit="northeast" move="northeast" hidden="True" destination="55" />
<arc exit="east" move="east" hidden="True" destination="48" />
<arc exit="southeast" move="southeast" hidden="True" destination="37" />
<arc exit="south" move="south" hidden="True" destination="56" />
<arc exit="southwest" move="southwest" hidden="True" destination="51" />
<arc exit="west" move="west" hidden="True" destination="59" />
<arc exit="northwest" move="northwest" hidden="True" destination="42" />
</node>
<node id="49" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="110" z="0" />
<arc exit="north" move="north" hidden="True" destination="13" />
<arc exit="northeast" move="northeast" hidden="True" destination="41" />
<arc exit="east" move="east" destination="27" />
<arc exit="southeast" move="southeast" hidden="True" destination="9" />
<arc exit="south" move="south" hidden="True" destination="21" />
<arc exit="southwest" move="southwest" hidden="True" destination="63" />
<arc exit="west" move="west" destination="37" />
<arc exit="northwest" move="northwest" destination="11" />
</node>
<node id="50" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="110" z="0" />
<arc exit="north" move="north" hidden="True" destination="35" />
<arc exit="northeast" move="northeast" hidden="True" destination="49" />
<arc exit="east" move="east" hidden="True" destination="35" />
<arc exit="southeast" move="southeast" hidden="True" destination="23" />
<arc exit="south" move="south" hidden="True" destination="27" />
<arc exit="southwest" move="southwest" hidden="True" destination="46" />
<arc exit="west" move="west" hidden="True" destination="30" />
<arc exit="northwest" move="northwest" hidden="True" destination="51" />
</node>
<node id="51" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="650" y="250" z="0" />
<arc exit="north" move="north" hidden="True" destination="30" />
<arc exit="northeast" move="northeast" hidden="True" destination="26" />
<arc exit="east" move="east" destination="52" />
<arc exit="southeast" move="southeast" hidden="True" destination="27" />
<arc exit="south" move="south" hidden="True" destination="31" />
<arc exit="southwest" move="southwest" hidden="True" destination="20" />
<arc exit="west" move="west" destination="40" />
<arc exit="northwest" move="northwest" hidden="True" destination="8" />
</node>
<node id="52" name="The Marsh, In The Water" note="Shack">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<description>Struggling against the suction of the mud, simply walking becomes a challenge of balance and agility. Thick growths of reeds tower about you making it difficult to maintain a direction as you slog your way through the knee-deep water. Ripples in the water announce your presence with each step you take.</description>
<position x="680" y="250" z="0" />
<arc exit="north" move="north" hidden="True" destination="46" />
<arc exit="northeast" move="northeast" hidden="True" destination="18" />
<arc exit="east" move="east" hidden="True" destination="50" />
<arc exit="southeast" move="southeast" hidden="True" destination="25" />
<arc exit="south" move="south" hidden="True" destination="52" />
<arc exit="southwest" move="southwest" hidden="True" destination="28" />
<arc exit="west" move="west" destination="51" />
<arc exit="northwest" move="northwest" hidden="True" destination="53" />
</node>
<node id="53" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="260" z="0" />
<arc exit="north" move="north" hidden="True" destination="18" />
<arc exit="northeast" move="northeast" hidden="True" destination="13" />
<arc exit="east" move="east" hidden="True" destination="22" />
<arc exit="southeast" move="southeast" hidden="True" destination="15" />
<arc exit="south" move="south" hidden="True" destination="54" />
<arc exit="southwest" move="southwest" hidden="True" destination="32" />
<arc exit="west" move="west" hidden="True" destination="55" />
<arc exit="northwest" move="northwest" hidden="True" destination="33" />
</node>
<node id="54" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="230" z="0" />
<arc exit="north" move="north" hidden="True" destination="55" />
<arc exit="northeast" move="northeast" hidden="True" destination="12" />
<arc exit="east" move="east" hidden="True" destination="14" />
<arc exit="southeast" move="southeast" hidden="True" destination="8" />
<arc exit="south" move="south" hidden="True" destination="22" />
<arc exit="southwest" move="southwest" hidden="True" destination="13" />
<arc exit="west" move="west" hidden="True" destination="29" />
<arc exit="northwest" move="northwest" hidden="True" destination="55" />
</node>
<node id="55" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="260" z="0" />
<arc exit="north" move="north" hidden="True" destination="33" />
<arc exit="northeast" move="northeast" hidden="True" destination="24" />
<arc exit="east" move="east" hidden="True" destination="30" />
<arc exit="southeast" move="southeast" hidden="True" destination="18" />
<arc exit="south" move="south" hidden="True" destination="36" />
<arc exit="southwest" move="southwest" hidden="True" destination="41" />
<arc exit="west" move="west" hidden="True" destination="56" />
<arc exit="northwest" move="northwest" hidden="True" destination="63" />
</node>
<node id="56" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="510" y="230" z="0" />
<arc exit="north" move="north" hidden="True" destination="36" />
<arc exit="northeast" move="northeast" hidden="True" destination="31" />
<arc exit="east" move="east" hidden="True" destination="57" />
<arc exit="southeast" move="southeast" hidden="True" destination="37" />
<arc exit="south" move="south" hidden="True" destination="23" />
<arc exit="southwest" move="southwest" hidden="True" destination="20" />
<arc exit="west" move="west" hidden="True" destination="59" />
<arc exit="northwest" move="northwest" hidden="True" destination="62" />
</node>
<node id="57" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="580" y="280" z="0" />
<arc exit="north" move="north" destination="44" />
<arc exit="northeast" move="northeast" hidden="True" destination="54" />
<arc exit="east" move="east" hidden="True" destination="20" />
<arc exit="southeast" move="southeast" hidden="True" destination="10" />
<arc exit="south" move="south" hidden="True" destination="54" />
<arc exit="southwest" move="southwest" hidden="True" destination="55" />
<arc exit="west" move="west" destination="45" />
<arc exit="northwest" move="northwest" hidden="True" destination="38" />
</node>
<node id="58" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="400" y="20" z="0" />
<arc exit="north" move="north" hidden="True" destination="30" />
<arc exit="northeast" move="northeast" hidden="True" destination="26" />
<arc exit="east" move="east" destination="22" />
<arc exit="southeast" move="southeast" hidden="True" destination="58" />
<arc exit="south" move="south" hidden="True" destination="34" />
<arc exit="southwest" move="southwest" hidden="True" destination="59" />
<arc exit="west" move="west" hidden="True" destination="33" />
<arc exit="northwest" move="northwest" hidden="True" destination="45" />
</node>
<node id="59" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="170" z="0" />
<arc exit="north" move="north" hidden="True" destination="15" />
<arc exit="northeast" move="northeast" hidden="True" destination="12" />
<arc exit="east" move="east" destination="28" />
<arc exit="southeast" move="southeast" hidden="True" destination="36" />
<arc exit="south" move="south" hidden="True" destination="8" />
<arc exit="southwest" move="southwest" destination="13" />
<arc exit="west" move="west" hidden="True" destination="38" />
<arc exit="northwest" move="northwest" hidden="True" destination="17" />
</node>
<node id="60" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="480" y="260" z="0" />
<arc exit="north" move="north" hidden="True" destination="61" />
<arc exit="northeast" move="northeast" hidden="True" destination="43" />
<arc exit="east" move="east" hidden="True" destination="24" />
<arc exit="southeast" move="southeast" hidden="True" destination="20" />
<arc exit="south" move="south" hidden="True" destination="9" />
<arc exit="southwest" move="southwest" hidden="True" destination="12" />
<arc exit="west" move="west" hidden="True" destination="34" />
<arc exit="northwest" move="northwest" hidden="True" destination="52" />
</node>
<node id="61" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="450" y="200" z="0" />
<arc exit="north" move="north" hidden="True" destination="12" />
<arc exit="northeast" move="northeast" hidden="True" destination="62" />
<arc exit="east" move="east" hidden="True" destination="25" />
<arc exit="southeast" move="southeast" hidden="True" destination="26" />
<arc exit="south" move="south" hidden="True" destination="42" />
<arc exit="southwest" move="southwest" hidden="True" destination="49" />
<arc exit="west" move="west" hidden="True" destination="56" />
<arc exit="northwest" move="northwest" hidden="True" destination="23" />
</node>
<node id="62" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="580" y="220" z="0" />
<arc exit="north" move="north" hidden="True" destination="58" />
<arc exit="northeast" move="northeast" hidden="True" destination="16" />
<arc exit="east" move="east" hidden="True" destination="24" />
<arc exit="southeast" move="southeast" hidden="True" destination="19" />
<arc exit="south" move="south" hidden="True" destination="51" />
<arc exit="southwest" move="southwest" hidden="True" destination="26" />
<arc exit="west" move="west" hidden="True" destination="57" />
<arc exit="northwest" move="northwest" hidden="True" destination="13" />
</node>
<node id="63" name="The Marsh, In The Water">
<description>The darkness about you is absolute. Discerning the objects about requires they be inches from your face. Feeling your way about you touch fur, then realize it is cold wet moss. Something bumps into you causing you to jump back ready to defend yourself, then realize you've walked into a tree. Out of the corner of your eye you think you see something move, then realize it's just your mind playing tricks on you in the absence of vision.</description>
<position x="550" y="250" z="0" />
<arc exit="north" move="north" hidden="True" destination="40" />
<arc exit="northeast" move="northeast" hidden="True" destination="38" />
<arc exit="east" move="east" hidden="True" destination="45" />
<arc exit="southeast" move="southeast" hidden="True" destination="25" />
<arc exit="south" move="south" hidden="True" destination="58" />
<arc exit="southwest" move="southwest" destination="18" />
<arc exit="west" move="west" hidden="True" destination="30" />
<arc exit="northwest" move="northwest" hidden="True" destination="63" />
</node>
<node id="64" name="North Road, Plains">
<description>Climbing a small rise, you find a splendid view off to the north. The hills about you slowly flatten, spreading out into a broad, low valley. A large river winds its way through the valley like a deep blue ribbon, bordered by a dense band of marshlands.</description>
<position x="380" y="350" z="0" />
<arc exit="east" move="east" destination="82" />
<arc exit="west" move="west" destination="65" />
<arc exit="northwest" move="northwest" destination="1" />
</node>
<node id="65" name="North Road, Plains">
<description>Your passage through the plains disturbs rabbits which bound across the road in front of you. Quail and pheasant nest in the high grass, and hawks and kites drift in silent circles overhead. Tracks in the dirt reveal the presence of deer, skunks, foxes, and even one set of paw prints from a cougar.</description>
<position x="360" y="350" z="0" />
<arc exit="east" move="east" destination="64" />
<arc exit="west" move="west" destination="66" />
</node>
<node id="66" name="North Road, Plains">
<description>A broad patch of low shrubs hugging the ground on the roadside stands in full bloom. Stunning red flowers on yellow stalks stand out against the green leaves. Hummingbirds flit from blossom to blossom, dipping their long noses into each before moving on.</description>
<position x="340" y="350" z="0" />
<arc exit="east" move="east" destination="65" />
<arc exit="west" move="west" destination="67" />
</node>
<node id="67" name="North Road, Plains">
<description>Sagging wooden fenceposts outline an abandoned farmhouse a short distance away. The walls have collapsed completely, leaving only a peaked shingle roof resting atop a pile of splintered debris. Weeds and grass have overrun and choked the once neat rows of tomatoes, corn and barley.</description>
<position x="320" y="350" z="0" />
<arc exit="east" move="east" destination="66" />
<arc exit="west" move="west" destination="68" />
</node>
<node id="68" name="North Road, Plains">
<description>An old stone well sits in a secluded glade just to the south. Alongside the well is a broad stone trough for watering horses, with a rail to tie them. A broad flat slab of sandstone beneath the boughs of an old tree looks like a perfect spot to relax for a moment.</description>
<position x="300" y="350" z="0" />
<arc exit="east" move="east" destination="67" />
<arc exit="northwest" move="northwest" destination="69" />
</node>
<node id="69" name="North Road, Farmlands">
<description>A white trail of smoke rises from a lone cottage atop a nearby hill. The hill itself is covered in a carpet of thick green herbs and plants, interspersed with tall pines and fruit trees. Off to the north and west, the open plains slowly give way to farmlands. Looking southward, you see the open grassy plains, low hills, and far off in the distance, the outline of two massive mountains lost in the clouds.</description>
<position x="280" y="330" z="0" />
<arc exit="southeast" move="southeast" destination="68" />
<arc exit="northwest" move="northwest" destination="70" />
</node>
<node id="70" name="North Road, Farmlands">
<description>Small wooden plaques alongside a myriad of footpaths and trails point the way towards small farms and houses dotting the rolling hillsides. Patches of golden grain and rows of green vegetables stand out between open stretches of tall prairie grass and clumps of trees.</description>
<position x="260" y="310" z="0" />
<arc exit="southeast" move="southeast" destination="69" />
<arc exit="west" move="west" destination="71" />
</node>
<node id="71" name="North Road, Farmlands" note="RTT01|RT-HF-KC" color="#C2B280">
<description>Long shadowy rows of vines stretch off to either side of the road like darkened corridors. A sweet smell drifts on the evening breeze from the ripe grapes hanging in thick bunches from the vines.</description>
<description>Long rows of vines laden with bunches of ripe purple grapes grow over rows of wooden trellises lining both sides of the road. Here and there, brightly dressed Halfling workers wander through the vineyard, carefully picking and gathering the harvest.</description>
<position x="240" y="310" z="0" />
<arc exit="east" move="east" destination="70" />
<arc exit="west" move="west" destination="72" />
</node>
<node id="72" name="North Road, Farmlands">
<description>A sturdy covered bridge stretches across a narrow irrigation channel. The banks are covered in a thick green blanket of ivy, and clumps of tall narrow reeds grow up from the slow-moving water. Farmlands stretch all about you in neat green and gold squares like a patchwork quilt.</description>
<position x="220" y="310" z="0" />
<arc exit="east" move="east" destination="71" />
<arc exit="go" move="go covered bridge" destination="73" />
</node>
<node id="73" name="North Road, Farmlands">
<description>Long, shadowed lines of apple and cherry trees stretch off all around you, their blossom laden boughs dripping in the evening dew.</description>
<description>The low, relaxing drone of bees flitting from flower to flower rises faintly from neat rows of apple and cherry trees. The trees stand covered in pink and white blossoms, pouring a sweet fruity fragrance into the quiet breeze.</description>
<position x="200" y="310" z="0" />
<arc exit="west" move="west" destination="74" />
<arc exit="go" move="go covered bridge" destination="72" />
</node>
<node id="74" name="North Road, Farmlands" note="RTT02|RT-HF-XNE" color="#C2B280">
<description>A whitewashed wooden fence stands between you and a cool pond beckoning from beside the road. White linens hanging from a clothesline wave slowly in the breeze behind a nearby cottage, from which wafts the scent of freshly baking bread.</description>
<position x="180" y="310" z="0" />
<arc exit="east" move="east" destination="73" />
<arc exit="west" move="west" destination="75" />
</node>
<node id="75" name="North Road, Farmlands">
<description>Rows of tall elm trees planted on either side of the road obscure your view of the country around you. Their leaves rustle softly in the wind, and red squirrels dart through the branches overhead. The sound of bleating sheep echoes from a wooden pen off in the distance.</description>
<position x="160" y="310" z="0" />
<arc exit="east" move="east" destination="74" />
<arc exit="west" move="west" destination="76" />
</node>
<node id="76" name="North Road, Farmlands" note="RTT03|RT-HF-WC" color="#C2B280">
<description>Empty wooden stalls line the road, and the grass is crushed in neat squares where tents stood during the day. </description>
<description>Stalls, tents and carts line the road, bedecked with all manner of fresh produce for sale. Local farmers wander about hawking baskets of apples, cherries, cages full of squawking fowl, and a bedazzling variety of edibles. A festive spirit hangs in the air, and the sound of music and dancing rings out over the voices of haggling shopkeepers and hucksters pitching their wares.</description>
<position x="140" y="310" z="0" />
<arc exit="east" move="east" destination="75" />
<arc exit="west" move="west" destination="77" />
</node>
<node id="77" name="North Road, Farmlands" note="RTT06|RT-HF-GF" color="#C2B280">
<description>Grey shadows float on the placid surface of a stream running near the road, as a family of geese drifts asleep amid the stars twinkling off the water.</description>
<description>Local folk gather alongside a clear running stream, chatting merrily as they wash their clothes on the smooth stones lining the riverbank. A flock of geese floating regally in the water add their own honking comments to the gossip and chatter on the shore.</description>
<position x="120" y="310" z="0" />
<arc exit="east" move="east" destination="76" />
<arc exit="west" move="west" destination="78" />
</node>
<node id="78" name="North Road, Farmlands">
<description>The road seems empty and quiet as you travel along beneath the cool night sky.</description>
<description>The busy flow of commerce fills the road with travellers going to and from the ferry crossing to the north. The air rings with the sound of horses and camels, and passersby calling out greetings to friends along the way. Richly-dressed merchants, farmers leading carts full of grain, and fishermen hauling baskets of the day's catch, all jostle together on the busy thoroughfare.</description>
<position x="100" y="310" z="0" />
<arc exit="east" move="east" destination="77" />
<arc exit="northwest" move="northwest" destination="79" />
</node>
<node id="79" name="North Road, Riverbank" note="RTT04|RT-HF-D" color="#C2B280">
<description>A pungent smell rises from racks of salted fish standing like tattered skeletons against the evening sky. Thatched huts stand in a circle around you, their doors and windows locked against the evening gloom.</description>
<description>A pungent smell rises from racks of salted fish set out to dry amid a circle of small huts. The huts are mostly simple wooden buildings with roofs thatched with river reeds and built on stilts to protect against flooding. A group of children gaze in rapt attention as an old man seated on a barrel regales them with stories of his youth.</description>
<position x="80" y="290" z="0" />
<arc exit="north" move="north" destination="80" />
<arc exit="southeast" move="southeast" destination="78" />
</node>
<node id="80" name="North Road, Riverbank" note="RTT05|RT-HF-K" color="#C2B280">
<description>This close to the river's edge, dry ground gives way to marshlands. A thick coat of bright green moss grows over many of the standing pools, and on the groups of elm trees rising from scattered muddy knolls. Waterfowl swim lazily on the ponds, diving under the water every now and again for a quick snack. The path runs atop a packed earth dike rising above the sodden ground.</description>
<position x="80" y="270" z="0" />
<arc exit="north" move="north" destination="81" />
<arc exit="south" move="south" destination="79" />
</node>
<node id="81" name="North Road, Ferry" note="Ferry">
<description>A slab of downed cedars, lashed together, rides upon the Faldesu River forming the landing for the ferry's patrons. The nearby splash of a toad and the squawk of distant waterfowl own this place, until the new day brings the drumming of civilization.</description>
<description>A slab of downed cedars, lashed together, rides upon the Faldesu River forming the landing for the ferry's patrons. A number of anxious traders shuffle about in anticipation of some future sale. This simple dock is evidently the commerce bottleneck for Riverhaven.</description>
<position x="80" y="250" z="0" />
<arc exit="south" move="south" destination="80" />
<arc exit="go" move="go ferry" destination="640" />
<arc exit="go" move="go ferry" destination="787" />
</node>
<node id="82" name="North Road, Plains">
<description>The road passes into a broad green meadow covered in pretty white and yellow daisies, with tall grass which nearly covers the remains of a broken horsecart lying abandoned alongside the road.</description>
<position x="400" y="350" z="0" />
<arc exit="east" move="east" destination="83" />
<arc exit="west" move="west" destination="64" />
</node>
<node id="83" name="North Road, Plains">
<description>A wide placid stream flows slowly against the backdrop of a bare stone hillside. The bank nearest you is littered with smooth round stones of all sizes, bringing up a childish urge to pick one up and send it skipping across the still clear water.</description>
<position x="420" y="350" z="0" />
<arc exit="east" move="east" destination="84" />
<arc exit="west" move="west" destination="82" />
</node>
<node id="84" name="North Road, Plains">
<description>Crickets chirping in the tall weeds provide a musical counterpoint to the sound of your feet plodding along the darkened path.</description>
<description>An ancient ash tree crowns the top of a nearby hillside, spreading its branches outwards like long embracing arms. A brilliant yellow spray of blooming mustard flowers grows beneath, shining like the early sun against the shaded green backdrop.</description>
<position x="460" y="350" z="0" />
<arc exit="east" move="east" destination="85" />
<arc exit="west" move="west" destination="83" />
</node>
<node id="85" name="North Road, Plains">
<description>A roughly carved wooden figure stands upon a polished sandstone slab in the middle of the road, surrounded by piles of drying flowers, food, and other offerings. As you pass by, a family of ravens cackles at you from the branches of an ancient thorn tree.</description>
<position x="480" y="350" z="0" />
<arc exit="east" move="east" destination="86" />
<arc exit="west" move="west" destination="84" />
</node>
<node id="86" name="North Road, Plains">
<description>The packed earth roadway cuts a visible scar through waist-high dried grasses which cover the land like a shimmering golden blanket. Deep green bands of scrub oak dot the hillsides, and patches of sagebrush growing alongside the road give off a sweet earthy smell as they rustle in the wind.</description>
<position x="500" y="350" z="0" />
<arc exit="east" move="east" destination="87" />
<arc exit="west" move="west" destination="85" />
</node>
<node id="87" name="North Road, Plains">
<description>You pass from the open air into a low copse of young oak trees. Their interlocking branches and broad leaves form a living canopy over your head which rustles softly in the breeze. To the northeast, the sound of mules and horses comes from a whitewashed wooden barn barely visible through the trees.</description>
<position x="520" y="350" z="0" />
<arc exit="east" move="east" destination="88" />
<arc exit="west" move="west" destination="86" />
</node>
<node id="88" name="North Road, Plains">
<description>A broad path stretches north from the road towards a group of cheery wood buildings tucked beneath the boughs of a glade of tall oaks. Several horses are tethered to a rail in front of the largest structure, and a thin trickle of smoke rises from its red stone chimney.</description>
<position x="550" y="350" z="0" />
<arc exit="north" move="north" destination="249" />
<arc exit="east" move="east" destination="89" />
<arc exit="west" move="west" destination="87" />
</node>
<node id="89" name="North Road, Plains">
<description>A stone tower rises above the plains just away to the north, through a sturdy oak door. A broken pile of logs before the tower might once have been a small shack of some kind, and piles of masonry flanking the road look like they once supported a chain or beam to bar the road to travelers.</description>
<position x="575" y="350" z="0" />
<arc exit="east" move="east" destination="90" />
<arc exit="west" move="west" destination="88" />
<arc exit="go" move="go door" />
</node>
<node id="90" name="North Road, Plains">
<description>A cool breeze from the north brings the faint tang of moisture to your parched throat. Low brown grass flanks the road to both sides, and a line of hardy thornbrush follows the course of a small stream off to the east. A flock of vultures floats in lazy circles against the sky.</description>
<position x="600" y="350" z="0" />
<arc exit="southeast" move="southeast" destination="91" />
<arc exit="west" move="west" destination="89" />
</node>
<node id="91" name="North Road, Plains">
<description>A rough trail branches off from the main road, towards a small crevice about a quarter of a mile off to the east. Bits of green poking out over the crevice rim look like treetops, but you can't be sure from here. Judging from the ruts and tracks on the trail, it appears fairly well used.</description>
<position x="620" y="370" z="0" />
<arc exit="south" move="south" destination="92" />
<arc exit="northwest" move="northwest" destination="90" />
<arc exit="go" move="go trail" destination="175" />
</node>
<node id="92" name="North Road, Plains">
<description>The charred remnants of a small grove of trees surround the road. The ground is scorched and littered with bits of charcoal and ashes. Most of the trees have fallen into broken piles of burnt logs, but a few blackened skeletons still stand like shadows cast against the sky. Fresh green shoots struggle up through the wreckage, bringing a tinge of hope to the devastation.</description>
<position x="620" y="390" z="0" />
<arc exit="north" move="north" destination="91" />
<arc exit="south" move="south" destination="93" />
</node>
<node id="93" name="North Road, Plains">
<description>The land all about you is flat, and the plains stretch out as far as you can see to the north and east. Looking west, you can see foothills rising up to the base of the Greater Fist of Heaven. The peak itself rises far above the surrounding landscape, its top hidden by a thick wreath of clouds.</description>
<position x="620" y="410" z="0" />
<arc exit="north" move="north" destination="92" />
<arc exit="go" move="go bridge" destination="94" />
</node>
<node id="94" name="North Road, Plains">
<description>A rickety wooden bridge spans a dry riverbed to the north. Tall clumps of grass and thorny bushes grow along the banks, and dried out patches of reeds dot the bottom. A hawk circles slowly overhead, on the lookout for prey.</description>
<position x="620" y="440" z="0" />
<arc exit="south" move="south" destination="95" />
<arc exit="go" move="go bridge" destination="93" />
</node>
<node id="95" name="North Road, Plains">
<description>A bright splash of purple just off the road catches your attention for a moment. A small patch of wildflowers is growing atop a crumbling slab of reddish stone, their brilliant hue standing out sharply against the greyish backdrop. You pause for a moment, and wonder what generous god it was that created this tiny miracle.</description>
<position x="620" y="470" z="0" />
<arc exit="north" move="north" destination="94" />
<arc exit="southeast" move="southeast" destination="96" />
<arc exit="west" move="west" destination="148" />
</node>
<node id="96" name="North Road, Plains">
<description>Small weeds and tufts of grass grow right up to the road's edge, almost obscuring the faint traces of a trail heading westward. The trail appears to head towards the volcanoes, but you can see no signs that anyone has used it for quite a while.</description>
<position x="640" y="490" z="0" />
<arc exit="south" move="south" destination="97" />
<arc exit="northwest" move="northwest" destination="95" />
<arc exit="go" move="go small trail" destination="149" />
</node>
<node id="97" name="North Road, Plains">
<description>The sound of running water seems strangely out of place here, and draws your attention to a small stream flowing beside you. Nothing grows along the rocky banks, not even moss, which seems a bit odd on the only open water for miles.</description>
<position x="640" y="510" z="0" />
<arc exit="north" move="north" destination="96" />
<arc exit="southwest" move="southwest" destination="98" />
</node>
<node id="98" name="North Road, Plains">
<description>The bleached skeleton of some large animal lies partially buried in the dust just off the roadway. Its presence serves as a grim reminder of the fate awaiting any who tarry too long in this harsh, devastated land.</description>
<position x="620" y="530" z="0" />
<arc exit="northeast" move="northeast" destination="97" />
<arc exit="southwest" move="southwest" destination="99" />
</node>
<node id="99" name="North Road, Plains">
<description>A gnarled scrub oak stands lonely guard off to the side of the road. Looking south, the ground slopes slowly up to a sharp ridge of smooth black stone. Northward, the road bends towards your left, skirting the bottom of the eastern volcano.</description>
<position x="600" y="550" z="0" />
<arc exit="northeast" move="northeast" destination="98" />
<arc exit="south" move="south" destination="100" />
</node>
<node id="100" name="North Road, Plains">
<description>You pause here for a moment to examine the two monstrous volcanoes dominating the northern horizon. The easternmost, known as the Greater Fist of Heaven, stretches from the valley floor up into the sky, its snow covered summit disappearing from sight into the clouds. A faint red glow emanates from the Lesser Fist to the west, lighting up the clouds of smoke pouring from its gaping fiery mouth.</description>
<position x="600" y="570" z="0" />
<arc exit="north" move="north" destination="99" />
<arc exit="south" move="south" destination="101" />
</node>
<node id="101" name="North Road, Plains">
<description>Turning your back to the massive obsidian wall to the south, you look out over a broad valley stretching below you to the north. For miles around, the bare sterile earth is a dull rusty red, scattered with grey and black boulders of pumice and basalt. Far off in the distance, you can just make out the silvery reflection of water, and even a hint of green.</description>
<position x="600" y="590" z="0" />
<arc exit="north" move="north" destination="100" />
<arc exit="go" move="go tunnel" destination="102" />
</node>
<node id="102" name="North Road, Tunnel">
<description>Your footsteps echo off the glassy black tunnel walls, and light from the openings to the north and south glitters off sharp facets in the carved stone. You carefully pick your way past piles of jagged obsidian shards stacked haphazardly along the floor.</description>
<position x="600" y="610" z="0" />
<arc exit="north" move="north" destination="101" />
<arc exit="south" move="south" destination="103" />
</node>
<node id="103" name="North Road, Lava Field">
<description>Your view north is partially blocked by a black obsidian ridge rising from the valley floor. Someone has laboriously chopped through the massive glassy wall, creating a tunnel which you can pass through. You can just catch a glimpse of the road north through the tunnel, where it descends into a broad grey valley, and then curves out of sight to the east. A field of frozen flows of lava stretches out to the south, covered with pools of dull yellow ash.</description>
<position x="600" y="630" z="0" />
<arc exit="south" move="south" destination="104" />
<arc exit="go" move="go tunnel" destination="102" />
</node>
<node id="104" name="North Road, Lava Field">
<description>The route descends into the dust filled bowl of an ancient crater. The crater is miles across and ringed with a jagged stone edge, as if smashed into the plain by the fist of an angry god.</description>
<position x="600" y="650" z="0" />
<arc exit="north" move="north" destination="103" />
<arc exit="southwest" move="southwest" destination="105" />
<arc exit="go" move="go path" destination="176" />
</node>
<node id="105" name="North Road, Lava Field">
<description>Occasional flashes of red light up the clouds of smoke pouring from a small cone to the southeast. To the north, a jagged black ridge cuts across the horizon from east to west. Old scratches in the pitted stone mark the trail through this dead valley.</description>
<position x="580" y="670" z="0" />
<arc exit="northeast" move="northeast" destination="104" />
<arc exit="go" move="go old flow" destination="106" />