Advertisement
Guest User

M4A Tempestuous Ability

a guest
Sep 15th, 2020
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. tempestuous: {
  2. desc: "When replacing a fainted party member, this Pokémon's Special Defense is boosted. If one of this Pokémon's party members fainted on the turn before, the power of its Electric-type moves is doubled.",
  3. shortDesc: "Gains the effect of Charge when replacing a fainted ally.",
  4. onStart(pokemon) {
  5. if (pokemon.side.faintedThisTurn) {
  6. this.boost({spd: 1}, pokemon);
  7. }
  8. },
  9. onBasePowerPriority: 9,
  10. onBasePower(basePower, attacker, defender, move) {
  11. if (move.type === 'Electric' && pokemon.side.faintedLastTurn) {
  12. this.debug('tempestuous boost');
  13. return this.chainModify(2);
  14. }
  15. },
  16. name: "Tempestuous",
  17. rating: 3,
  18. num: -1009,
  19. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement