mud/lib/realms/template/area/room/sample_two.c
2020-09-06 05:43:07 -07:00

27 lines
532 B
C

#include <lib.h>
#include "../customdefs.h"
inherit LIB_ROOM;
static void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(30);
SetShort("Second Sample Room");
SetLong("This is another sample room.");
SetItems( ([
"template" : "That's what this is.",
]) );
SetInventory(([
MY_OBJ "/case" :1,
]));
SetExits(([
"west" : MY_AREA "/room/sample_room",
]));
}
void init(){
::init();
}