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

22 lines
453 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(0);
SetShort("the secret stash");
SetLong("This appears to be a secret room for saving valuables. The "+
"master bedroom is west.");
SetExits( ([ "west" : "/domains/town/room/mansion_mbdroom" ]) );
SetNoClean(1);
SetPersistent(1);
RestoreObject();
}
void init(){
::init();
}