Update Slush Rush

It doesn't actually grant immunity to Hail...
This commit is contained in:
Marty-D 2017-01-11 23:06:17 -05:00 committed by GitHub
parent c65e27f2bb
commit 463677cdb7

View File

@ -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,