#include <lib.h>
#include <rooms.h>

inherit "/domains/cave/etc/cave_room";

void create() {
    ::create();
    SetAmbientLight(0);
    SetShort("troll pit");
    SetLong("This is a dark underground room. The walls are rough and bare. A passageway leads southwest.");
    SetItems(([
                ({ "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.",
                ({ "passage", "passageway", "This provides access to areas below the ground." }) : "This provides access to areas below the ground.",
                ({ "room", "here", "area" }) : "Carved roughly into the earth, this area has walls that expose underground rock.",
                ]));
    SetInventory(([
                "/domains/cave/npc/cavetroll" : 1,
                ]));
    SetExits( ([ 
                "southwest" : "/domains/town/room/wtunnel6",
                ]) );
    SetClimate("indoors");
    SetDoor("southwest", "/domains/town/doors/gate.c");
    SetFlyRoom("/domains/cave/room/chieftain");
    SetFlowLimit(2);
}

void init(){
    ::init();
}
