#include "path.h" inherit "/std/room.c"; setup () { set_short("Main Street, south of the Post Office."); set_long("You are on Main Street, which continues to the east and"+ " west of here. An official-looking building off to the north of"+ " here must be the post office.\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("houses", "Most of them seem to defy gravity, and certainly "+ "defy all building regulations ever made up.\n"); add_item( ({"post office", "Post Office", "building", "official-looking building"}), "The post office is just north of here, housed in an official "+ "looking, if a bit run-down building. As you look at it, a frog "+ "wearing a post-office hat wanders out of it, decides it is going "+ "to rain, and wanders back inside.\n"); add_exit("west", "mainstreet12", "road"); add_exit("east", "mainstreet14", "road"); add_exit("north", POSTOFFICE+"post", "door"); set_zone("mid"); set_light(60); }