#include <mudlib.h>
inherit ROOM;
void reset(status arg) {
if (arg) return;
set_short("A dense rainforest");
set_long(
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"+
"After pushing your way through the dense shrubbery, you find yourself\n"+
"deep within the island's thick rainforest. The trees block out most of\n"+
"the sun with only a few golden rays finding their way through the\n"+
"foliage. The path seems to carry on to the north and west.\n"+
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
set_exits(({
// "players/sarak/minotaur/island/west3", "southwest",
"players/sarak/minotaur/start", "east",
"players/sarak/minotaur/island/pub", "down",
"players/sarak/minotaur/island/west2", "north",
}));
set_weather(1,4,2);
}