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

17 lines
388 B
C

#include <lib.h>
#include ROOMS_H
inherit "/domains/cave/etc/cave_room";
void create() {
::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 ::CanReceive(ob);
}