#include "path.h"
inherit "/std/room";
void setup(){
set_short("Realm of the Lizard: Underwater");
set_light(50);
set_long("\nRealm of the Lizard: Underwater\n\n"
" This is an ancient underwater civilization. Most of what"
" existed at one time has now decayed into ruin. There are"
" colorful fish swimming all around. To the west there is a"
" steep enbankment.\n");
add_item("fish", "These colorful fish have taken over this place.\n");
add_item("enbankment", "This is a steep underwater cliff to the"
" west.\n");
add_exit("north", UWATER+"uw08", "path");
add_exit("northeast", UWATER+"uw04", "path");
add_exit("east", UWATER+"uw05", "path");
}