• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • Cyndy, May, Hero (Conquest), or Wes - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • 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
    10
    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