-
Notifications
You must be signed in to change notification settings - Fork 19
/
Map2a_Temple.xml
1431 lines (1431 loc) · 138 KB
/
Map2a_Temple.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="Crossing Temple" id="2a">
<node id="1" name="Temple Grounds, Entry Gates" note="Entry Gates|Gates">
<description>The immense outer walls of the temple meet here, a thick lacquered mahogany gate acting as their mediator. The hardwood entrance has been banded with sturdy bars of steel to ensure its stamina in the most dire of times. A cobblestone path leads to the north, winding off into the various parts of the temple grounds.</description>
<position x="340" y="540" z="0" />
<arc exit="north" move="north" destination="2" />
<arc exit="go" move="go mahogany gate" destination="3" />
<arc exit="go" move="go mahogany building" destination="32" />
</node>
<node id="2" name="Temple Grounds, Cobblestone Path">
<description>The astonishing sight of the grand temple lies to the north, atop a massive stairway. Three towers flank the sides of the structure, a complex network of walkways stretching between them and the temple's top levels. A smooth cobblestone path runs east and west here, curving around to the grounds areas on either side of the temple.</description>
<position x="340" y="520" z="0" />
<arc exit="east" move="east" destination="15" />
<arc exit="south" move="south" destination="1" />
<arc exit="west" move="west" destination="4" />
<arc exit="go" move="go oak door" destination="44" />
<arc exit="climb" move="climb massive stairway" destination="182" />
</node>
<node id="3" name="The Crossing, Immortals' Approach" note="Map1_Crossing.xml|Crossing">
<description>This stretch of road is wide and paved with smooth stone blocks. Cherry trees in carved stone planters border the sweeping approach while softening the exterior walls surrounding the Temple grounds. Flames flicker from the tops of three tall towers standing guard over the orb of the Main Temple. Fragile walkways lash the towers to each other high above the orb. You also see a high granite wall surrounding the temple grounds, the locked almsbox and the Longbow Bridge.</description>
<description>This stretch of road is wide and paved with smooth stone blocks. Cherry trees in carved stone planters border the sweeping approach while softening the exterior walls surrounding the Temple grounds. Flames brightly visible in the dark flare from the tops of three tall towers standing guard over the orb of the Main Temple. Fragile walkways lash the towers to each other high above the orb.</description>
<description>This stretch of road is wide and paved with smooth stone blocks. Cherry trees in carved stone planters border the sweeping approach while softening the exterior walls surrounding the Temple grounds. Flames flicker from the tops of three tall towers standing guard over the orb of the Main Temple. Fragile walkways lash the towers to each other high above the orb.</description>
<position x="340" y="560" z="0" />
<arc exit="northeast" move="northeast" />
<arc exit="northwest" move="northwest" />
<arc exit="go" move="go mahogany gate" destination="1" />
</node>
<node id="4" name="Temple Grounds, Cobblestone Path" note="Fidakel">
<description>The cobblestone road curves gently here, the round stones smooth and freshly-swept by the ever vigilant groundskeepers. A broad expanse of thick brambles stretches to the northwest, obscuring any vision of what may lie beyond them.</description>
<position x="260" y="520" z="0" />
<arc exit="east" move="east" destination="2" />
<arc exit="northwest" move="northwest" destination="5" />
</node>
<node id="5" name="Temple Grounds, Cobblestone Path">
<description>A thorny thicket of brambles obscures direct vision to the northeast. The top half of the temple's massive orb is still visible, rising like the moon over the errant foliage, the veils of night draping lightly over it.</description>
<description>A thorny thicket of brambles obscures direct vision to the northeast, although the top half of the temple's massive orb is still visible. Its lustrous black ironwood surface gleams in the sunlight, accented by polished silverwood window frames and sconces. A bizarre contrast with the errant foliage, indeed.</description>
<position x="200" y="460" z="0" />
<arc exit="southeast" move="southeast" destination="4" />
<arc exit="west" move="west" destination="6" />
</node>
<node id="6" name="Temple Grounds, Cobblestone Path">
<description>A black marble birdbath stands in the center of this three-way intersection in the cobble path. The road is silent now, the various groundskeepers and other temple employees having gone home for the day. A dedicated monk or priestess bustles by every so often, but naught else disturbs the intersection at this late hour.</description>
<description>A black marble birdbath stands decoratively in the center of this three-way intersection, hurried townsfolk bustling by silently. Many monks, priestesses, and others dressed in ceremonial garb are likely to be heading to the shrine of their patron deities for a few moments of quiet reflection and respite from the rushing world around them.</description>
<position x="120" y="460" z="0" />
<arc exit="north" move="north" destination="9" />
<arc exit="east" move="east" destination="5" />
<arc exit="west" move="west" destination="7" />
</node>
<node id="7" name="Temple Grounds, Cobblestone Path">
<description>Thorny thistles skirt the northern border of the freshly-swept cobbled path, covered with bright purple and yellow flowers. The prickly foliage hasn't discouraged the animal life, for a startled chittering sounds from beneath one bush as footsteps pass by.</description>
<description>Thorny thistles skirt the northern border of the freshly-swept cobbled path, bare of their leaves and flowers in the cold winds. The prickly foliage hasn't discouraged the animal life, for a startled chittering sounds from beneath one bush as footsteps pass by.</description>
<position x="100" y="460" z="0" />
<arc exit="east" move="east" destination="6" />
<arc exit="west" move="west" destination="8" />
</node>
<node id="8" name="Temple Grounds, Southwest Tower" note="Southwest Tower">
<description>The cobblestone path winds to a close before the massive black tower that looms to the west. Surely built with strategic defense in mind, this construct arcs outward into the northeastern sky. Several walkways extend from it to the other two towers in a spidery weblike pattern with the temple itself serving as the nexus point.</description>
<position x="80" y="460" z="0" />
<arc exit="east" move="east" destination="7" />
<arc exit="go" move="go white cottage" destination="34" />
</node>
<node id="9" name="Temple Grounds, Beside a Stream">
<description>Water tumbles over rounded stones in the stream that borders the gravel path. A dense bramble thicket, dark and impenetrable, towers over the path, while on the other side of the stream, the fragrance of roses drifts on the wind from the wedding glade to the northeast. The temple rises in the distance, its spherical surface like an eye constantly watching over its children as they scurry about their daily tasks.</description>
<position x="120" y="420" z="0" />
<arc exit="northeast" move="northeast" destination="13" />
<arc exit="south" move="south" destination="6" />
<arc exit="northwest" move="northwest" destination="10" />
</node>
<node id="10" name="Temple Grounds, Courtyard">
<description>The cobblestone path comes to a fork here, flanking a large shade tree to the east that grows amidst a lush garden of brilliant floral blooms in a veritable rainbow of color. This garden has been well-tended by the temple groundskeepers, the carefully pruned bushes and healthy vibrant flowers being no accident of nature.</description>
<description>The cobblestone path comes to a fork here, flanking a large bare tree to the east growing amidst a garden standing fallow in the winter cold. This garden has been well-tended by the temple groundskeepers, the carefully pruned bushes and composted flower beds waiting only for spring warmth to bring them back to vibrant life.</description>
<position x="100" y="400" z="0" />
<arc exit="northeast" move="northeast" destination="12" />
<arc exit="southeast" move="southeast" destination="9" />
<arc exit="west" move="west" destination="11" />
</node>
<node id="11" name="Temple Grounds, Beside the Bathing Pool">
<description>A tiny rivulet of crystal-blue water babbles through the area, arcing outward from the pond to the south. Independent of the miniature stream, a luxurious marble bath has been placed amidst a garden of fresh sirese blooms, flanked with ivory statues carved in the shape of graceful swans. Several large stone pots stand beside the statues, placed conveniently to replenish the waters of the bathing pool when the sun's rays cause it to thirst.</description>
<description>A thin rivulet of frozen water streaks through the area, arcing outward from the pond to the south. Independent of the frigidly stagnant stream, a marble bath lies empty amidst a patch of barren ground, the sirese blooms absent in the winter frost. Ivory statues carved into the shape of swans take on a quality of despair, their usually graceful forms covered with a burdensome layer of snow, icicles hanging from their beaks and wings. Several stone pots stand in a lonely row, full of freshly fallen snow. </description>
<description>A tiny rivulet of crystal-blue water babbles through the area, arcing outward from the pond to the south. Independent of the miniature stream, a luxurious marble bath has been placed amidst a garden of fresh sirese blooms, flanked with ivory statues carved in the shape of graceful swans. Several large stone pots stand beside the statues, placed conveniently to replenish the waters of the bathing pool when the sun's rays cause it to thirst. </description>
<position x="80" y="400" z="0" />
<arc exit="east" move="east" destination="10" />
<arc exit="go" move="go marble bath" destination="33" />
</node>
<node id="12" name="Temple Grounds, Garden" note="Garden|vela'tohr plant|Eaadrich">
<description>A veritable forest of color explodes before you as the cobbled path comes to an end amidst this lush garden, blooms of every flower imaginable skirting the path. The vegetation here is oddly vibrant year round, as if bolstered by some subtle vein of life energy itself.</description>
<position x="120" y="380" z="0" />
<arc exit="southwest" move="southwest" destination="10" />
</node>
<node id="13" name="Temple Grounds, Wedding Glade">
<description>A stately white marble reception hall stands to the north, slightly eclipsing your view of the majestic orb-like temple that paints the backdrop of the northeastern sky from this vantage point. The pungent smell of freshly-cut foliage wells up in your nostrils, wafting over from a cobblestone path that leads to the northwest, beneath a whitewashed latticework archway. A thick patch of brambles obscures all vision to the southeast.</description>
<position x="140" y="400" z="0" />
<arc exit="east" move="east" destination="14" />
<arc exit="southwest" move="southwest" destination="9" />
<arc exit="go" move="go reception hall" destination="35" />
<arc exit="go" move="go latticework archway" destination="185" />
</node>
<node id="14" name="Temple Grounds, Wedding Glade">
<description>The picturesque wedding chapel stands to the north, its vaulted steeple rising up to pierce the looming orb of the temple in the distance. Several lush bushes, pruned to perfection, flank a pair of oaken double doors leading into the formal house of worship, bearing a crop of pristine white roses.</description>
<position x="160" y="400" z="0" />
<arc exit="west" move="west" destination="13" />
<arc exit="go" move="go double doors" destination="38" />
</node>
<node id="15" name="Temple Grounds, Cobblestone Path">
<description>A small wooden shrine lies to the north of the cobblestone road, the southern side of the path cradled by the protective walls surrounding the grounds area. A stubby stool stands before the shrine, allowing one to sit and seek audience with their deity.</description>
<position x="400" y="520" z="0" />
<arc exit="northeast" move="northeast" destination="16" />
<arc exit="west" move="west" destination="2" />
</node>
<node id="16" name="Temple Grounds, Cobblestone Path">
<description>Large mounds are scattered about in the grassy earth to the north of the cobblestone road, and a tall tree flanks the path to the west as it curves. The mounds are home to the furry inhabitants of the temple grounds -- ever meddlesome pests to those who work to keep the foliage lush and alive.</description>
<description>The cobblestone path is littered with slush and a crunchy coating of frost as it winds through the temple grounds. A large tree flanks the path to the west, laden with a thick covering of icicles.</description>
<description>A small host of burrows in the grassy earth directly north of the cobblestone road suddenly bustles with activity as you approach, small furry creatures retreating into their respective dens. A pile of walnuts lies at the foot of a large tree to the west, apparently forgotten by the foraging animals in their mad scramble to safety.</description>
<position x="460" y="460" z="0" />
<arc exit="east" move="east" destination="17" />
<arc exit="southwest" move="southwest" destination="15" />
</node>
<node id="17" name="Temple Grounds, Memorial Shrine" note="Memorial Shrine">
<description>The cobblestone intersection lies silent, the normally bustling traffic dispersed until dawn inevitably abates the dusk. A broken statue stands in the middle of the intersection, wreathed in the cold, shadowy night air. A scene of despair and sorrow, one might wonder what the statue looked like in its former glory.</description>
<description>This broad cobblestone intersection bustles with traffic as people scurry about their daily routine. Amidst all the confusion, a lone marble statue stands in disarray, its surface cracked and broken from some cataclysmic battle. Perhaps once a statue depicting one of the Fae, this work of art is now but a sundered monument to blasphemy. A single wing is left intact, its drooping form seeming to point downward, bringing subtle attention to a glass box lying at the feet of the statue.</description>
<position x="540" y="460" z="0" />
<arc exit="north" move="north" destination="20" />
<arc exit="east" move="east" destination="18" />
<arc exit="west" move="west" destination="16" />
</node>
<node id="18" name="Temple Grounds, Memorial Shrine">
<description>The deserted cobblestone path is bordered to the north by a small circle of sooty marble, creating an odd sort of shrine illuminated by the pale silver starlight. A quietness settles over this solemn memorial of destruction.</description>
<description>A small shrine surrounded by a low fence of soot-covered marble rubble lies to the north, apparently commemerating some horrid disaster of the past. Priestesses, monks, and acolytes alike bustle by hurriedly, averting their eyes with a painful grimace.</description>
<position x="560" y="460" z="0" />
<arc exit="east" move="east" destination="19" />
<arc exit="west" move="west" destination="17" />
<arc exit="go" move="go memorial shrine" destination="31" />
</node>
<node id="19" name="Temple Grounds, Southeast Tower" note="Southeast Tower">
<description>Gracefully-carved silverwillow accents adorn the giant ironwood tower, giving it a less ominous appearance. The giant structure arcs up and to the northwest, reaching for the temple as a newborn reaches for the comfort of its mother.</description>
<position x="580" y="460" z="0" />
<arc exit="west" move="west" destination="18" />
</node>
<node id="20" name="Temple Grounds, Cobblestone Path">
<description>The East Tower is a short distance to the southeast from here, stretching up and out above you to grasp toward the beacon area atop the temple. A network of frighteningly thin catwalks stretches between the temple and its three towers, as people who appear to be the size of silverfish scurry to and fro upon them.</description>
<position x="540" y="380" z="0" />
<arc exit="north" move="north" destination="21" />
<arc exit="south" move="south" destination="17" />
</node>
<node id="21" name="Temple Grounds, Cobblestone Path">
<description>The cobbled path meanders north and south here, creeping between the curving black ironwood walls of the temple off to the west and the massive granite outer wall directly to the east. Colorful bursts of vibrant wildflowers have exploded in the lush green summer grass to either side of the path.</description>
<description>The cobbled path meanders north and south here, creeping between the curving black ironwood walls of the temple off to the west and the massive granite outer wall directly to the east.</description>
<position x="540" y="260" z="0" />
<arc exit="north" move="north" destination="22" />
<arc exit="south" move="south" destination="20" />
</node>
<node id="22" name="Temple Grounds, Cemetery Approach">
<description>The cobbled path sinks into the ground to the northwest, giving way to a trail of black gravel that crunches audibly with every footstep, no matter how light. A large recess that has been carved out of the wall to the east appears to serve as the starting point for funeral processions. To the west, a black steel-plate fence blocks the cemetery from sight.</description>
<position x="540" y="180" z="0" />
<arc exit="east" move="east" destination="23" />
<arc exit="south" move="south" destination="21" />
<arc exit="northwest" move="northwest" destination="24" />
</node>
<node id="23" name="Temple Grounds, Mourner's Hollow" note="Mourner's Hollow">
<description>This large recess within the eastern wall surrounding the temple grounds area is shrouded in black silken and velvet tapestries, marking the occasion of mourning. A pristine white marble bier standing flush against the east wall serves to hold the body of the beloved aloft during the ceremonial blessing. The somber sculpture of a woman is suspended upon the wall above the bier, her gaze affixed down at where the deceased are laid.</description>
<position x="560" y="180" z="0" />
<arc exit="west" move="west" destination="22" />
</node>
<node id="24" name="Temple Grounds, Gate of The Mourned">
<description>A pathway of crunching black gravel stretches out to the northwest with a black ironwood tower in the distance, looming behind the temple itself. A freshly-oiled steel gate stands sentry to the west, guarding the temple's small cemetery.</description>
<position x="420" y="60" z="0" />
<arc exit="southeast" move="southeast" destination="22" />
<arc exit="northwest" move="northwest" destination="25" />
<arc exit="go" move="go steel gate" destination="27" />
</node>
<node id="25" name="Temple Grounds, Gravel Trail">
<description>This side of the temple is poorly lit beneath the dusky shroud that has snuffed the sun's fire for the evening. Shadows seem to move of their own accord, whirling about in the corner of your eye, but halting their dance the moment one attempts to catch them. The looming branches of a tree to the west stretch out attempting to grasp at anyone that may happen to cross this path.</description>
<description>A tall green silverwillow tree rises to the west of the black gravel pathway, enjoying the cool shadow cast by the temple. A small nest of woven sticks and twigs lies in the crook of the tree, wedged between a thick branch and the light silvery bark of the trunk. To the northwest, the North Tower stands sentry, guarding the temple's back.</description>
<description>A tall silverwillow tree rises to the west of the black gravel pathway, branches barren in the winter cold and shivering in the mammoth shadow cast by the temple. A small abandoned nest of woven sticks and twigs lies in the crook of the tree, wedged between a thick branch and the light silvery bark of the trunk. To the northwest, the North Tower stands sentry, guarding the temple's back.</description>
<position x="380" y="20" z="0" />
<arc exit="southeast" move="southeast" destination="24" />
<arc exit="northwest" move="northwest" destination="26" />
</node>
<node id="26" name="Temple Grounds, North Tower" note="North Tower">
<description>The rocky path of black volcanic gravel draws to a close, a somber carpet before the Northern sentinel tower. The thick black ironwood outer walls curve sharply behind the structure to seal off the temple grounds, banded with steel for extra reinforcement to ward off a possible siege.</description>
<position x="340" y="-20" z="0" />
<arc exit="southeast" move="southeast" destination="25" />
<arc exit="go" move="go ironwood doorway" destination="188" />
</node>
<node id="27" name="Cemetery, Road of the Dead">
<description>Somber rows of statues and modestly marked graves line the pathway here, leading westward from under the steel gate to the east, deeper within the heart of the small cemetery.</description>
<position x="360" y="60" z="0" />
<arc exit="west" move="west" destination="28" />
<arc exit="go" move="go steel gate" destination="24" />
</node>
<node id="28" name="Cemetery, Crystal Spire" note="Cemetery|Crystal Spire|Spire|Khurek" color="#00FF00">
<description>The cemetery lies in eerie silence beneath the vacant cloak of night. Shadows wreathe the ring of gravestones and statues gathered about a large crystal spire that rises up from the ground in the center of the area.</description>
<description>A crystalline obelisk juts upward from the ground in the middle of the dirt pathway. Rows of granite gravestones and marble statues have been set up in a circular pattern, with the unlit spire as their epicenter.</description>
<position x="340" y="60" z="0" />
<arc exit="north" move="north" destination="30" />
<arc exit="east" move="east" destination="27" />
<arc exit="west" move="west" destination="29" />
</node>
<node id="29" name="Cemetery, Unmarked Graves" note="Unmarked Graves">
<description>This small plot at the corner of the cemetery seems to be laid out for those who could not afford much ceremony, the dismal resting place of the poor and forgotten. A small wicker basket has been placed on a bulging unmarked grave, filled with vegetables in offering, or perhaps apology, to a lost loved one.</description>
<position x="320" y="60" z="0" />
<arc exit="east" move="east" destination="28" />
</node>
<node id="30" name="Cemetery, Memorial of The Beloved" note="Memorial of The Beloved">
<description>Rows of bejewelled marble statues crowd against the cemetery path, their night-shrouded visages glowering forth at all who pass by. An eerie sense of unrest lies with the gem-encrusted gargoyles, as if plotting in silence to rise up against those that intrude upon their domain.</description>
<description>The daylight brings a gentle lifelike quality to rows of bejewelled marble statues that have been placed here in memory of relatives and friends who have passed along to their journey upon the Starry Road. Professionally chiseled marble headstones prominently mark each grave in this small cluster.</description>
<position x="340" y="40" z="0" />
<arc exit="south" move="south" destination="28" />
</node>
<node id="31" name="Memorial Shrine">
<description>A large stone pillar rises in the center of this shrine, surrounded by a ring of sooty marble rubble, the walls of some grand structure of yore. Delicate colored tiles have been inset upon the pillar in a valiant restoration of a destroyed mosaic, possibly belonging to a place of worship in days past.</description>
<position x="560" y="440" z="0" />
<arc exit="out" move="out" destination="18" />
</node>
<node id="32" name="Temple Grounds, Guidepost">
<description>A rich mahogany counter covered in neatly arranged stacks of parchment fills the small, yet well-kept cottage. A pleasant demeanored monk garbed in crisp white linen robes stands just behind the counter, awaiting patrons.</description>
<position x="320" y="540" z="0" />
<arc exit="out" move="out" destination="1" />
</node>
<node id="33" name="Temple Grounds, Bathing Pool" note="Bathing Pool">
<description>The luxurious marble bathing pool lies sunken snugly into the earth, surrounded by a fresh garden of fragrant sirese blooms. Butterflies, bees, and all species of small woodland creatures approach the garden now and then, creating a gentle atmosphere of nature and serenity secluded from the bustling cacophony of the city. The pool is currently bone dry, all of the water having evaporated.</description>
<description>The luxurious marble bathing pool lies beneath a deathly pall of frost and ice. The water has been completely emptied from the pool to avoid cracking the delicate marble as it expands in the freezing process. Surrounding the bath is a rather forlorn-looking garden, barren in the winter months and dusted with a faint snowy powder. </description>
<description>The luxurious marble bathing pool lies sunken snugly into the earth, surrounded by a fresh garden of fragrant sirese blooms. Butterflies, bees, and all species of small woodland creatures approach the garden now and then, creating a gentle atmosphere of nature and serenity secluded from the bustling cacophony of the city. The shimmering pearlescent waters of the pool are currently full, a gentle steamy fog rising up from them as they lap around you. </description>
<description>The luxurious marble bathing pool lies sunken snugly into the earth, surrounded by a fresh garden of fragrant sirese blooms. Butterflies, bees, and all species of small woodland creatures approach the garden now and then, creating a gentle atmosphere of nature and serenity secluded from the bustling cacophony of the city. The glassy, still waters of the pool are currently very full, shining with a luminous silver glow beneath the gentle starlight. </description>
<position x="60" y="400" z="0" />
<arc exit="out" move="out" destination="11" />
</node>
<node id="34" name="Temple Grounds, Scriptorium" note="Scriptorium" color="#FF0000">
<description>This tiny one-room cottage is quite cramped amidst all the clutter that has been packed into it. An oversized oak desk dominates the northern side of the room, just beneath a lustrous silver placard that displays several parchment titles and their prices. Various cases built to hold delicate papers have been piled atop shelves and racks that flank the desk, while the larger ones hang in display upon the wall.</description>
<position x="60" y="460" z="0" />
<arc exit="out" move="out" destination="8" />
</node>
<node id="35" name="Reception Hall, Foyer">
<description>The bright light of glass-chambered lamps in silver sconces along the walls fills the room. Vibrantly colored velvet ribbons streaming down the walls create a riot of color that contrasts sharply against the smooth white marble. Scattered haphazardly along the floor surrounding several low birch tables are piles of velvet cushions in aquatic tones that complement the silvery grey tapestry rugs spread beneath them.</description>
<position x="140" y="380" z="0" />
<arc exit="out" move="out" destination="13" />
<arc exit="go" move="go painted archway" destination="36" />
<arc exit="go" move="go velvet curtain" destination="189" />
</node>
<node id="36" name="Reception Hall, Refreshments">
<description>Garlands of richly hued wildflowers braided with ivy hang from the pure white walls, filling the room with a gentle, lingering fragrance. More garlands, woven with blue and silver ribbons that dangle nearly to the polished marble floors, are draped along the edges of the polished rosewood table and bar. Near a festively painted archway leading to the foyer sits a rosewood cart festooned with multicolored streamers and covered with refreshments befitting the god of levity.</description>
<position x="140" y="360" z="0" />
<arc exit="east" move="east" destination="37" />
<arc exit="go" move="go painted archway" destination="35" />
</node>
<node id="37" name="Reception Hall, Ballroom">
<description>Polished walnut floors spread across the length of this chamber. Chips of lighter wood inlaid in its center form an intricate mosaic, mirrored directly above in a majestic circular skylight set in the vaults of the arching ceiling. Dozens of streamers in aquatic colors hanging to each side of the stage provide a vibrant backdrop for several ornate statues of alabaster fae. Breezes sweeping through open windows into the room stir the silk streamers to surround the statues in their own aerial dance.</description>
<position x="160" y="360" z="0" />
<arc exit="west" move="west" destination="36" />
</node>
<node id="38" name="Wedding Chapel, Foyer">
<description>Sunlight filters through skylights in the vaulted ash ceilings above, reflecting off pristine white walls. Its bright radiance falls upon the tapestries, hung to each side of passages leading to the north and south, whose hues echo those of a lavishly embroidered white velvet carpet spreading across the floor. Guarding a tall silverwillow archway are two alabaster statues wound with tendrils of malachite ivy, while mirroring it to the west is a pair of oaken doors leading back outside.</description>
<description>Candlelight flickers with warm luminance off the graceful figures of two statues guarding a silverwillow archway, diffusing the shadows found in the hours of darkness. More candlelight pools from passages to the north and south, highlighting the edges of tapestries hung to either side of them. Opposite the archway, a pair of large oaken doors reveals the way back outside.</description>
<position x="180" y="400" z="0" />
<arc exit="north" move="north" destination="39" />
<arc exit="south" move="south" destination="40" />
<arc exit="go" move="go silverwillow archway" destination="43" />
<arc exit="go" move="go oaken doors" destination="14" />
</node>
<node id="39" name="Wedding Chapel, Groom's Chambers">
<description>Sunlight catches on the burbling surface of a brook that can be seen through a pair of panoramic windows to the north. Cast into shadow between them is a polished mahogany desk framed by the dark velvet curtains. A deep brown leather couch dominates the wall to one side, its dark hue matching those of soft armchairs scattered around it. In their midst is a low mahogany table topped with glass. A soft silvery grey carpet spreads along the floor underfoot.</description>
<description>The light of the many silver candelabras fills the room with its warm glow. Surrounding a low mahogany table is a soft couch and several deep brown leather armchairs sitting upon a silvery grey carpet. A matching mahogany desk sits between two panoramic windows along the northern wall, its panes now dimmed with night.</description>
<position x="180" y="380" z="0" />
<arc exit="south" move="south" destination="38" />
<arc exit="go" move="go small door" destination="41" />
</node>
<node id="40" name="Wedding Chapel, Bride's Chamber">
<description>The pale hues of the tapestries and velvet carpet reflect the light washing through two large windows along the southern wall. Piles of velvet and tasseled cushions tossed on the floor bathe in a pool of sunlight, clustering around a low glass-topped ash table. On the other side of the windows, a cheval mirror is poised to reflect the image of the bride and her attendants, with a carved ash vanity beside it for last-minute adjustments to hair and accessories.</description>
<description>The glass windows now lay dark, glinting with the flickering glow of the lit candelabras sitting upon nearly every available surface. Surrounding a low ash table topped with an etched glass pane are dozens of soft velvet cushions in shades of ivory and gold. A tall ash-framed mirror stands next to a vanity on the other side of the room.</description>
<position x="180" y="420" z="0" />
<arc exit="north" move="north" destination="38" />
<arc exit="go" move="go small door" destination="41" />
</node>
<node id="41" name="Wedding Chapel, Dais">
<description>Sunlight sets the panes of a large stained glass window afire with vibrant colors. Standing before it like a pale ghost is a white marble altar framed by descending rows of tall white candles held in the arms of dancing alabaster fae. Across the length of the dais lays a soft white velvet carpet embroidered with subtle golden threads that shimmer slightly where touched by the light.</description>
<description>Golden light shines upon the faces and arms of dancing alabaster fae from the wax candles they hold in their grasp as they stand to each side of a low white marble altar. Behind the altar is a darkened stained glass window, its colors still rich even when dimmed by night. Across the length of the dais lays a soft white velvet carpet embroidered with subtle golden threads that shimmer slightly where touched by the light.</description>
<position x="200" y="400" z="0" />
<arc exit="down" move="down" destination="42" />
</node>
<node id="42" name="Wedding Chapel, Seating">
<description>Sunlight from the southern windows falls upon rows of padded oak benches facing the eastern end of the chamber. An aisle carpeted with white velvet makes a straight path between them to a wide, brightly illuminated dais.</description>
<description>The resplendent glow of dozens of candles sitting in tall candelabras chases away the shadows that come with the night. Between the rows of padded oak benches facing the east end of the chamber is a carpeted aisle leading to a wide, brightly lit dais.</description>
<position x="220" y="420" z="0" />
<arc exit="out" move="out" destination="43" />
</node>
<node id="43" name="Wedding Chapel, Atrium">
<description>Sunlight dapples the patterned marble floor as it shines through arching windows to the north and south that offer a wide view of the temple gardens. Two long tables sit sheltered by the undrawn curtains between them, covered wth an array of light refreshments and freshly picked flowers. Next to a pair of oaken doors leading deeper into the chapel is a wrought iron stairway, the bottom steps carefully roped off to prevent outsiders from entering.</description>
<description>The darkened windows glisten with the reflected glow of many candles, faintly throwing back the radiance to futher illuminate the room. Two tables sitting in the shelter of the undrawn curtains between them offer a light array of refreshments and fresh flowers. Almost hidden in the shadow of a pair of large oaken doors, a wrought iron stairway leads to the higher levels of the chapel.</description>
<position x="200" y="420" z="0" />
<arc exit="go" move="go silverwillow archway" destination="38" />
<arc exit="go" move="go silverwillow doors" destination="42" />
</node>
<node id="44" name="Resurrection Creche, Li Stil rae Kwego ia Kweld" note="Resurrection Creche|favor altar|depart" color="#00FF00">
<description>Fragrant smoke drifts from censers to carry periodic ripples of sound from the rooms beyond, bringing the silvery chime of bells and rhythmic cadence of chant to rise and fall in the air like the heartbeat of the Temple itself. An ivory rug cloaks the floor, surrounding an altar of translucent obsidian swirled with fiery highlights. Stained-glass gaethzen orbs circle the altar with a misty nimbus of violet light shading to crimson and then to amber and gold -- the colors of dawn and of life renewed.</description>
<position x="340" y="380" z="0" />
<arc exit="go" move="go oak door" destination="2" />
<arc exit="go" move="go clockwise" destination="45" />
<arc exit="go" move="go widdershins" destination="54" />
</node>
<node id="45" name="Resurrection Creche, Chamber of Rains" note="Chamber of Rains">
<description>Softly luminous gaethzen orbs hang suspended from polished brass chains. The delicate-looking globes are draped with gauzy fabric in a myriad of soft blues and greens. The veined granite of the far wall has been chiseled into a three-dimensional mural resembling lush foliage. Gentle pattering laughter of a spring shower fills the room as water from a hidden source cascades in wide rivulets down the sculpted flora. Large tapestry cushions carpet the floor with embroidered verdure.</description>
<position x="264" y="358" z="0" />
<arc exit="go" move="go clockwise" destination="46" />
<arc exit="go" move="go widdershins" destination="44" />
</node>
<node id="46" name="Resurrection Creche, Hallway">
<description>Hanging from a golden brazier is a colorful wreath of branches bearing dark green leaves. Sprinkled amongst the verdant boughs are pea-sized dirdel flowers of fiery red bearing triangular silver foliage. The wreath adds a bit of color to the hallway of drab white.</description>
<position x="213" y="298" z="0" />
<arc exit="go" move="go clockwise" destination="47" />
<arc exit="go" move="go widdershins" destination="45" />
</node>
<node id="47" name="Resurrection Creche, Hearth Chamber" note="Hearth Chamber">
<description>Flames crackle merrily in a large circular fireplace set upon an elevated flagstone dais in the center of the room. A wrought iron hood is attached to a ventilation shaft which rises upward, leading to a grate on the far wall. Fine mesh screens enclose the blaze, intricate patterns in the links forming the shadowy images of the thirteen avatars. Richly woven panels of warm russet wool trimmed with heavy gold braid line the stone walls. Thick black bearskin rugs carpet the floor beneath leather divans.</description>
<position x="200" y="220" z="0" />
<arc exit="go" move="go clockwise" destination="48" />
<arc exit="go" move="go widdershins" destination="46" />
</node>
<node id="48" name="Resurrection Creche, Hallway">
<description>The long, slightly turning, white plaster walls are interrupted by a mahogany staircase leading upward. The granite floor is slightly scuffed here, perhaps by the countless feet that have trodden upon it, or perhaps by some heavy object having been pushed along.</description>
<position x="234" y="148" z="0" />
<arc exit="go" move="go clockwise" destination="49" />
<arc exit="go" move="go widdershins" destination="47" />
<arc exit="go" move="go mahogany staircase" hidden="True" destination="55" />
</node>
<node id="49" name="Resurrection Creche, Hallway">
<description>A golden candelabra, its treasured flame flickering in the passing breeze of each supplicant moving through the temple halls, casts a soft glow about the curving corridor. The evened floor of cold granite absorbs what little warmth and comfort the tiny blaze gives off.</description>
<position x="301" y="106" z="0" />
<arc exit="go" move="go clockwise" destination="50" />
<arc exit="go" move="go widdershins" destination="48" />
</node>
<node id="50" name="Resurrection Creche, Hallway">
<description>Flanked on either side by white plaster barriers, this smooth granite floor displays the image of a painted starburst pattern. In the center of the bright red ornamentation, a white flower blooms as though newly touched by spring.</description>
<position x="379" y="106" z="0" />
<arc exit="go" move="go clockwise" destination="51" />
<arc exit="go" move="go widdershins" destination="49" />
</node>
<node id="51" name="Resurrection Creche, Hallway">
<description>A low relief has been carefully carved into the rough granite overlooking a mostly nondescript arch, and through the wide arch the twisting granite-hewn steps of an ascending staircase can be seen. The protruding depictions of the relief portray a group of people before what may be the sun.</description>
<position x="440" y="140" z="0" />
<arc exit="go" move="go clockwise" destination="52" />
<arc exit="go" move="go widdershins" destination="50" />
<arc exit="go" move="go stairs" hidden="True" destination="56" />
</node>
<node id="52" name="Resurrection Creche, Triage Hall" note="Triage Hall">
<description>This brightly-lit interior is devoid of decoration, the utilitarian design allowing healers to focus on evaluating the wounded. Patients are directed toward treatment according to severity and degree of life threat, and straw-filled pallets line the perimeter of the room for the most severe cases. The walls have been scrubbed clean, their faint citrus smell not quite masking the coppery scent of blood. Fresh rushes spread across the floor help to absorb the inevitable spills of bodily fluids.</description>
<position x="479" y="220" z="0" />
<arc exit="go" move="go clockwise" destination="53" />
<arc exit="go" move="go widdershins" destination="51" />
</node>
<node id="53" name="Resurrection Creche, Hallway">
<description>The smooth arcing is just barely noticeable in the oblique hallway extending throughout the lower walls of the temple. The curving white plaster partitions enclosing the corridor are adorned in spots by brown woolen tapestries depicting scenes ranging from a prostrate monk to a rearing unicorn.</description>
<position x="467" y="298" z="0" />
<arc exit="go" move="go clockwise" destination="54" />
<arc exit="go" move="go widdershins" destination="52" />
</node>
<node id="54" name="Resurrection Creche, Dispensary" note="Dispensary">
<description>A bustle of activity greets each fresh arrival of wounded. Long rows of narrow cots covered with immaculate white linen are reserved for recovering patients. Empaths move efficiently through the room, offering words of comfort as they check on the status of their charges. The smooth granite walls are adorned along the upper border with a brightly painted plaster frieze depicting long garlands of medicinal herbs interspersed with jadice flowers.</description>
<position x="416" y="358" z="0" />
<arc exit="go" move="go clockwise" destination="44" />
<arc exit="go" move="go widdershins" destination="53" />
</node>
<node id="55" name="The Crossing Temple, Hallway">
<description>Twin plaster columns rise on either side of a descending stairway, supporting the spheriform walls. Along the inner curve of the hallway, an arched mahogany entrance leads to a white marble walkway that spans the distance between the circular rim and the High Altar at the center of the Temple.</description>
<position x="479" y="160" z="1" />
<arc exit="go" move="go winding stairway" hidden="True" destination="48" />
<arc exit="go" move="go clockwise" destination="57" />
<arc exit="go" move="go widdershins" destination="66" />
<arc exit="go" move="go mahogany arch" destination="83" />
</node>
<node id="56" name="The Crossing Temple, Hallway">
<description>Four beautifully detailed figures grace this intersection in the circular hallway. Two mahogany carvings join in a proud arch, establishing an exquisitely veneered frame for the awe-inspiring view of the High Altar. Glowing softly in the sunlight, the Altar is joined to the rim by a long gracious grey marble causeway, its tiles meeting up at the threshold of the arch. Opposing the walkway, two molded plaster columns stand guard above a set of stairs which descends along the curve of the sphere.</description>
<position x="201" y="160" z="1" />
<arc exit="climb" move="climb stairs" hidden="True" destination="51" />
<arc exit="go" move="go clockwise" destination="64" />
<arc exit="go" move="go widdershins" destination="63" />
<arc exit="go" move="go mahogany arch" destination="80" />
</node>
<node id="57" name="The Crossing Temple, Hallway">
<description>Flickering torches secured in iron sconces illuminate a sprawling mural upon the walls. Panoramic images depict a gathering of diverse figures joined in concentric circles about a large white boulder resting at the center of a forest clearing. The pristine surface of the monolithic stone is scorched with a totemic simulacrum of a great horned owl in flight.</description>
<position x="500" y="240" z="1" />
<arc exit="go" move="go clockwise" destination="58" />
<arc exit="go" move="go widdershins" destination="55" />
</node>
<node id="58" name="The Crossing Temple, Hallway">
<description>Curiously elusive, a faint musty smell intrudes upon an otherwise elegant hallway. An antique crystal chandelier emits a warm golden glow that caresses everything from the central wooden pedestal to the narrow wooden staircase that ascends the outside wall.</description>
<position x="479" y="320" z="1" />
<arc exit="go" move="go clockwise" destination="59" />
<arc exit="go" move="go widdershins" destination="57" />
<arc exit="climb" move="climb staircase" destination="84" />
</node>
<node id="59" name="The Crossing Temple, Hallway">
<description>A fresh breeze wafts along the passage, bringing with it the gentle but fragrant scents of the garden. Along the outside wall, a long curving planter filled with rich soil provides a tiny sanctuary for young saplings to grow. Standing protectively in front of them, a mahogany pedestal rises like a monument to its living brethren.</description>
<position x="420" y="379" z="1" />
<arc exit="go" move="go clockwise" destination="60" />
<arc exit="go" move="go widdershins" destination="58" />
</node>
<node id="60" name="The Crossing Temple, Entrance Hall" note="Entrance Hall">
<description>Light flows like a stream from beyond a large archway, enveloping the entire entrance hall with radiance. Beautifully carved pillars stand on either side of the arch, greeting visitors and monks that make their way towards the center of the globe. Curving along the outer wall of the Temple, long plaster hallways with polished mahogany floors lead worshippers clockwise and widdershins around the sphere.</description>
<position x="340" y="400" z="1" />
<arc exit="go" move="go clockwise" destination="61" />
<arc exit="go" move="go mahogany pillars" destination="67" />
<arc exit="go" move="go double doors" destination="184" />
<arc exit="go" move="go widdershins" destination="59" />
</node>
<node id="61" name="The Crossing Temple, Hallway">
<description>Serene white plaster walls curve along the narrow temple passage, bowing up to the ceiling in a gentle arc. Not a pinch of dust or dirt can be seen in the hall -- even the walls have been scrubbed to perfection. Reflecting every movement, the immaculate low-lustre floors dance with hazy images of monks as they pass on their way to prayer. In the center of the room is a small wooden pedestal, its surface guarded by a flawless glass case.</description>
<position x="260" y="379" z="1" />
<arc exit="go" move="go clockwise" destination="62" />
<arc exit="go" move="go widdershins" destination="60" />
<arc exit="go" move="double doors" destination="60" />
</node>
<node id="62" name="The Crossing Temple, Hallway">
<description>Polished wooden floors meet a sweeping staircase which rises along the outer wall. Clerics in colorful robes pass through the corridor or on the stairs, their footsteps echoing with a natural rhythm. In the center of the passage, a pedestal sits on a tiny dais. Illuminated by strategically placed mirrors behind the candle sconces, the pedestal demands attention, reaching out to onlookers as if it had a story to tell.</description>
<position x="201" y="320" z="1" />
<arc exit="go" move="go clockwise" destination="63" />
<arc exit="go" move="go widdershins" destination="61" />
<arc exit="climb" move="climb staircase" destination="85" />
</node>
<node id="63" name="The Crossing Temple, Hallway">
<description>Light streams out from a torch set into a pedestal in the center of the room, creating distorted shadows on the curved walls. Securely mounted along the outer curve is a display of battle-worn weapons, all old but obviously well cared for. The presence of such items within the peaceful solemnity of the Temple acts as a grim reminder of the dangers in the outside world.</description>
<position x="180" y="240" z="1" />
<arc exit="go" move="go clockwise" destination="56" />
<arc exit="go" move="go widdershins" destination="62" />
</node>
<node id="64" name="The Crossing Temple, Hallway">
<description>The ceiling fixture in this room has not been lit, giving the hallway a darkened appearance. Along the inner wall, a square patch of floorboards has a dull finish, unlike the polished wood which gleams through the rest of the hallway.</description>
<position x="260" y="101" z="1" />
<arc exit="go" move="go clockwise" destination="65" />
<arc exit="go" move="go widdershins" destination="56" />
</node>
<node id="65" name="The Crossing Temple, Hallway">
<description>Accented by the lingering smell of wood oils, the slippery surface of the glossy mahogany flooring reflects the hallway's illumination like carefully polished armor. Standing guard in the center of the room is a simple wooden pedestal, shielding its display beneath a thin glass case.</description>
<position x="340" y="80" z="1" />
<arc exit="go" move="go clockwise" destination="66" />
<arc exit="go" move="go widdershins" destination="64" />
</node>
<node id="66" name="The Crossing Temple, Hallway">
<description>Candles glow softly behind stained-glass holders in the sconces along the walls, sending beacons of red and blue light dancing along the curve of the hallway. Shadows pool sullenly along the baseboards and floor, driven down by the vivid illumination higher on the walls to meld with the dark wooden floorboards. Tiny droplets of paint have been speckled into the floor's finish, spreading out from the base of the pedestal like miniature stars in a mahogany sky.</description>
<position x="420" y="101" z="1" />
<arc exit="go" move="go clockwise" destination="55" />
<arc exit="go" move="go widdershins" destination="65" />
</node>
<node id="67" name="The Crossing Temple, Main Arch" note="holy water basin|basin">
<description>Beneath the main arch, this alcove offers an awe-inspiring view of the High Altar. A black marble promenade sweeps between two of the vast step-like seating areas as it heads towards a circular platform in the center of the domed sphere. Prismatic light beams down upon the altar from above, its illumination stretching though the main arch, embracing everyone entering the Temple. Beneath the apex of the arch is a golden basin set upon a humble wooden pedestal.</description>
<position x="340" y="372" z="1" />
<arc exit="go" move="go mahogany pillars" destination="60" />
<arc exit="go" move="go alabaster arch" destination="68" />
</node>
<node id="68" name="Ve Aevan Gaenan, Dark Promenade">
<description>Toward the south, an alabaster archway has been inlaid with highly polished onyx to form the image of a spiked mace in low relief. A mahogany pedestal cradling a shallow basin is visible beyond the arch, while in the opposite direction, black marble tiles line the ground between pale walls of granite and lead toward the temple's High Altar.</description>
<position x="340" y="344" z="1" />
<arc exit="north" move="north" destination="69" />
<arc exit="go" move="go alabaster arch" destination="67" />
</node>
<node id="69" name="Ve Aevan Gaenan, Dark Promenade">
<description>The sound of footsteps against black marble is trapped by the tall granite walls, sending a haunting echo down the length of the promenade. Beams of light cast down from the temple's great skylight glint off the surfaces of the passage in cool luminescent streams, emphasizing a stark contrast between the dark marble underfoot and the pale grey stone that rises upward on either side.</description>
<position x="340" y="316" z="1" />
<arc exit="north" move="north" destination="70" />
<arc exit="south" move="south" destination="68" />
</node>
<node id="70" name="Ve Aevan Gaenan, Dark Promenade">
<description>The marble-tiled passage continues its path between the grey granite walls. High above, rows of mahogany benches are visible as they sweep upward toward the rim of circular chamber. Lining the promenade, murals have been etched into the stone's surface, depicting stylized renditions of the negative aspects of the Thirteen.</description>
<position x="340" y="288" z="1" />
<arc exit="north" move="north" destination="71" />
<arc exit="south" move="south" destination="69" />
</node>
<node id="71" name="Ve Aevan Gaenan, Dark Promenade">
<description>A circular mosaic formed of interlaced black, white and grey marble tiles cascades from the base of a granite platform. A torrent of black marble streams out of the tiling, cutting through great walls of granite to form passage toward an archway to the south.</description>
<position x="340" y="260" z="1" />
<arc exit="east" move="east" destination="72" />
<arc exit="south" move="south" destination="70" />
<arc exit="west" move="west" destination="76" />
<arc exit="go" move="go granite platform" destination="77" />
</node>
<node id="72" name="Ve Aevan Gaenan, Southeast Stairway">
<description>Seamlessly arranged around the altar platform to the northwest, tiles of white, black, and grey circle gracefully beneath the colorful Eyes of the Thirteen. Rising with solemn pride, a line of granite stairs climbs the distance between this promenade and the ring of six arches far above, granting access to the upper levels of the temple as well as the southeastern seating areas.</description>
<position x="360" y="260" z="1" />
<arc exit="north" move="north" destination="73" />
<arc exit="west" move="west" destination="71" />
<arc exit="go" move="go granite platform" destination="77" />
<arc exit="climb" move="climb granite stairway" destination="179" />
</node>
<node id="73" name="Ve Aevan Gaenan, Light Promenade">
<description>A circle of small marble tiles has been laid over the floor surrounding a low grey platform, forming an exquisitely patterned mosaic of grey, black and white. At this end of the promenade, the white marble streams out of the tiling and extends across the passage as it cuts northeast through the curving granite that rises above on either side.</description>
<position x="360" y="220" z="1" />
<arc exit="northeast" move="northeast" destination="81" />
<arc exit="south" move="south" destination="72" />
<arc exit="west" move="west" destination="74" />
<arc exit="go" move="go granite platform" destination="77" />
</node>
<node id="74" name="Ve Aevan Gaenan, North Stairway">
<description>Square tiles of white, black, and grey circle around the raised altar to the south, every footstep quietly sounding beneath the watchful gaze of the Thirteen. Rising with steady confidence, a line of granite stairs climbs the distance between this walkway and a ring of arches far above, allowing access to the upper levels of the temple, as well as the coliseum-style seating areas.</description>
<position x="340" y="220" z="1" />
<arc exit="east" move="east" destination="73" />
<arc exit="west" move="west" destination="75" />
<arc exit="go" move="go granite platform" destination="77" />
<arc exit="climb" move="climb granite stairway" destination="155" />
</node>
<node id="75" name="Ve Aevan Gaenan, Grey Promenade">
<description>Upon a granite platform rests a metallic altar, its stone base surrounded by a mosaic formed of grey, white and black marble. Underfoot, grey marble extends from the tiling and cascades to the northwest as smooth as a stream toward a mahogany arch. Tall walls of granite are visible a few paces down the passage, rising on either side to form the promenade.</description>
<position x="320" y="220" z="1" />
<arc exit="east" move="east" destination="74" />
<arc exit="south" move="south" destination="76" />
<arc exit="northwest" move="northwest" destination="78" />
<arc exit="go" move="go granite platform" destination="77" />
</node>
<node id="76" name="Ve Aevan Gaenan, Southwest Stairway">
<description>Tiles of grey, white, and black scatter around the altar platform to the northeast, every footstep resounding softly beneath the vigilant gaze of the Thirteen. Rising with solemn pride, a line of granite stairs climbs the distance between this promenade and a ring of six arches far above, granting access to the upper levels of the temple, as well as the staggered seating areas.</description>
<position x="320" y="260" z="1" />
<arc exit="north" move="north" destination="75" />
<arc exit="east" move="east" destination="71" />
<arc exit="go" move="go granite platform" destination="77" />
<arc exit="climb" move="climb granite stairway" destination="176" />
</node>
<node id="77" name="Ve Aevan Gaenan, The High Altar" note="Shrine1-06|Ve Aevan Gaenan|High Altar" color="#A6A3D9">
<description>The gentle touch of the sun is caught by the temple's great skylight high overhead, falling in rays of prismatic light upon a large metallic altar poised on this pale granite platform. The varied colors cast down from the domed Eyes of the Thirteen add to the day's brush of illumination, melding softly upon the altar's reflective surface. From this sacred point, the massive chamber sweeps majestically upwards, stairways and benches rising to meet the archways and domes of light that circle above.</description>
<description>High above, the temple's great iris skylight ushers in the stars' cool illumination, bathing the large metallic altar in pale light. Drawn as if to a lodestone, soft glints of color from the domed Eyes far overhead lend their prismatic overtones to the clarity of starlight. Sweeping majestically upwards from this raised platform, the stairways and benches lining the massive chamber dwindle into deepest shadow as they climb to meet the vague outlines of archways arrayed in a surrounding ring far above.</description>
<position x="340" y="240" z="1" />
<arc exit="north" move="north" destination="74" />
<arc exit="northeast" move="northeast" destination="73" />
<arc exit="southeast" move="southeast" destination="72" />
<arc exit="south" move="south" destination="71" />
<arc exit="southwest" move="southwest" destination="76" />
<arc exit="northwest" move="northwest" destination="75" />
</node>
<node id="78" name="Ve Aevan Gaenan, Grey Promenade">
<description>Row upon row of mahogany benches lines the upper edge of the granite walls that border this promenade, marking a gentle slope that curves upward toward the rim of the spherical chamber. A massive mural has been etched into the entirety of the spacious pale stone, spanning from the grey marble tiles to the upper edge of the wall, stretching so far above that the highest placed carvings slip from focus.</description>
<position x="300" y="200" z="1" />
<arc exit="southeast" move="southeast" destination="75" />
<arc exit="northwest" move="northwest" destination="79" />
</node>
<node id="79" name="Ve Aevan Gaenan, Grey Promenade">
<description>Glints of light are visible in the distance, reflecting off the High Altar's smooth surface in the center of this cavernous room. The tall pale granite walls seem to meld into the smooth grey marble underfoot that extends towards a mahogany arch to the northwest and the altar to the southeast.</description>
<position x="280" y="180" z="1" />
<arc exit="southeast" move="southeast" destination="78" />
<arc exit="northwest" move="northwest" destination="80" />
</node>
<node id="80" name="Ve Aevan Gaenan, Grey Promenade">
<description>The grey stone walls rise to an immense height, dwarfing anyone who stands between their massive countenance. The murals etched into the walls that depict the neutral emblems of the Thirteen take on an almost overwhelming presence upon the tall slabs of granite, their gaze constant upon all who pass. In contrast, a mahogany arch beckons silently to the northwest, the wood heavily polished and carved with images of shields overlaid one atop another.</description>
<position x="260" y="160" z="1" />
<arc exit="southeast" move="southeast" destination="79" />
<arc exit="go" move="go mahogany arch" destination="56" />
</node>
<node id="81" name="Ve Aevan Gaenan, Light Promenade">
<description>The white marble passage continues between the tall grey granite walls. On both sides, images have been carved into the stone, creating an elaborate but elegant mural. Sconces line the walls, casting a soft glow upon both the etchings and the marble underfoot. Above, row upon row of mahogany benches lines the great stairways, curving upwards along the sloping granite.</description>
<position x="380" y="200" z="1" />
<arc exit="northeast" move="northeast" destination="82" />
<arc exit="southwest" move="southwest" destination="73" />
</node>
<node id="82" name="Ve Aevan Gaenan, Light Promenade">
<description>Drifting gracefully from the great skylight above, pale beams of starlight fall upon the marble tiles and stream across the tall granite walls, lending subtle warmth to the coolness of stone against stone.</description>
<description>Drifting gracefully from the great skylight above, pale beams of sunlight fall upon the white marble tiles and stream across the tall granite walls, lending subtle warmth to the coolness of stone against stone.</description>
<position x="400" y="180" z="1" />
<arc exit="northeast" move="northeast" destination="83" />
<arc exit="southwest" move="southwest" destination="81" />
</node>
<node id="83" name="Ve Aevan Gaenan, Light Promenade">
<description>The promenade ends at a mahogany arch, bordered by row upon row of mahogany benches lining the sloping edge of the granite walls. In the distance, the metallic gleam of the temple's High Altar is visible near the center of the sphere, illuminated by the great skylight high overhead.</description>
<description>The promenade ends at a mahogany arch, bordered by row upon row of mahogany benches lining the sloping edge of the granite walls. Moonlight streams through the skylight to bathe the temple's High Altar in a soft glow.</description>
<position x="420" y="160" z="1" />
<arc exit="southwest" move="southwest" destination="82" />
<arc exit="go" move="go mahogany arch" destination="55" />
</node>
<node id="84" name="Eyes of the Thirteen, Hallway">
<description>The hallway continues its curved passage leading to each of the Eyes of the Thirteen. A narrow wooden staircase, recessed into one wall, is visible as it curves gently downward toward the lower portions of the temple. To the northwest within the curving passage, sprinkles of some kind of shimmering purple dust are visible on the floor, adding a remarkable contrast of color against the white plaster walls.</description>
<position x="461" y="107" z="3" />
<arc exit="climb" move="climb staircase" hidden="True" destination="58" />
<arc exit="go" move="go clockwise" destination="89" />
<arc exit="go" move="go widdershins" destination="88" />
</node>
<node id="85" name="Eyes of the Thirteen, Hallway">
<description>The lacquered mahogany borders that ornament the hallway arc over a break in the curving walls. Recessed slightly, a staircase curves and vanishes from vision as it gently slopes downwards, faint beams of light visible as they reflect off the surfaces below.</description>
<position x="219" y="107" z="3" />
<arc exit="climb" move="climb staircase" hidden="True" destination="62" />
<arc exit="go" move="go clockwise" destination="86" />
<arc exit="go" move="go widdershins" destination="100" />
</node>
<node id="86" name="Eyes of the Thirteen, Hallway">
<description>Warm textured layers of rich dark mahogany frame an archway, beckoning towards a golden-hued marble platform. The faint glow from within the shrine cascades across the stark white plaster walls, lending its warm glow to this stretch of hallway as it curves its way around the temple.</description>
<position x="275" y="72" z="3" />
<arc exit="go" move="go clockwise" destination="87" />
<arc exit="go" move="go widdershins" destination="85" />
<arc exit="go" move="go framed archway" destination="101" />
</node>
<node id="87" name="Eyes of the Thirteen, Hallway">
<description>The lily-white plaster walls gently curve along the corridor, following the spheriform shape of the temple itself. Through a bleached ash archway along the inner wall, a pale alabaster platform extends out over the High Altar area.</description>
<position x="340" y="60" z="3" />
<arc exit="go" move="go clockwise" destination="88" />
<arc exit="go" move="go widdershins" destination="86" />
<arc exit="go" move="go ash archway" destination="103" />
</node>
<node id="88" name="Eyes of the Thirteen, Hallway">
<description>Lacquered mahogany trim streaks across the bottom of the white plaster wall as it meanders its way around the gentle curvature of the hallway. A set of wolf prints sprinkled with deep purple alexandrite dust is sculpted into the floor, leading the way into the shrine which lies beyond the polished black granite archway.</description>
<position x="405" y="72" z="3" />
<arc exit="go" move="go clockwise" destination="84" />
<arc exit="go" move="go widdershins" destination="87" />
<arc exit="go" move="go black archway" destination="105" />
</node>
<node id="89" name="Eyes of the Thirteen, Hallway">
<description>Matte black marble rises in a graceful arch leading to the entrance to a shrine. Steel dagger hilts, their blades buried in the stone, radiate outwards along the curve of the arch, while the keystone is carved with the image of a snarling amber-eyed panther.</description>
<position x="501" y="160" z="3" />
<arc exit="go" move="go clockwise" destination="90" />
<arc exit="go" move="go widdershins" destination="84" />
<arc exit="go" move="go marble arch" destination="107" />
</node>
<node id="90" name="Eyes of the Thirteen, Hallway">
<description>Finely carved mahogany borders hug the curves of the archway which serves as entrance to the shrine. A faint corona of ruddy light flows through the arch, bathing the pale paster with a pale reddish tint.</description>
<position x="519" y="223" z="3" />
<arc exit="go" move="go clockwise" destination="91" />
<arc exit="go" move="go widdershins" destination="89" />
<arc exit="go" move="go mahogany arch" destination="109" />
</node>
<node id="91" name="Eyes of the Thirteen, Hallway">
<description>The pale walls of the hallway curve to each side, reflecting on floors of polished marble tile. Set into the tiles before the entrance to the Shrine of Mortals is an intricate mosaic crafted from multicolored glass. Diffused blue light pours through the silver-inlaid mahogany archway, setting the glittering mosaic afire with color.</description>
<position x="513" y="289" z="3" />
<arc exit="go" move="go clockwise" destination="92" />
<arc exit="go" move="go widdershins" destination="90" />
<arc exit="go" move="go mahogany archway" destination="111" />
</node>
<node id="92" name="Eyes of the Thirteen, Hallway">
<description>The scent of incense from somewhere nearby wafts through the air, filling the space with a mild, sweet aroma. Revealed by a narrow arch within a section of the curving walls, a narrow staircase flows upwards and disappears above as it arcs up toward the uppermost areas of the temple.</description>
<position x="484" y="348" z="3" />
<arc exit="go" move="go clockwise" destination="93" />
<arc exit="go" move="go widdershins" destination="91" />
<arc exit="climb" move="climb staircase" destination="128" />
</node>
<node id="93" name="Eyes of the Thirteen, Hallway">
<description>The curving white plaster walls are tinted a rich luminous green as light flows beneath a gem-encrusted satinwood archway. Beyond the archway, a silver platform leads out into the Eye of the Serpent.</description>
<position x="435" y="393" z="3" />
<arc exit="go" move="go clockwise" destination="94" />
<arc exit="go" move="go widdershins" destination="92" />
<arc exit="go" move="go satinwood archway" destination="113" />
</node>
<node id="94" name="Eyes of the Thirteen, Hallway">
<description>The hallway continues its circular path within the white plaster walls of the temple. Perfect mirror images, two cresting waves have been inlaid into the tile floor before a narrow archway leading toward a blue crystal platform.</description>
<position x="373" y="417" z="3" />
<arc exit="go" move="go clockwise" destination="95" />
<arc exit="go" move="go widdershins" destination="93" />
<arc exit="go" move="go narrow archway" destination="115" />
</node>
<node id="95" name="Eyes of the Thirteen, Hallway">
<description>The cool white walls of the hallway are broken by two pillars of ivory -- a pair of carved mammoth tusks forming an archway to a shrine bathed in amber light.</description>
<position x="307" y="417" z="3" />
<arc exit="go" move="go clockwise" destination="96" />
<arc exit="go" move="go widdershins" destination="94" />
<arc exit="go" move="go ivory arch" destination="117" />
</node>
<node id="96" name="Eyes of the Thirteen, Hallway">
<description>The gentle glow of candlelight emanates from beneath a lacquered oaken archway, causing fickle figures to dance across the delicate white plaster walls.</description>
<position x="245" y="393" z="3" />
<arc exit="go" move="go clockwise" destination="97" />
<arc exit="go" move="go widdershins" destination="95" />
<arc exit="go" move="go oaken archway" destination="119" />
</node>
<node id="97" name="Eyes of the Thirteen, Hallway">
<description>A faint flickering of color and luminescence cascades along the white plaster walls, drifting from the nearby shrines dedicated to the gods and their aspects. The path of the play of light is broken momentarily as it crosses a narrow archway curving over a staircase leading upwards, deeper into the temple's structure.</description>
<position x="196" y="348" z="3" />
<arc exit="go" move="go clockwise" destination="98" />
<arc exit="go" move="go widdershins" destination="96" />
<arc exit="climb" move="climb staircase" destination="127" />
</node>
<node id="98" name="Eyes of the Thirteen, Hallway">
<description>Rosy light flows into the hallway from a carved white crystal archway, casting a gentle pinkish tint over the white plaster walls. The faint sound of music echoes through the air.</description>
<position x="167" y="289" z="3" />
<arc exit="go" move="go clockwise" destination="99" />
<arc exit="go" move="go widdershins" destination="97" />
<arc exit="go" move="go white archway" destination="121" />
</node>
<node id="99" name="Eyes of the Thirteen, Hallway">
<description>Curving along pristine walls of white plaster, a reflection of light, emanating from a translucent jade archway, creates a striking contrast between subtle shadow and dominant light. Claws, carved with a remarkably realistic effect, stand at the base of the archway, warding off some unseen attack.</description>
<position x="161" y="223" z="3" />
<arc exit="go" move="go clockwise" destination="100" />
<arc exit="go" move="go widdershins" destination="98" />
<arc exit="go" move="go jade archway" destination="123" />
</node>
<node id="100" name="Eyes of the Thirteen, Hallway">
<description>This portion of the hallway is dominated by a polished ebony archway that leads into the Shrine of the Void. Nothing is visible beyond the arch, as the only light which streams out on to the platform is the weak ambient light from down the hall.</description>
<position x="179" y="160" z="3" />
<arc exit="go" move="go clockwise" destination="85" />
<arc exit="go" move="go widdershins" destination="99" />
<arc exit="go" move="go ebony archway" destination="125" />
</node>
<node id="101" name="Eyes of the Thirteen, Kertigen's Shrine" note="Divyaush|Zachriedek">
<description>Flecks of platinum and gold embedded in the marble floor shimmer softly in the warm serene glow of light filling the area as it seeps through the sunlight-colored dome. Resting quietly on the end of the platform, a scintillating statue of glimmering crystals and precious metals stands in reverence to the god of riches.</description>
<position x="282" y="91" z="3" />
<arc exit="go" move="go archway" destination="86" />
<arc exit="go" move="go glittering platform" destination="102" />
</node>
<node id="102" name="Eyes of the Thirteen, Eye of Kertigen" note="Kertigen">
<description>Gazing out over the temple floor, a statue atop the altar rests protected by a fine crystalline dome covering the end of the platform. The light from the temple, shaded to a rich golden yellow, washes over the heavily adorned sculpture. Its wealth of gems and precious metals splash tiny reflections on every surface, a sea of shining stars across a sunlit sky.</description>
<position x="289" y="109" z="3" />
<arc exit="up" move="up" destination="101" />
</node>
<node id="103" name="Eyes of the Thirteen, Hodierna's Shrine" note="Asketi|Berengaria">
<description>The platform is surrounded by a large opaline crystal dome. Leading out to the hallway of the temple, a bleached ash archway stands as noble sentry, guarding this sacred shrine. Faint etchings have been made in the pale alabaster floor, leading inward toward the end of the crystal half-sphere.</description>
<position x="340" y="80" z="3" />
<arc exit="go" move="go ash archway" destination="87" />
<arc exit="go" move="go alabaster platform" destination="104" />
</node>
<node id="104" name="Eyes of the Thirteen, Eye of Hodierna" note="Hodierna">
<description>The air itself seems to glow here as the light from beyond the dome filters through in a luminous blur. At the end of the platform, nestled up against the crystal, stands a low white marble altar which rises seamlessly upward into a magnificent triptych statue, basking in the nimbus of pearly light that permeates this place.</description>
<position x="340" y="100" z="3" />
<arc exit="up" move="up" destination="103" />
</node>
<node id="105" name="Eyes of the Thirteen, Meraud's Shrine" note="Firulf|Kerenhappuch">
<description>Carved alexandrite-dusted wolf prints continue their trek over a black onyx platform, making their way towards a polished granite altar set at the darkened far end. On either side of the dome are black steel braziers that are lit with eerie purple flames, setting a surreal ambience in the room. The lighting caresses its way across the four intricate carvings lined on either side of the tracks set into the platform.</description>
<position x="398" y="91" z="3" />
<arc exit="go" move="go black archway" destination="88" />
<arc exit="go" move="go onyx platform" destination="106" />
</node>
<node id="106" name="Eyes of the Thirteen, Eye of Meraud" note="Meraud">
<description>The gem-kissed wolf tracks end their journey at an inscription carved before a polished black granite altar veined in deep purple alexandrite. Sitting on top of the structure is a stunningly detailed statue sculpted from polished granite as dark as the stone from which the altar is made. Encompassing the platform is a faceted dark crystal dome that refracts the incoming light with the glow coming from the braziers into a dimly hued array of color and shadow.</description>
<position x="391" y="109" z="3" />
<arc exit="up" move="up" destination="105" />
</node>
<node id="107" name="Eyes of the Thirteen, Damaris' Shrine" note="Phelim|Dergati">
<description>Walls draped entirely in black silk fill the length of this platform with shadows that shift from ebon to deep azure as light falls from the dome of midnight-blue glass above. Barely silhouetted in the gloom is the lithe form of a life-sized obsidian panther depicted in full stalk, the great cat seeming to lead the way towards the room beyond. Someone has placed a garland of scarlet nightshade around its neck, the blossoms gone fiery against the dark, glassy stone of the sculpture.</description>
<position x="483" y="169" z="3" />
<arc exit="go" move="go marble arch" destination="89" />
<arc exit="go" move="go onyx platform" destination="108" />
</node>
<node id="108" name="Eyes of the Thirteen, Eye of Damaris" note="Damaris">
<description>Filtering through crystalline stars circling the apex of the midnight-blue dome, beams silvered like moonlight edge a graceful obsidian altar at the end of the platform. Countless bas-relief nightingales swirl up its sides, wings flared and heads flung back in eternal nightsong. Encircling its base is a ring of shrike skulls, each polished to the warm glow of old ivory and gleaming with opulent rows of tiny jet and lapis beads.</description>
<position x="465" y="178" z="3" />
<arc exit="up" move="up" destination="107" />
</node>
<node id="109" name="Eyes of the Thirteen, Everild's Shrine" note="Kuniyo|Trothfang">
<description>Fiery shades of red blaze within the confines of this stark chamber, the light from the temple shining smoothly through the warmth of the crystal resting over the far end the platform. A gentle tapping whispers throughout the room as a barbed spear suspended from the ceiling strikes softly against a battered shield that hangs above the archway. Resting silently at the edge of the platform, a statue set in pure silver gazes outward, its vigil over the temple floor below constant and unending.</description>
<position x="499" y="225" z="3" />
<arc exit="go" move="go archway" destination="90" />
<arc exit="go" move="go crimson-covered platform" destination="110" />
</node>
<node id="110" name="Eyes of the Thirteen, Eye of Everild" note="Everild">
<description>Streaks of red tint the fine crystal dome, cascading over the surface of the altar and down to the lip of the platform. A single white beam of light pokes through a tiny fracture in the crystal, reflecting brightly upon a polished silver statue.</description>
<position x="479" y="227" z="3" />
<arc exit="up" move="up" destination="109" />
</node>
<node id="111" name="Eyes of the Thirteen, Truffenyi's Shrine" note="Alamhif|Huldah">
<description>A silvery blue dome erupts from the wall above, creating a hemisphere to enclose the shrine in hues that mimic the summer sky. Sunlight filtering through the crystal from the chamber beyond fills the room with a steady glow that sparkles where it touches silver specks in the dark granite platform beneath you. Sitting near the archway, an obsidian stand is tipped slightly beneath the paws of an impish agate weasel, leaving a silver magpie on top to backwing as its perch is pushed out from under it.</description>
<description>A silvery blue dome erupts from the wall above, creating a hemisphere to enclose the shrine in hues that mimic the summer sky. Starlight filtering through the crystal from the chamber beyond fills the room with a wan glow that glitters where it touches silver specks in the dark granite platform beneath you. Sitting near the archway, an obsidian stand is tipped slightly beneath the paws of an impish agate weasel, leaving a silver magpie on top to backwing as its perch is pushed out from under it.</description>
<position x="495" y="285" z="3" />
<arc exit="go" move="go mahogany archway" destination="91" />
<arc exit="go" move="go granite platform" destination="112" />
</node>
<node id="112" name="Eyes of the Thirteen, Eye of Truffenyi" note="Truffenyi">
<description>The granite platform sparkles slightly where touched by the diffused light shed by the silvery blue dome. Silver feathers inlaid in the crystal dapple the surface of a polished granite altar with tiny shadows that almost blend into the stone's already mottled surface. Rising from the altar's center is an ornately carved triptych statue crafted so seamlessly as to appear an extension of the same stone of the altar.</description>
<position x="475" y="278" z="3" />
<arc exit="up" move="up" destination="111" />
</node>
<node id="113" name="Eyes of the Thirteen, Hav'roth's Shrine" note="Peri'el|Ushnish">
<description>The silver platform below you gleams as a sea of liquid emerald, the light striking it tinted by a green crystal half-sphere that encases this small shrine. Tiny people bustle in and out of the seats in the High Altar chamber below, some likely waiting for the next sermon to begin under the Eyes of the Thirteen.</description>
<position x="424" y="376" z="3" />
<arc exit="go" move="go satinwood archway" destination="93" />
<arc exit="go" move="go silver platform" destination="114" />
</node>
<node id="114" name="Eyes of the Thirteen, Eye of Hav'roth" note="Hav'roth">
<description>A faceted green crystal dome encases the end of the smooth silver platform, giving the shrine the appearance of being trapped within the delicate crystalline structure of an emerald. The green glow casts itself throughout, as if the only color ever known to this place. At the edge of the platform, just against the dome, a bejeweled silver triptych statue rests upon a low altar.</description>
<position x="414" y="359" z="3" />
<arc exit="up" move="up" destination="113" />
</node>
<node id="115" name="Eyes of the Thirteen, Eluned's Shrine" note="Lemicus |Drogor">
<description>Glistening like cool water, a blue crystal platform leads toward a coral statue resting deeper within the Shrine of the Ocean Mother. Fashioned from the same material as the passage underfoot, a great oval dome curves down to cradle the shrine in the deep blue light found within the heart of the sea. An indigo glaze marks the center of the colored half-sphere above the far statue, as though this were the eye of Eluned herself, gazing down upon the High Altar below.</description>
<position x="369" y="397" z="3" />
<arc exit="go" move="go crystal platform" destination="116" />
<arc exit="go" move="go narrow archway" destination="94" />
</node>
<node id="116" name="Eyes of the Thirteen, Eye of Eluned" note="Eluned">
<description>A rose coral statue rises from its altar base as seamlessly as a wave, silhouetted against a large blue crystal dome that juts out toward the center of the temple. Filling the space with a bluish glow, faint streams of light accent the ridges and valleys along the carving, granting it a sense of motion despite its lifeless structure.</description>
<position x="366" y="378" z="3" />
<arc exit="up" move="up" destination="115" />
</node>
<node id="117" name="Eyes of the Thirteen, Glythtide's Shrine" note="Saemaus|Smaragdaus|Be'ort">
<description>The arch leading to the hallway is flanked by two large murals depicting key moments in divine history. They are bathed in a warm amber glow coming from the direction of the platform. The wash of golden light makes the room seem as if one were viewing it through a mug of pale beer.</description>
<position x="311" y="397" z="3" />
<arc exit="go" move="go ivory arch" destination="95" />
<arc exit="go" move="go platform" destination="118" />
</node>
<node id="118" name="Eyes of the Thirteen, Eye of Glythtide" note="Glythtide">
<description>A huge ale-brown crystal dome bows out into thin air, providing an amber-tinted view of the chamber below. Golden light washes over an altar crafted from thick, twisted grapevines sitting at the end of the platform. A three-part statue rises seamlessly from the top of the altar.</description>
<position x="314" y="378" z="3" />
<arc exit="up" move="up" destination="117" />
</node>
<node id="119" name="Eyes of the Thirteen, Tamsine's Shrine" note="Albreda|Harawep">
<description>A pale golden crystal dome extends outward from the wall to surround the amber platform which stretches out from beneath the lacquered oaken archway. Two rows of Halfling-high candles line either side of the platform, casting an inviting glow throughout the entire shrine.</description>
<position x="256" y="376" z="3" />
<arc exit="go" move="go oaken archway" destination="96" />
<arc exit="go" move="go amber platform" destination="120" />
</node>
<node id="120" name="Eyes of the Thirteen, Eye of Tamsine" note="Tamsine">
<description>The amber platform ends here, both rows of candles curving around to meet each other behind a low yew altar that stands just before the end of the pale golden crystal dome. The candlelight gleams brightly against the sloping window, creating an illuminating halo about a yew triptych statue that rests upon the altar.</description>
<position x="266" y="359" z="3" />
<arc exit="up" move="up" destination="119" />
</node>
<node id="121" name="Eyes of the Thirteen, Faenella's Shrine" note="Murrula|Idon">
<description>Mirrored panels line the reflective glass of the platform, echoing the image of the altar located at the front of the shrine from innumerable different angles. Light ripples in through the ruby-colored dome that arcs over the shrine, casting everything in the room with a pink hue. An elaborately carved crystal archway leads into the hallway.</description>
<position x="186" y="284" z="3" />
<arc exit="go" move="go white archway" destination="98" />
<arc exit="go" move="go crystal platform" destination="122" />
</node>
<node id="122" name="Eyes of the Thirteen, Eye of Faenella" note="Faenella">
<description>Bathed in a pale rose hue from the light flowing through the moonlight ruby colored dome, the mirror-paneled chamber reflects multiple images of the carved rosewood statue upon the altar at the edge of the platform.</description>
<position x="205" y="278" z="3" />
<arc exit="up" move="up" destination="121" />
</node>
<node id="123" name="Eyes of the Thirteen, Chadatru's Shrine" note="Rutilor|Botolf">
<description>Walls of jade edged in mahogany line the shrine, creating the feel of a clouded atmosphere. Finely carved from mahogany and possessing startling lifelikeness, lions peer out beyond their posts with an eyeless gaze. Translucent jade forms a platform that extends outward, towards a muted dome, while an archway leads back toward the hallway.</description>
<position x="181" y="225" z="3" />
<arc exit="go" move="go jade archway" destination="99" />
<arc exit="go" move="go jade platform" destination="124" />
</node>
<node id="124" name="Eyes of the Thirteen, Eye of Chadatru" note="Chadatru">
<description>Formed out of seamless translucent jade-colored crystal, a dome extends out beyond the platform that supports it, drawing in an eerie reflection of light from the exterior of the dome. Sculpted from jade is a simple altar that extends outward, upon which rests a translucent triptych statue that stands as mute sentry to its surroundings.</description>
<position x="201" y="227" z="3" />
<arc exit="up" move="up" destination="123" />
</node>
<node id="125" name="Eyes of the Thirteen, Urrem'tier's Shrine" note="Eylhaar|Aldauth">
<description>A sea of inky shadows is all that is visible deeper within the black glass dome. The glossy jet platform gleams with what little light filters through the polished ebony archway that leads back into the temple halls.</description>
<position x="197" y="169" z="3" />
<arc exit="go" move="go ebony archway" destination="100" />
<arc exit="go" move="go jet platform" destination="126" />
</node>
<node id="126" name="Eyes of the Thirteen, Eye of Urrem'tier" note="Urrem'tier">
<description>The artificial light brought into this chamber seems feeble and choked, as if struggling for its own life amidst the blackness that saturates this small shrine. A giant obsidian dome envelops the glossy jet platform, trapping the chamber in eternal darkness. Resting flush up against the dome on the edge of the platform is a low onyx altar upon which rests a strange statue.</description>
<position x="215" y="178" z="3" />
<arc exit="none" move="pull silver candlestick" destination="190" />
<arc exit="up" move="up" destination="125" />
</node>
<node id="127" name="Monks' Quarters, Hallway">
<description>The scent of fresh baked bread and a multitude of herbs wafts from a narrow arch as the cramped hallway continues its curved path leading from one section of the monks' quarters to the next. A niche in one wall leads to a staircase that provides access to the lower sections of the temple.</description>
<position x="185" y="199" z="4" />
<arc exit="climb" move="climb staircase" hidden="True" destination="97" />
<arc exit="go" move="go mahogany door" destination="136" />
<arc exit="go" move="go narrow arch" destination="137" />
</node>
<node id="128" name="Monks' Quarters, Hallway">
<description>A panel of glass between the white plaster walls blocks the northern end of the passage. Various plants growing heartily are visible beyond, the heavy scent of dirt managing to waft its way through and filling the hallway with a metallic, earthy scent.</description>
<position x="495" y="199" z="4" />
<arc exit="climb" move="climb staircase" hidden="True" destination="92" />
<arc exit="go" move="go clockwise" destination="129" />
</node>
<node id="129" name="Monks' Quarters, Hallway">
<description>A bleached pine door stands silently on the east side of the curved hallway, the scent of amber emanating slightly from the room beyond. The white plaster ceiling slopes in a gentle curve above the door, bringing attention to a watercolor mural.</description>
<position x="495" y="281" z="4" />
<arc exit="go" move="go widdershins" destination="128" />
<arc exit="go" move="go clockwise" destination="130" />
<arc exit="go" move="go pine door" destination="134" />
</node>
<node id="130" name="Monks' Quarters, Hallway">
<description>A bleached pine door, surrounded by a molding carved to depict sirese flowers in full bloom, stands to the east toward the rim of the sphere while a highly polished ebonwood door blocks passage at the southern end of the hallway. The light scent of amber wafts within the walls from two oil burners mounted into the white plaster, filling this otherwise confining space with a sense of warmth and welcoming.</description>
<position x="453" y="353" z="4" />
<arc exit="go" move="go widdershins" destination="129" />
<arc exit="go" move="go clockwise" destination="131" />
<arc exit="go" move="go pine door" destination="133" />
</node>
<node id="131" name="Monks' Quarters, Library" note="Tamar|Library">
<description>Glass-covered bookcases hug the walls, protecting the various tomes from the rough hands of time and dust. Small cushioned chairs fill the center of the room and provide a comfortable space for monks, scholars or those simply filled with curiosity to read the treasure of stories, histories and accounts that fill the shelves. Carefully tended by the monks to guard against fire or smoke damage, candles have been lined along the mahogany molding.</description>
<position x="381" y="395" z="4" />
<arc exit="go" move="go ebonwood door" destination="130" />
<arc exit="go" move="go mahogany door" destination="132" />
</node>
<node id="132" name="Monks' Quarters, Hallway">
<description>Small sconces line the walls. Maintained by the temple's monks, they provide ever-present light within the passages. A mahogany door stands proudly at the end of the hallway, the gentle glow from the candles making the polished wood glisten with a reddish hue.</description>
<position x="299" y="395" z="4" />
<arc exit="go" move="go mahogany door" destination="131" />
<arc exit="go" move="go clockwise" destination="135" />
</node>
<node id="133" name="Monks' Quarters, East Dormitory">
<description>Warm light drifts from four tall candle holders placed in each corner of the room, casting a gentle glow upon a watercolor painting on the east wall. A wooden desk is cramped between two small bunk beds, each draped with a red wool blanket.</description>
<position x="439" y="339" z="4" />
<arc exit="go" move="go pine door" destination="130" />
</node>
<node id="134" name="Monks' Quarters, Meditation Room">
<description>Ten willow-reed mats circle a single oil lamp which gives off the faint, wafting scent of burning amber. The aroma induces a feeling of calm and serenity, creating the perfect environment in which to spend hours in prayer and meditation. A large plaque is centered above a tall fern on the far wall.</description>
<position x="475" y="276" z="4" />
<arc exit="go" move="go pine door" destination="129" />
</node>
<node id="135" name="Monks' Quarters, Hallway">
<description>The plaster walls are accented with red mahogany borders at both the ceiling and floor as the hallway continues its circular path. A small wooden door carved with a tiny trail of vines along each of its four sides stands welcoming against the southern wall while an ebonwood door blocks further passage in a clockwise direction.</description>
<position x="227" y="353" z="4" />
<arc exit="go" move="go widdershins" destination="132" />
<arc exit="go" move="go ebonwood door" destination="136" />
</node>
<node id="136" name="Monks' Quarters, Dining Room">
<description>A silver plaque, adorned with the stylized rendition of a rearing unicorn, hangs on the wall above a circular oak table that fills most of this room. Torcheres line the walls and fill the small space with a gentle light and the everpresent mild scent of smoke. A narrow red rug lines the barely passable space between the fixtures and the chairs that surround the table.</description>
<position x="185" y="281" z="4" />
<arc exit="go" move="go ebonwood door" destination="135" />
<arc exit="go" move="go mahogany door" destination="127" />
</node>
<node id="137" name="Monks' Quarters, Kitchen">
<description>This small kitchen is as warm and full of wonderful scents as a Halfling grandmother's. A pine sideboard is draped with a cheery red tablecloth, and a large iron stew pot sits atop a simple wood stove. Sconces cover the walls between narrow cupboards, filling the windowless room with a soft glow and the scent of smoke mixed with herbs and fresh baked bread. A crowd of pots and pans hangs from the ceiling, making it impossible to pull one object down without sending all the others toppling to the floor.</description>
<position x="227" y="127" z="4" />
<arc exit="go" move="go narrow arch" destination="127" />
<arc exit="go" move="go pine door" destination="138" />
</node>
<node id="138" name="Monks' Quarters, Hallway">
<description>A door formed from bleached pine wood and another of frosted glass stand on either side of this short hallway. Near the uppermost portion of the sphere, this passage is remarkably constricted, every amount of space having been preserved for the monks' living areas.</description>
<position x="299" y="85" z="4" />
<arc exit="go" move="go pine door" destination="137" />
<arc exit="go" move="go glass door" destination="139" />
<arc exit="climb" move="climb spiral staircase" hidden="True" destination="141" />
</node>
<node id="139" name="Monks' Quarters, Garden">
<description>The floor of this room has been structured to extend further toward the center of the sphere. Panels of glass surround it, allowing sunlight to filter through the skylight on the top of the temple and feed the ever-hungry plants and herbs that grow here. Rows of shelves fill the semi-circular room, permeating the space with color and the scent of growth.</description>
<description>The floor of this room has been structured to extend further into the sphere, below the temple's great skylight. Panels of glass surround the space and function like a greenhouse, keeping this room ever warm and moist. Small candles burn in between the pots of plants, flowers and herbs, complementing the multitudes of stars above.</description>
<position x="381" y="85" z="4" />
<arc exit="go" move="go glass door" destination="138" />
<arc exit="go" move="go archway" destination="140" />
</node>
<node id="140" name="Monks' Quarters, Gardener's Room">
<description>This entire room is filled in every nook and cranny with flowers, plants and herbs. Some have been carefully wrapped with thin cotton cloth as one would a fresh wound. A tiny cot just fits between two large potted ferns whose leafy tendrils cascade down and drape across the floor. In one corner, a large wicker basket is filled with dirt-stained garden tools.</description>
<position x="453" y="127" z="4" />
<arc exit="go" move="go archway" destination="139" />
</node>
<node id="141" name="High Priestess' Quarters, Hallway">
<description>Granite benches provide a place to sit for those waiting to hold audience with the High Priestess of the temple. The door to her office is fashioned from mahogany, carved with the crest of the guild of clerics which is encircled by two palm leaves. Tendrils of smoke carrying the scent of exotic incense float lazily through the archway, drifting up from the monks' quarters below.</description>
<position x="340" y="120" z="5" />
<arc exit="climb" move="climb spiral staircase" hidden="True" destination="138" />
<arc exit="go" move="go clockwise" destination="142" />
<arc exit="go" move="go mahogany door" destination="145" />
</node>
<node id="142" name="High Priestess' Quarters, Hallway">
<description>Each step echoing from the cool marble floor of the hallway reverberates against the temple's plaster walls, intruding upon the monastic silence. A faint breeze, redolent with the sweet fragrance of flowers and the spicy aroma of herbs, drifts down a narrow winding staircase, while the muffled sounds of distant chanting floats up from the temple below.</description>
<position x="454" y="203" z="5" />
<arc exit="go" move="go widdershins" destination="141" />
<arc exit="go" move="go mahogany door" destination="143" />
<arc exit="climb" move="climb winding stairway" hidden="True" destination="146" />
</node>
<node id="143" name="High Priestess' Quarters, Private Chambers">
<description>Comfortable furnishings clutter this cramped bedchamber, the need for function competing with the limits of the space. A flickering pool of light plays over a tiny writing table near the mahogany door, cast by a tallow candle. In the center of the room, a mahogany bed nestles amidst teetering stacks of books and parchments fallen from a shelf along the wall.</description>
<position x="411" y="337" z="5" />
<arc exit="go" move="go mahogany door" destination="142" />
<arc exit="go" move="go oak door" destination="144" />
</node>
<node id="144" name="High Priestess' Quarters, Defense Control" note="Defense Control Room">
<description>Two large cambrinth-framed mirrors -- one oval, the other rectangular -- seem out of place as the only attempt at decoration in this chamber. A rounded marble console emerges fluidly from the wall as though part of the same stone, or sculpted by magic. Atop the console, a series of unusual gems are arrayed on the surface of a bronze panel.</description>
<position x="269" y="337" z="5" />
<arc exit="go" move="go oak door" destination="143" />
<arc exit="go" move="go iron-bound door" destination="145" />
</node>
<node id="145" name="High Priestess' Quarters, Office" note="Tallis|High Priestess" color="#00FF00">
<description>A dark wooden desk sits before a small window that looks over the temple below. Bronze braziers stand to either side of an iron-bound door, their glowing embers providing light and warmth to the office of the key religious leader of the province. Two wooden chairs provide a place to sit for those who would seek advice or counsel with the High Priestess of the great temple.</description>
<position x="226" y="203" z="5" />
<arc exit="go" move="go iron-bound door" destination="144" />
<arc exit="go" move="go mahogany door" destination="141" />
</node>
<node id="146" name="High Priestess' Sanctuary, Gardens">
<description>Well-tended rows of herbs and flowers stretch in leafy array over the convex surface, reined in by a sturdy railing that guards against a perilous drop from the steepening curve of the dome. A gravel path trails between the rows and rises gently toward a spire that juts from the center of the roof. The fire from the top of the nearby watchtower flares faintly against the warm light of day.</description>
<description>Well-tended rows of herbs and flowers stretch in leafy array over the convex surface, reined in by a sturdy railing that guards against a perilous drop from the steepening curve of the dome. A gravel path trails between the rows and rises gently toward a spire that juts from the center of the roof. The fire from the top of the nearby watchtower flickers brightly against the night sky.</description>
<position x="320" y="260" z="6" />
<arc exit="go" move="go winding stair" hidden="True" destination="142" />
<arc exit="southeast" move="southeast" destination="147" />
<arc exit="northwest" move="northwest" destination="153" />
<arc exit="climb" move="climb gravel path" destination="154" />
</node>
<node id="147" name="High Priestess' Sanctuary, Gardens">
<description>Sturdy, thick planks of wood curve around the perimeter of the garden. A small streamer of ivy has wound around the railing and swings gently with every gust of wind. The breeze bears with it the reeking scents of the Segoltha River mingled with the sharp tang of smoke from the nearby watchtowers.</description>
<position x="340" y="280" z="6" />
<arc exit="northeast" move="northeast" destination="148" />
<arc exit="northwest" move="northwest" destination="146" />
<arc exit="go" move="go gravel path" destination="154" />
</node>
<node id="148" name="High Priestess' Sanctuary, Gardens">
<description>When the wind shifts, smoke from the watchtower directly southeast drifts through the slats of the railing and across the path. The flourishing plants appear not to suffer for it, however, and thrive in the rays of the sun.</description>
<description>When the wind shifts, smoke from the watchtower directly southeast drifts through the slats of the railing and across the path. The flourishing plants appear not to suffer for it, however, and thrive in the light of the stars.</description>
<position x="360" y="260" z="6" />
<arc exit="northeast" move="northeast" destination="149" />
<arc exit="southwest" move="southwest" destination="147" />
<arc exit="go" move="go gravel path" destination="154" />
</node>
<node id="149" name="High Priestess' Sanctuary, Gardens">
<description>A curious sculpture in the shape of a plant with clear leaves stretches low to the ground, taking up much of this patch of soil and swaying gently near the edge of the gravel path. Sparkles of sunlight dance along the structure, which radiates in thirteen points from its center stalk. The leaves chime faintly when they brush against the stones and the railing.</description>
<description>A curious sculpture in the shape of a plant with clear leaves stretches low to the ground, taking up much of this patch of soil and swaying gently near the edge of the gravel path. Sparkles of starlight dance along the structure, which radiates in thirteen points from its center stalk. The leaves chime faintly when they brush against the stones and the railing.</description>
<position x="380" y="240" z="6" />
<arc exit="southwest" move="southwest" destination="148" />
<arc exit="northwest" move="northwest" destination="150" />
<arc exit="go" move="go gravel path" destination="154" />
</node>
<node id="150" name="High Priestess' Sanctuary, Gardens">
<description>The scent of rich loam rises from a mounded heap of dirt from which the monks replenish the garden. Ivy has gained a foothold in the soil and drapes thickly over the wooden slats, stretching toward the skylights and the curve of the temple below. One tenacious strand crawls along the gravel path, slowly making its way toward the beacon spire.</description>
<position x="360" y="220" z="6" />
<arc exit="southeast" move="southeast" destination="149" />
<arc exit="northwest" move="northwest" destination="151" />
<arc exit="go" move="go gravel path" destination="154" />
</node>
<node id="151" name="High Priestess' Sanctuary, Gardens">
<description>Here at the northernmost point of the roof garden, a massive watchtower rises beyond the wooden railing, mostly blocking the view of the city below. The expanse of smooth slate on the tower is mirrored in the metallic beacon spire opposite it at the center of the garden. A gravel path leads toward the spire and stretches through the rows of leafy plants.</description>
<position x="340" y="200" z="6" />
<arc exit="southeast" move="southeast" destination="150" />
<arc exit="southwest" move="southwest" destination="152" />
<arc exit="go" move="go gravel path" destination="154" />
</node>
<node id="152" name="High Priestess' Sanctuary, Gardens">
<description>A small rosebush clings to the railing, swooning gracefully against its strong support. Other, better behaved flowers nestle in the thin soil surrounding the gravel paths and flourish among the herbs. Their blooms follow the sun on its course through the sky's dome, halting only when the shadows of the watchtowers and beacon spire fall across them.</description>
<description>A small rosebush clings to the railing, swooning gracefully against its strong support. Other, better behaved flowers nestle in the thin soil surrounding the gravel paths and flourish among the herbs. Their blooms are quiescent beneath the night sky, lit only by the fires atop the watchtowers that jut beyond the roof.</description>
<position x="320" y="220" z="6" />
<arc exit="northeast" move="northeast" destination="151" />
<arc exit="southwest" move="southwest" destination="153" />
<arc exit="go" move="go gravel path" destination="154" />
</node>
<node id="153" name="High Priestess' Sanctuary, Gardens">