Advertisement
Spooktunes

Untitled

Feb 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. "boombox": {
  2. shortDesc: "This Pokemon's sound moves have a 30% chance of confusing the target.",
  3. onModifyMove: function (move) {
  4. if (!move || !move.flags['contact']) return;
  5. if (this.random(10) < 3) {
  6. source.trySetStatus('confusion', target);
  7. }
  8. },
  9. id: "boombox",
  10. name: "Boombox",
  11. rating: 2,
  12. num: 144565432222221343,
  13. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement