tengu(str)
{
  /* if necessary */ object mon;
  if(!str) { write("<message>"); return 1; }
  mon=present(tengu,environment(this_player());
  if(!mon) { write("Tengu is not with you"); return 1; }
  if(!mon->init_command(str)) write("Tengu refuses");
  /* the previous line will try to get Tengu to do the command :) */
  return 1;
}
