#include "path.h" inherit "/std/room.c"; setup () { set_short("Market Street, south of the marketplace"); set_long("You are on Market Street, which continues to the east "+ "and west of here. Off to the north you can see the busy bustle "+ "of the marketplace.\n"); add_item( ({"road", "street", "market street", "Market Street"}), "This is where the inhabitants of "+CITYNAME+" come "+ "to buy (and sell) things. Strange that...\n"); add_item( ({ "people", "trader", "hawker", "merchant" }), "The traders sell all manner of indispensible items "+ "such as bonsai trees, and fresh whale meat.\n"); add_exit("west", "marketstreet4", "road"); add_exit("north", MARKET+"marketplace2", "road"); add_exit("east", "marketstreet6", "road"); set_zone("trader"); set_light(60); }