• 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.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • 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