• 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!
  • Dawn, Gloria, Juliana, or Summer - 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] How I add an animation for the ability Battle Bond

DragonN3xus

Still looking for the One Piece
  • 24
    Posts
    5
    Years
    I use the essentials vanila, and I want to add an animation when the greninja becomes ash-greninja does anyone know a way to do this?
     
    I use the essentials vanila, and I want to add an animation when the greninja becomes ash-greninja does anyone know a way to do this?

    Code:
            user.form=1
            pbUpdate(true)
    [COLOR="Red"]pbPlayCommonAnimation("BattleBond1")[/COLOR]
    @battle.scene.pbChangePokemon(user,user.pokemon)
    [COLOR="Red"]pbPlayCommonAnimation("BattleBond2")[/COLOR]

    Look for similar code in your Battle Bond script and add the 2 lines which are in red.

    Create 2 new common animations in the Animation editor called BattleBond1 and BattleBond2. Each animation should have 1 half of your Battle Bond Animation.
     
    Code:
            user.form=1
            pbUpdate(true)
    [COLOR="Red"]pbPlayCommonAnimation("BattleBond1")[/COLOR]
    @battle.scene.pbChangePokemon(user,user.pokemon)
    [COLOR="Red"]pbPlayCommonAnimation("BattleBond2")[/COLOR]

    Look for similar code in your Battle Bond script and add the 2 lines which are in red.

    Create 2 new common animations in the Animation editor called BattleBond1 and BattleBond2. Each animation should have 1 half of your Battle Bond Animation.
    Thank you very much
     
    Back
    Top