mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-05 21:17:43 -05:00
Random Battle: Prevent Choice items with Body Slam
CB Dunsparce is bad. Even Jirachi doesn’t want Choice with Body Slam.
This commit is contained in:
parent
dbe141abea
commit
50c7b574e0
|
|
@ -1750,7 +1750,7 @@ exports.BattleScripts = {
|
|||
// Medium priority
|
||||
} else if (ability === 'Guts') {
|
||||
item = hasMove['drainpunch'] ? 'Flame Orb' : 'Toxic Orb';
|
||||
} else if (counter.Physical >= 4 && ability !== 'Speed Boost' && !hasMove['fakeout'] && !hasMove['flamecharge'] && !hasMove['rapidspin'] && !hasMove['suckerpunch']) {
|
||||
} else if (counter.Physical >= 4 && ability !== 'Speed Boost' && !hasMove['bodyslam'] && !hasMove['fakeout'] && !hasMove['flamecharge'] && !hasMove['rapidspin'] && !hasMove['suckerpunch']) {
|
||||
item = template.baseStats.spe > 82 && template.baseStats.spe < 109 && !counter['priority'] && this.random(3) ? 'Choice Scarf' : 'Choice Band';
|
||||
} else if (counter.Special >= 4 && ability !== 'Speed Boost' && !hasMove['acidspray'] && !hasMove['chargebeam'] && !hasMove['fierydance']) {
|
||||
item = template.baseStats.spe > 82 && template.baseStats.spe < 109 && !counter['priority'] && this.random(3) ? 'Choice Scarf' : 'Choice Specs';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user