BIN
assets/shop/merit/Akatsuki.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/shop/merit/EmileBertin.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
assets/shop/merit/Glorious.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/shop/merit/Haruna.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/shop/merit/Icarus.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/shop/merit/IllustriousMuse.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/shop/merit/Independence.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
assets/shop/merit/Kawakaze.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
assets/shop/merit/Kongo.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
assets/shop/merit/LilSandy.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
assets/shop/merit/Makinami.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
assets/shop/merit/Mikuma.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/shop/merit/Musketeer.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/shop/merit/Mutsu.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/shop/merit/RoonMuse.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
assets/shop/merit/WestVirginia.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
@@ -197,15 +197,18 @@ class RewardGacha(GachaUI, GeneralShop, Retirement):
|
|||||||
confirm_mode = True # Drill, Lock Ship
|
confirm_mode = True # Drill, Lock Ship
|
||||||
# Clear button offset, or will click at the PLUS button of gems or HOME button
|
# Clear button offset, or will click at the PLUS button of gems or HOME button
|
||||||
STORY_SKIP.clear_offset()
|
STORY_SKIP.clear_offset()
|
||||||
|
queue_clean = True
|
||||||
while 1:
|
while 1:
|
||||||
if skip_first_screenshot:
|
if skip_first_screenshot:
|
||||||
skip_first_screenshot = False
|
skip_first_screenshot = False
|
||||||
else:
|
else:
|
||||||
self.device.screenshot()
|
self.device.screenshot()
|
||||||
|
|
||||||
if self.appear(BUILD_QUEUE_EMPTY, offset=(20, 20)):
|
if self.appear(BUILD_QUEUE_EMPTY, offset=(20, 20)) and queue_clean:
|
||||||
self.gacha_side_navbar_ensure(upper=1)
|
self.gacha_side_navbar_ensure(upper=1)
|
||||||
break
|
break
|
||||||
|
else:
|
||||||
|
queue_clean = False
|
||||||
|
|
||||||
if self.appear_then_click(BUILD_FINISH_ORDERS, interval=3):
|
if self.appear_then_click(BUILD_FINISH_ORDERS, interval=3):
|
||||||
confirm_timer.reset()
|
confirm_timer.reset()
|
||||||
|
|||||||
@@ -307,6 +307,9 @@ class Retirement(Enhancement, QuickRetireSettingHandler):
|
|||||||
self.device.screenshot()
|
self.device.screenshot()
|
||||||
|
|
||||||
ships = scanner.scan(self.device.image)
|
ships = scanner.scan(self.device.image)
|
||||||
|
if not ships:
|
||||||
|
# exit if nothing can be retired
|
||||||
|
break
|
||||||
if keep_one:
|
if keep_one:
|
||||||
if len(ships) < 2:
|
if len(ships) < 2:
|
||||||
break
|
break
|
||||||
|
|||||||