-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map42_Therenborough_and_Keep.xml
2385 lines (2385 loc) · 226 KB
/
Map42_Therenborough_and_Keep.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="Therenborough and Keep" id="42">
<node id="1" name="Therenborough, Town Gate" note="Town Gate">
<description>The imposing turreted towers of Theren Keep dominate this inland town, standing proud against the sky and seen plainly from every vantage point in the area. Walls of massive stone surround the small, but bustling community, and beyond the open gates to the south are rolling pastures and distant farmsteads. The pedestrians milling around the gate are periodically forced to step aside as paladins in gleaming plate armor ride by on magnificent steeds, heading north toward the castle.</description>
<position x="222" y="840" z="0" />
<arc exit="north" move="north" destination="3" />
<arc exit="go" move="go town gate" destination="2" />
</node>
<node id="2" name="North Road, Barony Pass" note="Map40_Langenfirth_to_Therenborough.xml|Ker'Leor|Langenfirth|Mistwood Forest|Town Gate|Gate">
<description>With one final sweep, the road straightens out from the hilly pastures in the south to stop at a walled village. Looming above the stone boundary is the majestic Theren Keep, its battered towers still an imposing sight to behold.</description>
<position x="222" y="860" z="0" />
<arc exit="south" move="south" />
<arc exit="go" move="go town gate" destination="1" />
</node>
<node id="3" name="Therenborough, Horseman's Run" note="First Land Herald|Herald|newspaper|news stand" color="#00FF00">
<description>This wide dirt pathway borders the southern end of the town, providing riders with easy access to the main streets. A vast square, paved with granite and filled with milling people, opens up to the north. To either side of it, smaller buildings made from dusty red bricks and quaint thatched cottages are scattered between impressive marble structures.</description>
<position x="222" y="820" z="0" />
<arc exit="north" move="north" destination="33" />
<arc exit="east" move="east" destination="32" />
<arc exit="south" move="south" destination="1" />
<arc exit="west" move="west" destination="4" />
</node>
<node id="4" name="Therenborough, Horseman's Run" color="#00FFFF">
<description>Quiet backstreets lead off from this bridle path, overlooking gardens, old courtyards and a pleasant clutter of pink and white cottages with thatched or tiled roofs. Several horses stand sedately at hitching posts, patiently awaiting their owner's return.</description>
<position x="162" y="820" z="0" />
<arc exit="north" move="north" destination="31" />
<arc exit="east" move="east" destination="3" />
<arc exit="northwest" move="northwest" destination="5" />
</node>
<node id="5" name="Therenborough, Arbalest Row">
<description>This shop-lined pedestrian thoroughfare travels around the western side of the towering keep that survives still in all its granite magnificence. Passersby occasionally stop to gape up at the looming tower with its circlet of ferocious stone gargoyles.</description>
<position x="122" y="780" z="0" />
<arc exit="north" move="north" destination="6" />
<arc exit="east" move="east" destination="31" />
<arc exit="southeast" move="southeast" destination="4" />
<arc exit="go" move="go carousel square" destination="26" />
</node>
<node id="6" name="Therenborough, Arbalest Row" color="#00FFFF">
<description>A large cottage made from honey-colored stone faces the street, its open doors emitting a savory aroma of roasted meat and herbs. Climbing rose bushes intertwine over the front, the pure white blossoms enhancing its elegant appearance.</description>
<position x="122" y="740" z="0" />
<arc exit="south" move="south" destination="5" />
<arc exit="northwest" move="northwest" destination="7" />
<arc exit="go" move="go large cottage" destination="25" />
</node>
<node id="7" name="Therenborough, Arbalest Row">
<description>A red-tiled roof with flared eaves hangs over a stylish stacked-stone building. Its bay windows show off colorful displays of fashionable clothing, attracting appraising glances from passing pedestrians.</description>
<position x="82" y="700" z="0" />
<arc exit="southeast" move="southeast" destination="6" />
<arc exit="northwest" move="northwest" destination="8" />
<arc exit="go" move="go stone building" destination="24" />
</node>
<node id="8" name="Therenborough, Arbalest Row">
<description>Gleaming marble columns of the palest pink and blue support a veranda that circles a spacious structure. An engraved bronze plaque is mounted on one of the front columns.</description>
<position x="22" y="660" z="0" />
<arc exit="north" move="north" destination="9" />
<arc exit="southeast" move="southeast" destination="7" />
<arc exit="go" move="go spacious structure" destination="20" />
</node>
<node id="9" name="Therenborough, Arbalest Row">
<description>Arbalest Row ascends up the slope of a hill where it ends at the doors of a small brick theatre. Bronze comedy and drama masks look down from their position above the doors, welcoming those who enter. From this high point, the town of Therenborough spreads out to the south, watched over by the towering keep.</description>
<position x="22" y="640" z="0" />
<arc exit="south" move="south" destination="8" />
<arc exit="go" move="go small theatre" destination="10" />
</node>
<node id="10" name="Theatre, Lobby" note="Theatre">
<description>Memorabilia from former performances decorates the walls and fills a glass case. Tucked in the corner, a small bar offers a selection of liquid refreshments to thirsty theatre-goers during the intermission of the performance. An empty marquee propped near the door waits to announce the next performance.</description>
<position x="62" y="620" z="0" />
<arc exit="out" move="out" destination="9" />
<arc exit="go" move="go paneled door" destination="11" />
<arc exit="go" move="go double doors" destination="12" />
<arc exit="go" move="go hallway" destination="16" />
</node>
<node id="11" name="The Rose of the Theatre, Instruments" note="Rose of the Theatre|Music" color="#FF0000">
<description>Bright plaid fabric hangs against one wall of the shop, serving as a backdrop for a harp whose strings are entwined with white silk roses. Tables and baskets around the perimeter feature instruments and tools for their care. A simple curtain, drawn back and tied out of the way of shoppers, leads to another room of the store.</description>
<position x="82" y="600" z="0" />
<arc exit="go" move="go paneled door" destination="10" />
<arc exit="go" move="go simple curtain" destination="318" />
</node>
<node id="12" name="Theatre, Audience Seating">
<description>The theatre is large and impressive with or without an audience. The pale blue and yellow marble walls and columns are offset by the earthtones of the seats. Affordable seating is available to all -- from the orchestra to the balcony and loges above -- to the dress circle and boxes below. The semi-circular design and the high loft of the balcony tiers allows excellent viewing and hearing from all locations.</description>
<position x="62" y="600" z="0" />
<arc exit="go" move="go rows" destination="13" />
<arc exit="go" move="go rows" destination="14" />
<arc exit="go" move="go rows" destination="15" />
<arc exit="go" move="go double doors" destination="10" />
</node>
<node id="13" name="Theatre, Balcony">
<description>Beautifully stitched cushions in muted shades of autumn grace the chairs, while columns of blue and yellow marble elegantly frame this balcony. A tastefully engraved sign placed within the balcony area reads, Quiet, please, when performances are running.</description>
<position x="32" y="590" z="0" />
<arc exit="out" move="out" destination="12" />
</node>
<node id="14" name="Theatre, Floor Seating">
<description>Upright chairs made from fine pine offer seating at floor level. A clear view of the stage is given to all with no need to shift around to see performers. A small notice on the back of the chair in front of you reads, Quiet, please, when performances are running.</description>
<position x="32" y="610" z="0" />
<arc exit="out" move="out" destination="12" />
</node>
<node id="15" name="Theatre, Loge">
<description>Columns of blue and yellow marble frame the loge. Its seats are covered with soft cloth in shades of autumn. An engraved golden sign placed within the loge reads, Quiet, please, when performances are running.</description>
<position x="32" y="600" z="0" />
<arc exit="out" move="out" destination="12" />
</node>
<node id="16" name="Theatre, Backstage" note="Backstage">
<description>Brightly lit and bustling with activity, this huge room is the hub for performers, stagehands, scenery designers, prop handlers, costumers, wig and make-up artists, all rushing to and fro. There is always a rehearsal or performance to get ready for. Large cabinets stand open spilling their contents on the already cluttered floor. Costumes hang from a wooden rack and a large mirror is propped against the wall allowing for that last minute check.</description>
<position x="-18" y="620" z="0" />
<arc exit="out" move="out" destination="10" />
<arc exit="go" move="go backstage door" destination="17" />
<arc exit="go" move="go curtained doorway" destination="19" />
</node>
<node id="17" name="Theatre, Wings">
<description>Used for storage, as well as providing a workspace for current projects, the wings are the focal point for the more physical aspects of the production. Here, carpenters, painters, builders and designers can work together on such items as scenery, set decor, tableaus and backdrops. During performances, the wings are just as busy, as performers quietly rehearse their lines one last time and stagehands rush to change sets between acts.</description>
<position x="-18" y="600" z="0" />
<arc exit="east" move="east" destination="18" />
<arc exit="go" move="go backstage door" destination="16" />
</node>
<node id="18" name="Theatre, Stage" note="Stage">
<description>A semi-circular stage is surrounded by rows of elegant seating while silver and blue embroidered curtains hang along the sides. Crystal sconces placed around the stage flicker with bright candlelight.</description>
<position x="22" y="600" z="0" />
<arc exit="west" move="west" destination="17" />
</node>
<node id="19" name="Theatre, Dressing Room" note="Dressing Room">
<description>A large common space in the center of the room separates the men's and women's private dressing areas. Sewing tables wait for costumers to work on new creations and make alterations as fitters bring garments by. Tall chairs stand ready for perfomers to take a seat as make-up artists and hairdressers work their magic. Production assistants and stagehands are often seen coming and going with script changes, food deliveries, props and accessories.</description>
<position x="-38" y="620" z="0" />
<arc exit="out" move="out" destination="16" />
</node>
<node id="20" name="Public Baths, Foyer" note="Public Baths|Bathhouse">
<description>The foyer is a study in restrained elegance. Bronze statues line the ivy covered walls and marble columns rise to meet a domed skylight. The baths are well-patronized by those who like to take advantage of both its therapeutic and social benefits. An enormously fat Human waddles in from the Calidarium. He takes a deep breath before heading over to the Frigidarium.</description>
<position x="-18" y="680" z="0" />
<arc exit="north" move="north" destination="21" />
<arc exit="south" move="south" destination="23" />
<arc exit="west" move="west" destination="22" />
<arc exit="out" move="out" destination="8" />
</node>
<node id="21" name="Public Baths, Frigidarium">
<description>The most invigorating of the baths, many choose to finish up their visits with a dip into the cold water. A huge relief, depicting an epic battle between heroic knights and a force of undead, covers all four walls. Perhaps because she has seen it so many times, the Halfling attendant takes no notice of the painting as she waits to hand towels to shivering patrons when they climb out of the bath.</description>
<position x="-18" y="670" z="0" />
<arc exit="south" move="south" destination="20" />
<arc exit="go" move="go bath" destination="348" />
</node>
<node id="22" name="Public Baths, Natatio">
<description>The swimming pool is the most popular spot in the baths, especially for children. Its immense size easily holds the largest number of patrons and seems filled to capacity. Just as many people lounge along the polished wooden deck as are in the water. A group of youngsters of various races scamper past, competing to see who will be first to the diving platform.</description>
<position x="-28" y="680" z="0" />
<arc exit="east" move="east" destination="20" />
<arc exit="climb" move="climb platform" destination="336" />
<arc exit="go" move="go pool" destination="337" />
</node>
<node id="23" name="Public Baths, Calidarium">
<description>Steam rises out of the oval shaped bath causing the tiled floors, marble benches and mosaic lined walls to sweat. Instead of entering the water, most patrons choose to sit on the benches or talk in small groups at the tables as they soak up the the sauna-like effect. The bathers who do brave the boiling water jump in to get a quick dip before moving on to another room.</description>
<position x="-18" y="690" z="0" />
<arc exit="north" move="north" destination="20" />
<arc exit="go" move="go bath" destination="347" />
</node>
<node id="24" name="Tarsha's Emporium" note="Tarsha's Emporium|Clothing" color="#FF0000">
<description>The tinkling of door bells and the rich scents of dried flowers and leather fill this fashionable shop. The walls, covered with a pale blue silk, are offset by dark wood furniture and reflected back through the massive framed mirror that stands at the far end of the shop. Gold gilded cherubs posed above the mirror look down on the room below.</description>
<position x="122" y="700" z="0" />
<arc exit="out" move="out" destination="7" />
</node>
<node id="25" name="The Baron's Table, Dining Room" note="Baron's Table" color="#FF0000">
<description>The dark polished wood of the paneling and tables provides a warm glow to the elegantly furnished dining room. Throne-like chairs with pale yellow silk damask seats are arranged around each table. Glazed windows look out over the town walls, the milky rippled glass turning the surrounding hills and groves into waves of rainbow images. The susurration of quiet conversations rises and falls as diners linger over their meals.</description>
<position x="82" y="740" z="0" />
<arc exit="out" move="out" destination="6" />
</node>
<node id="26" name="Therenborough, Carousel Square">
<description>A massive conical building rises from the cobbles at the square's center, its snowy alabaster surfaces gleaming brilliantly. A bejeweled mosaic set above an oval doorway reads THE CAROUSEL.</description>
<position x="122" y="820" z="0" />
<arc exit="out" move="out" destination="5" />
<arc exit="go" move="go oval doorway" destination="27" />
<arc exit="west" move="west" destination="360" />
</node>
<node id="27" name="Therenborough, The Carousel" note="Carousel|Vault" color="#00FF00">
<description>Exotic tapestries of every possible description drape the wall ringing the Carousel's core. A circular roof supports a vast framework of iron and timbers rising to the building's apex. Countless gears, pulleys and weights within the structure form the strikingly complex and beautiful mechanism which drives the Carousel.</description>
<position x="122" y="830" z="0" />
<arc exit="out" move="out" destination="26" />
<arc exit="go" move="go desk" destination="28" />
<arc exit="go" move="go arch" destination="29" />
<arc exit="south" move="south" destination="349" />
</node>
<node id="28" name="Therenborough, Carousel Desk" note="Lost and Found" color="#00FF00">
<description>A white marble desk spans the width of the western wall. Highly polished brass lanterns hang from the ceiling, and the floor behind the desk is covered in sparkling white tile.</description>
<position x="132" y="830" z="0" />
<arc exit="out" move="out" destination="27" />
</node>
<node id="29" name="Therenborough, Carousel Booth">
<description>A polished steel lever protrudes from the eastern wall of the small, lunat-panelled room, flanking a steel door to the north.</description>
<position x="112" y="830" z="0" />
<arc exit="go" move="go steel door" destination="30" />
<arc exit="go" move="go arch" destination="27" />
</node>
<node id="30" name="Therenborough, Carousel Chamber">
<description>A sturdy vault, set in the back wall, stands ready for your use. The floor is covered in a thick burgundy carpet, and the walls are paneled in polished lunat. Looking at the back wall, you notice a tiny gap between it and the rest of the room. On the wall to the left hangs a colorful tapestry.</description>
<position x="102" y="830" z="0" />
<arc exit="go" move="go steel door" destination="29" />
</node>
<node id="31" name="Therenborough, Claymore Court">
<description>Beneath the spreading branches of an old chestnut tree stands a small cottage, its timbers bursting through whitewashed wattle and daub. Densely cultivated gardens surround the dwelling, and bunches of hulnik grass and plovik stems hang in the front windows.</description>
<position x="162" y="780" z="0" />
<arc exit="east" move="east" destination="33" />
<arc exit="south" move="south" destination="4" />
<arc exit="west" move="west" destination="5" />
<arc exit="go" move="go small cottage" destination="229" />
</node>
<node id="32" name="Therenborough, Horseman's Run">
<description>Tall structures of marble, sparkling in various pale hues, can be seen off to the northeast. Although these magnificent buildings are imposing on their own, they are dwarfed by the towering castle walls that they surround. The murmur of friendly conversation and the shout of a successfully bartered deal can be heard from beyond a high hedgerow that separates the Market Square from this bridle path.</description>
<position x="259" y="820" z="0" />
<arc exit="east" move="east" destination="36" />
<arc exit="west" move="west" destination="3" />
<arc exit="go" move="go hall" destination="351" />
</node>
<node id="33" name="Therenborough, Quadrangle" note="Quadrangle">
<description>The vast quadrangle is paved with blocks of silver-speckled granite and bordered by rows of marble columns interspersed with matching benches. Throngs of people congregate in this popular gathering spot. Every so often an animated speaker addresses the crowds from the public orator's stand.</description>
<position x="222" y="780" z="0" />
<arc exit="north" move="north" destination="34" />
<arc exit="east" move="east" destination="35" />
<arc exit="south" move="south" destination="3" />
<arc exit="west" move="west" destination="31" />
</node>
<node id="34" name="Theren Keep, Approach" note="Theren Keep|Keep|drawbridge">
<description>A timeworn gatehouse rises to the north, its twin towers bearing conspicuous scars from a long-standing siege. The stone and mortar look patched in key places where catapult stones bombarded the stout facade, but there's no indication the gates have ever been breached. A stagnant semi-filled moat impedes further progress towards the Keep, and the sickly-green slime bubbling inside looks and smells like it dates back to the Old Empire.</description>
<position x="222" y="340" z="0" />
<arc exit="south" move="south" destination="33" />
<arc exit="go" move="go ironwood drawbridge" destination="60" />
<arc exit="climb" move="climb narrow ledge" destination="102" />
</node>
<node id="35" name="Therenborough, Claymore Court">
<description>Alabaster marble columns designate the entrance to the busy Market Square. The throngs of people moving in and out of the square represent all walks of life. Fledgling paladins, still awkward in their heavy plate armor, mingle with weathered farmers wearing cloth caps, stout boots and tweed jackets. A silk banner, decorated with paintings that depict items sold in the marketplace, ripples and flutters in the gentle breeze.</description>
<description>Pale marble columns stand out against the night sky, designating the entrance to the Market Square. The thriving marketplace remains open all night, with noble knights mingling with young couples walking hand in hand. A silk banner, decorated with paintings that depict items sold in the market, ripples and flutters in the night breeze.</description>
<position x="282" y="780" z="0" />
<arc exit="east" move="east" destination="40" />
<arc exit="west" move="west" destination="33" />
<arc exit="go" move="go market square" destination="230" />
</node>
<node id="36" name="Therenborough, Horseman's Run">
<description>The bridle path connects the elegant business district along Rutilor Boulevard with the more rustic Lower East Way with its compacted dirt surface and whitewashed fences. Several hitching posts provide a convenient spot for travelers to leave their horses while they attend to business along either pedestrian thoroughfare.</description>
<position x="342" y="820" z="0" />
<arc exit="north" move="north" destination="40" />
<arc exit="northeast" move="northeast" destination="42" />
<arc exit="southwest" move="southwest" destination="37" />
<arc exit="west" move="west" destination="32" />
</node>
<node id="37" name="Therenborough, Tournament Lane">
<description>Connecting the town's center with the massive stone wall that surrounds it, this rustic patch slices through a landscape lush with flowering shrubs and small trees that help to muffle some of the noise wafting from the nearby cosmopolitan streets surrounding Theren Keep. Roughly carved from stone, a water trough sits off to the side waiting to slake the thirst of paladins and their mounts as they travel in search of jousting competitions.</description>
<position x="322" y="840" z="0" />
<arc exit="northeast" move="northeast" destination="36" />
<arc exit="southeast" move="southeast" destination="38" />
</node>
<node id="38" name="Therenborough, Tournament Lane">
<description>Branching off from the main thoroughfare, this hoof-beaten path is wide enough to accommodate the mounted squads patrolling the town's border. Wild rose bushes climb the front of a whitewashed stable, their pink petals not only decorating the building's stark exterior but also perfuming a variety of natural odors wafting from animals resting within its close quarters. Off in the distance, equestrians wearing uniforms of the Therengian Cavalry march in and out of a stacked log outpost.</description>
<position x="342" y="860" z="0" />
<arc exit="east" move="east" destination="39" />
<arc exit="northwest" move="northwest" destination="37" />
<arc exit="go" move="go whitewashed stable" destination="222" />
</node>
<node id="39" name="Therenborough, Tournament Lane">
<description>Crowning the widened path is an arch carved from alabaster, its somewhat translucent white stone standing out against the rural landscape. Planted at the base of a brightly colored sign, large mounds of blue-green hosta hold their formal shape despite the occasional trampling by mischievous children hiding behind the thick leaves in an attempt to get a peek at their favorite champion riding by.</description>
<position x="362" y="860" z="0" />
<arc exit="west" move="west" destination="38" />
<arc exit="go" move="go alabaster arch" destination="182" />
</node>
<node id="40" name="Therenborough, Rutilor Boulevard">
<description>The wide boulevard paved with granite slabs stretches northeastward, providing a home for the town's official buildings. The overall impression here is of elegance with beautiful marble structures that are graceful and well-proportioned in appearance. The tall, leafy trees planted along the street enhance the gleaming expanses of pale marble.</description>
<position x="342" y="780" z="0" />
<arc exit="north" move="north" destination="41" />
<arc exit="south" move="south" destination="36" />
<arc exit="west" move="west" destination="35" />
<arc exit="go" move="go office" destination="322" />
</node>
<node id="41" name="Therenborough, Rutilor Boulevard">
<description>As the granite thoroughfare curves through this part of the city, it passes in front of the Alliance of Exchange building. Created of serene blue marble, the aura of dignity surrounding it is somewhat disturbed by the constant throngs bustling in and out of a pair of towering acanth doors. Knots of traders stand together quietly talking under the shade of neighboring trees while others make their way inside, eager to sell their pelts and goods.</description>
<position x="342" y="680" z="0" />
<arc exit="northeast" move="northeast" destination="56" />
<arc exit="south" move="south" destination="40" />
<arc exit="go" move="go acanth doors" destination="175" />
</node>
<node id="42" name="Therenborough, Lower East Way" color="#00FFFF">
<description>Skinny homes of rough-hewn wood crowd each other for space along this narrow earthen streetfront. An occasional granite cobblestone from the paving farther to the west lies embedded in the ground, ready to trip the unwary. From the east comes the slightest hint of smoke to tickle the nostrils of those who pass.</description>
<position x="382" y="780" z="0" />
<arc exit="east" move="east" destination="44" />
<arc exit="south" move="south" destination="43" />
<arc exit="southwest" move="southwest" destination="36" />
<arc exit="go" move="go thatched cottage" destination="228" />
</node>
<node id="43" name="Therenborough, Shop Yard">
<description>The pressure of countless boots, hooves and sandals has beaten the dirt yard of a shingle-roofed general store to a hard packed finish. Two squared wooden pillars frame a heavy pine door leading into the shop.</description>
<position x="382" y="820" z="0" />
<arc exit="north" move="north" destination="42" />
<arc exit="go" move="go pine door" destination="191" />
</node>
<node id="44" name="Therenborough, Lower East Way" color="#00FFFF">
<description>A low-lying stone wall surrounds a wide, grassy yard shaded by a large oak tree. Underneath the tree stands an anvil and forge which mark the nearby building as the home of the local blacksmith.</description>
<position x="402" y="780" z="0" />
<arc exit="east" move="east" destination="45" />
<arc exit="west" move="west" destination="42" />
<arc exit="go" move="go iron gate" destination="220" />
</node>
<node id="45" name="Therenborough, Lower East Way" color="#00FFFF">
<description>An unpaved circular plaza lies to the east, dominated by a two-story chapel surrounded by a low wall of rough-hewn stone. The wooden homes, stuffed one against another here at the edge of the plaza, thin somewhat to the west.</description>
<position x="422" y="780" z="0" />
<arc exit="east" move="east" destination="46" />
<arc exit="west" move="west" destination="44" />
</node>
<node id="46" name="Therenborough, Chapel Plaza West" color="#00FFFF">
<description>A small two story chapel, surrounded by a rough-hewn stone wall, rises here in the midst of a circular dirt plaza. A double iron gate, swung wide and pegged open with two wooden stakes, beckons visitors to enter the confines of the walls to worship. Several side streets meet at this central point to meander off to other parts of the town.</description>
<position x="442" y="780" z="0" />
<arc exit="northeast" move="northeast" destination="53" />
<arc exit="southeast" move="southeast" destination="47" />
<arc exit="west" move="west" destination="45" />
<arc exit="go" move="go iron gate" destination="201" />
</node>
<node id="47" name="Therenborough, Chapel Plaza South" color="#00FFFF">
<description>The stone wall surrounding the town chapel has crumbled in one corner. Many of its stones appear to be missing, most likely carried away by peasants to be used elsewhere. A sloppy patchwork of mortar has been slapped to the wall, but much of that has fallen too and lies scattered about the ground.</description>
<position x="502" y="840" z="0" />
<arc exit="northeast" move="northeast" destination="51" />
<arc exit="southwest" move="southwest" destination="48" />
<arc exit="northwest" move="northwest" destination="46" />
</node>
<node id="48" name="Therenborough, Narrow Alleyway" color="#00FFFF">
<description>A sharp bend in the street offers passage to a narrow alleyway which stretches off to the south and beyond. A teeming mob of ramshackle homes have gathered along the way, jostling each other for space in what is obviously the poorer section of town. To the northeast rises a small chapel surrounded by a low stone wall.</description>
<position x="482" y="860" z="0" />
<arc exit="northeast" move="northeast" destination="47" />
<arc exit="south" move="south" destination="49" />
</node>
<node id="49" name="Therenborough, Narrow Alleyway" color="#00FFFF">
<description>The street takes a sharp bend here, turning east into a narrow alleyway and widening to the north before disappearing around a bend to the northeast. Most of the homes here are of mud brick and thatch rather than the more precious wood plank in evidence elsewhere in the village.</description>
<position x="482" y="880" z="0" />
<arc exit="north" move="north" destination="48" />
<arc exit="east" move="east" destination="50" />
</node>
<node id="50" name="Therenborough, Alley's End">
<description>Dominating this end of the alley is a looming pile of boards which could only be called a building by the most optimistic of persons. Nailed together at almost every angle imaginable, the motley assortment of timber used to build the place looks as if it could be blown over by the sneeze of a sickly Halfling. What seems to be intended as the building's door lies ajar at a bizzare angle, as if it were never really meant to be closed but instead was added as an artistic afterthought.</description>
<position x="502" y="880" z="0" />
<arc exit="west" move="west" destination="49" />
<arc exit="go" move="go rickety door" destination="192" />
</node>
<node id="51" name="Therenborough, Chapel Plaza East" color="#00FFFF">
<description>The main thoroughfare of the city merges here with a wide earth plaza, in the midst of which stands a wall of rough-hewn stone. The second story of the Therenborough chapel peeks over the top of the wall, as if eager to escape its stony confines.</description>
<position x="562" y="780" z="0" />
<arc exit="east" move="east" destination="52" />
<arc exit="southwest" move="southwest" destination="47" />
<arc exit="northwest" move="northwest" destination="53" />
</node>
<node id="52" name="Therenborough, Pikeman Lane">
<description>A cheery two-story building of sturdy oak stands tall here at the far eastern reaches of the city. Grey smoke wafts pleasantly from a red brick chimney rising above the roof at the north wall, and in the glass windows of the second story can be seen curtains of simple white linen. Thick double doors of smoke-stained wood stand swung wide at the south wall, welcoming travelers to enter from the street.</description>
<position x="602" y="780" z="0" />
<arc exit="west" move="west" destination="51" />
<arc exit="go" move="go double doors" destination="194" />
</node>
<node id="53" name="Therenborough, Chapel Plaza North" color="#00FFFF">
<description>A neatly-trimmed hedgerow abuts the stone wall surrounding the chapel here in the town center. To the northwest runs a small side street lined with houses of mud brick and thatch, while to the south and southeast one can rejoin the main city thoroughfare.</description>
<position x="502" y="720" z="0" />
<arc exit="southeast" move="southeast" destination="51" />
<arc exit="southwest" move="southwest" destination="46" />
<arc exit="west" move="west" destination="54" />
</node>
<node id="54" name="Therenborough, Alabaster Road" color="#00FFFF">
<description>Nestled here among simple homes of wood and thatch is a slightly larger building of worked stone. Wide steps lead up to a porch of virgin pine boards. Hanging over the porch is a small sign which marks the place as the home of the local midwife.</description>
<position x="482" y="720" z="0" />
<arc exit="east" move="east" destination="53" />
<arc exit="west" move="west" destination="55" />
<arc exit="go" move="go wide steps" destination="216" />
</node>
<node id="55" name="Therenborough, Alabaster Road" color="#00FFFF">
<description>Neat rows of small country homes line both sides of the street. A building of dark pine squats in the dusty cul-de-sac at the end of the lane, well-ordered displays of wooden furniture gracing its porch.</description>
<position x="462" y="720" z="0" />
<arc exit="east" move="east" destination="54" />
<arc exit="go" move="go dark building" destination="208" />
</node>
<node id="56" name="Therenborough, Rutilor Boulevard">
<description>The Bank of Therenborough sits at precise right angles to the street here. The once sharp edges of its steps have been muted by the footfalls of countless customers, and time has weathered the marble walls to a faded blue. A towering statue of Kertigen stands in a welcoming pose at the entrance, forever fastening his gaze upon the crowds hurrying beneath his feet. The building thrums to the pulse of commerce as people arrive to settle their financial affairs.</description>
<position x="382" y="640" z="0" />
<arc exit="northeast" move="northeast" destination="57" />
<arc exit="southwest" move="southwest" destination="41" />
<arc exit="go" move="go marble entrance" destination="171" />
</node>
<node id="57" name="Therenborough, Rutilor Boulevard">
<description>The august walls of Telomin Hall rise before you. Formed of massive limestone blocks joined without the aid of mortar, the building boasts slim colonnades supporting a grey slate roof. A shining silver sword has been mounted over the hall entrance in honor of an unknown paladin hero. Sounds from the nearby commercial district are strangely muted as if afraid to disturb the serious matters taking place behind these walls.</description>
<position x="402" y="620" z="0" />
<arc exit="north" move="north" destination="58" />
<arc exit="southwest" move="southwest" destination="56" />
<arc exit="go" move="go telomin hall" destination="307" />
</node>
<node id="58" name="Therenborough, Rutilor Boulevard">
<description>Tangled vines of honeysuckle embrace the garden gate while low-growing maugwort bushes line either side of the avenue. Shaded by tall oak trees, a low garden bench invites passersby to sit and enjoy the fragrances of sirese flowers and honeysuckle wafting through the air. A white gate leads into the depths of the garden.</description>
<position x="402" y="600" z="0" />
<arc exit="northeast" move="northeast" destination="59" />
<arc exit="south" move="south" destination="57" />
<arc exit="go" move="go sandstone building" destination="169" />
<arc exit="go" move="go garden gate" destination="237" />
</node>
<node id="59" name="Therenborough, Rutilor Boulevard">
<description>Abruptly, the boulevard comes to a halt, its granite paving making way for the cobblestones of the plaza facing the Amphitheatre. Large enough to almost hold its own against the bulk of the nearby Keep, the Amphitheatre is where warriors test their prowess, create a reputation or lose their lives. People hurry towards its marble arches, eager to fight or watch blood spill on the sand. The cool marble sides and columns contradict the conflict that has been its livelihood for generations.</description>
<position x="462" y="540" z="0" />
<arc exit="southwest" move="southwest" destination="58" />
<arc exit="go" move="go marble amphitheatre" destination="241" />
<arc exit="go" move="go alabaster arch" destination="246" />
</node>
<node id="60" name="Theren Keep, Gatehouse">
<description>Buttressed towers stand to either side, housing the drawbridge mechanisms and a half-raised portcullis rusted in place from years of disuse. The main keep looms to the north beyond an open courtyard, stretching northwest toward some exterior buildings and east where a small grove of trees brightens the landscape.</description>
<position x="242" y="300" z="0" />
<arc exit="north" move="north" destination="62" />
<arc exit="northeast" move="northeast" destination="61" />
<arc exit="northwest" move="northwest" destination="63" />
<arc exit="go" move="go ironwood drawbridge" destination="34" />
</node>
<node id="61" name="Theren Keep, Sicle Grove" note="Sicle Grove">
<description>Lush grass and tiny wildflowers blanket the ground beneath a small grove of sicle trees, offering a pleasant diversion from the stark backdrop of Theren Keep. A well-branched young sicle tree is securely rooted beside an old gnarled stump, a symbolic motion by the Baron and his garrison to reestablish the honorable name of Theren and restore the keep to its former glory.</description>
<position x="262" y="280" z="0" />
<arc exit="southwest" move="southwest" destination="60" />
<arc exit="west" move="west" destination="62" />
</node>
<node id="62" name="Theren Keep, Bailey">
<description>While the walls of Theren Keep bear telltale scars of siege and war, a newly-constructed ballista assumes the charge of her inner defenses. Skeins of twisted cord notch the weapon's deadly ammunition -- a half score of long, razor-sharp arrows aimed southward should the mighty gatehouse fall to attackers. A tall wooden rack contains more lethal shafts beside a crumpled tarpaulin, used to protect the ballista during inclement weather.</description>
<position x="242" y="280" z="0" />
<arc exit="east" move="east" destination="61" />
<arc exit="south" move="south" destination="60" />
<arc exit="west" move="west" destination="63" />
</node>
<node id="63" name="Theren Keep, Bailey">
<description>An aging heavy catapult lies abandoned at this junction in the courtyard, with only a broad, wooden frame and broken crossbeam to distinguish it as a siege engine. A junk pile near the outer rampart reveals the splintered catapult arm and its water-logged skeins, useless now, but at one time capable of raining death far beyond the barony's walls in the form of massive boulders or fiery concoctions.</description>
<position x="222" y="280" z="0" />
<arc exit="north" move="north" destination="70" />
<arc exit="east" move="east" destination="62" />
<arc exit="southeast" move="southeast" destination="60" />
<arc exit="northwest" move="northwest" destination="64" />
</node>
<node id="64" name="Theren Keep, Bailey">
<description>The persistent sounds of hooves clomping on solid earth and of neighing signals the presence of the Baron's stables. A deep-rutted path leads north through patches of dry grass, and a small tower hovers to the east, guarding the stone entryway.</description>
<position x="182" y="240" z="0" />
<arc exit="north" move="north" destination="66" />
<arc exit="east" move="east" destination="70" />
<arc exit="southeast" move="southeast" destination="63" />
<arc exit="go" move="go baron's stables" destination="65" />
</node>
<node id="65" name="Lasa Morit Livery, Stable Yard" note="Lurellan">
<description>A slight haze of red dust coats the split rails of the small paddock connecting a long thatch-roofed stable to a squat red brick office. Standing in the shadow of a lone tree, a small herd of horses of varying shade and size patiently whisk away flies with their tails. One battle-hardened horse remains alone near the water trough, stomping imperiously as he glances repeatedly toward the gate.</description>
<description>Shadowy forms moving restlessly near the split rails of the small paddock connecting a long thatch-roofed stable to a squat red brick office bear little resemblance to horses, until one of them whickers a soft greeting. A stray beam of light cast through the stable's open door rests on the form of a battle-hardened horse keeping a lonely vigil through the night.</description>
<position x="162" y="240" z="0" />
<arc exit="go" move="go rail gate" destination="64" />
<arc exit="go" move="go stable" destination="326" />
<arc exit="go" move="go office" destination="328" />
</node>
<node id="66" name="Theren Keep, Bailey">
<description>The dirt trail gradually turns to mud as it passes a small shed protruding from the western parapet, and a tall, fractured rampart lingers to the north, opposing the parapet's even crenellations with jagged edges that bruise the daytime sky.</description>
<description>The dirt trail gradually turns to mud as it passes a small shed protruding from the western parapet, and a tall, fractured rampart lingers to the north, opposing the parapet's even crenellations with jagged edges that bruise the nighttime sky.</description>
<description>The dirt trail gradually turns to mud as it passes a small shed protruding from the western parapet, and a tall, fractured rampart lingers to the north, opposing the parapet's even crenellations with jagged edges that bruise the nighttime sky. Towards the east caravan tracks lead to the Trader stables.</description>
<description>The dirt trail gradually turns to mud as it passes a small shed protruding from the western parapet, and a tall, fractured rampart lingers to the north, opposing the parapet's even crenellations with jagged edges that bruise the daytime sky. Towards the east caravan tracks lead to the Trader stables.</description>
<position x="182" y="200" z="0" />
<arc exit="north" move="north" destination="68" />
<arc exit="south" move="south" destination="64" />
<arc exit="go" move="go small shed" destination="67" />
<arc exit="east" move="east" destination="320" />
</node>
<node id="67" name="Theren Keep, Storage Shed" note="Storage Shed|Shed">
<description>Boxes, crates and barrels of all sizes line the walls from corner to corner midst a thick layer of dust and unsightly rat droppings. An uprooted floorboard reveals a possible underground passage, but the opening is far too small for even a Halfling.</description>
<position x="162" y="200" z="0" />
<arc exit="out" move="out" destination="66" />
</node>
<node id="68" name="Theren Keep, Bailey">
<description>The outer wall runs diagonally from the northwest parapet, turning southward as it skirts the main courtyard. Here, the upper rampart has fallen into complete ruin -- first weakened by enemy bombardment, then broken off in the final assault and toppled into the moat. In spite of the damage, a rickety wooden ladder still leans against the crumbling wall-walk.</description>
<position x="182" y="160" z="0" />
<arc exit="south" move="south" destination="66" />
<arc exit="climb" move="climb wooden ladder" destination="69" />
</node>
<node id="69" name="Theren Keep, Ruined Wall-Walk">
<description>Crumbled stone shifts underfoot with granulated mortar, but the rampart's sheer width makes it safe enough that a drunken bard would have trouble slipping over the side. An awful stench rises from below, and glancing into the moat you'd guess this is where most of the Keep's refuse is discarded.</description>
<position x="162" y="160" z="0" />
<arc exit="climb" move="climb wooden ladder" destination="68" />
<arc exit="none" move="jump moat" destination="112" />
</node>
<node id="70" name="Theren Keep, Entrance">
<description>A squat drum-tower overlooks the forebuilding, warding the entrance with ruthless crossbow fire from arrow loops along its battle-scarred walls. Ascending through engraved marble arches, a series of chiseled stone steps leads into the Baron's resurging stronghold.</description>
<position x="222" y="240" z="0" />
<arc exit="south" move="south" destination="63" />
<arc exit="west" move="west" destination="64" />
<arc exit="go" move="go stone steps" destination="71" />
</node>
<node id="71" name="Theren Keep, Forebuilding" note="Forebuilding">
<description>At first glance, this chamber appears quite innocuous. Grey stone steps lead down to the courtyard, and huge, black walnut doors welcome guests like lethargic watchmen. However, machicolations disguised as lion's gullets and cleverly concealed murder holes reaffirm this stronghold shall always be prepared to defend itself.</description>
<position x="222" y="220" z="0" />
<arc exit="down" move="down" destination="70" />
<arc exit="go" move="go huge doors" destination="72" />
</node>
<node id="72" name="Theren Keep, Entry Hall">
<description>Twin rows of gleaming plate armor stand along the lengthy hallway, resplendent in shimmering surcoats of blue and gold. A heavy wooden beam protrudes from a nearby pedestal, placed so that it won't disrupt the pristine view, but still close at hand should the entrance need to be barred. The polished marble floor radiates a soft, blue luminescence as it ripples northward into flickering shadows, like moonlight on the open water.</description>
<position x="222" y="180" z="0" />
<arc exit="north" move="north" destination="73" />
<arc exit="go" move="go huge doors" destination="71" />
</node>
<node id="73" name="Theren Keep, Gallery">
<description>A row of evenly spaced torches burns brightly to illuminate the way along this long gallery that stretches to the east. A large tarpaulin, nailed to the wall, has replaced the old tapestries. Blue-marbled tiles lead southward through a well-lit entry hall.</description>
<position x="222" y="160" z="0" />
<arc exit="east" move="east" destination="74" />
<arc exit="south" move="south" destination="72" />
</node>
<node id="74" name="Theren Keep, Gallery">
<description>Voices and laughter echo throughout the gallery, originating from a granite archway and the keep's central hall beyond. A majestic standard hangs upon the wall in plain view, so that all who enter or exit the Baron's court shall know who it is that offers them hearth and hospitality.</description>
<position x="242" y="160" z="0" />
<arc exit="east" move="east" destination="75" />
<arc exit="west" move="west" destination="73" />
<arc exit="go" move="go side passage" destination="76" />
<arc exit="go" move="go granite archway" destination="125" />
</node>
<node id="75" name="Theren Keep, Gallery">
<description>The corridor halts before a drystone wall, recently constructed in a manner unlike that of the surrounding masonry. A broken shovel litters the ground, quite out of place considering the rich tapestries and extravagant weapon displays to either side. Southwards, a crude stairway leads down to the lower levels.</description>
<position x="382" y="160" z="0" />
<arc exit="west" move="west" destination="74" />
<arc exit="climb" move="climb crude stairway" destination="133" />
</node>
<node id="76" name="Theren Keep, Corridor">
<description>Spanning roughly ten feet across, this dim corridor ranges southward to a guard's antechamber. Thousands of opaque tiles form a vivid mural illustrating the keep before it was razed, silhouetted against a clear blue sky and the rising sun.</description>
<position x="242" y="180" z="0" />
<arc exit="south" move="south" destination="77" />
<arc exit="climb" move="climb spiral staircase" destination="80" />
<arc exit="go" move="go gallery" destination="74" />
</node>
<node id="77" name="Theren Keep, Ward" note="Ward">
<description>Light and heavy crossbows hang from a convenient rack, each weapon accompanied with a score of deadly quarrels. A simple table and chair are the only other furniture in this spartan guard post, yielding to a lengthy corridor northwards.</description>
<position x="242" y="220" z="0" />
<arc exit="north" move="north" destination="76" />
<arc exit="go" move="go stone arch" />
<arc exit="go" move="go deobar door" destination="78" />
</node>
<node id="78" name="Theren Keep, Garrison Hall" note="Garrison Hall">
<description>This expansive bay accommodates a score of professional soldiers, though ample space remains for twice that number if needs be. Judging from the perfectly aligned cots and footlockers, the Captain of the Guard keeps his charges orderly and well-disciplined -- even mattresses reserved for infrequent mercenaries lay neatly in the corner.</description>
<position x="242" y="240" z="0" />
<arc exit="east" move="east" destination="79" />
<arc exit="go" move="go deobar door" destination="77" />
</node>
<node id="79" name="Theren Keep, Armory" note="Armory|Tad Deshon" color="#FF0000">
<description>Greatswords, battle axes and maces join an immense inventory of weapons staged around the room, and elaborate suits of plate and chain await champions bold enough to don them in Theren's name. Somehow, a small writing desk littered with scrolls and ledgers squeezes midst the armaments, where a scribe reluctantly logs every piece of equipment.</description>
<position x="262" y="240" z="0" />
<arc exit="west" move="west" destination="78" />
</node>
<node id="80" name="Second Floor, Hallway">
<description>Thin sunlight strays through a rough, cross-shaped arrow loop, betraying a flurry of dust stirred up by your movements. A sturdy oak door leads out to the parapet, and a spiral staircase winds downward to the first floor.</description>
<description>Thin moonlight strays through a rough, cross-shaped arrow loop, betraying a flurry of dust stirred up by your movements. A sturdy oak door leads out to the parapet, and a spiral staircase winds downward to the first floor.</description>
<position x="322" y="180" z="0" />
<arc exit="south" move="south" destination="81" />
<arc exit="climb" move="climb spiral staircase" destination="76" />
<arc exit="go" move="go oak door" destination="120" />
</node>
<node id="81" name="Second Floor, Hallway">
<description>Dull, featureless stone marks this interminable hallway, and a glimpse in either direction promises little if nothing better. A flight of short steps ascends to the keep's upper echelons, straining half the corridor's length just to reach the next floor.</description>
<position x="322" y="220" z="0" />
<arc exit="north" move="north" destination="80" />
<arc exit="south" move="south" destination="82" />
<arc exit="climb" move="climb short steps" destination="88" />
</node>
<node id="82" name="Theren Keep, Hall of Knights" note="Hall of Knights|Knights">
<description>Heads, horns and furs from beasts both mundane and monstrous decorate the freshly-painted walls of the Hall of Knights, where the Baron's warriors congregate when not feasting in the Great Hall or sparring in the courtyard. The castellan's office looms beyond an acanth table strewn with local maps and games of strategy, and the keep's chapel lingers to the east like a dull afterthought.</description>
<position x="322" y="260" z="0" />
<arc exit="north" move="north" destination="81" />
<arc exit="east" move="east" destination="83" />
<arc exit="go" move="go castellan's office" destination="84" />
<arc exit="go" move="go small closet" destination="85" />
</node>
<node id="83" name="Theren Keep, Chapel" note="Chadatru|pilgrim's badge|altar|shrine-2-03" color="#A6A3D9">
<description>Sunlight is welcomed into the Chapel of Chadatru by the rainbow colors of a stained glass window set in the eastern wall. A richly embroidered tapestry serves as a backdrop to a polished ash altar carved with the image of a golden lion upon its surface. Simple oak benches have been placed here so the devout can come and observe the first rays of dawn blaze into existence across the face of the window, casting its fiery light across the altar of the god of justice.</description>
<description>A polished ash altar has been placed here so the devout can come and observe the god of justice.</description>
<description>Tapered candles provide a warm light for the Chapel of Chadatru despite the dark of night. Even in the dim light the stained glass window can be viewed. A richly embroidered tapestry serves as a backdrop to a polished ash altar carved with the image of a golden lion upon its surface. Oak benches have been placed here so the devout can come and observe the first rays of dawn blaze into existence across the face of the window and cast its fiery light across the altar of the god of justice.</description>
<description>A polished ash altar has been placed here so the devout can come and observe the god of justice.</description>
<position x="342" y="260" z="0" />
<arc exit="west" move="west" destination="82" />
<arc exit="go" move="go silk curtain" destination="86" />
<arc exit="go" move="go marble archway" destination="87" />
</node>
<node id="84" name="Southwest Tower, Castellan's Office" note="GL Paladin|Cleworth|RS Paladin|tithe box" color="#FF8000">
<description>Everything in this room speaks of a sharp, well-organized mind. Not a yard of floor space goes unoccupied, and the castellan wastes no effort on frivolous artwork or tapestries. Instead, books and ledgers line the shelves, all neatly aligned according to size, and a wide desk bears a detailed floor plan of the Keep.</description>
<position x="302" y="280" z="0" />
<arc exit="out" move="out" destination="82" />
</node>
<node id="85" name="Theren Keep, Garderobe">
<description>The knights enjoy a private latrine reserved for their use. Fresh herbs are scattered about the floor that give up their scent when crushed underfoot. Bundles of straw lay handy and a half-filled wooden bucket of water stands to one side of some overturned chamber pots. While the narrow chute has been scrubbed as far as is possible, the rest is mercifully obstructed from view.</description>
<position x="322" y="270" z="0" />
<arc exit="out" move="out" destination="82" />
</node>
<node id="86" name="Southeast Tower, Aumbry">
<description>Once used as a storage place for ceremonial vessels, the aumbry now serves as a home for rats and other vermin. Dusty cobwebs flutter in every corner, anchored by dessicated husks of spider's prey, and in a few instances, the spiders themselves.</description>
<position x="342" y="270" z="0" />
<arc exit="out" move="out" destination="83" />
</node>
<node id="87" name="Second Floor, Barricade">
<description>Sturdy wooden planks nailed across the northern wall of this room block off all access to the ruined Northeast tower. A large tarpaulin stretches across the wooden barricade to keep the worst of the wind and moisture out.</description>
<position x="362" y="260" z="0" />
<arc exit="go" move="go marble archway" destination="83" />
</node>
<node id="88" name="Third Floor, Hallway" note="Third Floor|3rd Floor">
<description>Colorful frescos beautify the walls with bright pastels and soft earthtones, quelling the drab ambience of a stairwell angling down to the second floor. An assortment of gold and indigo curtains introduces a broad balcony to the east, overlooking the great hall but largely concealed from the occupants below.</description>
<position x="382" y="220" z="0" />
<arc exit="north" move="north" destination="101" />
<arc exit="south" move="south" destination="89" />
<arc exit="go" move="go broad balcony" destination="100" />
<arc exit="climb" move="climb dark stairwell" destination="81" />
</node>
<node id="89" name="Third Floor, Hallway">
<description>The southwest tower harbors a solid, steel-bound door, bolted shut with broad bands of metal. Its dark grey fixtures pulse in and out of shadow as if suffused with a restless spirit, foregoing the Starry Road to fulfill a tragic life. Eastwards, the hallway ventures through the infamous guest quarter, while blithe embellishments illuminate the north.</description>
<position x="382" y="240" z="0" />
<arc exit="north" move="north" destination="88" />
<arc exit="east" move="east" destination="90" />
</node>
<node id="90" name="Third Floor, Guest Hall">
<description>A fine oil painting distinguishes the quaint foyer to one of several apartments reserved for honored guests. Despite slender arrow loops housed in the embattlement, the trappings here look every bit as comfortable as the finest inn in Riverhaven.</description>
<position x="402" y="240" z="0" />
<arc exit="east" move="east" destination="91" />
<arc exit="west" move="west" destination="89" />
<arc exit="go" move="go acanth door" destination="99" />
</node>
<node id="91" name="Third Floor, Guest Hall">
<description>The scent of recently painted wood lingers where a restored architrave has replaced a severely damaged doorway. The sturdy door is made of carved deobar, graced with a shiny, new brass doorknob. Fresh rush matting muffles every footstep ensuring that guests are not disturbed as bustling servants go about their daily chores.</description>
<position x="422" y="240" z="0" />
<arc exit="east" move="east" destination="92" />
<arc exit="west" move="west" destination="90" />
<arc exit="go" move="go deobar door" destination="98" />
</node>
<node id="92" name="Third Floor, Guest Hall">
<description>Woven rush matting cushions your footsteps as the hallway veers past the southeast tower and west beyond the common guest suites. Framed paintings of charming pastoral scenes line the walls and a fine porcelain vase, complete with fresh flowers stands on a marble pedestal.</description>
<position x="442" y="240" z="0" />
<arc exit="north" move="north" destination="93" />
<arc exit="west" move="west" destination="91" />
<arc exit="go" move="go sana'ati door" destination="96" />
</node>
<node id="93" name="Third Floor, Hallway">
<description>A side balcony to the west provides a lofty perch for spying on the great hall, visible through a tasseled silk curtain fluttering from a burnished brass rod. The sconces along the wall remain empty for one reason or another, throwing the walkway into near darkness.</description>
<position x="442" y="220" z="0" />
<arc exit="north" move="north" destination="94" />
<arc exit="south" move="south" destination="92" />
<arc exit="go" move="go side balcony" destination="95" />
</node>
<node id="94" name="Third Floor, Barricade">
<description>Sturdy wooden planks nailed across the northern wall of this room block off all access to the ruined Northeast tower. A large tarpaulin stretches across the wooden barricade to keep the worst of the wind and moisture out.</description>
<position x="442" y="200" z="0" />
<arc exit="south" move="south" destination="93" />
</node>
<node id="95" name="Third Floor, East Balcony">
<description>The damp of the stone wall is somewhat mollified by the vivid tapestries that grace this balcony. The flickering light of a single torch sheds a pool of feeble light onto the gleaming mahogany deck. A handsome banister gleams with freshly applied polish, the smooth lines of its curved posts testifying to its newness. Down below, the hall thrives with newfound effervescence.</description>
<position x="422" y="220" z="0" />
<arc exit="out" move="out" destination="93" />
</node>
<node id="96" name="Southeast Tower, Royal Guest Suite" note="Royal Guest Suite">
<description>More queen's parlor than baron's guest chamber, this comfortable apartment could kindle a romantic spark between the most frigid couple. Rich blue-gold curtains frame a shuttered window, and an exquisite sandalwood dresser offers sumptuous edibles fresh from the kitchen. Lush floral carpets shroud the stone floor embellished with soft pink rose petals, while a comfy loft lounges below a skylight of crystalline glass polished to a breathtaking sheen.</description>
<position x="442" y="250" z="0" />
<arc exit="go" move="go comfy loft" destination="97" />
<arc exit="go" move="go sana'ati door" destination="92" />
</node>
<node id="97" name="Southeast Tower, Loft">
<description>Sunlight filters through panes of shimmering crystalline glass, spanning the entire roof of this secluded loft. A sloping bedframe swept with layered down comforters provides guests with a luxuriant cradle for romantic diversions or a simple hideaway to enjoy the pristine skyward view.</description>
<description>The night sky is visible through panes of shimmering crystalline glass, spanning the entire roof of this secluded loft. A sloping bedframe swept with layered down comforters provides guests with a luxuriant cradle for romantic diversions or a simple hideaway to enjoy the pristine skyward view.</description>
<position x="452" y="250" z="0" />
<arc exit="down" move="down" destination="96" />
</node>
<node id="98" name="Theren Keep, Guest Chamber">
<description>Smelling of lavender and polish, this room bears the hallmarks of refurbishment -- fresh paint and obviously new furniture. The four-poster bed is resplendent with satin covers, plump pillows, freshly laundered bed linen, and small petal-filled muslin satchels tied with a silk ribbon. An elegant high-backed chair stands in one corner next to a small glass case. A candelabrum with tall candles stands on a glossy cabinet with brass hinges and handles.</description>
<position x="422" y="250" z="0" />
<arc exit="go" move="go deobar door" destination="91" />
</node>
<node id="99" name="Theren Keep, Guest Chamber">
<description>More honeymoon suite than common guest room, the romantic ambience tantalizes your senses. Freshly laden herbs cover the floor, their sweet scent mingled with jasmine and lavender, and a cozy fireplace contributes to the heady aroma, crackling at the foot of a large canopied bed. Soft satin pillows shimmer in the light, awaiting their lover's embrace.</description>
<position x="402" y="250" z="0" />
<arc exit="go" move="go acanth door" destination="90" />
</node>
<node id="100" name="Third Floor, West Balcony">
<description>This elegant balcony stands midway between the tiled ceiling and marble floor of the great hall. Seasoned mahogany enhances the decor with its deep, reddish brown hue, and luxurious chairs offer the hospitality one would anticipate in a prince's theatre, much less a stone-walled keep. Nestled in shadow, you have an excellent view of the hall below.</description>
<position x="402" y="220" z="0" />
<arc exit="out" move="out" destination="88" />
</node>
<node id="101" name="Third Floor, Hallway">
<description>The passageway halts before a reinforced ironwood door with elaborate figures etched around the frame. Faint scuffmarks blemish the door's threshold, and a stout lock ensures the northwest tower remains offlimits to all but the Baron himself.</description>
<position x="382" y="200" z="0" />
<arc exit="south" move="south" destination="88" />
<arc exit="go" move="go ironwood door" destination="117" />
</node>
<node id="102" name="Theren Keep, Moat" note="Moat" color="#0000FF">
<description>A mound of slimy-green refuse coagulates here, providing a shaky foothold and limited view beyond the moat's filthy walls. The gatehouse looms overhead like a gaping maw, and a narrow ledge leads upwards through a patch of slippery moss. Brackish water oozes east and west, shallow enough that even a Halfling could wade through without much difficulty.</description>
<position x="222" y="320" z="0" />
<arc exit="east" move="swim east" destination="103" />
<arc exit="west" move="swim west" destination="108" />
<arc exit="climb" move="climb narrow ledge" destination="34" />
</node>
<node id="103" name="Theren Keep, Moat" color="#0000FF">
<description>Standing well over twice the height of a Human, the moat's stone walls muffle all sounds except the faint trickle of water. The mildewed waterlines reflect the barony's decline and seep lower with each passing year, falling into decay and corruption like the wizard-kings of the Seven Crown Empire.</description>
<position x="422" y="320" z="0" />
<arc exit="northeast" move="swim northeast" destination="104" />
<arc exit="west" move="swim west" destination="102" />
</node>
<node id="104" name="Theren Keep, Moat" color="#0000FF">
<description>Thriving stoneworts nestle amongst hardened lime deposits against the wall, their whorly stalks striving forth in defiance of the brackish water. Intermittent splashes disturb the silence, and darkness blankets the channel which curves around the southeastern edge of the Keep.</description>
<position x="462" y="280" z="0" />
<arc exit="north" move="swim north" destination="105" />
<arc exit="southwest" move="swim southwest" destination="103" />
</node>
<node id="105" name="Theren Keep, Moat" color="#0000FF">
<description>A nearly imperceptible current flows from north to south, bringing with it a nagging infestation of hungry mosquitos. Bobbing along the surface, a discarded chamberpot teeters to one side, revealing a dark, foul-looking liquid.</description>
<position x="462" y="200" z="0" />
<arc exit="north" move="swim north" destination="106" />
<arc exit="south" move="swim south" destination="104" />
</node>
<node id="106" name="Theren Keep, Moat" color="#0000FF">
<description>Thick vines entangle this portion of the keep, from the topmost parapet to the murky waters swirling afoot. The long, twisted tendrils obscure the stonework completely, gathering at the waterline where striders and beetles skitter between the leaves. Oddly, the temperature seems somewhat cooler in this location.</description>
<position x="462" y="120" z="0" />
<arc exit="north" move="swim north" destination="107" />
<arc exit="south" move="swim south" destination="105" />
</node>
<node id="107" name="Theren Keep, Moat" color="#0000FF">
<description>The moat halts abruptly, obstructed by remnants of what was once the northeast Keep. Even from this poor vantage point, the devastation is frightening. The northeast tower lies sideways across the moat, as if uprooted from the ground by a wrathful god and abandoned like a child's toy. Undoubtedly, no conventional army wrought this awful destruction.</description>
<position x="462" y="60" z="0" />
<arc exit="south" move="swim south" destination="106" />
</node>
<node id="108" name="Theren Keep, Moat" color="#0000FF">
<description>A massive catapult stone protrudes from the water like the bald pate of a Gor'Tog giant. Its unsavory green hue pales in comparison to the blackened mildew that plagues the embattlement, spreading upwards through imperfections in the stonework and fractures left by siege missile fire.</description>
<position x="122" y="320" z="0" />
<arc exit="east" move="swim east" destination="102" />
<arc exit="northwest" move="swim northwest" destination="109" />
</node>
<node id="109" name="Theren Keep, Moat" color="#0000FF">
<description>Frothy white globules erupt from an unknown source beneath the muck and drift slowly in all directions, tainted with grime and residue. An underwater current sucks them under near a curve in the wall, but they pop right up with stubborn buoyancy.</description>
<position x="62" y="260" z="0" />
<arc exit="north" move="swim north" destination="110" />
<arc exit="southeast" move="swim southeast" destination="108" />
</node>
<node id="110" name="Theren Keep, Moat" color="#0000FF">
<description>A luminescent gel-like substance coats the stone embattlement along its roughly-hewn face, pulsing softly with an eerie glow. The mass tapers off southward, but appears much more prevalent northward where garbage chokes the passageway to just a few feet.</description>
<position x="62" y="200" z="0" />
<arc exit="north" move="swim north" destination="111" />
<arc exit="south" move="swim south" destination="109" />
</node>
<node id="111" name="Theren Keep, Moat" color="#0000FF">
<description>Discarded rubble, lumber and common trash compose a daunting heap to the northeast, blocking the moat entirely in that direction. The combination of filthy garbage and stagnant water elevates the stench here to heights no mortal should ever experience, and the narrow, slime-ridden passage southwards looks like it offers little, if any, relief.</description>
<position x="62" y="120" z="0" />
<arc exit="south" move="swim south" destination="110" />
<arc exit="climb" move="climb pile of debris" destination="112" />
</node>
<node id="112" name="Theren Keep, Rubble" note="Moat">
<description>Broken masonry and trash clog the moat at this junction, forming a makeshift dam that prevents stagnant water from spoiling the northern Keep. The upper ramparts stand in ruin, clearly the source of all the rubble, but still high enough to thwart intruders despite its dilapidated condition. Unlike the dank, water-logged channel southwards, the moat looks dry and solid to the east.</description>
<position x="62" y="60" z="0" />
<arc exit="east" move="east" destination="113" />
<arc exit="south" move="south" destination="111" />
</node>
<node id="113" name="Theren Keep, Dry Moat" note="Dry Moat">
<description>Long iron spikes line the moat's bottom, spaced far enough apart that a nimble thief could walk between them, but sure to impale any fool falling from above. Gazing upwards, a dark tower pierces the nighttime sky, soft torchlight flickering from its windows.</description>
<description>Long iron spikes line the moat's bottom, spaced far enough apart that a nimble thief could walk between them, but sure to impale any fool falling from above. Gazing upwards, a dark stone tower pierces the skyline like a lance, culminating in a majestic standard of royal blue and gold.</description>
<position x="79" y="60" z="0" />
<arc exit="east" move="east" destination="114" />
<arc exit="climb" move="climb pile of debris" destination="112" />
</node>
<node id="114" name="Theren Keep, Dry Moat">
<description>The moat descends through a gap in the foundation, the site of a massive cave-in where attackers undermined the castle's embattlements. Ramparts once thought impenetrable lie about in shambles, blocking further progress beyond the exposed mining tunnel.</description>
<position x="99" y="60" z="0" />
<arc exit="west" move="west" destination="113" />
<arc exit="down" move="down" destination="115" />
</node>
<node id="115" name="Theren Keep, Mining Tunnel" note="Mining Tunnel">
<description>Crumbling stone slabs rise from the earth like misshapen gravemarkers, lamenting their downfall from what was once a mighty bastion. Other fragments choke the very mining tunnel that induced their ruin, as a final act of defiance in a war the descendants of long-dead soldiers can't even recall.</description>
<position x="119" y="60" z="0" />
<arc exit="up" move="up" destination="114" />
<arc exit="go" move="go slender gap" destination="116" />
</node>
<node id="116" name="The Breech Tunnels" color="#993300">
<description>Roughly carved stone walls meet the hand cut blocks of the keep's outer wall to the south. Moisture creeps down the tunnel walls to gather in a pool on the floor and begin its journey deeper into into the darkess. An opening, half-heartedly covered up, appears to have led out at one time but is now sealed.</description>
<description>Roughly carved stone walls meet the hand cut blocks of the keep's outer wall to the south. Moisture creeps down the tunnel walls to gather in a pool on the floor and begin its journey deeper into the darkess. An opening, half-heartedly covered up, appears to have led out at one time but is now sealed.</description>
<position x="262" y="60" z="0" />
<arc exit="northwest" move="northwest" destination="157" />
<arc exit="go" move="go slender gap" destination="115" />
</node>
<node id="117" name="Northwest Tower, The Old Study">
<description>Untouched since the days of the late Baron, the room and its furnishings preserve the shape of a life. A portrait depicts a noble couple, and their clear affection has an appeal that aging canvas and dustry frame cannot dim. Some shelves stand near a great oaken desk at which the Baron spent many a day, week, month, and year.</description>
<position x="402" y="200" z="0" />
<arc exit="up" move="up" destination="118" />
<arc exit="go" move="go ironwood door" destination="101" />
</node>
<node id="118" name="Northwest Tower, a Bedchamber">
<description>Although stately in proportion and design, it seems a lonely forgotten corner of the Keep, hung with yellowing dust covers and stripped of its former glory. Faded patches on the floor and walls hint at tapestries, pictures and rugs that once clothed the room. All that remains of the old furnishings is a large brass bed and some carved sana'ati dressers, too bulky for easy removal.</description>
<position x="402" y="190" z="0" />
<arc exit="down" move="down" destination="117" />
<arc exit="go" move="go wooden hatch" destination="119" />
</node>
<node id="119" name="Northwest Tower, Spire">
<description>From this lofty vantage point, the Baron oversees nearly all of Therengia -- from the craggy western mountains to the banks of the Faldesu River where the towns of Riverhaven and her smaller sister, Langenfirth, ply their fish and pelts. City rooftops dot the landscape like tiles on a strategic boardgame, undisturbed by the moat's putrid stench far below.</description>
<position x="402" y="180" z="0" />
<arc exit="go" move="go wooden hatch" destination="118" />
</node>
<node id="120" name="Theren Keep, Parapet" note="Parapet">
<description>This particular corner of the parapet sulks below the northwest tower, rising overhead with all the majesty of an emperor's palace compared to the outer ramparts. Unlike the weathered stone deck, the tower shows signs of half-hearted maintenance where mud and grime was scraped away by either reluctant servants or guards caught sleeping at their post.</description>
<position x="342" y="180" z="0" />
<arc exit="east" move="east" destination="123" />
<arc exit="south" move="south" destination="121" />
<arc exit="go" move="go oak door" destination="80" />
</node>
<node id="121" name="Theren Keep, Parapet">
<description>The sound of boots striking stone echoes across the parapet whether you step or stand still. Perhaps a despondent ghost or lone watchman, the source remains obscure though a clear line of sight bares the passageway in both directions.</description>
<position x="342" y="190" z="0" />
<arc exit="north" move="north" destination="120" />
<arc exit="south" move="south" destination="122" />
</node>
<node id="122" name="Theren Keep, Drum-Tower" note="Drum-Tower">
<description>Disjointed boarding provides a makeshift roof over this squat drum-tower, the ancient wood half-charred to a brittle crisp. Safeguarding the entrance and western courtyard, the embattlement provides fields of fire ranging beyond the outer ramparts, and machicolations to hinder assailants below. If not for the keep's warlike implications, the picturesque view of the surrounding countryside might even be considered romantic.</description>
<position x="342" y="200" z="0" />
<arc exit="north" move="north" destination="121" />
</node>
<node id="123" name="Theren Keep, Parapet">
<description>A tiny bird's nest rests between two square-cut merlons, protected by a wooden shutter still dangling from a few arrow-riven splinters. Almost laughable in this place of war, the nest's owner has gathered shreds of hay, cloth and fletching to build its new home, now an old souvenir of long-dead men and forgotten battles.</description>
<position x="352" y="180" z="0" />
<arc exit="east" move="east" destination="124" />
<arc exit="west" move="west" destination="120" />
</node>
<node id="124" name="Theren Keep, Ruined Parapet" note="Ruined Parapet">
<description>Ages ago, the parapet encircled the northeast tower and continued south to protect the vulnerable flanks. But now the walkway greets empty space where the tower once stood, its pitiful remnants strewn across the landscape a thousand times over by unfathomable powers. Even time takes its toll in the aftermath, slowly eating away the weakened embattlements year after year.</description>
<position x="362" y="180" z="0" />
<arc exit="west" move="west" destination="123" />
</node>
<node id="125" name="Theren Keep, Great Hall" note="Great Hall">
<description>Seven columns span the chamber in a vast semi-circle of burnished black marble, the middle three curving around a broad dais while the outer pairs brace high, spectacular balconies. Striking blue-gold banners and silken tapestries proclaim the royal colors of Therengia, but these minor ornaments pale before the tiled dome ceiling and a massive, seven-sided table which dominates the great hall.</description>
<position x="202" y="100" z="0" />
<arc exit="out" move="out" destination="74" />
<arc exit="go" move="go well-lit corridor" destination="126" />
<arc exit="go" move="go deobar door" destination="128" />
</node>
<node id="126" name="Theren Keep, Servant's Quarters" note="Servant's Quarters">
<description>Modest but comfortable, the servants enjoy excellent quarters considering the restricted capacity of the keep. Woven rush mats blanket the cold floor, and soft bedding comforts the hand-picked personal staff who retire here after toiling in the yards or kitchen.</description>
<position x="202" y="120" z="0" />
<arc exit="north" move="north" destination="125" />
<arc exit="go" move="go small closet" destination="127" />
</node>
<node id="127" name="Theren Keep, Garderobe" note="Garderobe">
<description>Nothing more than a recess in the exterior wall, the latrine's cleanliness speaks well of the servants who attend it. Sweet-scented jasmine mollifies the air, and a bucket of wash water stands prepared to flush out the chute.</description>
<position x="182" y="120" z="0" />
<arc exit="out" move="out" destination="126" />
</node>
<node id="128" name="Theren Keep, Pantry" note="Pantry">
<description>Barely large enough to accommodate the deobar table and matching cabinets for which it was built, this modest room serves as a staging area for elaborate feasts before their presentation. Southwards, master chefs prepare renowned culinary recipes foretold by the mouth-watering aromas wafting from that direction.</description>
<position x="242" y="100" z="0" />
<arc exit="south" move="south" destination="129" />
<arc exit="go" move="go deobar door" destination="125" />
</node>
<node id="129" name="Theren Keep, Kitchen" note="Kitchen">
<description>If the victuals taste as good as they smell, the current Baron follows his predecessor's tradition and keeps a lavish table. Fresh fruits and vegetables garnish shelves along the wall, and strings of garlic, dried peppers and sausage dangle from handy hooks overhead. A scarred cutting board proudly displays an array of dishes ranging from poultry to exotic seafood imported from the Eastern Seaboard. Each dish bears the hallmark of the chef's culinary brilliance.</description>
<position x="242" y="120" z="0" />
<arc exit="north" move="north" destination="128" />
<arc exit="east" move="east" destination="130" />
</node>
<node id="130" name="Theren Keep, Buttery">
<description>Deft craftsmen have fitted massive blocks of new stone, rebuilt cabinets, and added several shelves to these kitchens. Only faint smudges of indelible black and mild bubbling at the edges of some of the old masonry show that these kitchens were anything other than pristine. Large kegs of ale and tapped barrels of wine now line the eastern and northern walls. Pitchers and ladles hang from long brass hooks, and the wide shelves are crammed with preserves and bottles.</description>
<position x="282" y="120" z="0" />
<arc exit="west" move="west" destination="129" />
<arc exit="climb" move="climb sturdy ladder" destination="131" />
</node>
<node id="131" name="Theren Keep, Basement" note="Rutilor|Shrine2-15">
<description>This end of the basement remains bare of supplies, excluding a dusty barrel tethered against the wall. A trail of footprints marches back and forth between a storeroom door and a sturdy ladder, but seems loath to proceed north any further than necessary.</description>
<position x="322" y="120" z="0" />
<arc exit="north" move="north" destination="133" />
<arc exit="go" move="go wooden door" destination="132" />
<arc exit="climb" move="climb sturdy ladder" destination="130" />
</node>
<node id="132" name="Theren Keep, Storeroom">
<description>Multiple levels of shelves expand the storage capacity here at least twofold, accommodating a stockpile of iron rations which could probably support the keep beyond a thirty-day siege. Casks of low-grade wine settle in a far corner, as tasteless now as they'd be in a hundred years.</description>
<position x="322" y="140" z="0" />
<arc exit="go" move="go wooden door" destination="131" />
</node>
<node id="133" name="Theren Keep, Basement">
<description>Bricks, shovels, lime and mortar are piled near a bench with other mason's tools, and a stack of smoothly-cut blocks eclipses the basement's rusticated facade. Additional space opens to the south, and a crude stairway climbs upward on dimpled steps which look like a blind man attacked them with a pick.</description>
<position x="322" y="100" z="0" />
<arc exit="south" move="south" destination="131" />
<arc exit="west" move="west" destination="134" />
<arc exit="go" move="go wooden door" destination="136" />
<arc exit="go" move="go low crack" destination="137" />
<arc exit="climb" move="climb crude stairway" destination="75" />
</node>
<node id="134" name="Theren Keep, Sloping Tunnel">
<description>Distorted sounds echo down this pock-marked tunnel, carried on a frigid draft whipping around your legs like a disgruntled poltergeist. Flickering torches maintain a somber light as the passage descends sharply to the west.</description>
<position x="302" y="100" z="0" />
<arc exit="east" move="east" destination="133" />
<arc exit="west" move="west" destination="135" />
</node>
<node id="135" name="Theren Keep, Dungeon" note="Dungeon">
<description>Chilling darkness permeates the chamber despite a glowing firepit, churning sparks like a mage's bungled spell. A long wooden rack replete with chains and manacles awaits traitorous thieves or murderers, and heavy tongs, branding irons, and leather whips round out the torturer's modest collection.</description>
<position x="282" y="100" z="0" />
<arc exit="east" move="east" destination="134" />
</node>
<node id="136" name="Theren Keep, Storeroom">
<description>Sealed crates and pallets cram the room from floor to ceiling, most marked as one sundry item or another. From lumber to furs to perfume, you can bet it's here if traders find it worth the journey to Riverhaven.</description>
<position x="302" y="80" z="0" />
<arc exit="go" move="go wooden door" destination="133" />
</node>
<node id="137" name="The Breech Tunnels">
<description>As you crawl along this passage, sharp rocks and gravel give way beneath your hands making it difficult to stay on all fours. The low ceiling traps your breath and makes it hard to breathe, as you fight the sweat that runs off your brow and into your eyes.</description>
<position x="322" y="50" z="0" />
<arc exit="east" move="east" destination="138" />
<arc exit="go" move="go low crack;stand" destination="133" />
<arc exit="go" move="go crevice;stand" destination="161" />
</node>
<node id="138" name="The Breech Tunnels" color="#993300">
<description>Your knees ache with the pain of supporting the weight of you and all your gear. Your clothing and other items snag on the razor-like edges created through the impact of metal picks on hard stone. The passage sweeps from a northern darkness into a western darkness.</description>
<position x="332" y="50" z="0" />
<arc exit="north" move="north" destination="139" />
<arc exit="west" move="west" destination="137" />
</node>
<node id="139" name="The Breech Tunnels" color="#993300">
<description>As you move through this tunnel your mind pauses to reflect on the workers that dug it. Just moving through them is difficult, the thought of having to chisel and pick inch by inch and then haul the debris out boggles the imagination.</description>
<position x="332" y="40" z="0" />
<arc exit="north" move="north" destination="140" />
<arc exit="south" move="south" destination="138" />
</node>
<node id="140" name="The Breech Tunnels" color="#993300">
<description>Ants seem to have taken up housekeeping in this part of the tunnel. As they crawl about and over your hands you can't help but wonder how they could build a nest in what appears to be almost solid rock. Light makes its way across the stone floor from a low opening to the west where the area on the other side offers an opportunity to stand and stretch.</description>
<position x="332" y="30" z="0" />
<arc exit="south" move="south" destination="139" />
<arc exit="go" move="go low opening" destination="141" />
</node>
<node id="141" name="The Breech Tunnels" color="#993300">
<description>The rough stone walls of the tunnel are covered with a sticky substance that would seem to be spider's silk, were it not so inordinately thick and heavy.</description>
<position x="322" y="30" z="0" />
<arc exit="southwest" move="southwest" destination="142" />
<arc exit="go" move="go granite arch" destination="144" />
<arc exit="go" move="go low opening" destination="140" />
</node>
<node id="142" name="The Breech Tunnels" color="#993300">
<description>Dim light seeping through the gloom from the south provides a welcome alternative to navigating through these dark, web-riddled passages by touch.</description>
<position x="312" y="40" z="0" />
<arc exit="northeast" move="northeast" destination="141" />
<arc exit="south" move="south" destination="143" />
</node>
<node id="143" name="The Breech Tunnels" color="#993300">
<description>Weblike threads dangle in artistic patterns from the ceiling and walls. The scent of dust, trapped in the sticky strands, hangs heavy in the air. To the south an arch, now bricked up, silently tells of a time when this passage was part of the Keep's floorplan.</description>
<position x="312" y="50" z="0" />
<arc exit="north" move="north" destination="142" />
</node>
<node id="144" name="The Breech Tunnels" color="#993300">
<description>To the northeast is the view of a richly decorated room that is quite out of place in these deep, dank tunnels reeking of wet soil and stone. A glow of light filters through the iron door but reveals only darkness on the other side.</description>
<position x="322" y="20" z="0" />
<arc exit="northeast" move="northeast" destination="145" />
<arc exit="go" move="go marble arch" destination="338" />
<arc exit="go" move="go iron door" destination="147" />
</node>
<node id="145" name="The Breech Tunnels">
<description>Time and abandonment have not destroyed the beauty of the lavish tapestries and thick carpets that adorn this underground room. Designed to be self contained, the room contains a four poster bed, a pair of well cushioned chairs, a dining table and a polished mahogany dresser. A bookcase large enough to hold several month's worth of reading material stands empty against the furthest wall of the room.</description>
<position x="332" y="10" z="0" />
<arc exit="northeast" move="northeast" destination="146" />
<arc exit="southwest" move="southwest" destination="144" />
<arc exit="go" move="go oaken door" destination="158" />
</node>
<node id="146" name="The Breech Tunnels" color="#993300">
<description>Gravel and rock piled about the floor almost hide the expensive tile laid on beneath the rubble. A shredded tapestry hanging on the wall makes a feable attempt to hide a hole carved out of the rock near the floor. Studying the tapestry for any indication of what it might have depicted in its better days, your eyes follow it to the ceiling where you notice another hole that is definitely out of reach.</description>
<position x="342" y="0" z="0" />
<arc exit="east" move="east" destination="159" />
<arc exit="southwest" move="southwest" destination="145" />
</node>
<node id="147" name="The Breech Tunnels" color="#993300">
<description>High in the ceiling, troughs have been carved and a low burning fire finds residence there. Obviously fed by some type of fuel, the light makes it very easy to see in what would normally be a pitch dark area. Interestingly, there is a small opening in the lower portion of the north wall.</description>
<position x="282" y="20" z="0" />
<arc exit="west" move="west" destination="148" />
<arc exit="go" move="go iron door" destination="144" />
</node>
<node id="148" name="The Breech Tunnels" color="#993300">
<description>Any movement to the west would require stepping on an odd looking slab embedded in the floor of the tunnel. A large tapestry depicting a scene from a battle hangs on the wall. A soft glow of light winds its way down the tunnel from the eastern end.</description>
<position x="272" y="20" z="0" />
<arc exit="east" move="east" destination="147" />
<arc exit="west" move="west" destination="149" />
</node>
<node id="149" name="The Breech Tunnels" color="#993300">
<description>Any movement to the east would require stepping on an odd looking slab of rock embedded in the floor of this passage. A large tapestry depicting a battle of archers versus horsemen hangs on the wall of the tunnel.</description>
<position x="262" y="20" z="0" />
<arc exit="east" move="east" destination="148" />
<arc exit="west" move="west" destination="150" />
</node>
<node id="150" name="The Breech Tunnels" color="#993300">
<description>A caved-in section of the ceiling allows light and air to enter this section of the tunnel. Sporadic patches of moss growing along the stone walls glisten with moisture in the dim illumination.</description>
<position x="252" y="20" z="0" />
<arc exit="east" move="east" destination="149" />
<arc exit="south" move="south" destination="151" />
</node>
<node id="151" name="The Breech Tunnels" color="#993300">
<description>Although not visible in the darkness, a steady dripping can be heard as water makes its way from the ceiling to the floor. A slippery slime covers the floor, requiring each step to be made with caution.</description>
<position x="252" y="30" z="0" />
<arc exit="north" move="north" destination="150" />
<arc exit="south" move="south" destination="152" />
</node>
<node id="152" name="The Breech Tunnels" color="#993300">
<description>Broken strands of cobwebs lifted by an almost imperceptible current of air brush against mildewed walls. A splintered oak door hangs precariously against the inner wall of a tunnel that splits to the east.</description>
<position x="252" y="40" z="0" />
<arc exit="north" move="north" destination="151" />
<arc exit="east" move="east" destination="153" />
<arc exit="south" move="south" destination="157" />
</node>
<node id="153" name="The Breech Tunnels" color="#993300">
<description>An oak door hangs in ruins against the stone wall, held in place by one twisted iron hinge. A collection of rubble has been piled up against the tunnel wall to form what looks like a battle barricade.</description>
<position x="262" y="40" z="0" />
<arc exit="east" move="east" destination="154" />
<arc exit="west" move="west" destination="152" />
</node>
<node id="154" name="The Breech Tunnels" color="#993300">
<description>A few weapons and armor lie on the floor, rust and decay being a testament to the years that have passed since they were last used in a battle. A garrison banner, still attached to its staff, lies buried under rubble and mud.</description>
<position x="272" y="40" z="0" />
<arc exit="north" move="north" destination="156" />
<arc exit="northeast" move="northeast" destination="155" />
<arc exit="west" move="west" destination="153" />
</node>
<node id="155" name="The Breech Tunnels" color="#993300">
<description>Brewer's vats and barrels reveal the past purpose of this room. Crossbeams still support the pulleys once used to move barrels from the racks to transportation carts. Tired and frayed ropes hang from the crossbeams, dangling just out of reach.</description>
<position x="282" y="30" z="0" />
<arc exit="southwest" move="southwest" destination="154" />
</node>
<node id="156" name="The Breech Tunnels" color="#993300">
<description>Empty burlap sacks, long ago robbed of their grain by the smaller vermin that run these tunnels, lay rotting in the moisture of the floor. The storage racks where the bags were once stored are now little more than splinters tossed about recklessly.</description>