diff --git a/data/abilities.js b/data/abilities.js index ffd44c450e..f406c44f7f 100644 --- a/data/abilities.js +++ b/data/abilities.js @@ -3083,16 +3083,12 @@ exports.BattleAbilities = { num: 112, }, "slushrush": { - desc: "If Hail is active, this Pokemon's Speed is doubled. This Pokemon takes no damage from Hail.", - shortDesc: "If Hail is active, this Pokemon's Speed is doubled; immunity to Hail.", + shortDesc: "If Hail is active, this Pokemon's Speed is doubled.", onModifySpe: function (spe, pokemon) { if (this.isWeather('hail')) { return this.chainModify(2); } }, - onImmunity: function (type, pokemon) { - if (type === 'hail') return false; - }, id: "slushrush", name: "Slush Rush", rating: 2.5,