28 lines
703 B
C
28 lines
703 B
C
/* /domains/Examples/etc/door.c
|
|
* from the Dead Souls LPC Library
|
|
* an example door object connecting doorroom1.c and doorroom2.c
|
|
* created by Descartes of Borg 950411
|
|
*/
|
|
|
|
#include <lib.h>
|
|
|
|
inherit LIB_DOOR;
|
|
|
|
|
|
static void create() {
|
|
door::create();
|
|
SetSide("green room", ([ "id" : ({"green door"}),
|
|
"short" : "a green door",
|
|
"long" : "This is a green door.",
|
|
"lockable" : 1 ]) );
|
|
SetSide("west", ([ "id" : ({"green door","door"}),
|
|
"short" : "a green door",
|
|
"long" : "This is a green door.",
|
|
"lockable" : 1 ]) );
|
|
SetClosed(1);
|
|
SetLocked(1);
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|