Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Ondřej Bazala
PV247
Commits
db476722
Commit
db476722
authored
Dec 05, 2021
by
Ondrej Bazala
Browse files
Added new attributes to Pokemon type
parent
c4f26349
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/data/pokemons.ts
View file @
db476722
Changes suppressed. Click to show.
...
...
@@ -32,906 +32,5436 @@ export const pokemons: Pokemon[] = [
id
:
1
,
name
:
'
bulbasaur
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png
'
,
weight
:
69
,
height
:
7
,
types
:
[
'
grass
'
,
'
poison
'
],
abilities
:
[
'
overgrow
'
,
'
chlorophyll
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
45
},
{
name
:
'
attack
'
,
amount
:
49
},
{
name
:
'
defense
'
,
amount
:
49
},
{
name
:
'
special-attack
'
,
amount
:
65
},
{
name
:
'
special-defense
'
,
amount
:
65
},
{
name
:
'
speed
'
,
amount
:
45
}
]
},
{
id
:
2
,
name
:
'
ivysaur
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/2.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/2.png
'
,
weight
:
130
,
height
:
10
,
types
:
[
'
grass
'
,
'
poison
'
],
abilities
:
[
'
overgrow
'
,
'
chlorophyll
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
60
},
{
name
:
'
attack
'
,
amount
:
62
},
{
name
:
'
defense
'
,
amount
:
63
},
{
name
:
'
special-attack
'
,
amount
:
80
},
{
name
:
'
special-defense
'
,
amount
:
80
},
{
name
:
'
speed
'
,
amount
:
60
}
]
},
{
id
:
3
,
name
:
'
venusaur
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/3.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/3.png
'
,
weight
:
1000
,
height
:
20
,
types
:
[
'
grass
'
,
'
poison
'
],
abilities
:
[
'
overgrow
'
,
'
chlorophyll
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
80
},
{
name
:
'
attack
'
,
amount
:
82
},
{
name
:
'
defense
'
,
amount
:
83
},
{
name
:
'
special-attack
'
,
amount
:
100
},
{
name
:
'
special-defense
'
,
amount
:
100
},
{
name
:
'
speed
'
,
amount
:
80
}
]
},
{
id
:
4
,
name
:
'
charmander
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/4.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/4.png
'
,
weight
:
85
,
height
:
6
,
types
:
[
'
fire
'
],
abilities
:
[
'
blaze
'
,
'
solar-power
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
39
},
{
name
:
'
attack
'
,
amount
:
52
},
{
name
:
'
defense
'
,
amount
:
43
},
{
name
:
'
special-attack
'
,
amount
:
60
},
{
name
:
'
special-defense
'
,
amount
:
50
},
{
name
:
'
speed
'
,
amount
:
65
}
]
},
{
id
:
5
,
name
:
'
charmeleon
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/5.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/5.png
'
,
weight
:
190
,
height
:
11
,
types
:
[
'
fire
'
],
abilities
:
[
'
blaze
'
,
'
solar-power
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
58
},
{
name
:
'
attack
'
,
amount
:
64
},
{
name
:
'
defense
'
,
amount
:
58
},
{
name
:
'
special-attack
'
,
amount
:
80
},
{
name
:
'
special-defense
'
,
amount
:
65
},
{
name
:
'
speed
'
,
amount
:
80
}
]
},
{
id
:
6
,
name
:
'
charizard
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/6.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/6.png
'
,
weight
:
905
,
height
:
17
,
types
:
[
'
fire
'
,
'
flying
'
],
abilities
:
[
'
blaze
'
,
'
solar-power
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
78
},
{
name
:
'
attack
'
,
amount
:
84
},
{
name
:
'
defense
'
,
amount
:
78
},
{
name
:
'
special-attack
'
,
amount
:
109
},
{
name
:
'
special-defense
'
,
amount
:
85
},
{
name
:
'
speed
'
,
amount
:
100
}
]
},
{
id
:
7
,
name
:
'
squirtle
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/7.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/7.png
'
,
weight
:
90
,
height
:
5
,
types
:
[
'
water
'
],
abilities
:
[
'
torrent
'
,
'
rain-dish
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
44
},
{
name
:
'
attack
'
,
amount
:
48
},
{
name
:
'
defense
'
,
amount
:
65
},
{
name
:
'
special-attack
'
,
amount
:
50
},
{
name
:
'
special-defense
'
,
amount
:
64
},
{
name
:
'
speed
'
,
amount
:
43
}
]
},
{
id
:
8
,
name
:
'
wartortle
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/8.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/8.png
'
,
weight
:
225
,
height
:
10
,
types
:
[
'
water
'
],
abilities
:
[
'
torrent
'
,
'
rain-dish
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
59
},
{
name
:
'
attack
'
,
amount
:
63
},
{
name
:
'
defense
'
,
amount
:
80
},
{
name
:
'
special-attack
'
,
amount
:
65
},
{
name
:
'
special-defense
'
,
amount
:
80
},
{
name
:
'
speed
'
,
amount
:
58
}
]
},
{
id
:
9
,
name
:
'
blastoise
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/9.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/9.png
'
,
weight
:
855
,
height
:
16
,
types
:
[
'
water
'
],
abilities
:
[
'
torrent
'
,
'
rain-dish
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
79
},
{
name
:
'
attack
'
,
amount
:
83
},
{
name
:
'
defense
'
,
amount
:
100
},
{
name
:
'
special-attack
'
,
amount
:
85
},
{
name
:
'
special-defense
'
,
amount
:
105
},
{
name
:
'
speed
'
,
amount
:
78
}
]
},
{
id
:
10
,
name
:
'
caterpie
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/10.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/10.png
'
,
weight
:
29
,
height
:
3
,
types
:
[
'
bug
'
],
abilities
:
[
'
shield-dust
'
,
'
run-away
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
45
},
{
name
:
'
attack
'
,
amount
:
30
},
{
name
:
'
defense
'
,
amount
:
35
},
{
name
:
'
special-attack
'
,
amount
:
20
},
{
name
:
'
special-defense
'
,
amount
:
20
},
{
name
:
'
speed
'
,
amount
:
45
}
]
},
{
id
:
11
,
name
:
'
metapod
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/11.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/11.png
'
,
weight
:
99
,
height
:
7
,
types
:
[
'
bug
'
],
abilities
:
[
'
shed-skin
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
50
},
{
name
:
'
attack
'
,
amount
:
20
},
{
name
:
'
defense
'
,
amount
:
55
},
{
name
:
'
special-attack
'
,
amount
:
25
},
{
name
:
'
special-defense
'
,
amount
:
25
},
{
name
:
'
speed
'
,
amount
:
30
}
]
},
{
id
:
12
,
name
:
'
butterfree
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/12.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/12.png
'
,
weight
:
320
,
height
:
11
,
types
:
[
'
bug
'
,
'
flying
'
],
abilities
:
[
'
compound-eyes
'
,
'
tinted-lens
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
60
},
{
name
:
'
attack
'
,
amount
:
45
},
{
name
:
'
defense
'
,
amount
:
50
},
{
name
:
'
special-attack
'
,
amount
:
90
},
{
name
:
'
special-defense
'
,
amount
:
80
},
{
name
:
'
speed
'
,
amount
:
70
}
]
},
{
id
:
13
,
name
:
'
weedle
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/13.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/13.png
'
,
weight
:
32
,
height
:
3
,
types
:
[
'
bug
'
,
'
poison
'
],
abilities
:
[
'
shield-dust
'
,
'
run-away
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
40
},
{
name
:
'
attack
'
,
amount
:
35
},
{
name
:
'
defense
'
,
amount
:
30
},
{
name
:
'
special-attack
'
,
amount
:
20
},
{
name
:
'
special-defense
'
,
amount
:
20
},
{
name
:
'
speed
'
,
amount
:
50
}
]
},
{
id
:
14
,
name
:
'
kakuna
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/14.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/14.png
'
,
weight
:
100
,
height
:
6
,
types
:
[
'
bug
'
,
'
poison
'
],
abilities
:
[
'
shed-skin
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
45
},
{
name
:
'
attack
'
,
amount
:
25
},
{
name
:
'
defense
'
,
amount
:
50
},
{
name
:
'
special-attack
'
,
amount
:
25
},
{
name
:
'
special-defense
'
,
amount
:
25
},
{
name
:
'
speed
'
,
amount
:
35
}
]
},
{
id
:
15
,
name
:
'
beedrill
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/15.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/15.png
'
,
weight
:
295
,
height
:
10
,
types
:
[
'
bug
'
,
'
poison
'
],
abilities
:
[
'
swarm
'
,
'
sniper
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
65
},
{
name
:
'
attack
'
,
amount
:
90
},
{
name
:
'
defense
'
,
amount
:
40
},
{
name
:
'
special-attack
'
,
amount
:
45
},
{
name
:
'
special-defense
'
,
amount
:
80
},
{
name
:
'
speed
'
,
amount
:
75
}
]
},
{
id
:
16
,
name
:
'
pidgey
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/16.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/16.png
'
,
weight
:
18
,
height
:
3
,
types
:
[
'
normal
'
,
'
flying
'
],
abilities
:
[
'
keen-eye
'
,
'
tangled-feet
'
,
'
big-pecks
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
40
},
{
name
:
'
attack
'
,
amount
:
45
},
{
name
:
'
defense
'
,
amount
:
40
},
{
name
:
'
special-attack
'
,
amount
:
35
},
{
name
:
'
special-defense
'
,
amount
:
35
},
{
name
:
'
speed
'
,
amount
:
56
}
]
},
{
id
:
17
,
name
:
'
pidgeotto
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/17.png
'
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/17.png
'
,
weight
:
300
,
height
:
11
,
types
:
[
'
normal
'
,
'
flying
'
],
abilities
:
[
'
keen-eye
'
,
'
tangled-feet
'
,
'
big-pecks
'
],
stats
:
[
{
name
:
'
hp
'
,
amount
:
63
},
{
name
:
'
attack
'
,
amount
:
60
},
{
name
:
'
defense
'
,
amount
:
55
},
{
name
:
'
special-attack
'
,
amount
:
50
},
{
name
:
'
special-defense
'
,
amount
:
50
},
{
name
:
'
speed
'
,
amount
:
71
}
]
},
{
id
:
18
,
name
:
'
pidgeot
'
,
sprite
:
'
https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/18.png
'