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,85 +1,54 @@
1
1
  export const POKEMON_STATUSES = [
2
- // FUEGO Quemadura
2
+ // --- BURN (Fuego) ---
3
+ // Effect: DoT + Halves Attack (Engine)
3
4
  {
4
5
  id: "burn",
5
6
  name: "Quemado",
6
7
  kind: "soft",
7
8
  minDurationTurns: 3,
8
- maxDurationTurns: 5,
9
+ maxDurationTurns: 6,
9
10
  effectsPerStack: [
10
- // DoT de fuego
11
11
  {
12
12
  kind: "damage",
13
- // el motor lo interpreta como daño plano por turno
14
- flatAmount: 6,
13
+ flatAmount: 6, // Plus -Atk in engine
15
14
  },
16
15
  ],
17
16
  },
18
- // AGUA Escaldado / Empapado
17
+ // --- PARALYSIS (Eléctrico) ---
18
+ // Effect: Halves Speed + 25% Chance to Skip Turn (Engine)
19
19
  {
20
- id: "scalded",
21
- name: "Escaldado",
20
+ id: "paralysis",
21
+ name: "Paralizado",
22
22
  kind: "soft",
23
23
  minDurationTurns: 3,
24
- maxDurationTurns: 5,
24
+ maxDurationTurns: 6,
25
25
  effectsPerStack: [
26
- {
27
- kind: "damage",
28
- flatAmount: 5,
29
- },
26
+ // No DoT, just control and speed drop
30
27
  ],
31
28
  },
32
- // PLANTA Enredado
29
+ // --- POISON (Planta/Toxic) ---
30
+ // Effect: DoT that scales each turn (Engine)
33
31
  {
34
- id: "entangled",
35
- name: "Enredado",
32
+ id: "poison",
33
+ name: "Envenenado",
36
34
  kind: "soft",
37
- minDurationTurns: 3,
38
- maxDurationTurns: 5,
35
+ minDurationTurns: 4,
36
+ maxDurationTurns: 8,
39
37
  effectsPerStack: [
40
38
  {
41
39
  kind: "damage",
42
- flatAmount: 4,
40
+ flatAmount: 6, // Starts at 6, scales +1 stack/turn in engine
43
41
  },
44
42
  ],
45
43
  },
46
- // PSIQUICO Bloqueo mental (hard CC)
44
+ // --- SLEEP (Psychic/Hypnosis) ---
45
+ // Effect: Hard CC. 30% Wake on Hit (Engine)
47
46
  {
48
- id: "mind_break",
49
- name: "Bloqueo Mental",
47
+ id: "sleep",
48
+ name: "Dormido",
50
49
  kind: "hard_cc",
51
- minDurationTurns: 1,
52
- maxDurationTurns: 2,
53
- effectsPerStack: [
54
- // El hard_cc ya lo interpreta el motor, no hace falta daño
55
- ],
56
- },
57
- // ROCA – Petrificado
58
- {
59
- id: "petrified",
60
- name: "Petrificado",
61
- kind: "soft",
62
- minDurationTurns: 2,
63
- maxDurationTurns: 4,
64
- effectsPerStack: [
65
- {
66
- kind: "damage",
67
- flatAmount: 5,
68
- },
69
- ],
70
- },
71
- // ELÉCTRICO – Electrocutado
72
- {
73
- id: "shocked",
74
- name: "Electrocutado",
75
- kind: "soft",
76
50
  minDurationTurns: 2,
77
51
  maxDurationTurns: 4,
78
- effectsPerStack: [
79
- {
80
- kind: "damage",
81
- flatAmount: 5,
82
- },
83
- ],
52
+ effectsPerStack: [],
84
53
  },
85
54
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pokemon-io-core",
3
- "version": "0.0.96",
3
+ "version": "0.0.98",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",