#include "path.h"
inherit "/std/room";
void setup(){
    set_light(50);
set_short("Realm of the Lizard:  Underwater");
set_long("\nRealm of the Lizard:  Underwater\n\n"
     "     You are at the edge of what looks to be an ancient"
             " underwater civilization, although now there is nothing"
             " civilized about this place except maybe a school"
             " of fish that occasionally swims by.  The majority of the"
             " remains are to the south, while a cliff is to the west.\n");
    add_item("cliff", "This is a steep enbankment to the west.\n");
    add_item("fish", "These fish have taken over this place.  They"
             " everywhere.\n");
    add_exit("southeast", UWATER+"uw03", "path");
    add_exit("south", UWATER+"uw07", "path");
}