//Modified by Ljen okt -96
//Coded by Joram on the 12th of September '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,"
" which leads to the chambers of the inhabitants of this castle. "
"The walls and celling 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 "
"seem to be a very old language where you can understand some"
" words: '.... Mirror ..exit.... treasure.... pull.'\n");
set_light(50);
add_exit("south", CAST+"e4.c", "path");
add_exit("north", CAST+"e2.c", "path" );
add_exit("west", CAST+"d3.c", "path");
}