#include "path.h" inherit "/std/room.c"; setup () { set_short("Main Street, south of a dark alleyway"); set_long("You are on Main Street which runs east and west of "+ "here through "+CITYNAME+". Off to the north you can see a "+ "narrow and dark alley.\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_item( ({"alley", "alleyway", "dark alley"}), "The alley smells a bit, and is very foreboding.\n"); add_exit("west", HOMECITY+"mainstreet16", "road"); add_exit("east", HOMECITY+"mainstreet18", "road"); add_exit("north", HOMECITY+"darkalley1", "road"); set_zone("mid"); set_light(60); }