Advertisement
Spooktunes

Untitled

Feb 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. "softlanding": {
  2. shortDesc: "On switch-in, this Pokemon avoids all Rock-type attacks and Stealth Rock.",
  3. onDamage: function (damage, target, source, effect) {
  4. if (effect && effect.id === 'stealthrock') {
  5. return false;
  6. }
  7. if (effect && effect.id === 'stickyweb') {
  8. return false;
  9. }
  10. if (effect && effect.id === 'spikes') {
  11. return false;
  12. }
  13. if (effect && effect.id === 'toxicspikes') {
  14. return false;
  15. }
  16. },
  17. id: "softlanding",
  18. name: "Soft Landing",
  19. rating: 3.5,
  20. num: 2876895543,
  21. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement