#include "path.h" inherit "/std/room.c"; setup () { set_short("Main Street"); set_long("This is Main Street, which runs east"+ "/west through "+CITYNAME+". Tall buildings tower "+ "over the road, blocking out most of the light.\n"); add_item( ({"street", "road", "main street", "Main Street"}), "Main Street was originally a beautifully cobbled "+ "thoroughfare, but is now badly in need of repair.\n"); add_item( ({"house", "building", "tall building"}), "Most of them seem to defy gravity, and certainly "+ "defy all building regulations ever made up.\n"); add_exit("west", HOMECITY+"mainstreet10", "road"); add_exit("east", HOMECITY+"pebblestone5", "road"); set_zone("mid"); set_light(60); }