-
Notifications
You must be signed in to change notification settings - Fork 11
Research
Anthony edited this page May 25, 2023
·
2 revisions
- Formatted:
GET /data/research.json
- Minimized:
GET /data/research.min.json
{
"text": "Catch 5 Pokémon",
"type": "catch",
"rewards": [
{
"name": "Misdreavus",
"image": "https://raw.githubusercontent.com/PokeMiners/pogo_assets/master/Images/Pokemon%20-%20256x256/pokemon_icon_200_00.png",
"canBeShiny": true,
"combatPower": {
"min": 779,
"max": 825
}
},
{
"name": "Shuppet",
"image": "https://raw.githubusercontent.com/PokeMiners/pogo_assets/master/Images/Pokemon%20-%20256x256/pokemon_icon_353_00.png",
"canBeShiny": true,
"combatPower": {
"min": 401,
"max": 436
}
},
{
"name": "Duskull",
"image": "https://raw.githubusercontent.com/PokeMiners/pogo_assets/master/Images/Pokemon%20-%20256x256/pokemon_icon_355_00.png",
"canBeShiny": true,
"combatPower": {
"min": 273,
"max": 302
}
}
]
}
Field | Type | Description |
---|---|---|
text |
string |
The research task text. |
type |
string |
The type of research. Can be event , catch , throw , battle , explore , training , rocket , buddy , ar , sponsored
|
rewards |
Reward |
The rewards for completing the research Task. See Reward |
{
"name": "Misdreavus",
"image": "https://raw.githubusercontent.com/PokeMiners/pogo_assets/master/Images/Pokemon%20-%20256x256/pokemon_icon_200_00.png",
"canBeShiny": true,
"combatPower": {
"min": 779,
"max": 825
}
}
Field | Type | Description |
---|---|---|
name |
string |
The name of the reward Pokemon. |
image |
string |
The image of the reward Pokemon. |
canBeShiny |
boolean |
Whether or not the reward Pokemon can be shiny. |
combatPower.min |
int |
The minimum combat power of the reward Pokemon. |
combatPower.max |
int |
The maximum combat power of the reward Pokemon. |