mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-06-02 22:08:36 -05:00
Random Battle: Update Unfezant
- Force Super Luck on Unfezant (it has a 33% chance of getting Big Pecks) - Force Scope Lens on Unfezants with enough attacking moves - Give Unfezant Night Slash - Replace Wish with Roost in Doubles
This commit is contained in:
parent
a9723181fa
commit
ae80be8cf0
|
|
@ -4060,8 +4060,8 @@ exports.BattleFormatsData = {
|
|||
tier: "NFE"
|
||||
},
|
||||
unfezant: {
|
||||
randomBattleMoves: ["return","pluck","hypnosis","tailwind","uturn","roost"],
|
||||
randomDoubleBattleMoves: ["pluck","uturn","return","protect","tailwind","taunt","wish"],
|
||||
randomBattleMoves: ["return","pluck","hypnosis","tailwind","uturn","roost","nightslash"],
|
||||
randomDoubleBattleMoves: ["pluck","uturn","return","protect","tailwind","taunt","roost","nightslash"],
|
||||
tier: "PU"
|
||||
},
|
||||
blitzle: {
|
||||
|
|
|
|||
|
|
@ -1541,6 +1541,8 @@ exports.BattleScripts = {
|
|||
} else if (template.id === 'mawilemega') {
|
||||
// Mega Mawile only needs Intimidate for a starting ability
|
||||
ability = 'Intimidate';
|
||||
} else if (template.id === 'unfezant') {
|
||||
ability = 'Super Luck';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1609,6 +1611,8 @@ exports.BattleScripts = {
|
|||
item = 'Stick';
|
||||
} else if (template.species === 'Dedenne') {
|
||||
item = 'Petaya Berry';
|
||||
} else if (template.species === 'Unfezant' && counter['Physical'] >= 2) {
|
||||
item = 'Scope Lens';
|
||||
} else if (template.evos.length) {
|
||||
item = 'Eviolite';
|
||||
} else if (hasMove['reflect'] && hasMove['lightscreen']) {
|
||||
|
|
@ -2646,6 +2650,9 @@ exports.BattleScripts = {
|
|||
if (abilities.indexOf('Intimidate') > -1 || template.id === 'mawilemega') {
|
||||
ability = 'Intimidate';
|
||||
}
|
||||
if (template.id === 'unfezant') {
|
||||
ability = 'Super Luck';
|
||||
}
|
||||
}
|
||||
|
||||
// Make EVs comply with the sets.
|
||||
|
|
@ -2733,6 +2740,8 @@ exports.BattleScripts = {
|
|||
item = 'Black Sludge';
|
||||
} else if (template.species === 'Dedenne') {
|
||||
item = 'Petaya Berry';
|
||||
} else if (template.species === 'Unfezant' && counter['Physical'] >= 2) {
|
||||
item = 'Scope Lens';
|
||||
} else if (template.evos.length) {
|
||||
item = 'Eviolite';
|
||||
} else if (hasMove['reflect'] && hasMove['lightscreen']) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user