-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpokemons.json
executable file
·73 lines (71 loc) · 1.81 KB
/
pokemons.json
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
{
"pokémons":[
{
"id": 1,
"name": "Bulbasaur",
"tipus": "Planta",
"peso": "6.9 kg",
"altura": "0.7 m",
"estadistiques": {
"velocitat": 3,
"fortalesa": 3,
"presició": 4,
"resistencia": 4,
"salt":3
},
"moviments":[
{
"nom": "Placaje",
"descripció": "El pokémon ataca amb el seu cos",
"potencia": "40",
"contacte": "true"
},
{
"nom": "Latigo Cepa",
"descripció": "El pokémon ataca amb unes plantes",
"potencia": "45",
"contacte": "false"
}
],
"imatge": "https://images.wikidexcdn.net/mwuploads/wikidex/thumb/4/43/latest/20190406170624/Bulbasaur.png/200px-Bulbasaur.png",
"evolucions": [
{
"id": "2",
"nom": "Ivysaur",
"nivell": 16
},
{
"id": "3",
"nom": "Venusaur",
"nivell": 32
}
]
},
{
"id": 151,
"nom":"Mew",
"tipus":"Psíquic",
"peso":"4.0 kg",
"altura":"0.4 m",
"estadistiques":{
"velocitat": 5,
"fortalesa": 5,
"presició": 5,
"resistencia": 5,
"salt":5
},
"moviments":[
{
"nom": "Psíquico",
"descripció": "El pokémon ataca amb la ment",
"potencia": "90",
"contacte": "false"
}
],
"imatge":"https://images.wikidexcdn.net/mwuploads/wikidex/b/bf/Mew.png",
"evolucions": [
null
]
}
]
}