mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-14 04:12:18 +02:00
Remove additional reducing PP if pressure
This commit is contained in:
parent
3b17136b03
commit
7ea3c727ac
@ -1917,10 +1917,6 @@ export class LessPPMorePowerAttr extends VariablePowerAttr {
|
||||
const ppMax = move.pp;
|
||||
let ppUsed = user.moveset.find((m) => m.moveId === move.id).ppUsed;
|
||||
|
||||
if(target.hasAbility(Abilities.PRESSURE)) {
|
||||
ppUsed += 1;
|
||||
}
|
||||
|
||||
let ppRemains = ppMax - ppUsed;
|
||||
if(ppRemains < 0) ppRemains = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user