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

20 lines
482 B
C

inherit "/lib/std/room";
void create() {
::create();
SetProperty("light", 1);
SetProperty("indoors", 1);
SetShort( "A dark passage");
SetLong(
"You are in a dark passage inside the orc fortress.");
SetItems(
(["passage" : "You cannot see much of anything."]) );
SetExits(
(["east" : "/domains/Praxis/orc_valley/chamber1",
"west" : "/domains/Praxis/orc_valley/open"]) );
}
void init(){
::init();
}