From c68eebfbaf90adde4e9a47bd1f38f75a68aed534 Mon Sep 17 00:00:00 2001 From: Joim Date: Sun, 17 Mar 2013 18:24:33 +0100 Subject: [PATCH] Gen 1: Fix poison and burn damage In gen 1, poison and burn damage is 1/16 of max hp, not 1/8. --- mods/gen1/statuses.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/gen1/statuses.js b/mods/gen1/statuses.js index 8f6415194c..8cfeffbb27 100644 --- a/mods/gen1/statuses.js +++ b/mods/gen1/statuses.js @@ -22,7 +22,7 @@ exports.BattleStatuses = { }, onResidualOrder: 9, onResidual: function(pokemon) { - this.damage(pokemon.maxhp/8); + this.damage(pokemon.maxhp/16); }, onSwitchIn: function (pokemon){ pokemon.addVolatile('brnattackdrop'); @@ -98,7 +98,7 @@ exports.BattleStatuses = { }, onResidualOrder: 9, onResidual: function(pokemon) { - this.damage(pokemon.maxhp/8); + this.damage(pokemon.maxhp/16); } }, tox: { @@ -344,4 +344,4 @@ exports.BattleStatuses = { this.effectData.duration = 2; }, } -}; \ No newline at end of file +};