#include "path.h" inherit "/std/room.c"; setup() { set_short("Main Street, near a jetty"); set_long("You are on Main Street, a large road which runs east and " +"west through "+CITYNAME+". The north side of the road is " +"heavily built up, but there is a small jetty to the south. " +"\n"); add_item( ({"street", "road", "main street", "Main Street"}), "Main Street is, or at least once was, a well cobbled " +"street, created by a right load of cobblers. \n"); add_item( ({"house", "building"}), "The houses to the north of here are all single level " +"buildings which have been built on top of each other. \n"); add_item( ({"pier", "jetty"}), "The jetty runs to the south of here. It was made of well " +"hewn wooden planks. I stress was, because now it is made of " +"badly warped wooden planks. \n"); add_exit("east", "mainstreet16", "road"); add_exit("west", "mainstreet14", "road"); add_exit("south", BEACH+"jetty1", "road"); set_zone("mid"); set_light(60); }