A Normal Monster

// Petrarch // a normal monster #include <std.h> inherit MONSTER; void create() { ::create(); set_name("gnome"); set_short("a gnome is here exploring the forest"); set_long("The gnome appears to be exploring the forest. He could be " "searching for something the way he is carrying about."); set_id(({"gnome", "explorer"})); set_level(10); set_race("gnome"); set_body_type("human"); set_gender("male"); }