pokemon-showdown/mods/gennext/scripts.js
Guangcong Luo d8c4c92d04 More fixes to NEXT:
- see GEN-NEXT.md for details
2012-07-06 05:07:24 -04:00

17 lines
608 B
JavaScript

exports.BattleScripts = {
init: function() {
// Give Hurricane to all the Bug/Flying Quiver-dancers
// Precedent: Volcarona
this.data.Learnsets.masquerain.learnset.hurricane = ['5L100'];
this.data.Learnsets.butterfree.learnset.hurricane = ['5L100'];
this.data.Learnsets.beautifly.learnset.hurricane = ['5L100'];
this.data.Learnsets.mothim.learnset.hurricane = ['5L100'];
// Masquerain also gets Surf because we want it to be viable
this.data.Learnsets.masquerain.learnset.surf = ['5M'];
// Aerodactyl gets Brave Bird
this.data.Learnsets.aerodactyl.learnset.bravebird = ['5L100'];
}
}