// Petrarch
// a walking monster, he will move once every 20 heart beats, on average
// he also does random emotes
#include
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");
set_moving(1);
set_speed(20);
set_emotes(10, // He will emote this line once every 10 heart beats
({"The gnome searchs around the forest.",
"The gnome appears lost.",
"The gnome looks sad.",
}),
0); // 0 means outof battle, 1 means in battle
}