mud/lib/realms/babylon/tmp/ajcafofm1599111753.c
2020-09-06 05:43:07 -07:00

25 lines
497 B
C

#include <lib.h>
#include "/realms/babylon/area/customdefs.h"
inherit LIB_ROOM;
static void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(30);
SetShort("a whole new room");
SetLong("This is an entirely different place.");
SetItems( ([
"template" : "That's what this is.",
]) );
SetInventory(([
"/realms/babylon/area/npc/grunthol" : 2,
"/realms/babylon/area/obj/table" : 1,
]));
}
void init(){
::init();
}