23 lines
608 B
C
23 lines
608 B
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetAmbientLight(30);
|
|
SetShort("Science building, second floor");
|
|
SetLong("This is the second floor of the LPC University Science Building. To the west is an elevator door.");
|
|
SetClimate("indoors");
|
|
SetExits( ([
|
|
"north" : "/domains/campus/room/kleiner",
|
|
"south" : "/domains/campus/room/stairwell2b",
|
|
"west" : "/domains/campus/room/shaft2.c",
|
|
]) );
|
|
SetDoor("west", "/domains/campus/doors/eledoor2");
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|