Advertisement
kevingilbert

Golden Sand

Nov 12th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. "goldensand": {
  2. desc: "If Sandstorm is active, this Pokemon restores 1/16 of its maximum HP, rounded down, at the end of each turn.",
  3. shortDesc: "If Sandstorm is active, this Pokemon heals 1/16 of its max HP each turn.",
  4. onWeather: function (target, source, effect) {
  5. if (effect.id === 'sandstorm') {
  6. this.heal(target.maxhp / 16);
  7. }
  8. },
  9. id: "goldensand",
  10. name: "Golden Sand",
  11. rating: 1.5,
  12. num: 7711,
  13. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement