#include "path.h"
inherit "/std/room.c";
setup ()
{
set_short("Diamond Street");
set_long("This is Diamond Street, which continues East and "+
"West of here. You can tell it is a posh area, as "+
"most of the beggars wear ties.\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( ({"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+"diamondstreet6", "road");
add_exit("east", HOMECITY+"diamondstreet8", "road");
set_zone("newbie");
set_light(60);
}