Skip to content

Instantly share code, notes, and snippets.

@vrogueon
Created September 14, 2021 04:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrogueon/cad4acffe7ce318e7b04efec3e9b700d to your computer and use it in GitHub Desktop.
Save vrogueon/cad4acffe7ce318e7b04efec3e9b700d to your computer and use it in GitHub Desktop.
const pokemons = [
{
"id": 3,
"name": "Venusaur",
"type": ["Grass", "Poison"],
"base": {
"HP": 80,
"Attack": 82,
"Defense": 83,
}
},
{
"id": 6,
"name": "Charizard",
"type": ["Fire", "Flying"],
"base": {
"HP": 78,
"Attack": 84,
"Defense": 78,
}
},
{
"id": 9,
"name": "Blastoise",
"type": ["Water"],
"base": {
"HP": 79,
"Attack": 83,
"Defense": 100,
}
},
{
"id": 12,
"name": "Butterfree",
"type": ["Bug", "Flying"],
"base": {
"HP": 60,
"Attack": 45,
"Defense": 50,
}
},
{
"id": 15,
"name": "Beedrill",
"type": ["Bug", "Poison"],
"base": {
"HP": 65,
"Attack": 90,
"Defense": 40,
}
},
{
"id": 18,
"name": "Pidgeot",
"type": ["Normal", "Flying"],
"base": {
"HP": 83,
"Attack": 80,
"Defense": 75,
}
},
{
"id": 24,
"name": "Arbok",
"type": ["Poison"],
"base": {
"HP": 60,
"Attack": 95,
"Defense": 69,
}
},
{
"id": 25,
"name": "Pikachu",
"type": ["Electric"],
"base": {
"HP": 35,
"Attack": 55,
"Defense": 40,
}
},
{
"id": 36,
"name": "Clefable",
"type": ["Fairy"],
"base": {
"HP": 95,
"Attack": 70,
"Defense": 73,
}
},{
"id": 49,
"name": "Venomoth",
"type": ["Bug", "Poison"],
"base": {
"HP": 70,
"Attack": 65,
"Defense": 60,
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment