Update more chat messages

This commit is contained in:
Kyle Coburn 2015-05-07 01:22:42 -07:00
parent b4fc1a0264
commit c1bb072c33
3 changed files with 5 additions and 4 deletions

View File

@ -224,7 +224,7 @@ function Control.canCatch(partySize)
if Data.yellow and Pokemon.inParty("nidoran", "nidorino", "nidoking") and Pokemon.inParty("pidgey", "spearow") then
return false
end
Strategies.reset("pokeballs", "Not enough PokeBalls", pokeballs)
Strategies.reset("pokeballs", "Ran too low on Pokeballs", pokeballs)
return false
end
return true

View File

@ -376,7 +376,7 @@ strategyFunctions.catchNidoran = function()
if Memory.value("battle", "menu") == 94 then
local pokeballs = Inventory.count("pokeball")
if pokeballs < (catchableNidoran and 4 or 5) - (Pokemon.inParty("nidoran","spearow") and 1 or 0) then
return Strategies.reset("pokeballs", "Ran too low on PokeBalls", pokeballs)
return Strategies.reset("pokeballs", "Ran too low on Pokeballs", pokeballs)
end
end

View File

@ -1829,10 +1829,10 @@ Strategies.functions = {
if not Strategies.requiresE4Center() then
local message
if Data.yellow then
message = " has enough HP to skip the Center. "..Utils.random {
message = "has enough HP to skip the Center. "..Utils.random {
"Let's do this!",
"Let's go!",
"What could go wrong?",
"What could go wrong now?",
"No crits!",
}
else
@ -1846,6 +1846,7 @@ Strategies.functions = {
Bridge.chat(message)
return true
end
Bridge.chat("is taking the Center to heal for Lorelei.")
end
return strategyFunctions.confirm({dir="Up"})
end,