#include "path.h" inherit "/std/room.c"; setup () { set_short("Market Street, south of Watchmakers Lane"); set_long("You are standing on Market Street which continues "+ "to the east and west of here. Traders line the road, selling "+ "their wares, and off to the north lies Watchmakers Lane.\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", "inhabitant", "trader", "hawker"}), "Traders line the edges of the road here. They " +"are using thick yellow paint, and are hoping to " +"stop people parking there.\n"); add_exit("west", "marketstreet2", "road"); add_exit("east", "marketstreet4", "road"); add_exit("north", HOMECITY+"watchmakers1", "road"); set_zone("trader"); set_light(60); }