-
Notifications
You must be signed in to change notification settings - Fork 10
Raids
Anthony edited this page Mar 3, 2023
·
3 revisions
- Formatted:
GET /data/raids.json
- Minimized:
GET /data/raids.min.json
{
"name": "Alolan Marowak",
"tier": "Tier 3",
"canBeShiny": true,
"types": [
{
"name": "fire",
"image": "https://www.leekduck.com/assets/img/types/fire.png"
},
{
"name": "ghost",
"image": "https://www.leekduck.com/assets/img/types/ghost.png"
}
],
"combatPower": {
"normal": {
"min": 988,
"max": 1048
},
"boosted": {
"min": 1235,
"max": 1311
}
},
"boostedWeather": [
{
"name": "sunnyclear",
"image": "https://www.leekduck.com/assets/img/weather/sunny.png"
},
{
"name": "foggy",
"image": "https://www.leekduck.com/assets/img/weather/foggy.png"
}
],
"image": "https://www.leekduck.com/assets/img/pokemon_icons/pokemon_icon_105_61.png"
}
Field | Type | Description |
---|---|---|
name |
string |
The name of the Pokemon. |
tier |
string |
The raid tier of the Pokemon. Can be Tier 1 , Tier 3 , Tier 5 , Mega
|
canBeShiny |
boolean |
Whether or not the Pokemon can be shiny. |
types |
Type[] |
The type(s) of the Pokemon. See Type. |
combatPower |
CombatPower |
The combat power range the Pokemon can be caught with. See CombatPower. |
boostedWeather |
Weather[] |
The type(s) of weather that boost the Pokemon's combat power. See Weather. |
image |
string |
The image of the Pokemon.* |
{
"name": "fire",
"image": "https://www.leekduck.com/assets/img/types/fire.png"
}
Field | Type | Description |
---|---|---|
name |
string |
The name of the type |
image |
string |
The image of the type. |
{
"normal": {
"min": 988,
"max": 1048
},
"boosted": {
"min": 1235,
"max": 1311
}
}
Field | Type | Description |
---|---|---|
normal.min |
int |
The minimum normal combat power of the Pokemon. |
normal.max |
int |
The maximum normal combat power of the Pokemon. |
boosted.min |
int |
The minimum boosted combat power of the Pokemon. |
boosted.max |
int |
The maximum boosted combat power of the Pokemon. |
{
"name": "foggy",
"image": "https://www.leekduck.com/assets/img/weather/foggy.png"
}
Field | Type | Description |
---|---|---|
name |
string |
The name of the weather type. Can be sunnyclear , rainy , partly , cloudy , windy , snow , fog
|
image |
string |
The image of the weather type. |