pokemon-io-core 0.0.15 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/skins/pokemon/moves.js +195 -8
- package/package.json +1 -1
|
@@ -17,6 +17,21 @@ export const POKEMON_MOVES = [
|
|
|
17
17
|
},
|
|
18
18
|
],
|
|
19
19
|
},
|
|
20
|
+
{
|
|
21
|
+
id: "fire_fang",
|
|
22
|
+
name: "Colmillo Ígneo",
|
|
23
|
+
typeId: "fire",
|
|
24
|
+
kind: "damage",
|
|
25
|
+
basePower: 65,
|
|
26
|
+
accuracy: 95,
|
|
27
|
+
maxPP: 15,
|
|
28
|
+
priority: 0,
|
|
29
|
+
target: "enemy",
|
|
30
|
+
effects: [
|
|
31
|
+
{ kind: "damage", amount: 10 },
|
|
32
|
+
{ kind: "apply_status", statusId: "burn" },
|
|
33
|
+
],
|
|
34
|
+
},
|
|
20
35
|
{
|
|
21
36
|
id: "ember",
|
|
22
37
|
name: "Ascuas",
|
|
@@ -51,6 +66,57 @@ export const POKEMON_MOVES = [
|
|
|
51
66
|
},
|
|
52
67
|
],
|
|
53
68
|
},
|
|
69
|
+
{
|
|
70
|
+
id: "water_gun2",
|
|
71
|
+
name: "Hidropulso",
|
|
72
|
+
typeId: POKEMON_TYPE_IDS.water,
|
|
73
|
+
kind: "damage",
|
|
74
|
+
basePower: 40,
|
|
75
|
+
accuracy: 100,
|
|
76
|
+
maxPP: 25,
|
|
77
|
+
priority: 0,
|
|
78
|
+
target: "enemy",
|
|
79
|
+
effects: [
|
|
80
|
+
{
|
|
81
|
+
kind: "damage",
|
|
82
|
+
amount: 20,
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
id: "water_gun3",
|
|
88
|
+
name: "Llover",
|
|
89
|
+
typeId: POKEMON_TYPE_IDS.water,
|
|
90
|
+
kind: "damage",
|
|
91
|
+
basePower: 40,
|
|
92
|
+
accuracy: 100,
|
|
93
|
+
maxPP: 25,
|
|
94
|
+
priority: 0,
|
|
95
|
+
target: "enemy",
|
|
96
|
+
effects: [
|
|
97
|
+
{
|
|
98
|
+
kind: "damage",
|
|
99
|
+
amount: 20,
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
id: "water_gun4",
|
|
105
|
+
name: "Wet",
|
|
106
|
+
typeId: POKEMON_TYPE_IDS.water,
|
|
107
|
+
kind: "damage",
|
|
108
|
+
basePower: 40,
|
|
109
|
+
accuracy: 100,
|
|
110
|
+
maxPP: 25,
|
|
111
|
+
priority: 0,
|
|
112
|
+
target: "enemy",
|
|
113
|
+
effects: [
|
|
114
|
+
{
|
|
115
|
+
kind: "damage",
|
|
116
|
+
amount: 20,
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
},
|
|
54
120
|
{
|
|
55
121
|
id: "vine_whip",
|
|
56
122
|
name: "Látigo Cepa",
|
|
@@ -68,6 +134,57 @@ export const POKEMON_MOVES = [
|
|
|
68
134
|
},
|
|
69
135
|
],
|
|
70
136
|
},
|
|
137
|
+
{
|
|
138
|
+
id: "vine_whip2",
|
|
139
|
+
name: "Hierbita",
|
|
140
|
+
typeId: POKEMON_TYPE_IDS.grass,
|
|
141
|
+
kind: "damage",
|
|
142
|
+
basePower: 45,
|
|
143
|
+
accuracy: 100,
|
|
144
|
+
maxPP: 25,
|
|
145
|
+
priority: 0,
|
|
146
|
+
target: "enemy",
|
|
147
|
+
effects: [
|
|
148
|
+
{
|
|
149
|
+
kind: "damage",
|
|
150
|
+
amount: 20,
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
id: "vine_whip3",
|
|
156
|
+
name: "Buena flor",
|
|
157
|
+
typeId: POKEMON_TYPE_IDS.grass,
|
|
158
|
+
kind: "damage",
|
|
159
|
+
basePower: 45,
|
|
160
|
+
accuracy: 100,
|
|
161
|
+
maxPP: 25,
|
|
162
|
+
priority: 0,
|
|
163
|
+
target: "enemy",
|
|
164
|
+
effects: [
|
|
165
|
+
{
|
|
166
|
+
kind: "damage",
|
|
167
|
+
amount: 20,
|
|
168
|
+
},
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
id: "vine_whip4",
|
|
173
|
+
name: "Recurrente",
|
|
174
|
+
typeId: POKEMON_TYPE_IDS.grass,
|
|
175
|
+
kind: "damage",
|
|
176
|
+
basePower: 45,
|
|
177
|
+
accuracy: 100,
|
|
178
|
+
maxPP: 25,
|
|
179
|
+
priority: 0,
|
|
180
|
+
target: "enemy",
|
|
181
|
+
effects: [
|
|
182
|
+
{
|
|
183
|
+
kind: "damage",
|
|
184
|
+
amount: 20,
|
|
185
|
+
},
|
|
186
|
+
],
|
|
187
|
+
},
|
|
71
188
|
{
|
|
72
189
|
id: "thunder_shock",
|
|
73
190
|
name: "Impactrueno",
|
|
@@ -86,18 +203,88 @@ export const POKEMON_MOVES = [
|
|
|
86
203
|
],
|
|
87
204
|
},
|
|
88
205
|
{
|
|
89
|
-
id: "
|
|
90
|
-
name: "
|
|
91
|
-
typeId:
|
|
206
|
+
id: "thunder_shock2",
|
|
207
|
+
name: "Rayo",
|
|
208
|
+
typeId: POKEMON_TYPE_IDS.electric,
|
|
92
209
|
kind: "damage",
|
|
93
|
-
basePower:
|
|
94
|
-
accuracy:
|
|
95
|
-
maxPP:
|
|
210
|
+
basePower: 40,
|
|
211
|
+
accuracy: 100,
|
|
212
|
+
maxPP: 30,
|
|
96
213
|
priority: 0,
|
|
97
214
|
target: "enemy",
|
|
98
215
|
effects: [
|
|
99
|
-
{
|
|
100
|
-
|
|
216
|
+
{
|
|
217
|
+
kind: "damage",
|
|
218
|
+
amount: 20,
|
|
219
|
+
},
|
|
220
|
+
],
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
id: "thunder_shock3",
|
|
224
|
+
name: "Tormenta",
|
|
225
|
+
typeId: POKEMON_TYPE_IDS.electric,
|
|
226
|
+
kind: "damage",
|
|
227
|
+
basePower: 40,
|
|
228
|
+
accuracy: 100,
|
|
229
|
+
maxPP: 30,
|
|
230
|
+
priority: 0,
|
|
231
|
+
target: "enemy",
|
|
232
|
+
effects: [
|
|
233
|
+
{
|
|
234
|
+
kind: "damage",
|
|
235
|
+
amount: 20,
|
|
236
|
+
},
|
|
237
|
+
],
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
id: "thunder_shock4",
|
|
241
|
+
name: "Lluvia de rayos",
|
|
242
|
+
typeId: POKEMON_TYPE_IDS.electric,
|
|
243
|
+
kind: "damage",
|
|
244
|
+
basePower: 40,
|
|
245
|
+
accuracy: 100,
|
|
246
|
+
maxPP: 30,
|
|
247
|
+
priority: 0,
|
|
248
|
+
target: "enemy",
|
|
249
|
+
effects: [
|
|
250
|
+
{
|
|
251
|
+
kind: "damage",
|
|
252
|
+
amount: 20,
|
|
253
|
+
},
|
|
254
|
+
],
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
id: "think",
|
|
258
|
+
name: "Rayada mental",
|
|
259
|
+
typeId: POKEMON_TYPE_IDS.psychic,
|
|
260
|
+
kind: "damage",
|
|
261
|
+
basePower: 40,
|
|
262
|
+
accuracy: 100,
|
|
263
|
+
maxPP: 30,
|
|
264
|
+
priority: 0,
|
|
265
|
+
target: "enemy",
|
|
266
|
+
effects: [
|
|
267
|
+
{
|
|
268
|
+
kind: "damage",
|
|
269
|
+
amount: 20,
|
|
270
|
+
},
|
|
271
|
+
],
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
id: "think2",
|
|
275
|
+
name: "Psicoterapia",
|
|
276
|
+
typeId: POKEMON_TYPE_IDS.psychic,
|
|
277
|
+
kind: "damage",
|
|
278
|
+
basePower: 40,
|
|
279
|
+
accuracy: 100,
|
|
280
|
+
maxPP: 30,
|
|
281
|
+
priority: 0,
|
|
282
|
+
target: "enemy",
|
|
283
|
+
effects: [
|
|
284
|
+
{
|
|
285
|
+
kind: "damage",
|
|
286
|
+
amount: 20,
|
|
287
|
+
},
|
|
101
288
|
],
|
|
102
289
|
},
|
|
103
290
|
];
|