-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ts
146 lines (145 loc) · 3.2 KB
/
data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
interface Pokemon {
[key: string]: string | string[]
}
const data: Pokemon[] = [
{
name: 'Bulbasaur',
height: '7',
weight: '69',
types: ['grass', 'poison'],
'base-Experience': '64',
abilities: ['overgrow', 'chlorophyll'],
hp: '45',
attack: '49',
defense: '49',
'special-attack': '65',
'special-defense': '65',
speed: '45',
},
{
name: 'Ivysaur',
height: '10',
weight: '130',
types: ['grass', 'poison'],
'base-Experience': '142',
abilities: ['overgrow', 'chlorophyll'],
hp: '60',
attack: '62',
defense: '63',
'special-attack': '80',
'special-defense': '80',
speed: '60',
},
{
name: 'Venusaur',
height: '20',
weight: '1000',
types: ['grass', 'poison'],
'base-Experience': '236',
abilities: ['overgrow', 'chlorophyll'],
hp: '80',
attack: '82',
defense: '83',
'special-attack': '100',
'special-defense': '100',
speed: '80',
},
{
name: 'Charmander',
height: '6',
weight: '85',
types: ['fire'],
'base-Experience': '62',
abilities: ['blaze', 'solar-power'],
hp: '39',
attack: '52',
defense: '43',
'special-attack': '60',
'special-defense': '50',
speed: '65',
},
{
name: 'Charmeleon',
height: '11',
weight: '190',
types: ['fire'],
'base-Experience': '142',
abilities: ['blaze', 'solar-power'],
hp: '58',
attack: '64',
defense: '58',
'special-attack': '80',
'special-defense': '65',
speed: '80',
},
{
name: 'Charizard',
height: '17',
weight: '905',
types: ['fire', 'flying'],
'base-Experience': '240',
abilities: ['blaze', 'solar-power'],
hp: '78',
attack: '84',
defense: '78',
'special-attack': '109',
'special-defense': '85',
speed: '100',
},
{
name: 'Squirtle',
height: '5',
weight: '90',
types: ['water'],
'base-Experience': '63',
abilities: ['torrent', 'rain-dish'],
hp: '44',
attack: '48',
defense: '65',
'special-attack': '50',
'special-defense': '64',
speed: '43',
},
{
name: 'Wartortle',
height: '10',
weight: '225',
types: ['water'],
'base-Experience': '142',
abilities: ['torrent', 'rain-dish'],
hp: '59',
attack: '63',
defense: '80',
'special-attack': '65',
'special-defense': '80',
speed: '58',
},
{
name: 'Blastoise',
height: '16',
weight: '855',
types: ['water'],
'base-Experience': '239',
abilities: ['torrent', 'rain-dish'],
hp: '79',
attack: '83',
defense: '100',
'special-attack': '85',
'special-defense': '105',
speed: '78',
},
{
name: 'Caterpie',
height: '3',
weight: '29',
types: ['bug'],
'base-Experience': '39',
abilities: ['shield-dust', 'run-away'],
hp: '45',
attack: '30',
defense: '35',
'special-attack': '20',
'special-defense': '20',
speed: '45',
},
]