diff --git a/data/formats-data.js b/data/formats-data.js index 8fa2c04c23..dfeaaf4d74 100644 --- a/data/formats-data.js +++ b/data/formats-data.js @@ -351,7 +351,7 @@ exports.BattleFormatsData = { tier: "New", }, raichualola: { - randomBattleMoves: ["nastyplot", "encore", "thunderbolt", "psyshock", "focusblast", "voltswitch", "hiddenpowerice"], + randomBattleMoves: ["nastyplot", "thunderbolt", "psyshock", "focusblast", "voltswitch", "surf"], tier: "New", }, sandshrew: { @@ -446,7 +446,7 @@ exports.BattleFormatsData = { tier: "New", }, ninetalesalola: { - randomBattleMoves: ["nastyplot", "blizzard", "moonblast", "substitute", "hiddenpowerfire"], + randomBattleMoves: ["nastyplot", "blizzard", "moonblast", "substitute", "hiddenpowerfire", "freezedry", "auroraveil"], tier: "New", }, igglybuff: { @@ -555,7 +555,7 @@ exports.BattleFormatsData = { tier: "OU", }, dugtrioalola: { - randomBattleMoves: ["earthquake", "ironhead", "substitute", "reversal"], + randomBattleMoves: ["earthquake", "ironhead", "substitute", "reversal", "stoneedge", "suckerpunch"], tier: "New", }, meowth: { @@ -1003,7 +1003,7 @@ exports.BattleFormatsData = { tier: "New", }, exeggutoralola: { - randomBattleMoves: ["dracometeor", "leafstorm", "flamethrower", "psyshock"], + randomBattleMoves: ["dracometeor", "leafstorm", "flamethrower", "earthquake", "woodhammer", "gigadrain", "dragonhammer"], tier: "New", }, cubone: { diff --git a/data/scripts.js b/data/scripts.js index 0daf9ab21a..030b207248 100644 --- a/data/scripts.js +++ b/data/scripts.js @@ -2103,6 +2103,8 @@ exports.BattleScripts = { item = 'Choice Specs'; } else if (template.species === 'Wobbuffet') { item = hasMove['destinybond'] ? 'Custap Berry' : ['Leftovers', 'Sitrus Berry'][this.random(2)]; + } else if (template.species === 'Raichu-Alola' && hasMove['thunderbolt'] && !teamDetails.zMove && this.random(4) < 1) { + item = 'Aloraichium Z'; } else if (ability === 'Imposter') { item = 'Choice Scarf'; } else if (ability === 'Klutz' && hasMove['switcheroo']) {