#include <std.h>
inherit MONSTER;

void create() {
::create();
    set_name("librarian");
    set_short("The Librarian");
    set_long("This is a 10' tall, pale librarian that "
        "stares down at you and grins.  It is boney "
        "and an alltogether vile creature.");
    set_id(({"librarian", }));
    set_level(25);
    set_race("horror");
    set_body_type("human");
    set_gender("neuter");

    add_money("gold", 10000);     
    add_money("platinum", 5000);

    set_skills(({"attack", 120, "melee", 120,);    
    set_stats("constitution", 50, "strength", 30,);  
