/
LIB3/
LIB3/D/ADMIN/
LIB3/D/ADMIN/OBJ/
LIB3/D/ADMIN/ROOM/W/
LIB3/D/HOME/
LIB3/D/HOME/CITY/ARENA/
LIB3/D/HOME/CITY/ITEMS/
LIB3/D/HOME/CITY/POSTOFFI/
LIB3/DOC/
LIB3/GLOBAL/SPECIAL/
LIB3/GLOBAL/VIRTUAL/
LIB3/NET/
LIB3/NET/CONFIG/
LIB3/NET/DAEMON/CHARS/
LIB3/NET/GOPHER/
LIB3/NET/INHERIT/
LIB3/NET/OBJ/
LIB3/NET/SAVE/
LIB3/NET/VIRTUAL/
LIB3/OBJ/B_DAY/
LIB3/OBJ/HANDLERS/TERM_TYP/
LIB3/PLAYERS/B/
LIB3/PLAYERS/N/
LIB3/ROOM/
LIB3/SAVE/
LIB3/SAVE/BOARDS/
LIB3/SAVE/ENVIRON/
LIB3/SAVE/POST/
LIB3/STD/COMMANDS/SHADOWS/
LIB3/STD/CREATOR/
LIB3/STD/DOM/
LIB3/STD/EFFECTS/
LIB3/STD/EFFECTS/HEALING/
LIB3/STD/EFFECTS/OTHER/
LIB3/STD/EFFECTS/POISONS/
LIB3/STD/ENVIRON/
LIB3/STD/GUILDS/
LIB3/STD/LIQUIDS/
LIB3/STD/ROOM/
LIB3/STD/TRIGGER/SHADOW/
LIB3/W/
LIB3/W/BANNOR/
LIB3/W/NEWSTYLE/
#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);
}