• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Scripting Question] [Essential 16.2] Create a new Mega evolution with special attack

51
Posts
9
Years
  • Seen Jan 8, 2023
Hello guys! I Need your help: I'm going to create a mega evolution with Greninja using the ability "battle bond" and, when it is in the ash form, replace water shuriken with a new move. Is possible? Thanks for all!

MultipleForms.register(:GRENINJA,{
"getMegaForm"=>proc{|pokemon|
next 1 if isConst?(pokemon.ability,PBAbilities,:BATTLEBOND)
next
},
"getBaseStats"=>proc{|pokemon|
next [72,145,67,153,71,132] if pokemon.form==1
next
},
"getMoveList"=>proc{|pokemon|
next if pokemon.form==0
movelist=[]
case pokemon.form
when 1; movelist=[[36,:ACQUALAMEGIGANTE]]
end
for i in movelist
i[1]=getConst(PBMoves,i[1])
end
next movelist
}
})
 
Last edited:
Back
Top