#include "path.h" inherit "/std/room.c"; setup () { set_short("Market Street"); set_long("This is Market Street, which continues east and west "+ "of here. Traders line the edge of the road, hawking "+ "their goods.\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", "inhabitant"}), "The traders sell all manner of indispensible items "+ "such as bonsai trees, and fresh whale meat.\n"); add_exit("west", "marketstreet3", "road"); add_exit("east", "marketstreet5", "road"); set_zone("trader"); set_light(60); }