mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-23 08:16:16 -05:00
19 lines
307 B
JavaScript
19 lines
307 B
JavaScript
'use strict';
|
|
|
|
exports.BattleStatuses = {
|
|
brn: {
|
|
inherit: true,
|
|
onResidual: function (pokemon) {
|
|
this.damage(pokemon.maxhp / 8);
|
|
},
|
|
},
|
|
par: {
|
|
inherit: true,
|
|
onModifySpe: function (spe, pokemon) {
|
|
if (!pokemon.hasAbility('quickfeet')) {
|
|
return this.chainModify(0.25);
|
|
}
|
|
},
|
|
},
|
|
};
|