TimDerHenker Posted July 20, 2013 Share Posted July 20, 2013 Hi ^^ right now I'm writing a gen III savegame editor with box and team pokemon support and the next step I have to do is addinng some ROM information to my program, like which Pokemon has which abilitys and what gender ratios. Does someone know a table with all that info? (or even with a part of it), because its a paiinfull work to type it myself for all the hundrets of pokemon. Greets, Tim Link to comment Share on other sites More sharing options...
evandixon Posted July 20, 2013 Share Posted July 20, 2013 You could look into codemonkey85's code library. I think it has that kind of info for later generations, if not Gen 3. Worst case scenario, you make slight modifications to that. Link to comment Share on other sites More sharing options...
TimDerHenker Posted July 20, 2013 Author Share Posted July 20, 2013 Thank you but it didn't help me. I guess in Generation 5 there is directly saved, if a Pokemon is male, female or genderless. Link to comment Share on other sites More sharing options...
Kaphotics Posted July 21, 2013 Share Posted July 21, 2013 a lot of stuff is determined from the PID (including ability). http://www.smogon.com/ingame/rng/pid_iv_creation pid%256 to retrieve gender value; compare against species value to determine if M/F pid%2 to retrieve its ability (gen V originated mons are >>16 ---> %2) pid%25 to retrieve its nature there's a few tables out there that have lists of all the gender ratios/abilities a species has, easy google search. http://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_gender_ratio http://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_Ability shouldnt take long to reformat into whatever array for your program Link to comment Share on other sites More sharing options...
TimDerHenker Posted July 21, 2013 Author Share Posted July 21, 2013 I guess you got me wrong. The PID stuff is already done. "compare against species value to determine if M/F" -> That's the problem. I have to find/create a table with all the species values :// I already started creating my own table, but thx anyways. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now