//Ljen okt -96
inherit "/std/room";
#include "path.h"
void setup(){
set_short("Castle Of The Green Sun: Corridor");
set_long("You are standing at the corridor of the castle's first floor."
" To the west a soft light is coming out from under a door. "
"The walls and ceiling are nude but the torches. On the floor"
" there is a carpet all along with some strange drawings in"
" it.\n");
add_item("torch", "A common torch with a wooden haft and a cloth head "
"swet in oil\n");
add_item("carpet", "A red carpet with golden drawings. The drawings"
" seems to be a very old language where you can understand"
" some words: '.... Mirror ..exit.... treasure.... pull.'\n");
set_light(50);
add_exit("west", CAST+"d1.c", "door" );
add_exit("south", CAST+"e2.c", "path" );
}