mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-09 04:23:45 -05:00
Corrected typo in comments for Basculin.
This commit is contained in:
parent
93d22073a8
commit
a2ec73e549
|
|
@ -1401,7 +1401,7 @@ exports.BattleScripts = {
|
|||
if ((tier === 'G4CAP' || tier === 'G5CAP') && Math.random()*5>1) continue;
|
||||
// Arceus formes have 1/17 the normal rate each (so Arceus as a whole has a normal rate)
|
||||
if (keys[i].substr(0,6) === 'arceus' && Math.random()*17>1) continue;
|
||||
// Basculin formes have 1/17 the normal rate each (so Basclin as a whole has a normal rate)
|
||||
// Basculin formes have 1/2 the normal rate each (so Basclin as a whole has a normal rate)
|
||||
if (keys[i].substr(0,8) === 'basculin' && Math.random()*2>1) continue;
|
||||
// Not available on BW
|
||||
if (template.species === 'Pichu-Spiky-eared') continue;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user