#include "path.h" inherit "/std/room"; setup() { set_short("A corridor in "+CITYNAME+"'s town hall.\n"); set_long("You are wandering along a corridor in the town hall " +"of "+CITYNAME+". The corridor continues to the east and west of " +"here, and there are doors on the northern and southern walls.\n"); add_item("corridor", "The corridor runs east to west through the town hall.\n"); add_item("door", "The door is a cheap plywood job, and looks well used.\n"); set_zone("town hall"); set_light(60); add_exit("east", "corridor1", "corridor"); add_exit("west", "corridor3", "corridor"); add_exit("south", "application_room", "door"); add_exit("north", "pkroom", "door"); }