/
lib/banish/
lib/d/
lib/doc/
lib/doc/domains/
lib/doc/efun/
lib/doc/examples/
lib/doc/examples/armour/
lib/doc/examples/contain/
lib/doc/examples/food/
lib/doc/examples/magic/
lib/doc/examples/monster/
lib/doc/examples/room/
lib/doc/examples/weapons/
lib/function/
lib/include/
lib/include/fn_specs/
lib/include/skills/
lib/info/
lib/inherit/base/
lib/log/
lib/manuals/312/
lib/news/
lib/obj/party/
lib/objects/components/
lib/open/
lib/open/library/
lib/open/party/
lib/players/
lib/players/zilanthius/
lib/room/
lib/room/city/arena/
lib/room/city/creator/
lib/room/city/garden/monst/
lib/room/city/obj/
lib/room/city/shop/
lib/room/death/
lib/room/registry/
lib/secure/
lib/secure/UDP_CMD_DIR/
lib/skills/
lib/skills/fighter/
lib/skills/thief/
lib/usr/
lib/usr/creators/
lib/usr/players/
inherit "inherit/monster";

reset(arg) {
  ::reset(arg);
  if(arg) return;

  set_name("venus fly trap");
  set_alias("trap");
  set_race("plant");
  set_alt_name("venus");
  set_gender(2);
  set_al(-25);
  set_level(1);
  set_hp(50);
  set_ac(3);
  set_wc(5);
  set_short("A venus fly trap");
  set_long(
	"This is a huge plant which has apparently grown right in \n"+
	"the middle of the path here. Perhaps it is the same druid\n"+
	"who made the newbie eating plant who put it here?!\n");
  load_chat(9, ({ "Venus fly trap leans towards you hungrily.\n",
	"Venus fly trap looks at you hungrily.\n",
	"Venus fly trap licks its lips and smiles at you hungrily.\n",
	"Venus fly trap moves closer towards you.\n"
  }));

  load_a_chat(9, ({ "Venus fly trap flaps its leaves about frantically!\n",
	"Venus fly trap tries to grow legs to run away\n",
	"Venus fly trap attempts to yell for help...but fails.\n"
  }));

  set_attack_msg(({
	"smashes",	"with her leaves",
	"eats",		"alive",
	"munches",	"on the leg",
	"licks",	"across the chest",
	"pokes",	"with her leaves",
	"grazes",	"with her plant teeth",
	"brushes",	"across the body"
  }));
}