//Ljen nov -96
//Coded by Yalaba on the 29th of August of '96
inherit "/std/outside";
#include "path.h"
void setup(){
set_short("Jungle Town");
set_light(80);
set_long("You are standing at the entrance of a small town, "
"where a bunch of wild half-elves live. The small houses are "
"built inside the trunk of living trees, in perfect harmony "
"with nature. The tree gives the half-elves the "
"perfect protection against the variations of the weather while "
"those care about it.\nThe town is fenced with a log wall to "
"protect the villagers from the wild animals. At the north"
"east you can see what seems to be an orchard and to the northwest"
" you can see the savannah.\n");
add_exit("west" , SAVANNAH+"g5", "path");
add_exit("north", TOWN+"a3" , "path");
add_exit("east" , TOWN+"b4" , "path");
}