Skip to content

Commit

Permalink
Gen II: Move HP berries' activations after Reflect, etc. (#10836)
Browse files Browse the repository at this point in the history
  • Loading branch information
pyuk-bot authored Jan 22, 2025
1 parent 1bdecae commit 3666829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7330,7 +7330,7 @@ export const Items: import('../sim/dex-items').ItemDataTable = {
basePower: 80,
type: "Poison",
},
onResidualOrder: 5,
onResidualOrder: 10,
onResidual(pokemon) {
if (pokemon.hp <= pokemon.maxhp / 2) {
pokemon.eatItem();
Expand Down Expand Up @@ -7396,7 +7396,7 @@ export const Items: import('../sim/dex-items').ItemDataTable = {
basePower: 80,
type: "Psychic",
},
onResidualOrder: 5,
onResidualOrder: 10,
onResidual(pokemon) {
if (pokemon.hp <= pokemon.maxhp / 2) {
pokemon.eatItem();
Expand Down

0 comments on commit 3666829

Please sign in to comment.