MultipleForms.register(:[COLOR="Red"]SPECIESNAMEID[/COLOR],{
"getMegaForm"=>proc{|pokemon|
next 1 if isConst?(pokemon.item,PBItems,:[COLOR="red"]MEGASTONEID[/COLOR])
next
},
"getUnmegaForm"=>proc{|pokemon|
next 0
},
"getMegaName"=>proc{|pokemon|
next _INTL("Mega [COLOR="Red"]Pokemon Name[/COLOR]") if pokemon.form==1
next
},
"getBaseStats"=>proc{|pokemon| [COLOR="Lime"]#This is where you put the states[/COLOR]
next [95,139,135,95,105,56] if pokemon.form==1
next
},
"ability"=>proc{|pokemon| [COLOR="Lime"]#This is where you put the abilty[/COLOR]
next getID(PBAbilities,:[COLOR="red"]ABILITYID[/COLOR]) if pokemon.form==1
next
},
"height"=>proc{|pokemon| [COLOR="lime"]#HEIGHT[/COLOR]
next 22 if pokemon.form==1
next
},
"weight"=>proc{|pokemon| [COLOR="lime"]#WEIGHT[/COLOR]
next 320 if pokemon.form==1
next
},
"onSetForm"=>proc{|pokemon,form|
pbSeenForm(pokemon)
}
})