Advertisement
Spooktunes

Untitled

Feb 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. "geomorphisis": {
  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. this.add('-sideend', side, 'move: Stealth Rock');
  7. pokemon.heal(pokemon.maxhp / 4);
  8. }
  9. },
  10. id: "geomorphisis",
  11. name: "Geomorphisis",
  12. rating: 3.5,
  13. num: 2876895543,
  14. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement