diff --git a/src/pokemon.ts b/src/pokemon.ts index 1e92f90dc..35ca519bf 100644 --- a/src/pokemon.ts +++ b/src/pokemon.ts @@ -1401,6 +1401,10 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container { if (this.isOfType(Type.POISON) || this.isOfType(Type.STEEL)) return false; break; + case StatusEffect.PARALYSIS: + if (this.isOfType(Type.ELECTRIC)) + return false; + break; case StatusEffect.FREEZE: if (this.isOfType(Type.ICE)) return false;