inherit "obj/monster";
reset(arg) {
    object armour;
    string str;
    string chat_str;
    ::reset(arg);
    if(arg) { return; }
    set_level(65);
   set_con(query_con()*6); 
   set_str(query_str()*2);
    set_max_hp(query_hp()*3);
    set_name("gardener");
    set_alias("elvar");
    set_short("Elvar the beautiful gardener");
    set_gender(2);

    set_long("this young and beautiful gardener is examing some herbs. she handles plants skilfully. clothes on her is all colored dark green."); 
    set_al(40);
    set_race("human");
        set_aggressive(0);
    set_log();
    armour = clone_object("/wizards/luminarc/wizcastle/armours/gglove");
    move_object(armour, this_object());
    init_command("wear gloves");
    armour = clone_object("/wizards/luminarc/wizcastle/armours/gboots");
    move_object(armour, this_object());
    init_command("wear boots");

    if (!chat_str) {
        chat_str = allocate(2);
        chat_str[0] = "Elvar says: 'Do not distrub me. i am need to examine these herbs'\n";
        chat_str[1] = "Elvar says: 'I love these plants!'\n";
        }
load_chat(2, chat_str);
}





