diff --git a/js/client-battle-tooltips.js b/js/client-battle-tooltips.js index cc3ef068ea..56e758ef25 100644 --- a/js/client-battle-tooltips.js +++ b/js/client-battle-tooltips.js @@ -301,6 +301,9 @@ var BattleTooltips = (function () { if ('bite' in move.flags && (myPokemon.baseAbility === 'strongjaw' || pokemon.ability === "Strong Jaw")) { text += '

✓ Bite (boosted by Strong Jaw)

'; } + if ((move.recoil || move.hasCustomRecoil) && (myPokemon.baseAbility === 'reckless' || pokemon.ability === "Reckless")) { + text += '

✓ Recoil (boosted by Reckless)

'; + } if ('bullet' in move.flags) { text += '

✓ Ballistic (doesn\'t affect Bulletproof pokemon)

'; }