#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. From the north comes the sound of "+ CITYNAME+"'s busy 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", "hawker", "trader", "inhabitant"}), "The traders sell all manner of indispensible items "+ "such as bonsai trees, and fresh whale meat.\n"); add_exit("west", "marketstreet5", "road"); add_exit("east", "marketstreet7", "road"); add_exit("north", MARKET + "marketplace3", "road"); set_zone("trader"); set_light(60); }