MultipleForms.register(:GARDEVOIR,{
"getMegaForm"=>proc{|pokemon|
next 1 if isConst?(pokemon.item,PBItems,:DUSKSTONE)
next
},
"getUnmegaForm"=>proc{|pokemon|
next 0
},
"getBaseStats"=>proc{|pokemon|
next [215, 200, 100, 150, 230, 110] if pokemon.form==1
next
}...