Advertisement
Spooktunes

Untitled

Feb 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. "echo": {
  2. desc: "This Pokemon's sound-based moves have their power multiplied by 1.5",
  3. shortDesc: "This Pokemon's sound-based moves have their power multiplied by 1.5",
  4. onModifyMovePriority: -1,
  5. onModifyMove: function (move) {
  6. if (move.flags['sound']) {
  7. return this.chainModify(1.5)
  8. }
  9. },
  10. id: "echo",
  11. name: "Echo",
  12. rating: 2.5,
  13. num: 20234564,
  14. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement