Fix paralysis speed drop

Should only be 0.5x
This commit is contained in:
Xavion3 2024-04-17 02:23:20 +10:00 committed by Samuel H
parent 05bb384934
commit 420d7fbade
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
if (this.getTag(BattlerTagType.SLOW_START))
ret >>= 1;
if (this.status && this.status.effect === StatusEffect.PARALYSIS)
ret >>= 2;
ret >>= 1;
break;
}