31 lines
1.4 KiB
C
31 lines
1.4 KiB
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit "/domains/cave/etc/cave_room";
|
|
|
|
void create() {
|
|
::create();
|
|
SetAmbientLight(0);
|
|
SetShort("underground passageway");
|
|
SetLong("This is a dark underground passageway. The walls are rough and bare. The passageway runs southwest and northwest from here. There are rooms to the north, west, and south.");
|
|
SetItems(([
|
|
({ "passage", "passageway", "This provides access to areas below the ground." }) : "This provides access to areas below the ground.",
|
|
({ "ground", "rock", "rocks", "earth", "dirt", "stone", "stones" }) : "Rough and dirty, as one would expect from a simple underground area.",
|
|
({ "wall", "walls", "rough walls", "rough and bare walls", "bare walls", "bare and rough walls" }) : "Carved roughly into the earth, this passageway has walls that expose underground rock. Clearly this area was architected with utility and expediency in mind.",
|
|
]));
|
|
SetExits( ([
|
|
"south" : "/domains/cave/room/chieftain",
|
|
"west" : "/domains/cave/room/dining1",
|
|
"northwest" : "/domains/cave/room/cavepass8",
|
|
"southwest" : "/domains/cave/room/cavepass12",
|
|
"north" : "/domains/cave/room/shop.c",
|
|
]) );
|
|
SetClimate("indoors");
|
|
|
|
SetInventory(([
|
|
]));
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|