lpc4/lib/
lpc4/lib/doc/efun/
lpc4/lib/doc/lfun/
lpc4/lib/doc/operators/
lpc4/lib/doc/simul_efuns/
lpc4/lib/doc/types/
lpc4/lib/etc/
lpc4/lib/include/
lpc4/lib/include/arpa/
lpc4/lib/obj/d/
lpc4/lib/save/
lpc4/lib/secure/
lpc4/lib/std/
lpc4/lib/std/living/
inherit "/std/room";
inherit "/inherit/msg";

void create()
{
  set_short("the saloon");
  set_long("You're in the Saloon, you can order drinks here. "+
	"Menu: Tequila $1 , Hair of dog c20, beer c50, Whisky "+
	"on the rocks $2. ");
  
}

int buy(string what)
{
  int cost;
  int msg;
  switch(lower_case(what))
  {
    case "tequila":
      cost=100;
      
      break;
  }
}


void init()
{
  ::init();
  add_action("buy %s",buy);
}