|
@@ -1679,7 +1679,27 @@ class task_get_fire_crystal(dongri_task):
|
|
|
continue
|
|
|
|
|
|
return True
|
|
|
-
|
|
|
+
|
|
|
+class task_zhuguang(dongri_task):
|
|
|
+ def __init__(self):
|
|
|
+ super().__init__(f"检查逐光")
|
|
|
+ def run(self):
|
|
|
+ basic_operate.go_town()
|
|
|
+ if waitClickImg_noWait_withBool(check_img.worthy_activity, 2, 1) == False:
|
|
|
+ return False
|
|
|
+ myTimeSleep_big()
|
|
|
+ yys_dragAuto(change_direction(special_activity_img.move_right_little))
|
|
|
+ myTimeSleep_big()
|
|
|
+ yys_dragAuto(change_direction(special_activity_img.move_right_little))
|
|
|
+ myTimeSleep_big()
|
|
|
+ yys_dragAuto(change_direction(special_activity_img.move_right_little))
|
|
|
+ waitClickImg_noWait_withBool([special_activity_img.zhuguang_not_select, special_activity_img.zhuguang_select], 2, 1)
|
|
|
+
|
|
|
+ waitClickImg_noWait_withBool([special_activity_img.zhuguang_send, special_activity_img.zhuguang_receive], 2, 1)
|
|
|
+
|
|
|
+ waitClickImg_noWait_withBool([special_activity_img.zhuguang_send, special_activity_img.zhuguang_receive], 2, 1)
|
|
|
+ return True
|
|
|
+
|
|
|
class task_testFun(dongri_task):
|
|
|
def __init__(self):
|
|
|
super().__init__(f"测试功能")
|
|
@@ -1735,4 +1755,4 @@ if __name__ == '__main__':
|
|
|
#task_read_mails().run()
|
|
|
#task_checkBenifitStatus().run()
|
|
|
#task_checkDiamond().run()
|
|
|
- task_useAnnimalSkill(True).run()
|
|
|
+ task_zhuguang().run()
|