Skip to content

Instantly share code, notes, and snippets.

@npverni
Last active November 17, 2016 17:21
Show Gist options
  • Save npverni/faedbce0af507ac9c005216a8cda30ee to your computer and use it in GitHub Desktop.
Save npverni/faedbce0af507ac9c005216a8cda30ee to your computer and use it in GitHub Desktop.
[
{
number: 1,
name: 'Bulbasaur',
types: ['Grass', 'Poison'],
description: "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.",
evolvesFrom: null,
evolvesInto: 2,
},
{
number: 2,
name: 'Ivysaur',
types: ['Grass', 'Poison'],
description: "There is a bud on this Pokémon's back. To support its weight, Ivysaur's legs and trunk grow thick and strong. If it starts spending more time lying in the sunlight, it's a sign that the bud will bloom into a large flower soon.",
evolvesFrom: 1,
evolvesInto: 3,
},
{
number: 3,
name: 'Ivysaur',
types: ['Grass', 'Poison'],
description: "There is a large flower on Venusaur's back. The flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people.",
evolvesFrom: 2,
evolvesInto: null,
},
{
number: 4,
name: 'Charmander',
types: ['Fire'],
description: "The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is enjoying itself. If the Pokémon becomes enraged, the flame burns fiercely.",
evolvesFrom: null,
evolvesInto: 5,
},
{
number: 5,
name: 'Charmeleon',
types: ['Fire'],
description: "Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color.",
evolvesFrom: 4,
evolvesInto: 6,
},
{
number: 6,
name: 'Charizard',
types: ['Fire', 'Flying'],
description: "Charizard flies around the sky in search of powerful opponents. It breathes fire of such great heat that it melts anything. However, it never turns its fiery breath on any opponent weaker than itself.",
evolvesFrom: 6,
evolvesInto: null,
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment