pokemon-io-core 0.0.96 → 0.0.98

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.
@@ -1,623 +1,285 @@
1
+ // Balance Standards:
2
+ // Nuke: 45 Power, 85 Acc, 4 PP.
3
+ // Core: 25 Power, 95 Acc, 8 PP. (10% Status Chance)
4
+ // Utility/Heal: 100 Acc, 12 PP.
1
5
  export const POKEMON_MOVES = [
6
+ // --- TYPELESS (Special Mechanics) ---
2
7
  {
3
- "id": "roar",
4
- "name": "Rugido",
5
- "typeId": "fire",
6
- "accuracy": 100,
7
- "maxPP": 3,
8
- "priority": 0,
9
- "effects": [
10
- {
11
- "kind": "force_switch",
12
- "reason": "Roar"
13
- },
14
- ]
8
+ id: "phantom_step",
9
+ name: "Paso Fantasma",
10
+ typeId: "typeless",
11
+ accuracy: 95,
12
+ maxPP: 4,
13
+ priority: 0,
14
+ charge: { invulnerability: "vanish" },
15
+ effects: [{ kind: "damage", basePower: 40 }]
15
16
  },
16
17
  {
17
- "id": "overheat",
18
- "name": "Sofoco Ígneo",
19
- "typeId": "fire",
20
- "accuracy": 66,
21
- "maxPP": 3,
22
- "priority": 0,
23
- "effects": [
24
- {
25
- "kind": "damage",
26
- "basePower": 40
27
- },
28
- {
29
- "kind": "damage",
30
- "flatAmount": 10,
31
- "target": "self"
32
- }
33
- ]
18
+ id: "true_sight",
19
+ name: "Visión Verdadera",
20
+ typeId: "typeless",
21
+ accuracy: 100,
22
+ maxPP: 8,
23
+ priority: 0,
24
+ bypassInvulnerability: ["vanish"],
25
+ effects: [{ kind: "damage", basePower: 40 }]
34
26
  },
35
27
  {
36
- "id": "flamethrower",
37
- "name": "Lanzallamas",
38
- "typeId": "fire",
39
- "accuracy": 65,
40
- "maxPP": 8,
41
- "priority": 0,
42
- "effects": [
28
+ id: "hypnosis",
29
+ name: "Hipnosis",
30
+ typeId: "typeless",
31
+ accuracy: 70, // Low accuracy for Hard CC
32
+ maxPP: 4,
33
+ priority: 0,
34
+ effects: [
43
35
  {
44
- "kind": "damage",
45
- "basePower": 30
36
+ kind: "apply_status",
37
+ statusId: "sleep",
38
+ chance: 1 // 100% chance if hits
46
39
  }
47
40
  ]
48
41
  },
42
+ // --- FIRE ---
49
43
  {
50
- "id": "ember",
51
- "name": "Ascuas",
52
- "typeId": "fire",
53
- "accuracy": 65,
54
- "maxPP": 15,
55
- "priority": 0,
56
- "effects": [
57
- {
58
- "kind": "damage",
59
- "basePower": 20
60
- },
61
- {
62
- "kind": "apply_status",
63
- "statusId": "burn"
64
- }
44
+ id: "inferno",
45
+ name: "Infierno",
46
+ typeId: "fire",
47
+ accuracy: 85,
48
+ maxPP: 4,
49
+ effects: [
50
+ { kind: "damage", basePower: 45 },
51
+ { kind: "modify_stats", target: "self", offenseDelta: -2 }
65
52
  ]
66
53
  },
67
54
  {
68
- "id": "purifying_flame",
69
- "name": "Llama Purificadora",
70
- "typeId": "fire",
71
- "accuracy": 100,
72
- "maxPP": 5,
73
- "priority": 0,
74
- "effects": [
75
- {
76
- "kind": "heal",
77
- "target": "self",
78
- "amount": 22
79
- },
80
- {
81
- "kind": "clear_status",
82
- "target": "self",
83
- "kinds": [
84
- "soft"
85
- ]
86
- }
55
+ id: "ember",
56
+ name: "Ascuas",
57
+ typeId: "fire",
58
+ accuracy: 95,
59
+ maxPP: 8,
60
+ effects: [
61
+ { kind: "damage", basePower: 25 },
62
+ { kind: "apply_status", statusId: "burn", chance: 0.1 }
87
63
  ]
88
64
  },
89
65
  {
90
- "id": "fire_claw",
91
- "name": "Garra Ígnea",
92
- "typeId": "fire",
93
- "accuracy": 100,
94
- "maxPP": 10,
95
- "priority": 0,
96
- "effects": [
97
- {
98
- "kind": "damage",
99
- "basePower": 15
100
- }
101
- ]
66
+ id: "heat_wave",
67
+ name: "Onda de Calor",
68
+ typeId: "fire",
69
+ accuracy: 100,
70
+ maxPP: 12,
71
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
102
72
  },
103
73
  {
104
- "id": "healing_warmth",
105
- "name": "Calor Reconfortante",
106
- "typeId": "fire",
107
- "accuracy": 100,
108
- "maxPP": 8,
109
- "priority": 0,
110
- "effects": [
111
- {
112
- "kind": "heal",
113
- "target": "self",
114
- "amount": 18
115
- }
74
+ id: "cauterize",
75
+ name: "Cauterizar",
76
+ typeId: "fire",
77
+ accuracy: 100,
78
+ maxPP: 12,
79
+ effects: [
80
+ { kind: "heal", target: "self", amount: 25 },
81
+ { kind: "clear_status", target: "self", kinds: ["soft"] }
116
82
  ]
117
83
  },
84
+ // --- WATER ---
118
85
  {
119
- "id": "hydro_cannon",
120
- "name": "Cañón Hidro",
121
- "typeId": "water",
122
- "accuracy": 85,
123
- "maxPP": 3,
124
- "priority": 0,
125
- "effects": [
126
- {
127
- "kind": "damage",
128
- "basePower": 40
129
- },
130
- {
131
- "kind": "modify_stats",
132
- "offenseDelta": -15
133
- }
86
+ id: "tsunami",
87
+ name: "Tsunami",
88
+ typeId: "water",
89
+ accuracy: 85,
90
+ maxPP: 4,
91
+ effects: [
92
+ { kind: "damage", basePower: 45 },
93
+ { kind: "damage", target: "self", flatAmount: 15 }
134
94
  ]
135
95
  },
136
96
  {
137
- "id": "surf",
138
- "name": "Surf",
139
- "typeId": "water",
140
- "accuracy": 100,
141
- "maxPP": 8,
142
- "priority": 0,
143
- "effects": [
144
- {
145
- "kind": "damage",
146
- "basePower": 30
147
- }
148
- ]
97
+ id: "stream",
98
+ name: "Corriente",
99
+ typeId: "water",
100
+ accuracy: 95,
101
+ maxPP: 8,
102
+ effects: [{ kind: "damage", basePower: 25 }]
149
103
  },
150
104
  {
151
- "id": "scald",
152
- "name": "Escaldar",
153
- "typeId": "water",
154
- "accuracy": 100,
155
- "maxPP": 10,
156
- "priority": 0,
157
- "effects": [
158
- {
159
- "kind": "damage",
160
- "basePower": 20
161
- },
162
- {
163
- "kind": "apply_status",
164
- "statusId": "scalded"
165
- }
166
- ]
105
+ id: "refresh",
106
+ name: "Refrescar",
107
+ typeId: "water",
108
+ accuracy: 100,
109
+ maxPP: 12,
110
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
167
111
  },
168
112
  {
169
- "id": "aqua_purify",
170
- "name": "Aguas Purificadoras",
171
- "typeId": "water",
172
- "accuracy": 100,
173
- "maxPP": 5,
174
- "priority": 0,
175
- "effects": [
176
- {
177
- "kind": "heal",
178
- "target": "self",
179
- "amount": 22
180
- },
181
- {
182
- "kind": "clear_status",
183
- "target": "self",
184
- "kinds": [
185
- "soft"
186
- ]
187
- }
113
+ id: "purify",
114
+ name: "Purificar",
115
+ typeId: "water",
116
+ accuracy: 100,
117
+ maxPP: 12,
118
+ effects: [
119
+ { kind: "heal", target: "self", amount: 25 },
120
+ { kind: "clear_status", target: "self", kinds: ["soft"] }
188
121
  ]
189
122
  },
123
+ // --- GRASS ---
190
124
  {
191
- "id": "wave_crash",
192
- "name": "Oleada Feroz",
193
- "typeId": "water",
194
- "accuracy": 100,
195
- "maxPP": 10,
196
- "priority": 0,
197
- "effects": [
198
- {
199
- "kind": "damage",
200
- "basePower": 15
201
- }
125
+ id: "solar_beam",
126
+ name: "Rayo Solar",
127
+ typeId: "grass",
128
+ accuracy: 85,
129
+ maxPP: 4,
130
+ effects: [
131
+ { kind: "damage", basePower: 45 },
132
+ { kind: "modify_stats", target: "self", speedDelta: -2 }
202
133
  ]
203
134
  },
204
135
  {
205
- "id": "healing_rain",
206
- "name": "Lluvia Curativa",
207
- "typeId": "water",
208
- "accuracy": 100,
209
- "maxPP": 8,
210
- "priority": 0,
211
- "effects": [
212
- {
213
- "kind": "heal",
214
- "target": "self",
215
- "amount": 18
216
- }
136
+ id: "vine",
137
+ name: "Látigo Cepa",
138
+ typeId: "grass",
139
+ accuracy: 95,
140
+ maxPP: 8,
141
+ effects: [
142
+ { kind: "damage", basePower: 25 },
143
+ { kind: "apply_status", statusId: "poison", chance: 0.1 }
217
144
  ]
218
145
  },
219
146
  {
220
- "id": "leaf_storm",
221
- "name": "Tormenta de Hojas",
222
- "typeId": "grass",
223
- "accuracy": 90,
224
- "maxPP": 3,
225
- "priority": 0,
226
- "effects": [
227
- {
228
- "kind": "damage",
229
- "basePower": 40
230
- },
231
- {
232
- "kind": "modify_stats",
233
- "offenseDelta": -20
234
- }
235
- ]
147
+ id: "synthesis",
148
+ name: "Síntesis",
149
+ typeId: "grass",
150
+ accuracy: 100,
151
+ maxPP: 12,
152
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
236
153
  },
237
154
  {
238
- "id": "energy_ball",
239
- "name": "Energibola",
240
- "typeId": "grass",
241
- "accuracy": 100,
242
- "maxPP": 8,
243
- "priority": 0,
244
- "effects": [
245
- {
246
- "kind": "damage",
247
- "basePower": 30
248
- }
155
+ id: "bloom",
156
+ name: "Floración",
157
+ typeId: "grass",
158
+ accuracy: 100,
159
+ maxPP: 12,
160
+ effects: [
161
+ { kind: "heal", target: "self", amount: 25 },
162
+ { kind: "clear_status", target: "self", kinds: ["soft"] }
249
163
  ]
250
164
  },
165
+ // --- ELECTRIC ---
251
166
  {
252
- "id": "leech_seed",
253
- "name": "Drenadoras",
254
- "typeId": "grass",
255
- "accuracy": 100,
256
- "maxPP": 10,
257
- "priority": 0,
258
- "effects": [
259
- {
260
- "kind": "damage",
261
- "basePower": 20
262
- },
263
- {
264
- "kind": "apply_status",
265
- "statusId": "entangled"
266
- }
167
+ id: "thunder_strike",
168
+ name: "Golpe Trueno",
169
+ typeId: "electric",
170
+ accuracy: 85,
171
+ maxPP: 4,
172
+ effects: [
173
+ { kind: "damage", basePower: 45 },
174
+ { kind: "damage", target: "self", flatAmount: 15 }
267
175
  ]
268
176
  },
269
177
  {
270
- "id": "nature_purify",
271
- "name": "Purificación Natural",
272
- "typeId": "grass",
273
- "accuracy": 100,
274
- "maxPP": 5,
275
- "priority": 0,
276
- "effects": [
277
- {
278
- "kind": "heal",
279
- "target": "self",
280
- "amount": 22
281
- },
282
- {
283
- "kind": "clear_status",
284
- "target": "self",
285
- "kinds": [
286
- "soft"
287
- ]
288
- }
178
+ id: "spark",
179
+ name: "Chispa",
180
+ typeId: "electric",
181
+ accuracy: 95,
182
+ maxPP: 8,
183
+ effects: [
184
+ { kind: "damage", basePower: 25 },
185
+ { kind: "apply_status", statusId: "paralysis", chance: 0.1 }
289
186
  ]
290
187
  },
291
188
  {
292
- "id": "power_whip",
293
- "name": "Látigo Poderoso",
294
- "typeId": "grass",
295
- "accuracy": 100,
296
- "maxPP": 10,
297
- "priority": 0,
298
- "effects": [
299
- {
300
- "kind": "damage",
301
- "basePower": 15
302
- }
303
- ]
189
+ id: "recharge",
190
+ name: "Recarga",
191
+ typeId: "electric",
192
+ accuracy: 100,
193
+ maxPP: 12,
194
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
304
195
  },
305
196
  {
306
- "id": "regrowth",
307
- "name": "Rebrote",
308
- "typeId": "grass",
309
- "accuracy": 100,
310
- "maxPP": 8,
311
- "priority": 0,
312
- "effects": [
313
- {
314
- "kind": "heal",
315
- "target": "self",
316
- "amount": 18
317
- }
197
+ id: "grounding",
198
+ name: "Toma de Tierra",
199
+ typeId: "electric",
200
+ accuracy: 100,
201
+ maxPP: 12,
202
+ effects: [
203
+ { kind: "heal", target: "self", amount: 25 },
204
+ { kind: "clear_status", target: "self", kinds: ["soft"] }
318
205
  ]
319
206
  },
207
+ // --- PSYCHIC ---
320
208
  {
321
- "id": "psycho_boost",
322
- "name": "Psicoimpulso",
323
- "typeId": "psychic",
324
- "accuracy": 90,
325
- "maxPP": 3,
326
- "priority": 0,
327
- "effects": [
328
- {
329
- "kind": "damage",
330
- "basePower": 40
331
- },
332
- {
333
- "kind": "modify_stats",
334
- "offenseDelta": -20
335
- }
209
+ id: "psystrike",
210
+ name: "Onda Mental",
211
+ typeId: "psychic",
212
+ accuracy: 85,
213
+ maxPP: 4,
214
+ effects: [
215
+ { kind: "damage", basePower: 45 },
216
+ { kind: "modify_stats", target: "self", defenseDelta: -2 }
336
217
  ]
337
218
  },
338
219
  {
339
- "id": "psychic",
340
- "name": "Psíquico",
341
- "typeId": "psychic",
342
- "accuracy": 100,
343
- "maxPP": 8,
344
- "priority": 0,
345
- "effects": [
346
- {
347
- "kind": "damage",
348
- "basePower": 30
349
- }
350
- ]
220
+ id: "pulse",
221
+ name: "Pulso",
222
+ typeId: "psychic",
223
+ accuracy: 95,
224
+ maxPP: 8,
225
+ effects: [{ kind: "damage", basePower: 25 }]
351
226
  },
352
227
  {
353
- "id": "mind_spike",
354
- "name": "Puñal Mental",
355
- "typeId": "psychic",
356
- "accuracy": 100,
357
- "maxPP": 8,
358
- "priority": 0,
359
- "effects": [
360
- {
361
- "kind": "damage",
362
- "basePower": 20
363
- },
364
- {
365
- "kind": "apply_status",
366
- "statusId": "mind_break"
367
- }
368
- ]
228
+ id: "meditate",
229
+ name: "Meditar",
230
+ typeId: "psychic",
231
+ accuracy: 100,
232
+ maxPP: 12,
233
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
369
234
  },
370
235
  {
371
- "id": "aura_cleanse",
372
- "name": "Limpieza Áurica",
373
- "typeId": "psychic",
374
- "accuracy": 100,
375
- "maxPP": 5,
376
- "priority": 0,
377
- "effects": [
378
- {
379
- "kind": "heal",
380
- "target": "self",
381
- "amount": 22
382
- },
383
- {
384
- "kind": "clear_status",
385
- "target": "self",
386
- "kinds": [
387
- "soft"
388
- ]
389
- }
236
+ id: "clarity",
237
+ name: "Claridad",
238
+ typeId: "psychic",
239
+ accuracy: 100,
240
+ maxPP: 12,
241
+ effects: [
242
+ { kind: "heal", target: "self", amount: 25 },
243
+ { kind: "clear_status", target: "self", kinds: ["soft"] }
390
244
  ]
391
245
  },
392
- {
393
- "id": "psyshock",
394
- "name": "Psicocarga",
395
- "typeId": "psychic",
396
- "accuracy": 100,
397
- "maxPP": 10,
398
- "priority": 0,
399
- "effects": [
400
- {
401
- "kind": "damage",
402
- "basePower": 15
403
- }
246
+ // --- ROCK ---
247
+ {
248
+ id: "landslide",
249
+ name: "Avalancha",
250
+ typeId: "rock",
251
+ accuracy: 85,
252
+ maxPP: 4,
253
+ effects: [
254
+ { kind: "damage", basePower: 45 },
255
+ { kind: "damage", target: "self", flatAmount: 15 }
404
256
  ]
405
257
  },
406
258
  {
407
- "id": "healing_mind",
408
- "name": "Mente Serena",
409
- "typeId": "psychic",
410
- "accuracy": 100,
411
- "maxPP": 8,
412
- "priority": 0,
413
- "effects": [
414
- {
415
- "kind": "heal",
416
- "target": "self",
417
- "amount": 18
418
- }
419
- ]
259
+ id: "throw",
260
+ name: "Lanzar Rocas",
261
+ typeId: "rock",
262
+ accuracy: 95,
263
+ maxPP: 8,
264
+ effects: [{ kind: "damage", basePower: 25 }]
420
265
  },
421
266
  {
422
- "id": "rock_wrecker",
423
- "name": "Destroza Rocas",
424
- "typeId": "rock",
425
- "accuracy": 85,
426
- "maxPP": 3,
427
- "priority": 0,
428
- "effects": [
429
- {
430
- "kind": "damage",
431
- "basePower": 40
432
- },
433
- {
434
- "kind": "modify_stats",
435
- "offenseDelta": -20
436
- }
437
- ]
267
+ id: "mend",
268
+ name: "Reconstruir",
269
+ typeId: "rock",
270
+ accuracy: 100,
271
+ maxPP: 12,
272
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
438
273
  },
439
274
  {
440
- "id": "stone_edge",
441
- "name": "Roca Afilada",
442
- "typeId": "rock",
443
- "accuracy": 90,
444
- "maxPP": 5,
445
- "priority": 0,
446
- "effects": [
447
- {
448
- "kind": "damage",
449
- "basePower": 30
450
- }
451
- ]
452
- },
453
- {
454
- "id": "rock_slide",
455
- "name": "Avalancha",
456
- "typeId": "rock",
457
- "accuracy": 100,
458
- "maxPP": 8,
459
- "priority": 0,
460
- "effects": [
461
- {
462
- "kind": "damage",
463
- "basePower": 15
464
- },
465
- {
466
- "kind": "apply_status",
467
- "statusId": "petrified"
468
- }
469
- ]
470
- },
471
- {
472
- "id": "sand_cleanse",
473
- "name": "Purga de Arena",
474
- "typeId": "rock",
475
- "accuracy": 100,
476
- "maxPP": 5,
477
- "priority": 0,
478
- "effects": [
479
- {
480
- "kind": "heal",
481
- "target": "self",
482
- "amount": 22
483
- },
484
- {
485
- "kind": "clear_status",
486
- "target": "self",
487
- "kinds": [
488
- "soft"
489
- ]
490
- }
491
- ]
492
- },
493
- {
494
- "id": "power_gem",
495
- "name": "Joya de Luz",
496
- "typeId": "rock",
497
- "accuracy": 100,
498
- "maxPP": 10,
499
- "priority": 0,
500
- "effects": [
501
- {
502
- "kind": "damage",
503
- "basePower": 15
504
- }
505
- ]
506
- },
507
- {
508
- "id": "healing_mineral",
509
- "name": "Mineral Curativo",
510
- "typeId": "rock",
511
- "accuracy": 100,
512
- "maxPP": 8,
513
- "priority": 0,
514
- "effects": [
515
- {
516
- "kind": "heal",
517
- "target": "self",
518
- "amount": 18
519
- }
520
- ]
521
- },
522
- {
523
- "id": "bolt_strike",
524
- "name": "Impacto Voltio",
525
- "typeId": "electric",
526
- "accuracy": 85,
527
- "maxPP": 3,
528
- "priority": 0,
529
- "effects": [
530
- {
531
- "kind": "damage",
532
- "basePower": 40
533
- },
534
- {
535
- "kind": "modify_stats",
536
- "offenseDelta": -15
537
- }
538
- ]
539
- },
540
- {
541
- "id": "thunderbolt",
542
- "name": "Rayo",
543
- "typeId": "electric",
544
- "accuracy": 100,
545
- "maxPP": 8,
546
- "priority": 0,
547
- "effects": [
548
- {
549
- "kind": "damage",
550
- "basePower": 30
551
- }
552
- ]
553
- },
554
- {
555
- "id": "thunder_wave",
556
- "name": "Onda Trueno",
557
- "typeId": "electric",
558
- "accuracy": 100,
559
- "maxPP": 10,
560
- "priority": 0,
561
- "effects": [
562
- {
563
- "kind": "damage",
564
- "basePower": 20
565
- },
566
- {
567
- "kind": "apply_status",
568
- "statusId": "shocked"
569
- }
570
- ]
571
- },
572
- {
573
- "id": "static_field",
574
- "name": "Campo Estático",
575
- "typeId": "electric",
576
- "accuracy": 100,
577
- "maxPP": 5,
578
- "priority": 0,
579
- "effects": [
580
- {
581
- "kind": "heal",
582
- "target": "self",
583
- "amount": 22
584
- },
585
- {
586
- "kind": "clear_status",
587
- "target": "self",
588
- "kinds": [
589
- "soft"
590
- ]
591
- }
592
- ]
593
- },
594
- {
595
- "id": "wild_charge",
596
- "name": "Carga Salvaje",
597
- "typeId": "electric",
598
- "accuracy": 100,
599
- "maxPP": 10,
600
- "priority": 0,
601
- "effects": [
602
- {
603
- "kind": "damage",
604
- "basePower": 15
605
- }
606
- ]
607
- },
608
- {
609
- "id": "healing_spark",
610
- "name": "Chispa Sanadora",
611
- "typeId": "electric",
612
- "accuracy": 100,
613
- "maxPP": 8,
614
- "priority": 0,
615
- "effects": [
616
- {
617
- "kind": "heal",
618
- "target": "self",
619
- "amount": 18
620
- }
275
+ id: "polish",
276
+ name: "Pulir",
277
+ typeId: "rock",
278
+ accuracy: 100,
279
+ maxPP: 12,
280
+ effects: [
281
+ { kind: "heal", target: "self", amount: 25 },
282
+ { kind: "clear_status", target: "self", kinds: ["soft"] }
621
283
  ]
622
284
  }
623
285
  ];