Advertisement
Guest User

Untitled

a guest
Feb 18th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. "windsurfer": {
  2. desc: "This Pokemon is immune to Flying-type moves and raises its Speed by 1 stage when hit by an Flying-type move.",
  3. shortDesc: "This Pokemon's Speed is raised 1 stage if hit by an Flying move; Flying immunity.",
  4. onTryHit: function (target, source, move) {
  5. if (target !== source && move.type === 'Flying') {
  6. if (!this.boost({spe:1})) {
  7. this.add('-immune', target, '[msg]', '[from] ability: Wind Surfer');
  8. }
  9. return null;
  10. }
  11. },
  12. id: "windsurfer",
  13. name: "Wind Surfer",
  14. rating: 3,
  15. num: 75454328,
  16. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement