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

23 lines
530 B
C

#include <lib.h>
inherit LIB_ROOM;
static void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(40);
SetShort("a creator's workroom");
SetLong("You are standing in the workroom of a creator."+
" The start room is down from here.");
SetItems( ([
"workroom" : "It looks very nice.",
]) );
SetInventory(([
]));
SetObviousExits("down");
SetExits( ([ "down" : "/domains/default/room/start.c",
]) );
}