• 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!
  • 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.

Burmy

  • 43
    Posts
    11
    Years
    • Seen Jun 9, 2016
    Burmy's forms are controlled by the environment they are encountered.I want to change that so the appear randomly regardless of location.
     
    Code:
    MultipleForms.register(:UNOWN,{
    "getFormOnCreation"=>proc{|pokemon|
       next rand(28)
    }
    })
    Does what you want already.
     
    OK,but there are two sections referring to burmy which do I change
    getFormOnCreation
    getFormOnEnteringBattle or do I change both?
     
    You want Burmy to behave like Unown in the way it gets its form. Does Unown have a "getFormOnEnteringBattle" procedure? No. Then remove it.
     
    Back
    Top