From a2ec73e549b64fae8161b4ff4e80dc8227f40c07 Mon Sep 17 00:00:00 2001 From: Jay2645 Date: Tue, 25 Jun 2013 18:13:46 -0700 Subject: [PATCH] Corrected typo in comments for Basculin. --- data/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scripts.js b/data/scripts.js index 771714ec05..8e9e5d7ada 100644 --- a/data/scripts.js +++ b/data/scripts.js @@ -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;