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

adding gender diferences with moves

Chrisario

Friend code :0018 2912 2366 let me know
  • 108
    Posts
    11
    Years
    I have this question of how do you add pokemon with genders with moves so I'm talking about Espurr how it evolves into meowstic depending on female or male.They both have different stats and move sets like the female is more ofensive exactly how do you add it to espurr?
    Do you need to make new entries in the pokemon.txt ?As new pokedex entry like when white kyurem has ice burn is it like that
     
    Lucidious89 posted this in the Gen 6 AddOn thread

    It goes in PokemonMultipleForm

    Code:
    MultipleForms.register(:MEOWSTIC,{
    "ability"=>proc{|pokemon|
       next if pokemon.gender==0              # Male Meowstic
       if pokemon.abilityflag && pokemon.abilityflag=2
         next getID(PBAbilities,:COMPETITIVE) # Female Meowstic
       end
    },
    "getMoveList"=>proc{|pokemon|
       next if pokemon.gender==0                                # Male Meowstic
       movelist=[]
       case pokemon.gender
         when 1 ; movelist=[[1,:STOREDPOWER],[1,:MEFIRST],[1,:MAGICALLEAF],[1,:SCRATCH],
                            [1,:LEER],[5,:COVET],[9,:CONFUSION],[13,:LIGHTSCREEN],
                            [17,:PSYBEAM],[19,:FAKEOUT],[25,:PSYSHOCK],[28,:CHARGEBEAM],
                            [31,:SHADOWBALL],[35,:EXTRASENSORY],[40,:PSYCHIC],
                            [43,:ROLEPLAY],[45,:SIGNALBEAM],[48,:SUCKERPUNCH],
                            [50,:FUTURESIGHT],[53,:STOREDPOWER]] # Female Meowstic 
       end
       for i in movelist
         i[1]=getConst(PBMoves,i[1])
       end
       next movelist
    }
    })

    I haven't tested it yet but I think it works. If you use it, you should credit him.
     
    Back
    Top