Skip to content

Commit

Permalink
Fix regular Heal Block duration (#9983)
Browse files Browse the repository at this point in the history
* Fix regular Heal Block duration

* Update data/moves.ts

---------

Co-authored-by: Kris Johnson <[email protected]>
  • Loading branch information
Karthik99999 and KrisXV authored Dec 17, 2023
1 parent 4402cf4 commit b6a45ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8532,7 +8532,7 @@ export const Moves: {[moveid: string]: MoveData} = {
condition: {
duration: 5,
durationCallback(target, source, effect) {
if (effect?.effectType === "Move") {
if (effect?.name === "Psychic Noise") {
return 2;
}
if (source?.hasAbility('persistent')) {
Expand Down

0 comments on commit b6a45ff

Please sign in to comment.