diff --git a/ai/control.lua b/ai/control.lua index 63f5d06..f8affe1 100644 --- a/ai/control.lua +++ b/ai/control.lua @@ -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 diff --git a/ai/red/strategies.lua b/ai/red/strategies.lua index 7ffe936..c9e13a1 100644 --- a/ai/red/strategies.lua +++ b/ai/red/strategies.lua @@ -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 diff --git a/ai/strategies.lua b/ai/strategies.lua index 9b4aef5..8c0a70e 100644 --- a/ai/strategies.lua +++ b/ai/strategies.lua @@ -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,