#include "path.h" inherit "/std/room.c"; setup () { set_short("West end of Diamond Street"); set_long("This is Diamond Street, which continues to the east "+ "of here. To the west you can make out Traders Walk, "+ "despite the inhabitants attempts to disguise the fact "+ "that their street is connected with it.\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( ({"traders walk", "Traders Walk"}), "Traders Walk is so called because of all the northern "+ "traders who walk along it on thier way to Market Street. "+ "But hey, you could have told me that, no?\n"); add_item( ({"people", "beggar"}), "You see once beggar discussing Kafka with a friend, "+ "while another is talking to his stock-broker over "+ "his mobile phone.\n"); add_exit("west", HOMECITY+"traderswalk3", "road"); add_exit("east", HOMECITY+"diamondstreet2", "road"); set_zone("newbie"); set_light(60); }