#include "path.h" inherit "/std/room.c"; setup () { set_short("Pebblestone Avenue, east of the Town Hall."); set_long("You are on the excuse for a road, Pebblestone Avenue "+ "which continues to the north and south of here. A large "+ "building off to the west is the town hall.\n"); add_item( ({"road", "avenue", "pebblestone avenue", "Pebblestone Avenue"}), "An air of pointlessness surrounds Pebblestone Avenue, "+ "making you wish you were elsewhere.\n"); add_item( ({"town hall", "hall", "building", "Town Hall"}), "The town hall is house in an impressive building, and looks "+ "to be very efficient. You do, however, wonder why they chose "+ "to place it on such a useless street as this one.\n"); add_item("people", "All the people strolling aimlessly along this road "+ "look rather depressed. In fact, so do you.\n"); add_exit("north", "pebblestone6", "road"); add_exit("south", "pebblestone8", "road"); add_exit("west", TOWNHALL+"entrance", "door"); set_zone(CITYNAME); set_light(60); }