#include "path.h" inherit "/std/room.c"; setup () { set_short("Market Street, south of Kipper Row"); set_long("This is Market Street, which continues east and west "+ "of here. Kipper Row, the harbour road, runs north "+ "from here.\n"); add_alias("street", "road"); add_alias("market street", "road"); add_alias("Market Street", "road"); add_item("road", "This is where the inhabitants of "+CITYNAME+" come "+ "to buy (and sell) things. Strange that...\n"); add_alias("inhabitants", "people"); add_alias("traders", "people"); add_alias("hawkers", "people"); add_alias("sailors", "people"); add_item("people", "There are relatively few traders here, possibly "+ "due to the smell, or the number of rough looking "+ "sailors that hang about here.\n"); add_exit("west", HOMECITY+"marketstreet10", "road"); add_exit("east", HOMECITY+"marketstreet12", "road"); add_exit("north", "kipperrow1", "road"); set_zone("docks"); set_light(60); }