pokemon-io-core 0.0.97 → 0.0.99

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,653 +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": "modify_stats",
30
- "offenseDelta": -2,
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
- {
102
- "kind": "modify_crit_chance",
103
- "delta": 1,
104
- "target": "self"
105
- }
106
- ]
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 }]
107
72
  },
108
73
  {
109
- "id": "healing_warmth",
110
- "name": "Calor Reconfortante",
111
- "typeId": "fire",
112
- "accuracy": 100,
113
- "maxPP": 8,
114
- "priority": 0,
115
- "effects": [
116
- {
117
- "kind": "heal",
118
- "target": "self",
119
- "amount": 18
120
- }
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"] }
121
82
  ]
122
83
  },
84
+ // --- WATER ---
123
85
  {
124
- "id": "hydro_cannon",
125
- "name": "Cañón Hidro",
126
- "typeId": "water",
127
- "accuracy": 85,
128
- "maxPP": 3,
129
- "priority": 0,
130
- "effects": [
131
- {
132
- "kind": "damage",
133
- "basePower": 40
134
- },
135
- {
136
- "kind": "modify_stats",
137
- "offenseDelta": -2
138
- }
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 }
139
94
  ]
140
95
  },
141
96
  {
142
- "id": "surf",
143
- "name": "Surf",
144
- "typeId": "water",
145
- "accuracy": 100,
146
- "maxPP": 8,
147
- "priority": 0,
148
- "effects": [
149
- {
150
- "kind": "damage",
151
- "basePower": 30
152
- }
153
- ]
97
+ id: "stream",
98
+ name: "Corriente",
99
+ typeId: "water",
100
+ accuracy: 95,
101
+ maxPP: 8,
102
+ effects: [{ kind: "damage", basePower: 25 }]
154
103
  },
155
104
  {
156
- "id": "scald",
157
- "name": "Escaldar",
158
- "typeId": "water",
159
- "accuracy": 100,
160
- "maxPP": 10,
161
- "priority": 0,
162
- "effects": [
163
- {
164
- "kind": "damage",
165
- "basePower": 20
166
- },
167
- {
168
- "kind": "apply_status",
169
- "statusId": "scalded"
170
- }
171
- ]
105
+ id: "refresh",
106
+ name: "Refrescar",
107
+ typeId: "water",
108
+ accuracy: 100,
109
+ maxPP: 12,
110
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
172
111
  },
173
112
  {
174
- "id": "aqua_purify",
175
- "name": "Aguas Purificadoras",
176
- "typeId": "water",
177
- "accuracy": 100,
178
- "maxPP": 5,
179
- "priority": 0,
180
- "effects": [
181
- {
182
- "kind": "heal",
183
- "target": "self",
184
- "amount": 22
185
- },
186
- {
187
- "kind": "clear_status",
188
- "target": "self",
189
- "kinds": [
190
- "soft"
191
- ]
192
- }
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"] }
193
121
  ]
194
122
  },
123
+ // --- GRASS ---
195
124
  {
196
- "id": "wave_crash",
197
- "name": "Oleada Feroz",
198
- "typeId": "water",
199
- "accuracy": 100,
200
- "maxPP": 10,
201
- "priority": 0,
202
- "effects": [
203
- {
204
- "kind": "damage",
205
- "basePower": 15
206
- },
207
- {
208
- "kind": "modify_stats",
209
- "offenseDelta": 1,
210
- "target": "self"
211
- }
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 }
212
133
  ]
213
134
  },
214
135
  {
215
- "id": "healing_rain",
216
- "name": "Lluvia Curativa",
217
- "typeId": "water",
218
- "accuracy": 100,
219
- "maxPP": 8,
220
- "priority": 0,
221
- "effects": [
222
- {
223
- "kind": "heal",
224
- "target": "self",
225
- "amount": 18
226
- }
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 }
227
144
  ]
228
145
  },
229
146
  {
230
- "id": "leaf_storm",
231
- "name": "Tormenta de Hojas",
232
- "typeId": "grass",
233
- "accuracy": 90,
234
- "maxPP": 3,
235
- "priority": 0,
236
- "effects": [
237
- {
238
- "kind": "damage",
239
- "basePower": 40
240
- },
241
- {
242
- "kind": "modify_stats",
243
- "offenseDelta": -2
244
- }
245
- ]
147
+ id: "synthesis",
148
+ name: "Síntesis",
149
+ typeId: "grass",
150
+ accuracy: 100,
151
+ maxPP: 12,
152
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
246
153
  },
247
154
  {
248
- "id": "energy_ball",
249
- "name": "Energibola",
250
- "typeId": "grass",
251
- "accuracy": 100,
252
- "maxPP": 8,
253
- "priority": 0,
254
- "effects": [
255
- {
256
- "kind": "damage",
257
- "basePower": 30
258
- }
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"] }
259
163
  ]
260
164
  },
165
+ // --- ELECTRIC ---
261
166
  {
262
- "id": "leech_seed",
263
- "name": "Drenadoras",
264
- "typeId": "grass",
265
- "accuracy": 100,
266
- "maxPP": 10,
267
- "priority": 0,
268
- "effects": [
269
- {
270
- "kind": "damage",
271
- "basePower": 20
272
- },
273
- {
274
- "kind": "apply_status",
275
- "statusId": "entangled"
276
- }
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 }
277
175
  ]
278
176
  },
279
177
  {
280
- "id": "nature_purify",
281
- "name": "Purificación Natural",
282
- "typeId": "grass",
283
- "accuracy": 100,
284
- "maxPP": 5,
285
- "priority": 0,
286
- "effects": [
287
- {
288
- "kind": "heal",
289
- "target": "self",
290
- "amount": 22
291
- },
292
- {
293
- "kind": "clear_status",
294
- "target": "self",
295
- "kinds": [
296
- "soft"
297
- ]
298
- }
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 }
299
186
  ]
300
187
  },
301
188
  {
302
- "id": "power_whip",
303
- "name": "Látigo Poderoso",
304
- "typeId": "grass",
305
- "accuracy": 100,
306
- "maxPP": 10,
307
- "priority": 0,
308
- "effects": [
309
- {
310
- "kind": "damage",
311
- "basePower": 15
312
- },
313
- {
314
- "kind": "modify_hit_chance",
315
- "delta": -1,
316
- "target": "enemy"
317
- }
318
- ]
189
+ id: "recharge",
190
+ name: "Recarga",
191
+ typeId: "electric",
192
+ accuracy: 100,
193
+ maxPP: 12,
194
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
319
195
  },
320
196
  {
321
- "id": "regrowth",
322
- "name": "Rebrote",
323
- "typeId": "grass",
324
- "accuracy": 100,
325
- "maxPP": 8,
326
- "priority": 0,
327
- "effects": [
328
- {
329
- "kind": "heal",
330
- "target": "self",
331
- "amount": 18
332
- }
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"] }
333
205
  ]
334
206
  },
207
+ // --- PSYCHIC ---
335
208
  {
336
- "id": "psycho_boost",
337
- "name": "Psicoimpulso",
338
- "typeId": "psychic",
339
- "accuracy": 90,
340
- "maxPP": 3,
341
- "priority": 0,
342
- "effects": [
343
- {
344
- "kind": "damage",
345
- "basePower": 40
346
- },
347
- {
348
- "kind": "modify_stats",
349
- "offenseDelta": -2
350
- }
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 }
351
217
  ]
352
218
  },
353
219
  {
354
- "id": "psychic",
355
- "name": "Psíquico",
356
- "typeId": "psychic",
357
- "accuracy": 100,
358
- "maxPP": 8,
359
- "priority": 0,
360
- "effects": [
361
- {
362
- "kind": "damage",
363
- "basePower": 30
364
- }
365
- ]
220
+ id: "pulse",
221
+ name: "Pulso",
222
+ typeId: "psychic",
223
+ accuracy: 95,
224
+ maxPP: 8,
225
+ effects: [{ kind: "damage", basePower: 25 }]
366
226
  },
367
227
  {
368
- "id": "mind_spike",
369
- "name": "Puñal Mental",
370
- "typeId": "psychic",
371
- "accuracy": 100,
372
- "maxPP": 8,
373
- "priority": 0,
374
- "effects": [
375
- {
376
- "kind": "damage",
377
- "basePower": 20
378
- },
379
- {
380
- "kind": "apply_status",
381
- "statusId": "mind_break"
382
- }
383
- ]
228
+ id: "meditate",
229
+ name: "Meditar",
230
+ typeId: "psychic",
231
+ accuracy: 100,
232
+ maxPP: 12,
233
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
384
234
  },
385
235
  {
386
- "id": "aura_cleanse",
387
- "name": "Limpieza Áurica",
388
- "typeId": "psychic",
389
- "accuracy": 100,
390
- "maxPP": 5,
391
- "priority": 0,
392
- "effects": [
393
- {
394
- "kind": "heal",
395
- "target": "self",
396
- "amount": 22
397
- },
398
- {
399
- "kind": "clear_status",
400
- "target": "self",
401
- "kinds": [
402
- "soft"
403
- ]
404
- }
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"] }
405
244
  ]
406
245
  },
407
- {
408
- "id": "psyshock",
409
- "name": "Psicocarga",
410
- "typeId": "psychic",
411
- "accuracy": 100,
412
- "maxPP": 10,
413
- "priority": 0,
414
- "effects": [
415
- {
416
- "kind": "damage",
417
- "basePower": 15
418
- },
419
- {
420
- "kind": "modify_stats",
421
- "defenseDelta": -1,
422
- "target": "enemy"
423
- }
424
- ]
425
- },
426
- {
427
- "id": "healing_mind",
428
- "name": "Mente Serena",
429
- "typeId": "psychic",
430
- "accuracy": 100,
431
- "maxPP": 8,
432
- "priority": 0,
433
- "effects": [
434
- {
435
- "kind": "heal",
436
- "target": "self",
437
- "amount": 18
438
- }
439
- ]
440
- },
441
- {
442
- "id": "rock_wrecker",
443
- "name": "Destroza Rocas",
444
- "typeId": "rock",
445
- "accuracy": 85,
446
- "maxPP": 3,
447
- "priority": 0,
448
- "effects": [
449
- {
450
- "kind": "damage",
451
- "basePower": 40
452
- },
453
- {
454
- "kind": "modify_stats",
455
- "offenseDelta": -2
456
- }
457
- ]
458
- },
459
- {
460
- "id": "stone_edge",
461
- "name": "Roca Afilada",
462
- "typeId": "rock",
463
- "accuracy": 90,
464
- "maxPP": 5,
465
- "priority": 0,
466
- "effects": [
467
- {
468
- "kind": "damage",
469
- "basePower": 30
470
- }
471
- ]
472
- },
473
- {
474
- "id": "rock_slide",
475
- "name": "Avalancha",
476
- "typeId": "rock",
477
- "accuracy": 100,
478
- "maxPP": 8,
479
- "priority": 0,
480
- "effects": [
481
- {
482
- "kind": "damage",
483
- "basePower": 15
484
- },
485
- {
486
- "kind": "apply_status",
487
- "statusId": "petrified"
488
- }
489
- ]
490
- },
491
- {
492
- "id": "sand_cleanse",
493
- "name": "Purga de Arena",
494
- "typeId": "rock",
495
- "accuracy": 100,
496
- "maxPP": 5,
497
- "priority": 0,
498
- "effects": [
499
- {
500
- "kind": "heal",
501
- "target": "self",
502
- "amount": 22
503
- },
504
- {
505
- "kind": "clear_status",
506
- "target": "self",
507
- "kinds": [
508
- "soft"
509
- ]
510
- }
511
- ]
512
- },
513
- {
514
- "id": "power_gem",
515
- "name": "Joya de Luz",
516
- "typeId": "rock",
517
- "accuracy": 100,
518
- "maxPP": 10,
519
- "priority": 0,
520
- "effects": [
521
- {
522
- "kind": "damage",
523
- "basePower": 15
524
- },
525
- {
526
- "kind": "modify_crit_chance",
527
- "delta": 1,
528
- "target": "self"
529
- }
530
- ]
531
- },
532
- {
533
- "id": "healing_mineral",
534
- "name": "Mineral Curativo",
535
- "typeId": "rock",
536
- "accuracy": 100,
537
- "maxPP": 8,
538
- "priority": 0,
539
- "effects": [
540
- {
541
- "kind": "heal",
542
- "target": "self",
543
- "amount": 18
544
- }
545
- ]
546
- },
547
- {
548
- "id": "bolt_strike",
549
- "name": "Impacto Voltio",
550
- "typeId": "electric",
551
- "accuracy": 85,
552
- "maxPP": 3,
553
- "priority": 0,
554
- "effects": [
555
- {
556
- "kind": "damage",
557
- "basePower": 40
558
- },
559
- {
560
- "kind": "modify_stats",
561
- "offenseDelta": -2
562
- }
563
- ]
564
- },
565
- {
566
- "id": "thunderbolt",
567
- "name": "Rayo",
568
- "typeId": "electric",
569
- "accuracy": 100,
570
- "maxPP": 8,
571
- "priority": 0,
572
- "effects": [
573
- {
574
- "kind": "damage",
575
- "basePower": 30
576
- }
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 }
577
256
  ]
578
257
  },
579
258
  {
580
- "id": "thunder_wave",
581
- "name": "Onda Trueno",
582
- "typeId": "electric",
583
- "accuracy": 100,
584
- "maxPP": 10,
585
- "priority": 0,
586
- "effects": [
587
- {
588
- "kind": "damage",
589
- "basePower": 20
590
- },
591
- {
592
- "kind": "apply_status",
593
- "statusId": "shocked"
594
- }
595
- ]
259
+ id: "throw",
260
+ name: "Lanzar Rocas",
261
+ typeId: "rock",
262
+ accuracy: 95,
263
+ maxPP: 8,
264
+ effects: [{ kind: "damage", basePower: 25 }]
596
265
  },
597
266
  {
598
- "id": "static_field",
599
- "name": "Campo Estático",
600
- "typeId": "electric",
601
- "accuracy": 100,
602
- "maxPP": 5,
603
- "priority": 0,
604
- "effects": [
605
- {
606
- "kind": "heal",
607
- "target": "self",
608
- "amount": 22
609
- },
610
- {
611
- "kind": "clear_status",
612
- "target": "self",
613
- "kinds": [
614
- "soft"
615
- ]
616
- }
617
- ]
267
+ id: "mend",
268
+ name: "Reconstruir",
269
+ typeId: "rock",
270
+ accuracy: 100,
271
+ maxPP: 12,
272
+ effects: [{ kind: "heal", target: "self", amount: 50 }]
618
273
  },
619
274
  {
620
- "id": "wild_charge",
621
- "name": "Carga Salvaje",
622
- "typeId": "electric",
623
- "accuracy": 100,
624
- "maxPP": 10,
625
- "priority": 0,
626
- "effects": [
627
- {
628
- "kind": "damage",
629
- "basePower": 15
630
- },
631
- {
632
- "kind": "modify_stats",
633
- "speedDelta": 1,
634
- "target": "self"
635
- }
636
- ]
637
- },
638
- {
639
- "id": "healing_spark",
640
- "name": "Chispa Sanadora",
641
- "typeId": "electric",
642
- "accuracy": 100,
643
- "maxPP": 8,
644
- "priority": 0,
645
- "effects": [
646
- {
647
- "kind": "heal",
648
- "target": "self",
649
- "amount": 18
650
- }
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"] }
651
283
  ]
652
284
  }
653
285
  ];