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

19 lines
481 B
C

inherit "/lib/std/room";
void create() {
::create();
SetProperty("light", 1);
SetProperty("indooors", 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(
(["west" : "/domains/Praxis/orc_valley/chamber2",
"east" : "/domains/Praxis/orc_valley/open"]) );
}
void init(){
::init();
}