// TMW2 Script
// Author:
//  Jesusalva
// Description:
//  Forgetful

027-1,135,25,0	script	Ezra	NPC_BLACKWIZARD,{
    mesn l("%s, the Forgetful", .name$);
    mesq l("What was I doing before...? I forgot!");
    next;
    ForgetfulNPC(.name$, CLASS_TRICKS);

    mesn l("%s, the Forgetful", .name$);
    mesq l("Do you know where my brother Enzo is? I forgot that too!");
    close;

OnInit:
    .sex = G_MALE;
    .distance = 5;
    end;

}