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

Pokemons should contain their different forms as a map #45

Closed BrunnerLivio closed 5 years ago

BrunnerLivio commented 5 years ago

Feature Request

Is your feature request related to a problem? Please describe. Pokemons contains different form (Alolan, Water, Fairy etc.). A root Pokemon (e.g. Arceus) should contain a map of its different forms (e.g. Arceus Water, Arceus Fairy).

Describe the solution you'd like


{
  "name": "Arceus",
  "forms": [
    { "id": "ARCEUS_WATER", "name": "Arceus Water" },
    { "id": "ARCEUS_STEEL", "name": "Arceus Steel" }
  ]
  ...
}
Furtif commented 5 years ago

@BrunnerLivio https://github.com/Furtif/POGOProtos/blob/master/src/POGOProtos/Enums/Form.proto#L105

BrunnerLivio commented 5 years ago

Thanks a lot @bytelabsco ! Great job