26 lines
744 B
C
26 lines
744 B
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetAmbientLight(30);
|
|
SetShort("Hazardous Technologies Lab");
|
|
SetLong("The University's research often yields mysterious, advanced, or alien artifacts which may pose a hazard to normal people. This laboratory is where such items are brought for analysis.");
|
|
SetInventory(([
|
|
"/domains/campus/npc/turret" : 1,
|
|
"/domains/campus/obj/workbench" : 1,
|
|
"/domains/default/armor/pscoutsuit" : 1,
|
|
]));
|
|
SetExits(([
|
|
"north" : "/domains/campus/room/science2",
|
|
]));
|
|
|
|
SetClimate("indoors");
|
|
SetProperty("nopeer",1);
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|