Random Battle: Update some Alolan Forme Pokemon (#3085)

This commit is contained in:
Kevin Lau
2017-01-29 00:05:21 -08:00
committed by The Immortal
parent 49add7c36a
commit 99283f5988
2 changed files with 6 additions and 4 deletions

View File

@@ -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: {

View File

@@ -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']) {