MultipleForms.register(:MEOWSTIC,{
"ability"=>proc{|pokemon|
next if pokemon.gender==0 # Male Meowstic
if pokemon.abilityflag && pokemon.abilityflag=2
next getID(PBAbilities,:COMPETITIVE) # Female Meowstic
end
},
"getMoveList"=>proc{|pokemon|
next if pokemon.gender==0 # Male Meowstic
movelist=[]
case pokemon.gender
when 1 ; movelist=[[1,:STOREDPOWER],[1,:MEFIRST],[1,:MAGICALLEAF],[1,:SCRATCH],
[1,:LEER],[5,:COVET],[9,:CONFUSION],[13,:LIGHTSCREEN],
[17,:PSYBEAM],[19,:FAKEOUT],[25,:PSYSHOCK],[28,:CHARGEBEAM],
[31,:SHADOWBALL],[35,:EXTRASENSORY],[40,:PSYCHIC],
[43,:ROLEPLAY],[45,:SIGNALBEAM],[48,:SUCKERPUNCH],
[50,:FUTURESIGHT],[53,:STOREDPOWER]] # Female Meowstic
end
for i in movelist
i[1]=getConst(PBMoves,i[1])
end
next movelist[COLOR="Red"]
}, # any additional modules you add go after this line.[/COLOR]
})