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

17 lines
375 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetAmbientLight(30);
SetShort("the incept pod");
SetLong("The incept pod. Some objects come here to be created "+
"and identified. Go down to get out.");
SetExits( ([ "down" : ROOM_START ]) );
}
int CanReceive(object ob){
return room::CanReceive(ob);
}