mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-06-02 22:08:36 -05:00
Update Slush Rush
It doesn't actually grant immunity to Hail...
This commit is contained in:
parent
c65e27f2bb
commit
463677cdb7
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user