20 lines
482 B
C
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();
|
|
}
|