#define IMM1 " "
#define IMM2 " "
#include "path.h"
inherit"/std/room.c";
void init() {
shield_it(SHIELD,"/d/ss/daggerford/ladyluck");
::init();
}
void setup() {
set_long("This is a black marble hallway. Power flows"
" through the very"
" that serves as the walls of this halway. You are afraid"
" that the power"
" will someday burst out of the crystal and destroy this"
" wonderous place."
" A door lies to your north, and to your south. A golden "
"plaque on the "
"northern door reads: Domain control. A identical plaque"
"on the southern door reads: Site security. A door to the"
" east has yet"
" another plaque on it that reads: File Access security.");
set_short("admin hallway 3");
add_exit("north",ADMIN+"domain_control","door");
add_exit("south",ADMIN+"site_control","door");
add_exit("east",ADMIN+"access_control","door");
add_exit("west",ROOM+"admin2","road");
add_item("carpet","There is none.");
add_item("plaque","It is made of gold and magically sealed "
"to the door.\n");
set_light(100);
}