Skip to content

Instantly share code, notes, and snippets.

@moondef
Last active February 6, 2022 13:29
Show Gist options
  • Save moondef/9f59311022524ae0a93faf7ff3b21a57 to your computer and use it in GitHub Desktop.
Save moondef/9f59311022524ae0a93faf7ff3b21a57 to your computer and use it in GitHub Desktop.
{
"data": [
{
"id": 0,
"name": "Bulbasaur",
"price": 30,
"image": "https://img.pokemondb.net/artwork/bulbasaur.jpg",
"type": ["grass", "poison"],
"species": "Seed Pokemon",
"abilities": [
{"naming": "Overgrow", "hidden": false},
{"naming": "Chlorophyll", "hidden": true}
]
},
{
"id": 1,
"name": "Charmander",
"price": 35,
"image": "https://img.pokemondb.net/artwork/charmander.jpg",
"type": ["fire"],
"species": "Lizard Pokemon",
"abilities": [
{"naming": "Blaze", "hidden": false},
{"naming": "Solar Power", "hidden": true}
]
},
{
"id": 2,
"name": "Squirtle",
"price": 50,
"image": "https://img.pokemondb.net/artwork/squirtle.jpg",
"type": ["water"],
"species": "Tiny Turtle Pokemon",
"abilities": [
{"naming": "Torrent", "hidden": false},
{"naming": "Rain Dish", "hidden": true}
]
},
{
"id": 3,
"name": "Caterpie",
"price": 25,
"image": "https://img.pokemondb.net/artwork/caterpie.jpg",
"type": ["bug"],
"species": "Worm Pokemon",
"abilities": [
{"naming": "Shield Dust", "hidden": false},
{"naming": "Run Away", "hidden": true}
]
},
{
"id": 4,
"name": "Weedle",
"price": 30,
"image": "https://img.pokemondb.net/artwork/weedle.jpg",
"type": ["bug", "poison"],
"species": "Hairy Bug Pokemon",
"abilities": [
{"naming": "Shield Dust", "hidden": false},
{"naming": "Run Away", "hidden": true}
]
},
{
"id": 5,
"name": "Pidgey",
"price": 40,
"image": "https://img.pokemondb.net/artwork/pidgey.jpg",
"type": ["normal", "flying"],
"species": "Tiny Bird Pokemon",
"abilities": [
{"naming": "Keen Eye", "hidden": false},
{"naming": "Tangled Feet", "hidden": false},
{"naming": "Big Pecks", "hidden": true}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment