mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-06-02 22:08:36 -05:00
Reflected moves shouldnt be boosted by Prankster (#3188)
This commit is contained in:
parent
c9700f32f4
commit
91c737a6f6
|
|
@ -1759,6 +1759,7 @@ exports.BattleAbilities = {
|
|||
}
|
||||
let newMove = this.getMoveCopy(move.id);
|
||||
newMove.hasBounced = true;
|
||||
newMove.pranksterBoosted = false;
|
||||
this.useMove(newMove, target, source);
|
||||
return null;
|
||||
},
|
||||
|
|
@ -1768,6 +1769,7 @@ exports.BattleAbilities = {
|
|||
}
|
||||
let newMove = this.getMoveCopy(move.id);
|
||||
newMove.hasBounced = true;
|
||||
newMove.pranksterBoosted = false;
|
||||
this.useMove(newMove, this.effectData.target, source);
|
||||
return null;
|
||||
},
|
||||
|
|
|
|||
|
|
@ -9553,6 +9553,7 @@ exports.BattleMovedex = {
|
|||
}
|
||||
let newMove = this.getMoveCopy(move.id);
|
||||
newMove.hasBounced = true;
|
||||
newMove.pranksterBoosted = false;
|
||||
this.useMove(newMove, target, source);
|
||||
return null;
|
||||
},
|
||||
|
|
@ -9562,6 +9563,7 @@ exports.BattleMovedex = {
|
|||
}
|
||||
let newMove = this.getMoveCopy(move.id);
|
||||
newMove.hasBounced = true;
|
||||
newMove.pranksterBoosted = false;
|
||||
this.useMove(newMove, this.effectData.target, source);
|
||||
return null;
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user