Jump to content

I'm searching for table with Pokemon ROM information


Recommended Posts

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

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...