#include "path.h" inherit "/std/room.c"; setup () { set_short("Diamond Street, south of a restaurant"); set_long("You are on Diamond Street, a posh road on the northern" +" side of "+CITYNAME+". The road continues to the east and west of" +" here, and there is a posh restaurant to the north of here.\n"); add_item( ({"restaurant", "posh restaurant"}), "The entrance to the restaurant is an intimidating construction "+ "of smooth marble and smoked glass. Beware, if you go in there, you"+ " will come out again much poorer.\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+"diamondstreet2", "road"); add_exit("east", HOMECITY+"diamondstreet4", "road"); add_exit("north", HOMECITY+"restaurant1", "door"); set_zone("newbie"); set_light(60); }