Improve Yellow Carbos requirements

This commit is contained in:
Kyle Coburn 2015-05-23 00:27:02 -07:00
parent ca34163ce1
commit 55f1e6f508
1 changed files with 3 additions and 1 deletions

View File

@ -459,7 +459,9 @@ function Strategies.needsCarbosAtLeast(count)
local speedDV = stats.nidoran.speedDV
local carbosRequired = 0
if Data.yellow then
if speedDV <= 8 then
if speedDV <= 7 then
carbosRequired = 0
elseif speedDV <= 8 then
carbosRequired = 3
elseif speedDV <= 10 then
carbosRequired = 2