Advertisement
Spooktunes

Untitled

Feb 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. "apocalypse": {
  2. desc: "This Pokemon's Attack is raised by 3 stages if it attacks and knocks out another Pokemon with a Critical Hit.",
  3. shortDesc: "This Pokemon's Attack is raised by 3 stages if it attacks and KOes another Pokemon with a Crit.",
  4. onSourceFaint: function (target, source, effect) {
  5. if (effect && effect.effectType === 'Move' ) {
  6. if (move.crit) {
  7. this.boost({atk:3}, source);
  8. }
  9. }
  10. },
  11. id: "apocalypse",
  12. name: "Apocalypse",
  13. rating: 3.5,
  14. num: 1535654378422222,
  15. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement