mud/lib/domains/campus/room/classroom1.c
2020-09-06 05:43:07 -07:00

22 lines
455 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetAmbientLight(30);
SetShort("Science Classroom");
SetLong("This small room provides a teaching space for the advanced topics researched by the facility.");
SetClimate("indoors");
SetItems( ([
]) );
SetExits(([
"south" : "/domains/campus/room/science5",
]));
}
void init(){
::init();
}