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

29 lines
615 B
C

#include <lib.h>
#include "/realms/babylon/area/customdefs.h"
inherit LIB_ROOM;
static void create() {
room::create();
SetClimate("indoors");
SetAmbientLight(30);
SetShort("copy of sample_room.c");
SetLong("This is a room you can use as a template.");
SetItems( ([
"template" : "That's what this is.",
]) );
SetExits( ([
"north" : "/realms/babylon/area/room/sample_room",
"west" : "/realms/babylon/area/room/room2",
]) );
SetInventory( ([
MY_OBJ "/table" : 1,
MY_NPC "/fighter" : 1,
]) );
}
void init(){
::init();
}