mud/lib/domains/Praxis/death/death_room.c
2020-09-06 05:43:07 -07:00

12 lines
280 B
C

#include <lib.h>
inherit LIB_ROOM;
void create() {
room::create();
SetProperties(([ "light" : 3, "no magic" : 1 ]));
SetShort("the underworld");
SetLong("This will become something more interesting. Exit is up.");
AddExit("up", "/domains/Praxis/square");
}