Advertisement
Guest User

Untitled

a guest
Feb 18th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. "featherguard": {
  2. shortDesc: "Accuracy against this pokemon is reduced to 66%",
  3. onModifyAccuracy: function (accuracy, target) {
  4. if (typeof accuracy !== 'number') return;
  5. if (target) {
  6. this.debug('Tangled Feet - decreasing accuracy');
  7. return accuracy * 0.66;
  8. }
  9. },
  10. id: "featherguard",
  11. name: "Feather Guard",
  12. rating: 1,
  13. num: 7543456787,
  14. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement