├── .gitignore ├── Fight.py ├── FightHard.py ├── FightToEnd.py ├── LICENSE ├── README.md ├── adb ├── AdbWinApi.dll ├── AdbWinUsbApi.dll └── adb.exe ├── bin ├── DailyTask.py ├── Delegation.py ├── LeaderMeow.py ├── MainPageWatcher.py ├── SosSignal.py └── StageFight.py ├── common ├── AutoAdb.py ├── AutoAdbCheck.py ├── ConfigUtils.py ├── FightRecorder.py ├── Location.py ├── PageUtils.py ├── PathUtils.py ├── PortUtils.py ├── Singleton.py ├── Slider.py ├── TeamLeader.py └── Timer.py ├── config_temp.ini ├── temp_images ├── click-to-continue.png ├── confirm-btn.png ├── daily-task │ ├── daily-task │ │ ├── goto-daily-task.png │ │ ├── no-chance-2.png │ │ ├── no-chance.png │ │ └── right-team.png │ ├── delegation │ │ ├── complete.png │ │ ├── success-1.png │ │ └── success.png │ ├── left-notice.png │ ├── life-area │ │ └── feed.png │ ├── meow │ │ ├── buy.png │ │ ├── confirm.png │ │ ├── free-meow-1.png │ │ ├── free-meow.png │ │ ├── in-lesson-page.png │ │ ├── lesson-finish.png │ │ ├── meow-full.png │ │ ├── new-meow-btn.png │ │ ├── pick-all.png │ │ └── start-lesson.png │ ├── missions │ │ └── receive-all.png │ └── notice.png ├── enemy │ ├── 0-in-1.png │ ├── 0-in.png │ ├── 0z-boss-1.png │ ├── 0z-boss-2.png │ ├── 0z-boss-3.png │ ├── 0z-boss.png │ ├── 1-1.png │ ├── 1-2.png │ ├── 1-3.png │ ├── 1.png │ ├── 2-1.png │ ├── 2-2.png │ ├── 2-3.png │ ├── 2-4.png │ ├── 2-tools.png │ ├── 2.png │ ├── 3-1.png │ ├── 3-2.png │ ├── 3-3.png │ ├── 3-4.png │ ├── 3-5.png │ ├── 3-6.png │ ├── 3-7.png │ ├── 3-8.png │ ├── 3-9.png │ ├── 3.png │ ├── 4.png │ ├── lv.png │ ├── sp-1.png │ └── sp-2.png ├── fight │ ├── auto-fight-confirm-1.png │ ├── auto-fight-confirm-2.png │ ├── fail-confirm.png │ ├── fight-finish.png │ ├── fight.png │ ├── low-mood.png │ ├── new-ship.png │ ├── skip-dialog.png │ ├── step-limit.png │ └── urgent-task.png ├── page │ ├── back-2.png │ ├── back.png │ ├── close-1.png │ ├── close.png │ ├── in-daily.png │ ├── in-enemy.png │ ├── in-fighting.png │ ├── in-main.png │ ├── in-operation.png │ ├── in-stage.png │ ├── main-fight.png │ └── main-page-button.png ├── port │ ├── cancel.png │ ├── port-full-retire.png │ ├── port-full.png │ ├── retire-confirm-1.png │ ├── retire-confirm.png │ └── retire.png ├── sos │ ├── goto-stage-page.png │ ├── no-chance.png │ ├── search-signal.png │ ├── sos-signal.png │ ├── stage-icon.png │ └── start-now.png ├── stage │ ├── bullet-empty.png │ ├── escape.png │ ├── get-tool.png │ ├── immediate-start.png │ ├── no-chance-for-hard.png │ ├── team-1.png │ ├── team-switch.png │ └── weigh-anchor.png ├── target-stage-hard │ └── example.png └── target-stage │ └── example.png └── wiki ├── 4-4.png └── unit.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Fight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/Fight.py -------------------------------------------------------------------------------- /FightHard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/FightHard.py -------------------------------------------------------------------------------- /FightToEnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/FightToEnd.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/README.md -------------------------------------------------------------------------------- /adb/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/adb/AdbWinApi.dll -------------------------------------------------------------------------------- /adb/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/adb/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /adb/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/adb/adb.exe -------------------------------------------------------------------------------- /bin/DailyTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/bin/DailyTask.py -------------------------------------------------------------------------------- /bin/Delegation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/bin/Delegation.py -------------------------------------------------------------------------------- /bin/LeaderMeow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/bin/LeaderMeow.py -------------------------------------------------------------------------------- /bin/MainPageWatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/bin/MainPageWatcher.py -------------------------------------------------------------------------------- /bin/SosSignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/bin/SosSignal.py -------------------------------------------------------------------------------- /bin/StageFight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/bin/StageFight.py -------------------------------------------------------------------------------- /common/AutoAdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/AutoAdb.py -------------------------------------------------------------------------------- /common/AutoAdbCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/AutoAdbCheck.py -------------------------------------------------------------------------------- /common/ConfigUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/ConfigUtils.py -------------------------------------------------------------------------------- /common/FightRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/FightRecorder.py -------------------------------------------------------------------------------- /common/Location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/Location.py -------------------------------------------------------------------------------- /common/PageUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/PageUtils.py -------------------------------------------------------------------------------- /common/PathUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/PathUtils.py -------------------------------------------------------------------------------- /common/PortUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/PortUtils.py -------------------------------------------------------------------------------- /common/Singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/Singleton.py -------------------------------------------------------------------------------- /common/Slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/Slider.py -------------------------------------------------------------------------------- /common/TeamLeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/TeamLeader.py -------------------------------------------------------------------------------- /common/Timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/common/Timer.py -------------------------------------------------------------------------------- /config_temp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/config_temp.ini -------------------------------------------------------------------------------- /temp_images/click-to-continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/click-to-continue.png -------------------------------------------------------------------------------- /temp_images/confirm-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/confirm-btn.png -------------------------------------------------------------------------------- /temp_images/daily-task/daily-task/goto-daily-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/daily-task/goto-daily-task.png -------------------------------------------------------------------------------- /temp_images/daily-task/daily-task/no-chance-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/daily-task/no-chance-2.png -------------------------------------------------------------------------------- /temp_images/daily-task/daily-task/no-chance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/daily-task/no-chance.png -------------------------------------------------------------------------------- /temp_images/daily-task/daily-task/right-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/daily-task/right-team.png -------------------------------------------------------------------------------- /temp_images/daily-task/delegation/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/delegation/complete.png -------------------------------------------------------------------------------- /temp_images/daily-task/delegation/success-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/delegation/success-1.png -------------------------------------------------------------------------------- /temp_images/daily-task/delegation/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/delegation/success.png -------------------------------------------------------------------------------- /temp_images/daily-task/left-notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/left-notice.png -------------------------------------------------------------------------------- /temp_images/daily-task/life-area/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/life-area/feed.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/buy.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/confirm.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/free-meow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/free-meow-1.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/free-meow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/free-meow.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/in-lesson-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/in-lesson-page.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/lesson-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/lesson-finish.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/meow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/meow-full.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/new-meow-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/new-meow-btn.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/pick-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/pick-all.png -------------------------------------------------------------------------------- /temp_images/daily-task/meow/start-lesson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/meow/start-lesson.png -------------------------------------------------------------------------------- /temp_images/daily-task/missions/receive-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/missions/receive-all.png -------------------------------------------------------------------------------- /temp_images/daily-task/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/daily-task/notice.png -------------------------------------------------------------------------------- /temp_images/enemy/0-in-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/0-in-1.png -------------------------------------------------------------------------------- /temp_images/enemy/0-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/0-in.png -------------------------------------------------------------------------------- /temp_images/enemy/0z-boss-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/0z-boss-1.png -------------------------------------------------------------------------------- /temp_images/enemy/0z-boss-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/0z-boss-2.png -------------------------------------------------------------------------------- /temp_images/enemy/0z-boss-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/0z-boss-3.png -------------------------------------------------------------------------------- /temp_images/enemy/0z-boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/0z-boss.png -------------------------------------------------------------------------------- /temp_images/enemy/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/1-1.png -------------------------------------------------------------------------------- /temp_images/enemy/1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/1-2.png -------------------------------------------------------------------------------- /temp_images/enemy/1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/1-3.png -------------------------------------------------------------------------------- /temp_images/enemy/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/1.png -------------------------------------------------------------------------------- /temp_images/enemy/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/2-1.png -------------------------------------------------------------------------------- /temp_images/enemy/2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/2-2.png -------------------------------------------------------------------------------- /temp_images/enemy/2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/2-3.png -------------------------------------------------------------------------------- /temp_images/enemy/2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/2-4.png -------------------------------------------------------------------------------- /temp_images/enemy/2-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/2-tools.png -------------------------------------------------------------------------------- /temp_images/enemy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/2.png -------------------------------------------------------------------------------- /temp_images/enemy/3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-1.png -------------------------------------------------------------------------------- /temp_images/enemy/3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-2.png -------------------------------------------------------------------------------- /temp_images/enemy/3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-3.png -------------------------------------------------------------------------------- /temp_images/enemy/3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-4.png -------------------------------------------------------------------------------- /temp_images/enemy/3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-5.png -------------------------------------------------------------------------------- /temp_images/enemy/3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-6.png -------------------------------------------------------------------------------- /temp_images/enemy/3-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-7.png -------------------------------------------------------------------------------- /temp_images/enemy/3-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-8.png -------------------------------------------------------------------------------- /temp_images/enemy/3-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3-9.png -------------------------------------------------------------------------------- /temp_images/enemy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/3.png -------------------------------------------------------------------------------- /temp_images/enemy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/4.png -------------------------------------------------------------------------------- /temp_images/enemy/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/lv.png -------------------------------------------------------------------------------- /temp_images/enemy/sp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/sp-1.png -------------------------------------------------------------------------------- /temp_images/enemy/sp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/enemy/sp-2.png -------------------------------------------------------------------------------- /temp_images/fight/auto-fight-confirm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/auto-fight-confirm-1.png -------------------------------------------------------------------------------- /temp_images/fight/auto-fight-confirm-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/auto-fight-confirm-2.png -------------------------------------------------------------------------------- /temp_images/fight/fail-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/fail-confirm.png -------------------------------------------------------------------------------- /temp_images/fight/fight-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/fight-finish.png -------------------------------------------------------------------------------- /temp_images/fight/fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/fight.png -------------------------------------------------------------------------------- /temp_images/fight/low-mood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/low-mood.png -------------------------------------------------------------------------------- /temp_images/fight/new-ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/new-ship.png -------------------------------------------------------------------------------- /temp_images/fight/skip-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/skip-dialog.png -------------------------------------------------------------------------------- /temp_images/fight/step-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/step-limit.png -------------------------------------------------------------------------------- /temp_images/fight/urgent-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/fight/urgent-task.png -------------------------------------------------------------------------------- /temp_images/page/back-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/back-2.png -------------------------------------------------------------------------------- /temp_images/page/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/back.png -------------------------------------------------------------------------------- /temp_images/page/close-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/close-1.png -------------------------------------------------------------------------------- /temp_images/page/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/close.png -------------------------------------------------------------------------------- /temp_images/page/in-daily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/in-daily.png -------------------------------------------------------------------------------- /temp_images/page/in-enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/in-enemy.png -------------------------------------------------------------------------------- /temp_images/page/in-fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/in-fighting.png -------------------------------------------------------------------------------- /temp_images/page/in-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/in-main.png -------------------------------------------------------------------------------- /temp_images/page/in-operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/in-operation.png -------------------------------------------------------------------------------- /temp_images/page/in-stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/in-stage.png -------------------------------------------------------------------------------- /temp_images/page/main-fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/main-fight.png -------------------------------------------------------------------------------- /temp_images/page/main-page-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/page/main-page-button.png -------------------------------------------------------------------------------- /temp_images/port/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/port/cancel.png -------------------------------------------------------------------------------- /temp_images/port/port-full-retire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/port/port-full-retire.png -------------------------------------------------------------------------------- /temp_images/port/port-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/port/port-full.png -------------------------------------------------------------------------------- /temp_images/port/retire-confirm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/port/retire-confirm-1.png -------------------------------------------------------------------------------- /temp_images/port/retire-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/port/retire-confirm.png -------------------------------------------------------------------------------- /temp_images/port/retire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/port/retire.png -------------------------------------------------------------------------------- /temp_images/sos/goto-stage-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/sos/goto-stage-page.png -------------------------------------------------------------------------------- /temp_images/sos/no-chance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/sos/no-chance.png -------------------------------------------------------------------------------- /temp_images/sos/search-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/sos/search-signal.png -------------------------------------------------------------------------------- /temp_images/sos/sos-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/sos/sos-signal.png -------------------------------------------------------------------------------- /temp_images/sos/stage-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/sos/stage-icon.png -------------------------------------------------------------------------------- /temp_images/sos/start-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/sos/start-now.png -------------------------------------------------------------------------------- /temp_images/stage/bullet-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/bullet-empty.png -------------------------------------------------------------------------------- /temp_images/stage/escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/escape.png -------------------------------------------------------------------------------- /temp_images/stage/get-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/get-tool.png -------------------------------------------------------------------------------- /temp_images/stage/immediate-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/immediate-start.png -------------------------------------------------------------------------------- /temp_images/stage/no-chance-for-hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/no-chance-for-hard.png -------------------------------------------------------------------------------- /temp_images/stage/team-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/team-1.png -------------------------------------------------------------------------------- /temp_images/stage/team-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/team-switch.png -------------------------------------------------------------------------------- /temp_images/stage/weigh-anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/stage/weigh-anchor.png -------------------------------------------------------------------------------- /temp_images/target-stage-hard/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/target-stage-hard/example.png -------------------------------------------------------------------------------- /temp_images/target-stage/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/temp_images/target-stage/example.png -------------------------------------------------------------------------------- /wiki/4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/wiki/4-4.png -------------------------------------------------------------------------------- /wiki/unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstJavaMaster/AzurLaneScripts/HEAD/wiki/unit.png --------------------------------------------------------------------------------