mud/lib/realms/babylon/tmp/iiaiilbi1599132791.c
2020-09-06 05:43:07 -07:00

28 lines
720 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",
]));
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();
}