Clarify Focus Energy strat explanation

This commit is contained in:
Kyle Coburn 2015-05-01 13:28:08 -07:00
parent 805f0588dc
commit 906a327ba6
1 changed files with 3 additions and 2 deletions

View File

@ -1736,8 +1736,9 @@ strategyFunctions.fightGiovanniMachoke = function()
if Pokemon.isOpponent("machop") then if Pokemon.isOpponent("machop") then
status.killedMachoke = true status.killedMachoke = true
elseif not status.killedMachoke then elseif not status.killedMachoke then
if status.skipSpecial and Combat.hp() > 13 and Memory.value("battle", "opponent_last_move") == 116 then local __, turnsToDie = Combat.enemyAttack()
Bridge.chat("got Focus Energy - which prevents Machoke criticalling - using an X Special to guarantee the last damage range.") if status.skipSpecial and turnsToDie > 1 and Memory.value("battle", "opponent_last_move") == 116 then
Bridge.chat("got Focus Energy, which reduces Machoke's crit rate - using an X Special to guarantee the last damage range.")
status.skipSpecial = false status.skipSpecial = false
end end
if not status.skipSpecial and not Strategies.prepare("x_special") then if not status.skipSpecial and not Strategies.prepare("x_special") then