Advertisement
Spooktunes

Untitled

Feb 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. "daybringer": {
  2. desc: "This Pokemon's Special Attack is raised by 3 stages if it attacks and knocks out another Pokemon with a Critical Hit.",
  3. shortDesc: "This Pokemon's Special 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({spa:3}, source);
  8. }
  9. }
  10. },
  11. id: "daybringer",
  12. name: "Daybringer",
  13. rating: 3.5,
  14. num: 1565433,
  15. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement