pokemongo-dev-contrib / pokemongo-json-pokedex

Transform the data from the Pokemon GO master files to a better readable & processable JSON file.
Apache License 2.0
54 stars 14 forks source link

Add Pokédex entry #21

Closed luissmg closed 5 years ago

luissmg commented 5 years ago

I think it would be cool to have both the Pokédex entry number and description in the Pokémon json. Right now there is a property dex that corresponds to the Pokédex entry number. My suggestion is to make something like this (if we don't want another field with duplicate information):

dex: {
  number: 1,
  type: 'SEED POKÉMON',
  description: 'Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun\'s rays, the seed grows progressively larger.',
}

I don't think that this information is in the GAME_MASTER. Does anyone know where it might be?

BrunnerLivio commented 5 years ago

Maybe you can find something in this repository https://github.com/ZeChrales/PogoAssets/tree/master/decrypted_assets

Are there even any descriptions in Pokemon GO for Pokémons? I do not find any?

luissmg commented 5 years ago

Yes, in the Pokédex. When you view a Pokémon you already caught you see something like this:

Bulbasaur Pokédex entry ![screenshot_20180802-142207](https://user-images.githubusercontent.com/20660551/43586581-eeab2d8a-965f-11e8-9ffd-146e0f3e78b0.jpg)

I will take a look into that repository today ASAP!

luissmg commented 5 years ago

Actually took a look into that now. It was easy to find the file that contains that info. Check this out! It contains Pokémon names, descriptions and categories.

BrunnerLivio commented 5 years ago

@luissmg Oh I see! Good catch, thats should be doable. Adding to milestone 3.2.0

luissmg commented 5 years ago

@BrunnerLivio Let me know if you need any help :)