Describe when we catch Nidoran but still need an exp kill

This commit is contained in:
Kyle Coburn 2015-04-06 01:38:32 -07:00
parent 5e0da10617
commit f01cb1368c
1 changed files with 5 additions and 1 deletions

View File

@ -287,11 +287,15 @@ strategyFunctions.catchNidoran = function()
Pokemon.updateParty()
local hasNidoran = Pokemon.inParty("nidoran")
if hasNidoran then
local gotExperience = Pokemon.getExp() > 205
if not status.canProgress then
Bridge.caught("nidoran")
status.canProgress = true
if not gotExperience then
Bridge.chat("Waiting in the grass for a suitable ecounter to get experience", Pokemon.getExp())
end
end
if Pokemon.getExp() > 205 then
if gotExperience then
level4Nidoran = Pokemon.info("nidoran", "level") == 4
return true
end