Advertisement
snake_rattler

Untitled

Nov 14th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. "swirlingsands": {
  2. num: 16000,
  3. accuracy: 100,
  4. basePower: 100,
  5. basePowerCallback: function (pokemon, target, move) {
  6. if ((this.weather) && weather = 'sandstorm') return move.basePower * 1.3;
  7. return move.basePower;
  8. },
  9. category: "Special",
  10. desc: "Has a 10% chance to lower the accuracy of the target. Receives a 1.3x boost in Sandstorm.",
  11. shortDesc: "10% chance to lower the accuracy of the target. 1.3x boost in Sandstorm.",
  12. id: "swirlingsands",
  13. isViable: true,
  14. name: "Swirling Sands",
  15. pp: 15,
  16. priority: 0,
  17. flags: {protect: 1, mirror: 1},
  18. secondary: {
  19. chance: 10,
  20. boosts: {
  21. acc: -1,
  22. },
  23. },
  24. target: "normal",
  25. type: "Flying",
  26. zMovePower: 180,
  27. contestType: "Clever",
  28. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement