#include "path.h" inherit "/std/room.c"; setup () { set_short("Pebblestone Avenue"); set_long("You are on Pebblestone Avenue, which continues to the "+ "North and South of here. It is a busy road, but lacks "+ "any real purpose in life.\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("people", "All the people strolling aimlessly along this road "+ "look rather depressed. In fact, so do you.\n"); add_exit("north", HOMECITY+"pebblestone5", "road"); add_exit("south", HOMECITY+"pebblestone7", "road"); set_zone(CITYNAME); set_light(60); }