// std room by Sojourn, head peon.
inherit "/std/room";

void setup() {
// Descriptions...
set_short("Camp site");
set_light(20);
set_long(" blah.\n");
   add_item(({"wall", "rock"}),
	"The walls here are dark and damp. They are covered "
	"with moss and fungus. Some places there are "
	"bodily wastes smeared up on the walls. The "
	"sight of it is disgusting.\n");
   add_item(({"moss", "fungus"}), 
	"The moss and fungus probably grow here "
	"because the walls are so damp and wet.\n");

// Items...

// Exits...
} /* setup() */
