#include "path.h" inherit "/std/room.c"; setup () { set_short("Main Street, south of the Arena"); set_long("You are on Main Street, an east-west road " +"running through the center of "+CITYNAME+". An " +"impressive looking building off to the north is the " +"city arena, while buildings loom over the road to the south.\n"); add_item( ({"north", "arena"}), "The arena is where ordinary citizens of "+CITYNAME+ " can come to pit thier strength against a variety of" +" champions, in the hope that they might win fame and" +" fortune in doing so.\n"); add_item( ({"street", "road", "main street", "Main Street"}), "Main Street was originally a beautifully cobbled "+ "thoroughfare, but is now badly in need of repair.\n"); add_item( ({"houses", "buildings", "tall buildings"}), "Most of them seem to defy gravity, and certainly "+ "defy all building regulations ever made up.\n"); add_exit("west", "mainstreet6", "road"); add_exit("east", "mainstreet8", "road"); add_exit("north", ARENA+"arena_lobby", "door"); set_zone("mid"); set_light(60); }