#include "path.h" inherit "/std/room.c"; setup() { set_short("Pebblestone avenue, south of Market Street"); set_long("You are on Pebblestone Avenue, a short distance to the " +"south of Market Street. The road continues to the north and " +"south of here. \n"); add_item( ({"avenue", "Pebblestone Avenue", "pebblestone avenue", "road"}), "Pebblestone Avenue is a dreary cobbled road which, for want " +"of anything better to do, runs north and south through " +CITYNAME+". \n"); add_item( ({"Market Street", "market street", "street"}), "Market street runs east/west across the southern side of " +CITYNAME+". It is just north of here. \n"); add_exit("north", HOMECITY+"pebblestone13", "road"); add_exit("south", HOMECITY+"pebblestone15", "road"); set_zone("docks"); set_light(60); }