From 463677cdb7ce9394e0cacfc31ab756a82895a84c Mon Sep 17 00:00:00 2001 From: Marty-D Date: Wed, 11 Jan 2017 23:06:17 -0500 Subject: [PATCH] Update Slush Rush It doesn't actually grant immunity to Hail... --- data/abilities.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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,