#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);
}
