void init()
{
  ::init();
  add_action("cmd_contact", "contact");
}

int cmd_contact(string str)
{
  if(!str)
  {
    notify_fail("Contact who?\n");
    return 0;
  }
  if(str != "pickle" && str != "the pickle")
  {
    notify_fail("You can only \"contact\" the \"pickle\".\n");
    return 0;
  }

  write("You contact the pickle.\n");
  say((string)this_player()->query_name()+" contacts the pickle.\n");

  return 1;
}
