diff --git a/js/battle.js b/js/battle.js index c5ec8a008..69a861230 100644 --- a/js/battle.js +++ b/js/battle.js @@ -5451,6 +5451,12 @@ var Battle = (function () { case '-fieldstart': var effect = Tools.getEffect(args[1]); var poke = this.getPokemon(kwargs.of); + var fromeffect = Tools.getEffect(kwargs.from); + if (fromeffect && fromeffect.effectType === 'Ability') { + this.resultAnim(poke, fromeffect.name, 'ability'); + this.message('', "[" + poke.getName(true) + "'s " + fromeffect.name + "!]"); + poke.markAbility(fromeffect.name); + } this.addPseudoWeather(effect.name, poke); switch (effect.id) {