#include "path.h" inherit "/std/room.c"; setup () { set_short("Main Street"); set_long("You are on Main Street, a very built up road running, " +"or rather limping though "+CITYNAME+" from the east to the " +"west (or vice versa).\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", "flower shop"}), "The shop has brightly coloured blooms stacked outside. "+ "The inside of the shop is a mystery from here, other than "+ "it is *very* full of flowers.\n"); add_monster(MONSTERS+"lady", 1); add_monster(MONSTERS+"fighter", 1); add_exit("west", HOMECITY+"mainstreet5", "road"); add_exit("east", HOMECITY+"mainstreet7", "road"); set_zone("mid"); set_light(60); }