#include <mudlib.h>
inherit OBJECT;

void create () {
    seteuid(getuid()) ;
    set ("author", "shya");
    set ("short", "glow worm");
    set ("long", "A fluorescent worm.\n");
    set ("id", ({"glow worm", "worm"}) );
    set ("light", 3);
    set ("prevent_drop", 1);
}

int do_chat()
{
    write("Your glow worm gives off a blinding flash of light.\n");
    say(TPN + "'s worm gives off a blinding flash of light.\n");
    call_out("do_chat", 30 + random(60));
    return 1;
}
