mud/lib/domains/oogtopia/room/bushesw.c

33 lines
972 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetClimate("temperate");
SetNightLight(20);
SetDayLight(40);
SetShort("tangled bushes");
SetLong("the bushes are unkempt, and there appears to be ooga poo under one. The party is to your East and there is an open field to the North.");
SetItems(([
({ "poo", "ooga poo", "poop", "shit", "turd" }) : "This is some poo an ooga left under the bush",
]));
SetExits( ([
"north" : "/domains/oogtopia/room/field",
"east" : "/domains/oogtopia/room/start",
"south" : "/domains/oogtopia/room/bushessw.c",
]) );
SetTown("oogtopia");
SetSmell(([
({ "ooga poo", "poo", "poop", "shit", "turd" }) : "This smells awful, it's not fresh but that makes it worse, the scent is almost enough to knock you over.",
]));
SetNoModify(0);
SetCoordinates("7001,7000,7000");
}
void init(){
::init();
}