Restrict time constraints

This commit is contained in:
Kyle Coburn 2015-05-04 19:35:10 -07:00
parent 8f1f9fd5cb
commit a8a9f89306
1 changed files with 13 additions and 13 deletions

View File

@ -55,22 +55,22 @@ Strategies.timeRequirements = {
if BEAST_MODE then if BEAST_MODE then
return 1.99 return 1.99
end end
return 2.225 return 2.22
end, end,
nidoran = function() --RESET nidoran = function() --RESET
if BEAST_MODE then if BEAST_MODE then
return 6 return 6
end end
return 6.45 + timeSaveFor("spearow") return 6.4 + timeSaveFor("spearow")
end, end,
old_man = function() old_man = function()
return 6.8 + timeSaveFor("spearow") return 6.75 + timeSaveFor("spearow")
end, end,
forest = function() forest = function()
return 9.4 + timeSaveFor("spearow") return 9.33 + timeSaveFor("spearow")
end, end,
brock = function() brock = function()
@ -88,7 +88,7 @@ Strategies.timeRequirements = {
return 24.75 return 24.75
end end
local timeLimit = 25.5 + timeSaveFor("paras") local timeLimit = 25.25 + timeSaveFor("paras")
if Pokemon.info("nidoking", "level") >= 18 then if Pokemon.info("nidoking", "level") >= 18 then
timeLimit = timeLimit + 0.33 timeLimit = timeLimit + 0.33
elseif Pokemon.getExp() > 3730 then elseif Pokemon.getExp() > 3730 then
@ -112,7 +112,7 @@ Strategies.timeRequirements = {
end, end,
misty = function() --PB misty = function() --PB
return 38 + timeForStats() + timeSaveFor("paras") return 37.75 + timeForStats() + timeSaveFor("paras")
end, end,
vermilion = function() vermilion = function()
@ -123,27 +123,27 @@ Strategies.timeRequirements = {
if BEAST_MODE then if BEAST_MODE then
return 45.75 return 45.75
end end
return 46.5 + timeForStats() return 46.25 + timeForStats()
end, end,
safari_carbos = function() safari_carbos = function()
return 68.5 + timeForStats() return 68.25 + timeForStats()
end, end,
victory_road = function() --PB victory_road = function() --PB
return 97.9 return 96.67
end, end,
e4center = function() e4center = function()
return 101.25 return 99.75
end, end,
blue = function() blue = function()
return 107.5 return 106.25
end, end,
champion = function() --PB champion = function() --PB
return 110.22 return 109.133
end, end,
} }
@ -263,7 +263,7 @@ local strategyFunctions = Strategies.functions
strategyFunctions.tweetAfterBrock = function() strategyFunctions.tweetAfterBrock = function()
if stats.nidoran.rating < 2 then if stats.nidoran.rating < 2 then
if not Strategies.overMinute("shorts") then if not Strategies.overMinute("shorts") then
Strategies.tweetProgress("On pace after Brock with a great Nidoran", "brock") Strategies.tweetProgress("On pace after Brock with a great Nidoran in", "brock")
end end
end end
return true return true