From 30b23b6c7550588f5310d2248e93e624cddb3d4c Mon Sep 17 00:00:00 2001 From: Kyle Coburn Date: Sat, 18 Apr 2015 21:06:06 -0700 Subject: [PATCH] Update catching cutter for Yellow --- ai/control.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ai/control.lua b/ai/control.lua index 98d65d0..a5a6cac 100644 --- a/ai/control.lua +++ b/ai/control.lua @@ -133,7 +133,11 @@ local controlFunctions = { end, catchFlier = function() - shouldCatch = {{name="spearow",alt="pidgey",hp=15}, {name="pidgey",alt="spearow",hp=15}} + if Pokemon.inParty("pidgey", "spearow") then + shouldCatch = {{name="sandshrew"}} + else + shouldCatch = {{name="spearow",alt="pidgey",hp=15}, {name="pidgey",alt="spearow",hp=15}} + end end, catchParas = function() @@ -156,8 +160,8 @@ local controlFunctions = { oneHits = true end, - catchSandshrew = function() - shouldCatch = {{name="sandshrew"}} + catchCutterYellow = function() + shouldCatch = {{name="sandshrew"}, {name="paras",levels={9,10,11,12}}} end, }