mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-09 12:36:41 -05:00
17 lines
608 B
JavaScript
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'];
|
|
}
|
|
}
|