#include "path.h" inherit "/std/pub.c"; setup() { add_menu_item("Fillet Mignon", "food", 8000, 0, 0, 50, "order and eat a pathetically small steak", "buys and eats a fillet Mignon"); add_menu_alias("fillet mignon", "Fillet Mignon"); add_menu_alias("fillet", "Fillet Mignon"); add_menu_alias("steak", "Fillet Mignon"); add_menu_item("Duck a l'Orange", "food", 6000, 0, 0, 50, "order and eat some Duck a l'Orange", "orders and eats some Duck a l'Orange"); add_menu_alias("duck", "Duck a l'Orange"); add_menu_alias("duck a l'orange", "Duck a l'Orange"); add_menu_item("Smoked Salmon Salad", "food", 4000, 0, 0, 50, "buy and eat a Smoked Salmon Salad", "buys and eats a fishy-looking salad"); add_menu_alias("smoked salmon salad", "Smoked Salmon Salad"); add_menu_alias("salmon salad", "Smoked Salmon Salad"); add_menu_alias("salad", "Smoked Salmon Salad"); set_short("A posh restaurant"); set_long("You are in a *very* posh restaurant. You feel positively " +"out of place here, wearing what you are. A maitre'd stands " +"near the smoked glass entrance, eyeing you over with an " +"distinct expression of disgust on his face. You select a " +"table and sit down at it. There is a menu on the table. \n"); add_item( ({"entrance", "door", "way in"}), "The entrance is a vast and elaborate creation made from " +"smoked glass and polished marble, and would intimidate even " +"a god. \n"); add_item( ({"maitre'd", "man", "waiter"}), "The maitre'd is dressed in a black tuxedo. He looks the " +"kind of person that would wear a black tuxedo, even if he " +"was a baker by trade. \n"); add_item("table", "The table you are sitting at is a small darkwood affair, " +"pushed into a corner near the kitchens. It is obvioulsy " +"reserved for people deemed 'distasteful' by the maitre'd. " +"\n"); add_item( ({"people", "crowd", "customer", "tables"}), "All the other tables in the restaurant are occupied by " +"extremely rich people. From here you can see a few of them " +"leaving gold coins as tips. \n"); add_exit("south", HOMECITY+"diamondstreet3", "door"); set_zone("restaurant"); set_light(60); }