Update catching cutter for Yellow

This commit is contained in:
Kyle Coburn 2015-04-18 21:06:06 -07:00
parent bc95e4cb09
commit 30b23b6c75
1 changed files with 7 additions and 3 deletions

View File

@ -133,7 +133,11 @@ local controlFunctions = {
end, end,
catchFlier = function() catchFlier = function()
if Pokemon.inParty("pidgey", "spearow") then
shouldCatch = {{name="sandshrew"}}
else
shouldCatch = {{name="spearow",alt="pidgey",hp=15}, {name="pidgey",alt="spearow",hp=15}} shouldCatch = {{name="spearow",alt="pidgey",hp=15}, {name="pidgey",alt="spearow",hp=15}}
end
end, end,
catchParas = function() catchParas = function()
@ -156,8 +160,8 @@ local controlFunctions = {
oneHits = true oneHits = true
end, end,
catchSandshrew = function() catchCutterYellow = function()
shouldCatch = {{name="sandshrew"}} shouldCatch = {{name="sandshrew"}, {name="paras",levels={9,10,11,12}}}
end, end,
} }