Advertisement
snake_rattler

Untitled

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