#include "path.h" inherit "/std/pub"; object board; setup() { board = clone_object("/obj/misc/board"); board->set_datafile("greendragon"); board->move(this_object()); set_short("The Green Dragon Pub"); set_long("You are in the Green Dragon pub. Crowds of people mill " +"about the bar up against the northern wall, all hoping to " +"catch the eye of the elusive bartender. A menu sitting on " +"the bar lists what is available, if you can get served. A " +"door to the south leads onto Main Street. \n"); add_menu_item("Ale", "alcohol", 100, 0, 50, 50, "buy a flagon of ale, and down it rapidly", "buys a flagon of ale and drinks it quickly"); add_menu_item("Beer", "alcohol", 10, 0, 30, 30, "buy a pint of local beer. It tastes terrible, but you manage "+ "to force it down your gullet", "buys a pint of the revolting local beer. They must be very "+ "hard up before they resort to that vile brew"); add_menu_item("Best lager", "alcohol", 350, 0, 60, 60, "buy some of the best lager. You drink it all, then almost "+ "choke to death on the bit of lime", "buys some fancy imported lager. What a show off. You are just "+ "hoping they will choke on it when they do"); add_menu_item("Wine", "alcohol", 1000, 0, 120, 120, "buy a bottle of good red wine, decork it, savour its pleasent "+ "bouquet, then guzzle the lot", "buys a whole bottle of red wine, and proceeds to get at least "+ "half of it in $POSS$ mouth"); add_menu_alias("ale", "Ale"); add_menu_alias("beer", "Beer"); add_menu_alias("lager", "Best lager"); add_menu_alias("best lager", "Best lager"); add_menu_alias("wine", "Wine"); add_item( ({"crowd", "people", "customer"}), "All manner of people frequent this pub, and apparrently, " +"they have all decided to do it at the same time. \n"); add_item("bar", "What little of the bar you can see through the crowds gives " +"you the impression that it has been built to hold up " +"several hundred pints of beer at once, and usually does. \n"); add_item( ({"bartender", "barman", "waiter"}), "Nope, you cant see him anywhere. \n"); add_exit("south", HOMECITY+"mainstreet9", "door"); set_zone("mid"); }