Guest User

Untitled

a guest
Feb 23rd, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. 'use strict';
  2.  
  3. exports.BattleStatuses = {
  4. sandstorm: {
  5. inherit: true,
  6. onModifySpD: function (spd, pokemon) {
  7. if (pokemon.hasType('Rock') && this.isWeather('sandstorm')) {
  8. return this.modify(spd, 1.5);
  9. }
  10. },
  11. },
  12. };
Add Comment
Please, Sign In to add comment