;***************************************************************************** ; This file contains all the room descriptions of level 3 needed by Quest. ; Level 3 is different from the other Quest levels, it's a maze filled with ; multiple wandering monsters, all of them extremely dangerous. Let the player ; beware! ; ; Because the maze is so large, the rooms that are just intersections are ; named R# where # is the number of the room on the design map. This level ; isn't finished... ;***************************************************************************** (cavern stair-pit-3 ; Room # 81 (property description "You are in the stair pit, standing on a landing to one side of the spiraling staircase. On the wall by the exit to the east is a large glowing '3' and the word 'Labarynth'. The spiral stairs continue down out of sight. A second exit is on the\ south wall." short-description "Stair Pit '3'" odor "It smells faintly like a cow barn in here." east r83 south r81 up stair-pit-2 up-error nil ) ) ;***************************************************************************** ; The following objects are class definitions just like "cavern" is. They are ; used to make defining the maze easier. ;***************************************************************************** (cavern north-T (property description "You are in an east/west north T intersection." short-description "T intersection" ) ) (cavern south-T (property description "You are in an east/west south T intersection." short-description "T intersection" ) ) (cavern east-T (property description "You are in a north/south east T intersection." short-description "T intersection" ) ) (cavern west-T (property description "You are in an north/south west T intersection." short-description "T intersection" ) ) (cavern ns-passage (property description "You are in a north/south passage." short-description "N/S Passage" ) ) (cavern ew-passage (property description "You are in an east/west passage." short-description "E/W Passage" ) ) (cavern R82 ; Room #82 (property description "You are in a north/east L intersection." short-descritpion "L intersection" north stair-pit-3 east r91 ) ) (south-t r83 ; Room #83 (property south r91 west stair-pit-3 east r84 ) ) (north-t r84 ; Room #84 (property north r111 west r83 east r85 ) ) ; This T intersection has a pair of stone doors leading north as well. (south-t r85 ; Room #85 (property south r92 west r84 east r86 north north-stone-door enter north-stone-door ) ) ; Upward is the minotaur's lair (room #93) (e/w passage r86 ; Room #86 (property west r85 east r87 up minotaur-lair up-error nil ) ) (south-t r87 ; Room #87 (property west r86 east r88 south r94 ) )