17 lines
375 B
C
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);
|
|
}
|