From 53168a38e485f407d628d40516b9789ac8c5c417 Mon Sep 17 00:00:00 2001 From: Darron Eggins Date: Thu, 21 Jul 2016 18:00:05 +1000 Subject: [PATCH] updating text to create more user friendly experience with pokemon capturing. --- working.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/working.py b/working.py index 58d737af6c..e4b8afe28c 100644 --- a/working.py +++ b/working.py @@ -103,15 +103,15 @@ def encount_and_catch_pokemon(pokemon,api,position,config): 'status' in response_dict['responses']['CATCH_POKEMON']: status = response_dict['responses']['CATCH_POKEMON']['status'] if status is 2: - print('Missed, do it again!') + print('[-] Attempted to capture pokemon - failed.. trying again!') time.sleep(1.25) continue if status is 1: if cp < config.cp: - print('Got it, keep good ones') + print('Captured Pokemon! [CP' + str(cp) + '] - exchanging for candy') transfer_low_cp_pokomon(api,config.cp) else: - print('got it, keep it') + print('Captured Pokemon! [CP' + str(cp) + ']') break time.sleep(5) def _transfer_low_cp_pokemon(api,value,pokemon):