#include "path.h" inherit "/std/room.c"; setup () { set_short("Main Street, north of Berts Boutique"); set_long("You are on Main Street, the main east/west route through "+ CITYNAME+". A glass-fronted shop to the south of here has a sign over"+ " its door reading 'Berts Boutique'.\n"); add_item("sign", "The sign reads 'Berts Boutique'. Are you stupid or something?\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( ({"shop", "store", "boutique", "berts boutique", "Berts Boutique"}), "The shop, despite its name, seems to a pretty run down place.\n"); add_exit("west", HOMECITY+"mainstreet7", "road"); add_exit("east", HOMECITY+"mainstreet9", "road"); set_zone("mid"); add_exit("south", HOMECITY+"bertsboutique", "door"); set_light(60); }