#include "path.h"
inherit "/std/room.c";
void setup()
{
set_short("elven house");
set_long("Elven treehouse.\n\n"
" You've entered a smaller house built high up in "
"the trees of the elven village. All around you in "
"the room's furniture you notice beautiful carvings showing "
"different forms of the nature spirit praised by the elfs."
"\n\n");
set_light(80);
add_item("window","Looking through the open window to the east you "
"see the forest surrounding the elven village. Just below "
"to the left you see a small hut looking like a temple "
"with the walls filled with strange carvings. Up to the "
"right you clearly see a guardpost watching over the village "
"and its surroundings. \n");
add_item("carvings","There are serveral astonishing forms of "
"many different animals of the forest. They seem to be "
"carved in a special order beginning with a Deer and a Cat "
"and ending with a pig and a dragon. \n");
add_item("furniture","The furniture of the room consists of. "
"a wonderfully carved table with chairs having the shape "
"of a tree, with a hollow crown as seat and support. In each "
"corner of the room there lies a lower wooden desk with "
"some fresh moss and leaves on it. Most likely the relaxing "
"place of elfs. \n");
add_smell(({"room","air"}),"A fresh smell streams from the open "
"windows adding some of the natures aroma.\n");
add_exit("northwest",ROOMS+"v1.c","door");
add_exit("south",ROOMS+"y5.c","door");
}