inherit "inherit/monster"; reset(arg) { ::reset(arg); if(arg) return; set_name("monster"); set_short("The Monster from under Epsilon's bed"); set_long( "This is a monster from under Epsilon's bed. This nefarious demon \n"+ "plagues Epsilon, or at least when he is sleeping. So far this \n"+ "four-legged, three-armed, and two-eyed beastie has managed to \n"+ "evade extermination. \n"); set_al(-250); load_chat(10, ({ "Monster says: Sweet dreams you stinky Orc dropping! \n", "Monster says: May the fleas of a thousand camels infest thee! \n", "Monster growls at you menacingly. \n", "Monster says: I fart in thy general direction! \n", "Monster says: You want to devour my soul? Come get some. \n" })); set_hp(200); set_level(10); add_money(200 + random(450)); set_magic_resist(10 + random(20)); move_object(clone_object("/players/epsilon/rock"),this_object()); move_object(clone_object("/players/epsilon/ncloak.c"),this_object()); init_command("wear cloak"); init_command("wield rock"); set_ac(10); set_wc(8); }