#include "path.h" inherit "/std/room.c"; setup () { set_short("East end Diamond Street"); set_long("This is Diamond Street, which continues to the "+ "west of here. You can tell it is a posh area, as "+ "most of the beggars wear ties. A dismal looking "+ "street leading south from here must be Pebblestone "+ "Avenue.\n"); add_item( ({"road", "street", "diamond street", "Diamond Street"}), "A well paved and kept street. You are sure that given "+ "half a chance, it would be called 'Diamond Avenue'.\n"); add_item( ({"pebblestone avenue", "Pebblestone Avenue", "avenue"}), "Even from this distance, Pebblestone Avenue makes you feel "+ "rather depressed. It is a truly dismal street, completely "+ "lacking in character or purpose.\n"); add_item( ({"people", "beggar"}), "You see one beggar discussing Kafka with a friend, "+ "while another is talking to his stock-broker over "+ "his mobile phone.\n"); add_exit("west", HOMECITY+"diamondstreet8", "road"); add_exit("south", HOMECITY+"pebblestone1", "road"); set_zone("newbie"); set_light(60); }