#include "path.h"
inherit "/std/outside";
void setup()
{
set_short("Volcanic Island: Jungle");
set_light(LIGHT);
add_property("no_undead",1);
set_long("Volcanic Island: Jungle \n\n"
" The island is coming to a head to the North of you. The "
"massive jungle which surrounds you has no paths open, other than "
"to the SouthEast and the NorthWest. Wonderful aromas from "
"jungle flowers surround you as you walk through this thick foilage. "
"\n\n");
add_item("sun","The sun beats down from above. It feels good to a lizard, such "
"as yourself.\n");
add_item("jungle","The jungle is towering above you and the sounds of exotic "
"animals and fragrances of plants almost overwhelm your senses. This island "
"is much different from your home island. \n");
add_feel(({"sand","floor","ground"}),"The ground is very hot, and the sand hot "
"to the touch of your feet.\n");
add_smell(({"fragrance","plants","flowers"}),"The smells of the plants and flowers "
"around you are all sweet and sugary in their scent. It's a good thing that you "
"are not alergic to any kind of pollen.\n");
add_item("flowers","The flowers in this this area range in size and color, covering "
"the entire spectrum of what you have seen before, and then some.\n");
add_feel("flowers","The flowers are delicate and papery under your scaly touch.\n");
add_item("trees","The trees of this place reach much higher than those of your "
"home island. You are thankful that you aren't required to shimmy up these trees "
"as you do at home to get coconuts for food. \n");
add_item("pollen","%^GREEN%^ACHOO!!!%^RESET%^");
add_exit("southeast",VOLCANO+"island8.c","path");
add_exit("northwest",VOLCANO+"island11.c","path");
}