From 7c6d6ebfa5e50459415a673895b8087ec86d3625 Mon Sep 17 00:00:00 2001 From: Kyle Coburn Date: Fri, 17 Apr 2015 13:42:14 -0700 Subject: [PATCH] Clarify chat descriptions at Misty --- ai/red/strategies.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ai/red/strategies.lua b/ai/red/strategies.lua index 2fe27d1..1ecfa5f 100644 --- a/ai/red/strategies.lua +++ b/ai/red/strategies.lua @@ -977,16 +977,16 @@ strategyFunctions.fightMisty = function() status.sacrificed = true local swapMessage = " Thrash didn't finish the kill :( " if stats.nidoran.speedDV < 11 then - swapMessage = swapMessage.."We're slower than Misty, looks like it's over" + swapMessage = swapMessage.."We'll need to get lucky." sacrifice = nil elseif sacrifice then if Control.yolo then - swapMessage = swapMessage.."Attempting to hit through Confusion to save time" + swapMessage = swapMessage.."Attempting to hit through Confusion to save time." else - swapMessage = swapMessage.."Swapping out to cure Confusion" + swapMessage = swapMessage.."Swapping out to cure Confusion." end else - swapMessage = swapMessage.."We'll have to hit through Confusion here" + swapMessage = swapMessage.."We'll have to hit through Confusion here." end Bridge.chat(swapMessage) end