mud/lib/domains/default/doors/steel_door.c
2020-09-06 05:43:07 -07:00

23 lines
720 B
C

#include <lib.h>
inherit LIB_DOOR;
static void create() {
door::create();
SetSide("east", (["id" : ({ "steel door", "steel door leading east", "door", "east door" }),
"short" : "a steel door leading east",
"long" : "This is an imposing, large steel door leading east into the arena.",
"lockable" : 0 ]) );
SetSide("west", (["id" : ({ "steel door", "steel door leading west", "west door", "door" }),
"short" : "a steel door leading west",
"long" : "This is an imposing, large steel door leading west, out of the arena.",
"lockable" : 0 ]) );
SetClosed(0);
SetLocked(0);
}
void init(){
::init();
}