#include "path.h" inherit "/std/room"; setup() { set_short("A short gravel path"); set_long("You are on short gravel path. To the south, a huge " +"white marble building with a strange domed roof towers over " +"you, and to the north you can see where the path rejoins " +"Main Street.\n"); add_item( ({"building", "obsevratory", "huge building", "white building", "marble building"}), "The building towers over you menacingly. There is something " +"strange about its roof, but you cannot make it out " +"from this angle. The front door of the building seems to " +"be open, anyway.\n"); add_item( ({"path", "gravel path", "down"}), "The path you are standing on is steep, short " +"and covered in gravel. If you are really that curious " +"about it, go visit your phsychiatrist.\n"); add_item( ({"Main Street", "main street", "street", "north"}), "Main street is just north of here, and runs east to " +"west while you stand south of it.\n"); add_exit("north", "mainstreet19", "road"); add_exit("south", "observatory", "gate"); set_zone("observatory"); set_light(80); }