mud/lib/domains/oogtopia/room/bushess.c
2020-09-06 05:43:07 -07:00

34 lines
906 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");
SetItems(([
({ "poo", "ooga poo", "poop", "shit", "turd" }) : "This is some poo an ooga left under the bush",
]));
SetExits( ([
"north" : "/domains/oogtopia/room/start",
"west" : "/domains/oogtopia/room/bushessw",
"east" : "/domains/oogtopia/room/bushesse.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();
}