Fixing sandstorm glitch

While sand was active in gen3, all pokemon's SpD stats were reduced.  This fixes
This commit is contained in:
Relados 2014-02-12 16:18:35 -06:00
parent 514c33f55d
commit 62649776ca

View File

@ -32,7 +32,9 @@ exports.BattleStatuses = {
},
sandstorm: {
inherit: true,
onModifySpD: null
onModifySpD: onModifySpD: function(spd, pokemon) {
return this.spd;
},
},
stall: {
// In gen 3, the chance of protect succeeding does not fall below 1/8.