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

19 lines
416 B
C

#include <lib.h>
inherit LIB_ROOM;
static void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(30);
SetShort("Shower Stall");
SetLong("You are standing in a shower stall. People come "
"here to get clean.");
SetExits( ([
"out" : "/domains/town/room/mansion_room3"
]) );
SetObviousExits("out");
}
void init(){
::init();
}