• 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!
  • 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 to add disguise ability for other pokemon?(v18)

  • 125
    Posts
    5
    Years
    • Seen Nov 20, 2023
    I want to add a new pokemon with disguise ability.
    The disguise form is form 2 and the busted form is form 3.
    Can anyone please tell me how to deal with it?
     
    I want to add a new pokemon with disguise ability.
    The disguise form is form 2 and the busted form is form 3.
    Can anyone please tell me how to deal with it?
    To do this, you'll need to change two sections in the script.
    Move_Usage:
    Spoiler:
    Have a nice day. :)
     
    Thanks.The problem is that,after a battle,my pokemon won't change back.
     
    Thanks.The problem is that,after a battle,my pokemon won't change back.
    Changing the form back is simple, just add this piece of code into "Pokemon_Forms":
    Code:
    MultipleForms.register(:NAMEOFYOURPOKEMON,{
      "getFormOnLeavingBattle" => proc { |pkmn,battle,usedInBattle,endBattle|
        next 2 if isConst?(pkmn.ability,PBAbilities,:DISGUISE) && (pkmn.fainted? || endBattle)
      }
    })
     
    I want help i made an event that worked how i wanted but there is an issue which when i leave the house the event restarts can anyone tell me and one more thing which is my player should have specific name if mom calls the player name ,rival, professor,etc . and i used picture event for some main events it should switch the character sprite of the gender

    THANK YOU
    😀
     
    Back
    Top