#include "path.h" inherit "/std/room.c"; setup () { set_short("Market Street, south of the docks"); set_long("You are on Market street, just south of the docks. "+ "To the north you can see the murky waters of "+CITYNAME +" Harbour, and Market Street continues to the east "+ " and west of here.\n"); add_item( ({"road", "street", "market street", "Market Street"}), "You are in rough territory, judging by the number "+ "of limbs lying in the gutters.\n"); add_item( ({"people", "trader", "sailor", "inhabitant", "hawker"}), "Why is it that all the people here are bigger than "+ "you, you wonder.\n"); add_monster(MONSTERS+"sailor", 1); add_monster(MONSTERS+"tough_sailor", 1); add_monster(MONSTERS+"woman", 1); add_exit("west", HOMECITY+"marketstreet12", "road"); add_exit("east", HOMECITY+"marketstreet14", "road"); set_zone("docks"); set_light(60); }