mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-09-08 17:25:38 -05:00
Random Battle: Update some Alolan Forme Pokemon (#3085)
This commit is contained in:
@@ -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: {
|
||||
|
||||
@@ -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']) {
|
||||
|
||||
Reference in New Issue
Block a user