Update chat message punctuation

This commit is contained in:
Kyle Coburn 2015-04-17 14:26:35 -07:00
parent fef346823a
commit 169626b737
3 changed files with 14 additions and 14 deletions

View File

@ -376,7 +376,7 @@ strategyFunctions.catchNidoran = function()
Bridge.caught("nidoran")
status.canProgress = true
if not gotExperience then
Bridge.chat("is waiting in the grass for a suitable encounter for experience", Pokemon.getExp())
Bridge.chat("is waiting in the grass for a suitable encounter for experience.", Pokemon.getExp())
end
end
if gotExperience then
@ -753,7 +753,7 @@ strategyFunctions.rivalSandAttack = function(data)
if Battle.sacrifice(sacrifice) then
if not status.sacrificed then
status.sacrificed = true
Bridge.chat("got Sand-Attacked... Swapping out "..Utils.capitalize(sacrifice).." to restore accuracy (no more trolling please)")
Bridge.chat("got Sand-Attacked... Swapping out "..Utils.capitalize(sacrifice).." to restore accuracy.")
end
return false
end
@ -845,7 +845,7 @@ strategyFunctions.redbarMankey = function()
if Pokemon.info("nidoking", "level") < 23 or Inventory.count("potion") < 4 then -- RISK
return true
end
Bridge.chat("is using Poison Sting to attempt to red-bar off Mankey")
Bridge.chat("is using Poison Sting to attempt to red-bar off Mankey.")
end
end
@ -862,13 +862,13 @@ strategyFunctions.thrashGeodude = function()
if Battle.sacrifice("squirtle") then
if not status.sacrificed then
status.sacrificed = true
Bridge.chat(" Thrash didn't finish the kill :( swapping to Squirtle for safety")
Bridge.chat(" Thrash didn't finish the kill :( swapping to Squirtle for safety.")
end
return false
end
elseif not status.confused and Combat.isConfused() then
status.confused = true
Bridge.chat("is attempting to hit through confusion to avoid switching out to Squirtle")
Bridge.chat("is attempting to hit through confusion to avoid switching out to Squirtle...")
end
end
Battle.automate()
@ -1666,7 +1666,7 @@ strategyFunctions.fightGiovanniMachoke = function()
status.killedMachoke = true
elseif not status.killedMachoke then
if status.skipSpecial and Combat.hp() > 13 and Memory.value("battle", "opponent_last_move") == 116 then
Bridge.chat("got Focus Energy - using an X Special to guarantee the last Machoke")
Bridge.chat("got Focus Energy - which prevents Machoke criticalling - using an X Special to guarantee the last damage range.")
status.skipSpecial = false
end
if not status.skipSpecial and not Strategies.prepare("x_special") then
@ -1962,7 +1962,7 @@ strategyFunctions.prepareForBlue = function()
else
message = "is using limited potions"
end
message = message.." to attempt to red-bar off Pidgeot"
message = message.." to attempt to red-bar off Pidgeot..."
Bridge.chat(message)
end
end

View File

@ -443,7 +443,7 @@ function Strategies.completeCans()
prefix = "Good"
elseif status.tries <= (yellow and 10 or 22) then
prefix = "Ugh"
suffix = ""
suffix = "."
else -- TODO trashcans WR
prefix = "Reset me now"
suffix = " BibleThump"
@ -1222,7 +1222,7 @@ Strategies.functions = {
end
end
if forced and Strategies.initialize() then
Bridge.chat("is using Thunderbolt to attempt to redbar off Cubone")
Bridge.chat("is using Thunderbolt to attempt to redbar off Cubone.")
end
end
Control.ignoreMiss = forced ~= nil
@ -1237,7 +1237,7 @@ Strategies.functions = {
announceOddish = function()
if Pokemon.info("nidoking", "level") < 30 then
Bridge.chat("needs a good damage range to 1-shot this Oddish, which can paralyze")
Bridge.chat("needs a good damage range to 1-shot this Oddish, which can paralyze.")
end
return true
end,
@ -1298,7 +1298,7 @@ Strategies.functions = {
digFight = function()
if Strategies.initialize() then
if Combat.inRedBar() then
Bridge.chat("is using Rock Slide to one-hit these Ghastlies in red-bar (each is 1 in 10 to miss)")
Bridge.chat("is using Rock Slide to one-hit these Ghastlies in red-bar (each is 1 in 10 to miss).")
end
end
if Battle.isActive() then
@ -1438,7 +1438,7 @@ Strategies.functions = {
if Control.yolo or Inventory.contains("full_restore") then
return true
end
Bridge.chat("needs to grab the backup Full Restore here")
Bridge.chat("needs to grab the backup Full Restore here.")
end
local px, py = Player.position()
if px < 21 then
@ -1498,7 +1498,7 @@ Strategies.functions = {
-- TODO don't skip center if not in redbar
Strategies.maxEtherSkip = not Strategies.requiresE4Center()
if not Strategies.maxEtherSkip then
Bridge.chat("is grabbing the Max Ether to skip the Elite 4 Center")
Bridge.chat("is grabbing the Max Ether to skip the Elite 4 Center.")
end
return true
end,

View File

@ -768,7 +768,7 @@ strategyFunctions.fightGiovanni = function()
prepareAccuracy = true
if not status.prepared and not Strategies.isPrepared("x_accuracy") then
status.prepared = true
Bridge.chat("needs to finish setting up against Persian")
Bridge.chat("needs to finish setting up against Persian...")
end
elseif opponent == "dugtrio" then
prepareAccuracy = Memory.value("battle", "dig") > 0