#include "path.h" inherit "/std/room.c"; setup () { set_short("Traders Walk"); set_long("This is Traders Walk, which runs North"+ "/South through "+CITYNAME+". It is rather busy, "+ "judging by the number of people standing on your feet.\n"); add_item( ({"road", "street", "traders walk", "Traders Walk"}), "Traders Walk carries most of the city's commerce "+ "from the northern traders. It is kept in good repair, "+ "but only to encourage the tourists.\n"); add_item( ({"people", "crowd", "tourist", "trader"}), "All the tourists, traders, and locals swarming "+ "about here are doing it just to annoy you.\n"); add_monster(MONSTERS+"trader", 2); add_exit("north", HOMECITY+"traderswalk3", "road"); add_exit("south", HOMECITY+"traderswalk5", "road"); set_zone("trader"); set_light(60); }