├── .github ├── ISSUE_TEMPLATE │ ├── bug-report---上报bug.md │ ├── feature-request---功能请求.md │ └── question---请求解答疑问.md └── workflows │ ├── auto_tag_release.yml │ ├── docker-build.yml │ ├── mirrorchyan.yml │ ├── mirrorchyan_release_note.yml │ └── sync_releases.yml ├── .gitignore ├── BAAH.py ├── BAAH_CONFIGS └── example.json ├── DATA ├── CONFIGS │ └── temp.json ├── assets │ ├── BUTTON │ │ ├── BUTTON_ALL_COLLECT.png │ │ ├── BUTTON_ALL_COLLECT_GRAY.png │ │ ├── BUTTON_ALL_TIMETABLE.png │ │ ├── BUTTON_CAFE_CANINVITE.png │ │ ├── BUTTON_CAFE_CANNOT_COLLECT.png │ │ ├── BUTTON_CAFE_SET_ROOM.png │ │ ├── BUTTON_CANCEL.png │ │ ├── BUTTON_CFIGHT_START.png │ │ ├── BUTTON_COLLECT.png │ │ ├── BUTTON_COLLECT_GRAY.png │ │ ├── BUTTON_COLLECT_REWARD.png │ │ ├── BUTTON_CONFIRMB.png │ │ ├── BUTTON_CONFIRMY.png │ │ ├── BUTTON_CONTEST_COLLECT_BOTH_GRAY.png │ │ ├── BUTTON_DONT_SHOW_TODAY.png │ │ ├── BUTTON_EDIT.png │ │ ├── BUTTON_EVENT_DAILY_TASK.png │ │ ├── BUTTON_EVENT_FIRST.png │ │ ├── BUTTON_EVENT_QUEST_SELLECTED.png │ │ ├── BUTTON_EXCHANGE_TEAM.png │ │ ├── BUTTON_FIGHT_RESULT_CONFIRMB.png │ │ ├── BUTTON_FINISH_9_DAILY.png │ │ ├── BUTTON_FREE_SHOP_BUY.png │ │ ├── BUTTON_GOFIGHT.png │ │ ├── BUTTON_GO_PARTNER_STORY.png │ │ ├── BUTTON_HARD.png │ │ ├── BUTTON_HOME_ICON.png │ │ ├── BUTTON_JUMP.png │ │ ├── BUTTON_LOGIN_BILI.png │ │ ├── BUTTON_MOMOTALK_PARTNER.png │ │ ├── BUTTON_MOMOTALK_REPLY.png │ │ ├── BUTTON_NEW_STORY_LEVEL.png │ │ ├── BUTTON_NORMAL.png │ │ ├── BUTTON_NOT_JUMP.png │ │ ├── BUTTON_ONE_COLLECT.png │ │ ├── BUTTON_QUIT_LAST.png │ │ ├── BUTTON_SHOP_BUY.png │ │ ├── BUTTON_SHOP_CONTEST_B.png │ │ ├── BUTTON_SHOP_CONTEST_W.png │ │ ├── BUTTON_SHOP_REFRESH.png │ │ ├── BUTTON_STORY_MENU.png │ │ ├── BUTTON_STU_NOTICE.png │ │ ├── BUTTON_TASK_START.png │ │ ├── BUTTON_TIMETABLE_START.png │ │ └── BUTTON_USER_AGREEMENT.png │ ├── ButtonName.py │ ├── PAGE │ │ ├── PAGE_ASSAULT.png │ │ ├── PAGE_CAFE.png │ │ ├── PAGE_CLUB.png │ │ ├── PAGE_CONTEST.png │ │ ├── PAGE_CRAFT.png │ │ ├── PAGE_EDIT_QUEST_TEAM.png │ │ ├── PAGE_EDIT_TEAM.png │ │ ├── PAGE_EVENT.png │ │ ├── PAGE_EXAM.png │ │ ├── PAGE_EXCHANGE.png │ │ ├── PAGE_EXCHANGE_SUB.png │ │ ├── PAGE_FIGHT_CENTER.png │ │ ├── PAGE_GRID_FIGHT.png │ │ ├── PAGE_GRID_FIGHTING.png │ │ ├── PAGE_HOME.png │ │ ├── PAGE_LOADING.png │ │ ├── PAGE_MAILBOX.png │ │ ├── PAGE_QUEST_SEL.png │ │ ├── PAGE_SHOP.png │ │ ├── PAGE_SPECIAL.png │ │ ├── PAGE_STORY_SELECT_SECTION.png │ │ ├── PAGE_TASK_CENTER.png │ │ ├── PAGE_TIMETABLE.png │ │ ├── PAGE_TIMETABLE_SEL.png │ │ ├── PAGE_WANTED.png │ │ └── PAGE_WANTED_SUB.png │ ├── POPUP │ │ ├── POPUP_CAFE_INFO.png │ │ ├── POPUP_CAFE_REPLACE.png │ │ ├── POPUP_CAFE_VISITED.png │ │ ├── POPUP_CHAPTER_INFO.png │ │ ├── POPUP_CONTEST_TARGET.png │ │ ├── POPUP_FIGHT_RESULT.png │ │ ├── POPUP_LOGIN_FORM.png │ │ ├── POPUP_MOMOTALK.png │ │ ├── POPUP_NOTICE.png │ │ ├── POPUP_SETTING_SELECT.png │ │ ├── POPUP_TASK_INFO.png │ │ ├── POPUP_TIMETABLE_ALL.png │ │ ├── POPUP_TIMETABLE_INFO.png │ │ ├── POPUP_TOTAL_PRICE.png │ │ ├── POPUP_UPDATE_APP.png │ │ ├── POPUP_UPDATE_NOTICE.png │ │ └── POPUP_USE_DIAMOND.png │ ├── PageName.py │ ├── PopupName.py │ └── 差异.md ├── assets_cn │ ├── BUTTON │ │ ├── BUTTON_ALL_COLLECT.png │ │ ├── BUTTON_ALL_COLLECT_GRAY.png │ │ ├── BUTTON_ALL_TIMETABLE.png │ │ ├── BUTTON_CAFE_CANINVITE.png │ │ ├── BUTTON_CAFE_CANNOT_COLLECT.png │ │ ├── BUTTON_CAFE_SET_ROOM.png │ │ ├── BUTTON_CANCEL.png │ │ ├── BUTTON_CFIGHT_START.png │ │ ├── BUTTON_CFIGHT_START_FANHEXIE.png │ │ ├── BUTTON_COLLECT.png │ │ ├── BUTTON_COLLECT_GRAY.png │ │ ├── BUTTON_COLLECT_REWARD.png │ │ ├── BUTTON_CONFIRMB.png │ │ ├── BUTTON_CONFIRMY.png │ │ ├── BUTTON_CONTEST_COLLECT_BOTH_GRAY.png │ │ ├── BUTTON_DONT_SHOW_TODAY.png │ │ ├── BUTTON_EDIT.png │ │ ├── BUTTON_EVENT_DAILY_TASK.png │ │ ├── BUTTON_EVENT_FIRST.png │ │ ├── BUTTON_EVENT_QUEST_SELLECTED.png │ │ ├── BUTTON_EVENT_QUEST_SELLECTED_LEFT.png │ │ ├── BUTTON_EXCHANGE_TEAM.png │ │ ├── BUTTON_FIGHT_RESULT_CONFIRMB.png │ │ ├── BUTTON_FINISH_9_DAILY.png │ │ ├── BUTTON_GOFIGHT.png │ │ ├── BUTTON_GO_PARTNER_STORY.png │ │ ├── BUTTON_HARD.png │ │ ├── BUTTON_HOME_ICON.png │ │ ├── BUTTON_JUMP.png │ │ ├── BUTTON_LOGIN_BILI.png │ │ ├── BUTTON_MOMOTALK_PARTNER.png │ │ ├── BUTTON_MOMOTALK_REPLY.png │ │ ├── BUTTON_NEW_STORY_LEVEL.png │ │ ├── BUTTON_NORMAL.png │ │ ├── BUTTON_NOT_JUMP.png │ │ ├── BUTTON_ONE_COLLECT.png │ │ ├── BUTTON_QUIT_LAST.png │ │ ├── BUTTON_SHOP_BUY.png │ │ ├── BUTTON_SHOP_CONTEST_B.png │ │ ├── BUTTON_SHOP_CONTEST_W.png │ │ ├── BUTTON_SHOP_REFRESH.png │ │ ├── BUTTON_STORY_MENU.png │ │ ├── BUTTON_STU_NOTICE.png │ │ ├── BUTTON_TASK_START.png │ │ ├── BUTTON_TIMETABLE_START.png │ │ └── BUTTON_USER_AGREEMENT.png │ ├── PAGE │ │ ├── PAGE_ASSAULT.png │ │ ├── PAGE_CAFE.png │ │ ├── PAGE_CLUB.png │ │ ├── PAGE_CONTEST.png │ │ ├── PAGE_CRAFT.png │ │ ├── PAGE_EDIT_QUEST_TEAM.png │ │ ├── PAGE_EDIT_TEAM.png │ │ ├── PAGE_EVENT.png │ │ ├── PAGE_EXAM.png │ │ ├── PAGE_EXCHANGE.png │ │ ├── PAGE_EXCHANGE_SUB.png │ │ ├── PAGE_FIGHT_CENTER.png │ │ ├── PAGE_GRID_FIGHT.png │ │ ├── PAGE_GRID_FIGHTING.png │ │ ├── PAGE_HOME.png │ │ ├── PAGE_LOADING.png │ │ ├── PAGE_MAILBOX.png │ │ ├── PAGE_QUEST_SEL.png │ │ ├── PAGE_SHOP.png │ │ ├── PAGE_SPECIAL.png │ │ ├── PAGE_STORY.png │ │ ├── PAGE_STORY_SELECT_SECTION.png │ │ ├── PAGE_TASK_CENTER.png │ │ ├── PAGE_TIMETABLE.png │ │ ├── PAGE_TIMETABLE_SEL.png │ │ ├── PAGE_WANTED.png │ │ └── PAGE_WANTED_SUB.png │ └── POPUP │ │ ├── POPUP_CAFE_INFO.png │ │ ├── POPUP_CAFE_REPLACE.png │ │ ├── POPUP_CAFE_VISITED.png │ │ ├── POPUP_CHAPTER_INFO.png │ │ ├── POPUP_CONTEST_TARGET.png │ │ ├── POPUP_FIGHT_RESULT.png │ │ ├── POPUP_LOGIN_FORM.png │ │ ├── POPUP_MOMOTALK.png │ │ ├── POPUP_MOMOTALK_FANHEXIE.png │ │ ├── POPUP_NOTICE.png │ │ ├── POPUP_SETTING_SELECT.png │ │ ├── POPUP_TASK_INFO.png │ │ ├── POPUP_TASK_INFO_FANHEXIE.png │ │ ├── POPUP_TIMETABLE_ALL.png │ │ ├── POPUP_TIMETABLE_INFO.png │ │ ├── POPUP_TOTAL_PRICE.png │ │ ├── POPUP_UPDATE_APP.png │ │ ├── POPUP_UPDATE_NOTICE.png │ │ └── POPUP_USE_DIAMOND.png ├── assets_global_en │ ├── BUTTON │ │ ├── BUTTON_ALL_COLLECT.png │ │ ├── BUTTON_ALL_COLLECT_GRAY.png │ │ ├── BUTTON_ALL_TIMETABLE.png │ │ ├── BUTTON_CAFE_CANINVITE.png │ │ ├── BUTTON_CAFE_CANNOT_COLLECT.png │ │ ├── BUTTON_CAFE_SET_ROOM.png │ │ ├── BUTTON_CANCEL.png │ │ ├── BUTTON_CFIGHT_START.png │ │ ├── BUTTON_COLLECT.png │ │ ├── BUTTON_COLLECT_GRAY.png │ │ ├── BUTTON_COLLECT_REWARD.png │ │ ├── BUTTON_CONFIRMB.png │ │ ├── BUTTON_CONFIRMY.png │ │ ├── BUTTON_CONTEST_COLLECT_BOTH_GRAY.png │ │ ├── BUTTON_DONT_SHOW_TODAY.png │ │ ├── BUTTON_EDIT.png │ │ ├── BUTTON_EVENT_DAILY_TASK.png │ │ ├── BUTTON_EVENT_FIRST.png │ │ ├── BUTTON_EVENT_QUEST_SELLECTED.png │ │ ├── BUTTON_EXCHANGE_TEAM.png │ │ ├── BUTTON_FIGHT_RESULT_CONFIRMB.png │ │ ├── BUTTON_FINISH_9_DAILY.png │ │ ├── BUTTON_FREE_SHOP_BUY.png │ │ ├── BUTTON_GOFIGHT.png │ │ ├── BUTTON_GO_PARTNER_STORY.png │ │ ├── BUTTON_HARD.png │ │ ├── BUTTON_HOME_ICON.png │ │ ├── BUTTON_JUMP.png │ │ ├── BUTTON_LOGIN_BILI.png │ │ ├── BUTTON_MOMOTALK_PARTNER.png │ │ ├── BUTTON_MOMOTALK_REPLY.png │ │ ├── BUTTON_NEW_STORY_LEVEL.png │ │ ├── BUTTON_NORMAL.png │ │ ├── BUTTON_NOT_JUMP.png │ │ ├── BUTTON_ONE_COLLECT.png │ │ ├── BUTTON_QUIT_LAST.png │ │ ├── BUTTON_SHOP_BUY.png │ │ ├── BUTTON_SHOP_CONTEST_B.png │ │ ├── BUTTON_SHOP_CONTEST_W.png │ │ ├── BUTTON_SHOP_REFRESH.png │ │ ├── BUTTON_STORY_MENU.png │ │ ├── BUTTON_STU_NOTICE.png │ │ ├── BUTTON_TASK_START.png │ │ ├── BUTTON_TIMETABLE_START.png │ │ └── BUTTON_USER_AGREEMENT.png │ ├── PAGE │ │ ├── PAGE_ASSAULT.png │ │ ├── PAGE_CAFE.png │ │ ├── PAGE_CLUB.png │ │ ├── PAGE_CONTEST.png │ │ ├── PAGE_CRAFT.png │ │ ├── PAGE_EDIT_QUEST_TEAM.png │ │ ├── PAGE_EDIT_TEAM.png │ │ ├── PAGE_EVENT.png │ │ ├── PAGE_EXAM.png │ │ ├── PAGE_EXCHANGE.png │ │ ├── PAGE_EXCHANGE_SUB.png │ │ ├── PAGE_FIGHT_CENTER.png │ │ ├── PAGE_GRID_FIGHT.png │ │ ├── PAGE_GRID_FIGHTING.png │ │ ├── PAGE_HOME.png │ │ ├── PAGE_LOADING.png │ │ ├── PAGE_MAILBOX.png │ │ ├── PAGE_QUEST_SEL.png │ │ ├── PAGE_SHOP.png │ │ ├── PAGE_SPECIAL.png │ │ ├── PAGE_STORY_SELECT_SECTION.png │ │ ├── PAGE_TASK_CENTER.png │ │ ├── PAGE_TIMETABLE.png │ │ ├── PAGE_TIMETABLE_SEL.png │ │ ├── PAGE_WANTED.png │ │ └── PAGE_WANTED_SUB.png │ └── POPUP │ │ ├── POPUP_CAFE_INFO.png │ │ ├── POPUP_CAFE_REPLACE.png │ │ ├── POPUP_CAFE_VISITED.png │ │ ├── POPUP_CHAPTER_INFO.png │ │ ├── POPUP_CONTEST_TARGET.png │ │ ├── POPUP_FIGHT_RESULT.png │ │ ├── POPUP_LOGIN_FORM.png │ │ ├── POPUP_MOMOTALK.png │ │ ├── POPUP_NOTICE.png │ │ ├── POPUP_SETTING_SELECT.png │ │ ├── POPUP_TASK_INFO.png │ │ ├── POPUP_TIMETABLE_ALL.png │ │ ├── POPUP_TIMETABLE_INFO.png │ │ ├── POPUP_TOTAL_PRICE.png │ │ ├── POPUP_UPDATE_APP.png │ │ ├── POPUP_UPDATE_NOTICE.png │ │ └── POPUP_USE_DIAMOND.png ├── assets_jp │ ├── BUTTON │ │ ├── BUTTON_ALL_COLLECT.png │ │ ├── BUTTON_ALL_COLLECT_GRAY.png │ │ ├── BUTTON_ALL_TIMETABLE.png │ │ ├── BUTTON_CAFE_CANINVITE.png │ │ ├── BUTTON_CAFE_CANNOT_COLLECT.png │ │ ├── BUTTON_CAFE_SET_ROOM.png │ │ ├── BUTTON_CANCEL.png │ │ ├── BUTTON_CFIGHT_START.png │ │ ├── BUTTON_COLLECT.png │ │ ├── BUTTON_COLLECT_GRAY.png │ │ ├── BUTTON_COLLECT_REWARD.png │ │ ├── BUTTON_CONFIRMB.png │ │ ├── BUTTON_CONFIRMY.png │ │ ├── BUTTON_CONTEST_COLLECT_BOTH_GRAY.png │ │ ├── BUTTON_DONT_SHOW_TODAY.png │ │ ├── BUTTON_EDIT.png │ │ ├── BUTTON_EVENT_DAILY_TASK.png │ │ ├── BUTTON_EVENT_FIRST.png │ │ ├── BUTTON_EVENT_QUEST_SELLECTED.png │ │ ├── BUTTON_EXCHANGE_TEAM.png │ │ ├── BUTTON_FIGHT_RESULT_CONFIRMB.png │ │ ├── BUTTON_FINISH_9_DAILY.png │ │ ├── BUTTON_FREE_SHOP_BUY.png │ │ ├── BUTTON_GOFIGHT.png │ │ ├── BUTTON_GO_PARTNER_STORY.png │ │ ├── BUTTON_HARD.png │ │ ├── BUTTON_HOME_ICON.png │ │ ├── BUTTON_JUMP.png │ │ ├── BUTTON_LOGIN_BILI.png │ │ ├── BUTTON_MOMOTALK_PARTNER.png │ │ ├── BUTTON_MOMOTALK_REPLY.png │ │ ├── BUTTON_NEW_STORY_LEVEL.png │ │ ├── BUTTON_NORMAL.png │ │ ├── BUTTON_NOT_JUMP.png │ │ ├── BUTTON_ONE_COLLECT.png │ │ ├── BUTTON_QUIT_LAST.png │ │ ├── BUTTON_SHOP_BUY.png │ │ ├── BUTTON_SHOP_CONTEST_B.png │ │ ├── BUTTON_SHOP_CONTEST_W.png │ │ ├── BUTTON_SHOP_REFRESH.png │ │ ├── BUTTON_STORY_MENU.png │ │ ├── BUTTON_STU_NOTICE.png │ │ ├── BUTTON_TASK_START.png │ │ ├── BUTTON_TIMETABLE_START.png │ │ └── BUTTON_USER_AGREEMENT.png │ ├── PAGE │ │ ├── PAGE_ASSAULT.png │ │ ├── PAGE_CAFE.png │ │ ├── PAGE_CLUB.png │ │ ├── PAGE_CONTEST.png │ │ ├── PAGE_CRAFT.png │ │ ├── PAGE_EDIT_QUEST_TEAM.png │ │ ├── PAGE_EDIT_TEAM.png │ │ ├── PAGE_EVENT.png │ │ ├── PAGE_EXAM.png │ │ ├── PAGE_EXCHANGE.png │ │ ├── PAGE_EXCHANGE_SUB.png │ │ ├── PAGE_FIGHT_CENTER.png │ │ ├── PAGE_GRID_FIGHT.png │ │ ├── PAGE_GRID_FIGHTING.png │ │ ├── PAGE_HOME.png │ │ ├── PAGE_LOADING.png │ │ ├── PAGE_MAILBOX.png │ │ ├── PAGE_QUEST_SEL.png │ │ ├── PAGE_SHOP.png │ │ ├── PAGE_SPECIAL.png │ │ ├── PAGE_STORY_SELECT_SECTION.png │ │ ├── PAGE_TASK_CENTER.png │ │ ├── PAGE_TIMETABLE.png │ │ ├── PAGE_TIMETABLE_SEL.png │ │ ├── PAGE_WANTED.png │ │ └── PAGE_WANTED_SUB.png │ └── POPUP │ │ ├── POPUP_CAFE_INFO.png │ │ ├── POPUP_CAFE_REPLACE.png │ │ ├── POPUP_CAFE_VISITED.png │ │ ├── POPUP_CHAPTER_INFO.png │ │ ├── POPUP_CONTEST_TARGET.png │ │ ├── POPUP_EASY_QUEST.png │ │ ├── POPUP_FIGHT_RESULT.png │ │ ├── POPUP_LOGIN_FORM.png │ │ ├── POPUP_MOMOTALK.png │ │ ├── POPUP_NOTICE.png │ │ ├── POPUP_SETTING_SELECT.png │ │ ├── POPUP_TASK_INFO.png │ │ ├── POPUP_TIMETABLE_ALL.png │ │ ├── POPUP_TIMETABLE_INFO.png │ │ ├── POPUP_TOTAL_PRICE.png │ │ ├── POPUP_UPDATE_APP.png │ │ ├── POPUP_UPDATE_NOTICE.png │ │ └── POPUP_USE_DIAMOND.png ├── grid_solution │ ├── grid_solution_format.json │ └── quest │ │ ├── 1-1.json │ │ ├── 1-2.json │ │ ├── 1-3.json │ │ ├── 1-4.json │ │ ├── 1-5.json │ │ ├── 10-1.json │ │ ├── 10-2.json │ │ ├── 10-3.json │ │ ├── 10-4.json │ │ ├── 10-5.json │ │ ├── 11-1.json │ │ ├── 11-2.json │ │ ├── 11-3.json │ │ ├── 11-4.json │ │ ├── 11-5.json │ │ ├── 12-1.json │ │ ├── 12-2.json │ │ ├── 12-3.json │ │ ├── 12-4.json │ │ ├── 12-5.json │ │ ├── 13-1.json │ │ ├── 13-2.json │ │ ├── 13-3.json │ │ ├── 13-4.json │ │ ├── 13-5.json │ │ ├── 14-1.json │ │ ├── 14-2.json │ │ ├── 14-3.json │ │ ├── 14-4.json │ │ ├── 14-5.json │ │ ├── 15-1.json │ │ ├── 15-2.json │ │ ├── 15-3.json │ │ ├── 15-4.json │ │ ├── 15-5.json │ │ ├── 16-1.json │ │ ├── 16-2.json │ │ ├── 16-3.json │ │ ├── 16-4.json │ │ ├── 16-5.json │ │ ├── 17-1.json │ │ ├── 17-2.json │ │ ├── 17-3.json │ │ ├── 17-4.json │ │ ├── 17-5.json │ │ ├── 18-1.json │ │ ├── 18-2.json │ │ ├── 18-3.json │ │ ├── 18-4.json │ │ ├── 18-5.json │ │ ├── 19-1.json │ │ ├── 19-2.json │ │ ├── 19-3.json │ │ ├── 19-4.json │ │ ├── 19-5.json │ │ ├── 2-1.json │ │ ├── 2-2.json │ │ ├── 2-3.json │ │ ├── 2-4.json │ │ ├── 2-5.json │ │ ├── 20-1.json │ │ ├── 20-2.json │ │ ├── 20-3.json │ │ ├── 20-4.json │ │ ├── 20-5.json │ │ ├── 21-1.json │ │ ├── 21-2.json │ │ ├── 21-3.json │ │ ├── 21-4.json │ │ ├── 21-5.json │ │ ├── 22-1.json │ │ ├── 22-2.json │ │ ├── 22-3.json │ │ ├── 22-4.json │ │ ├── 22-5.json │ │ ├── 23-1.json │ │ ├── 23-2.json │ │ ├── 23-3.json │ │ ├── 23-4.json │ │ ├── 23-5.json │ │ ├── 24-1.json │ │ ├── 24-2.json │ │ ├── 24-3.json │ │ ├── 24-4.json │ │ ├── 24-5.json │ │ ├── 25-1.json │ │ ├── 25-2.json │ │ ├── 25-3.json │ │ ├── 25-4.json │ │ ├── 25-5.json │ │ ├── 26-1.json │ │ ├── 26-2.json │ │ ├── 26-3.json │ │ ├── 26-4.json │ │ ├── 26-5.json │ │ ├── 27-1.json │ │ ├── 27-2.json │ │ ├── 27-3.json │ │ ├── 27-4.json │ │ ├── 27-5.json │ │ ├── 28-1.json │ │ ├── 28-2.json │ │ ├── 28-3.json │ │ ├── 28-4.json │ │ ├── 28-5.json │ │ ├── 29-1.json │ │ ├── 29-2.json │ │ ├── 29-3.json │ │ ├── 29-4.json │ │ ├── 29-5.json │ │ ├── 3-1.json │ │ ├── 3-2.json │ │ ├── 3-3.json │ │ ├── 3-4.json │ │ ├── 3-5.json │ │ ├── 4-1.json │ │ ├── 4-2.json │ │ ├── 4-3.json │ │ ├── 4-4.json │ │ ├── 4-5.json │ │ ├── 5-1.json │ │ ├── 5-2.json │ │ ├── 5-3.json │ │ ├── 5-4.json │ │ ├── 5-5.json │ │ ├── 6-1.json │ │ ├── 6-2.json │ │ ├── 6-3.json │ │ ├── 6-4.json │ │ ├── 6-5.json │ │ ├── 7-1.json │ │ ├── 7-2.json │ │ ├── 7-3.json │ │ ├── 7-4.json │ │ ├── 7-5.json │ │ ├── 8-1.json │ │ ├── 8-2.json │ │ ├── 8-3.json │ │ ├── 8-4.json │ │ ├── 8-5.json │ │ ├── 9-1.json │ │ ├── 9-2.json │ │ ├── 9-3.json │ │ ├── 9-4.json │ │ ├── 9-5.json │ │ ├── H1-1.json │ │ ├── H1-2.json │ │ ├── H1-3.json │ │ ├── H10-1.json │ │ ├── H10-2.json │ │ ├── H10-3.json │ │ ├── H11-1.json │ │ ├── H11-2.json │ │ ├── H11-3.json │ │ ├── H12-1.json │ │ ├── H12-2.json │ │ ├── H12-3.json │ │ ├── H13-1.json │ │ ├── H13-2.json │ │ ├── H13-3.json │ │ ├── H14-1.json │ │ ├── H14-2.json │ │ ├── H14-3.json │ │ ├── H15-1.json │ │ ├── H15-2.json │ │ ├── H15-3.json │ │ ├── H16-1.json │ │ ├── H16-2.json │ │ ├── H16-3.json │ │ ├── H17-1.json │ │ ├── H17-2.json │ │ ├── H17-3.json │ │ ├── H18-1.json │ │ ├── H18-2.json │ │ ├── H18-3.json │ │ ├── H19-1.json │ │ ├── H19-2.json │ │ ├── H19-3.json │ │ ├── H2-1.json │ │ ├── H2-2.json │ │ ├── H2-3.json │ │ ├── H20-1.json │ │ ├── H20-2.json │ │ ├── H20-3.json │ │ ├── H21-1.json │ │ ├── H21-2.json │ │ ├── H21-3.json │ │ ├── H22-1.json │ │ ├── H22-2.json │ │ ├── H22-3.json │ │ ├── H23-1.json │ │ ├── H23-2.json │ │ ├── H23-3.json │ │ ├── H24-1.json │ │ ├── H24-2.json │ │ ├── H24-3.json │ │ ├── H25-1.json │ │ ├── H25-2.json │ │ ├── H25-3.json │ │ ├── H26-1.json │ │ ├── H26-2.json │ │ ├── H26-3.json │ │ ├── H27-1.json │ │ ├── H27-2.json │ │ ├── H27-3.json │ │ ├── H28-1.json │ │ ├── H28-2.json │ │ ├── H28-3.json │ │ ├── H29-1.json │ │ ├── H29-2.json │ │ ├── H29-3.json │ │ ├── H3-1.json │ │ ├── H3-2.json │ │ ├── H3-3.json │ │ ├── H4-1.json │ │ ├── H4-2.json │ │ ├── H4-3.json │ │ ├── H5-1.json │ │ ├── H5-2.json │ │ ├── H5-3.json │ │ ├── H6-1.json │ │ ├── H6-2.json │ │ ├── H6-3.json │ │ ├── H7-1.json │ │ ├── H7-2.json │ │ ├── H7-3.json │ │ ├── H8-1.json │ │ ├── H8-2.json │ │ ├── H8-3.json │ │ ├── H9-1.json │ │ ├── H9-2.json │ │ ├── H9-3.json │ │ └── README.txt ├── i18n │ ├── en_US.json │ ├── jp_JP.json │ └── zh_CN.json ├── icons │ ├── README.md │ ├── aris.ico │ ├── kayoko.ico │ └── kei.ico └── touch.zip ├── Dockerfile ├── Dockerfile.CN ├── LICENSE ├── README.md ├── define_actions ├── __init__.py ├── basic_objects.py ├── define_flow_items.py ├── define_main_actions.py └── define_pre_judges.py ├── docker-compose.yml ├── docs ├── README_cn.md ├── README_dev.md ├── README_dev_en.md ├── README_en.md └── static │ ├── GUI_CN.png │ ├── GUI_EN.png │ ├── GUI_JP.png │ ├── aris.png │ └── kei.png ├── gui ├── components │ ├── check_update.py │ ├── cut_screenshot.py │ ├── edit_team_strength.py │ ├── exec_arg_parse.py │ ├── fast_run_task_buttons.py │ ├── get_app_entrance.py │ ├── json_file_docker.py │ ├── list_edit_area.py │ ├── manage_baah_in_gui.py │ └── running_task_pool.py ├── define.py ├── pages │ ├── Setting_Assault.py │ ├── Setting_BAAH.py │ ├── Setting_BuyAP.py │ ├── Setting_Craft.py │ ├── Setting_Login.py │ ├── Setting_Oneclick_Raid.py │ ├── Setting_UserTask.py │ ├── Setting_cafe.py │ ├── Setting_emulator.py │ ├── Setting_event.py │ ├── Setting_exam.py │ ├── Setting_exchange.py │ ├── Setting_explore.py │ ├── Setting_hard.py │ ├── Setting_normal.py │ ├── Setting_notification.py │ ├── Setting_other.py │ ├── Setting_server.py │ ├── Setting_shop.py │ ├── Setting_special.py │ ├── Setting_task_order.py │ ├── Setting_timetable.py │ ├── Setting_vpn.py │ └── Setting_wanted.py └── refactor_pages │ ├── __init__.py │ ├── home.py │ └── json_set_panel.py ├── jsoneditor.py ├── main.py ├── modules ├── AllPage │ └── Page.py ├── AllTask │ ├── AutoAssault │ │ ├── AutoAssault.py │ │ └── CollectAssaultReward.py │ ├── AutoStory │ │ ├── AutoStory.py │ │ ├── SolveMain.py │ │ ├── SolveShortOrSide.py │ │ └── StoryHelper.py │ ├── BuyAP │ │ └── BuyAP.py │ ├── CollectDailyRewards │ │ └── CollectDailyRewards.py │ ├── CollectMails │ │ └── CollectMails.py │ ├── EnterGame │ │ ├── CloseInform.py │ │ ├── EnterGame.py │ │ ├── GameUpdate.py │ │ └── Loginin.py │ ├── InCafe │ │ ├── CollectPower.py │ │ ├── InCafe.py │ │ ├── InviteStudent.py │ │ └── TouchHead.py │ ├── InClub │ │ └── InClub.py │ ├── InContest │ │ └── InContest.py │ ├── InCraft │ │ └── InCraft.py │ ├── InEvent │ │ ├── EventQuest.py │ │ ├── EventStory.py │ │ └── InEvent.py │ ├── InEventRecap │ │ └── InEventRecap.py │ ├── InExam │ │ └── InExam.py │ ├── InExchange │ │ ├── InExchange.py │ │ └── RunExchangeFight.py │ ├── InFreeAward │ │ └── InFreeAward.py │ ├── InMomotalk │ │ └── InMomotalk.py │ ├── InQuest │ │ ├── HardQuest.py │ │ ├── InQuest.py │ │ ├── NormalQuest.py │ │ ├── OneClickQuest.py │ │ ├── PushQuest.py │ │ └── Questhelper.py │ ├── InShop │ │ ├── BuyItems.py │ │ ├── ContestItems.py │ │ ├── InShop.py │ │ └── NormalItems.py │ ├── InSpecial │ │ ├── InSpecial.py │ │ └── RunSpecialFight.py │ ├── InTimeTable │ │ ├── IdentifyRoomHreatNumber.py │ │ ├── InTimeTable.py │ │ ├── LocationSelect.py │ │ └── SmartSelect.py │ ├── InWanted │ │ ├── InWanted.py │ │ └── RunWantedFight.py │ ├── PostAllTask │ │ └── PostAllTask.py │ ├── README.md │ ├── SolveChallenge │ │ └── SolveChallenge.py │ ├── SubTask │ │ ├── ExecCode.py │ │ ├── FightQuest.py │ │ ├── GridQuest.py │ │ ├── RaidQuest.py │ │ ├── ScrollSelect.py │ │ └── SkipStory.py │ ├── Task.py │ ├── UserTask │ │ └── UserTask.py │ ├── __init__.py │ ├── ataskformat.py │ └── myAllTask.py ├── configs │ ├── MyConfig.py │ ├── __init__.py │ ├── defaultSettings.py │ ├── myversion.py │ └── settingMaps.py └── utils │ ├── I18nstr.py │ ├── __init__.py │ ├── adb_utils.py │ ├── baah_exceptions.py │ ├── data_utils.py │ ├── grid_analyze.py │ ├── image_processing.py │ ├── log_utils.py │ ├── notification.py │ └── subprocess_helper.py ├── package.py ├── pythonrun.bat ├── requirements.txt ├── test.py └── update.py /.github/ISSUE_TEMPLATE/bug-report---上报bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/ISSUE_TEMPLATE/bug-report---上报bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---功能请求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/ISSUE_TEMPLATE/feature-request---功能请求.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question---请求解答疑问.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/ISSUE_TEMPLATE/question---请求解答疑问.md -------------------------------------------------------------------------------- /.github/workflows/auto_tag_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/workflows/auto_tag_release.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/mirrorchyan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/workflows/mirrorchyan.yml -------------------------------------------------------------------------------- /.github/workflows/mirrorchyan_release_note.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/workflows/mirrorchyan_release_note.yml -------------------------------------------------------------------------------- /.github/workflows/sync_releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.github/workflows/sync_releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/.gitignore -------------------------------------------------------------------------------- /BAAH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/BAAH.py -------------------------------------------------------------------------------- /BAAH_CONFIGS/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/BAAH_CONFIGS/example.json -------------------------------------------------------------------------------- /DATA/CONFIGS/temp.json: -------------------------------------------------------------------------------- 1 | { 2 | "value":"仅仅是占位" 3 | } -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_ALL_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_ALL_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_ALL_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_ALL_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_ALL_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_ALL_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CAFE_CANINVITE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CAFE_CANINVITE.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CAFE_SET_ROOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CAFE_SET_ROOM.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CANCEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CANCEL.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CFIGHT_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CFIGHT_START.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_COLLECT_REWARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_COLLECT_REWARD.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CONFIRMY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CONFIRMY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_DONT_SHOW_TODAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_DONT_SHOW_TODAY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_EDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_EDIT.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_EVENT_DAILY_TASK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_EVENT_DAILY_TASK.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_EVENT_FIRST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_EVENT_FIRST.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_EXCHANGE_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_EXCHANGE_TEAM.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_FINISH_9_DAILY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_FINISH_9_DAILY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_FREE_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_FREE_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_GOFIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_GOFIGHT.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_GO_PARTNER_STORY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_GO_PARTNER_STORY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_HARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_HARD.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_HOME_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_HOME_ICON.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_JUMP.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_LOGIN_BILI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_LOGIN_BILI.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_MOMOTALK_PARTNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_MOMOTALK_PARTNER.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_MOMOTALK_REPLY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_MOMOTALK_REPLY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_NEW_STORY_LEVEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_NEW_STORY_LEVEL.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_NORMAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_NORMAL.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_NOT_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_NOT_JUMP.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_ONE_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_ONE_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_QUIT_LAST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_QUIT_LAST.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_SHOP_CONTEST_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_SHOP_CONTEST_B.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_SHOP_CONTEST_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_SHOP_CONTEST_W.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_SHOP_REFRESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_SHOP_REFRESH.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_STORY_MENU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_STORY_MENU.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_STU_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_STU_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_TASK_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_TASK_START.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_TIMETABLE_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_TIMETABLE_START.png -------------------------------------------------------------------------------- /DATA/assets/BUTTON/BUTTON_USER_AGREEMENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/BUTTON/BUTTON_USER_AGREEMENT.png -------------------------------------------------------------------------------- /DATA/assets/ButtonName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/ButtonName.py -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_ASSAULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_ASSAULT.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_CAFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_CAFE.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_CLUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_CLUB.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_CONTEST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_CONTEST.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_CRAFT.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_EDIT_QUEST_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_EDIT_QUEST_TEAM.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_EDIT_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_EDIT_TEAM.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_EVENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_EVENT.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_EXAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_EXAM.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_EXCHANGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_EXCHANGE.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_EXCHANGE_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_EXCHANGE_SUB.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_FIGHT_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_FIGHT_CENTER.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_GRID_FIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_GRID_FIGHT.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_GRID_FIGHTING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_GRID_FIGHTING.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_HOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_HOME.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_LOADING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_LOADING.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_MAILBOX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_MAILBOX.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_QUEST_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_QUEST_SEL.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_SHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_SHOP.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_SPECIAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_SPECIAL.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_STORY_SELECT_SECTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_STORY_SELECT_SECTION.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_TASK_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_TASK_CENTER.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_TIMETABLE_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_TIMETABLE_SEL.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_WANTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_WANTED.png -------------------------------------------------------------------------------- /DATA/assets/PAGE/PAGE_WANTED_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PAGE/PAGE_WANTED_SUB.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_CAFE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_CAFE_INFO.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_CAFE_REPLACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_CAFE_REPLACE.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_CAFE_VISITED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_CAFE_VISITED.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_CHAPTER_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_CHAPTER_INFO.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_CONTEST_TARGET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_CONTEST_TARGET.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_FIGHT_RESULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_FIGHT_RESULT.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_LOGIN_FORM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_LOGIN_FORM.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_MOMOTALK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_MOMOTALK.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_SETTING_SELECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_SETTING_SELECT.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_TASK_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_TASK_INFO.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_TIMETABLE_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_TIMETABLE_ALL.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_TIMETABLE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_TIMETABLE_INFO.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_TOTAL_PRICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_TOTAL_PRICE.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_UPDATE_APP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_UPDATE_APP.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_UPDATE_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_UPDATE_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets/POPUP/POPUP_USE_DIAMOND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/POPUP/POPUP_USE_DIAMOND.png -------------------------------------------------------------------------------- /DATA/assets/PageName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PageName.py -------------------------------------------------------------------------------- /DATA/assets/PopupName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/PopupName.py -------------------------------------------------------------------------------- /DATA/assets/差异.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets/差异.md -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_ALL_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_ALL_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_ALL_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_ALL_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_ALL_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_ALL_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CAFE_CANINVITE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CAFE_CANINVITE.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CAFE_SET_ROOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CAFE_SET_ROOM.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CANCEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CANCEL.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CFIGHT_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CFIGHT_START.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CFIGHT_START_FANHEXIE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CFIGHT_START_FANHEXIE.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_COLLECT_REWARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_COLLECT_REWARD.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CONFIRMY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CONFIRMY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_DONT_SHOW_TODAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_DONT_SHOW_TODAY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_EDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_EDIT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_EVENT_DAILY_TASK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_EVENT_DAILY_TASK.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_EVENT_FIRST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_EVENT_FIRST.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_EVENT_QUEST_SELLECTED_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_EVENT_QUEST_SELLECTED_LEFT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_EXCHANGE_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_EXCHANGE_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_FINISH_9_DAILY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_FINISH_9_DAILY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_GOFIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_GOFIGHT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_GO_PARTNER_STORY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_GO_PARTNER_STORY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_HARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_HARD.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_HOME_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_HOME_ICON.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_JUMP.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_LOGIN_BILI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_LOGIN_BILI.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_MOMOTALK_PARTNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_MOMOTALK_PARTNER.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_MOMOTALK_REPLY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_MOMOTALK_REPLY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_NEW_STORY_LEVEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_NEW_STORY_LEVEL.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_NORMAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_NORMAL.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_NOT_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_NOT_JUMP.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_ONE_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_ONE_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_QUIT_LAST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_QUIT_LAST.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_SHOP_CONTEST_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_SHOP_CONTEST_B.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_SHOP_CONTEST_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_SHOP_CONTEST_W.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_SHOP_REFRESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_SHOP_REFRESH.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_STORY_MENU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_STORY_MENU.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_STU_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_STU_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_TASK_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_TASK_START.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_TIMETABLE_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_TIMETABLE_START.png -------------------------------------------------------------------------------- /DATA/assets_cn/BUTTON/BUTTON_USER_AGREEMENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/BUTTON/BUTTON_USER_AGREEMENT.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_ASSAULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_ASSAULT.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_CAFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_CAFE.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_CLUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_CLUB.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_CONTEST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_CONTEST.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_CRAFT.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_EDIT_QUEST_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_EDIT_QUEST_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_EDIT_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_EDIT_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_EVENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_EVENT.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_EXAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_EXAM.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_EXCHANGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_EXCHANGE.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_EXCHANGE_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_EXCHANGE_SUB.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_FIGHT_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_FIGHT_CENTER.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_GRID_FIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_GRID_FIGHT.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_GRID_FIGHTING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_GRID_FIGHTING.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_HOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_HOME.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_LOADING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_LOADING.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_MAILBOX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_MAILBOX.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_QUEST_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_QUEST_SEL.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_SHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_SHOP.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_SPECIAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_SPECIAL.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_STORY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_STORY.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_STORY_SELECT_SECTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_STORY_SELECT_SECTION.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_TASK_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_TASK_CENTER.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_TIMETABLE_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_TIMETABLE_SEL.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_WANTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_WANTED.png -------------------------------------------------------------------------------- /DATA/assets_cn/PAGE/PAGE_WANTED_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/PAGE/PAGE_WANTED_SUB.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_CAFE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_CAFE_INFO.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_CAFE_REPLACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_CAFE_REPLACE.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_CAFE_VISITED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_CAFE_VISITED.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_CHAPTER_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_CHAPTER_INFO.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_CONTEST_TARGET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_CONTEST_TARGET.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_FIGHT_RESULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_FIGHT_RESULT.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_LOGIN_FORM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_LOGIN_FORM.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_MOMOTALK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_MOMOTALK.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_MOMOTALK_FANHEXIE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_MOMOTALK_FANHEXIE.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_SETTING_SELECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_SETTING_SELECT.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_TASK_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_TASK_INFO.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_TASK_INFO_FANHEXIE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_TASK_INFO_FANHEXIE.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_TIMETABLE_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_TIMETABLE_ALL.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_TIMETABLE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_TIMETABLE_INFO.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_TOTAL_PRICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_TOTAL_PRICE.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_UPDATE_APP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_UPDATE_APP.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_UPDATE_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_UPDATE_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_cn/POPUP/POPUP_USE_DIAMOND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_cn/POPUP/POPUP_USE_DIAMOND.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_ALL_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_ALL_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_ALL_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_ALL_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_ALL_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_ALL_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CAFE_CANINVITE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CAFE_CANINVITE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CAFE_SET_ROOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CAFE_SET_ROOM.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CANCEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CANCEL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CFIGHT_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CFIGHT_START.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_COLLECT_REWARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_COLLECT_REWARD.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CONFIRMY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CONFIRMY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_DONT_SHOW_TODAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_DONT_SHOW_TODAY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_EDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_EDIT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_EVENT_DAILY_TASK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_EVENT_DAILY_TASK.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_EVENT_FIRST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_EVENT_FIRST.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_EXCHANGE_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_EXCHANGE_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_FINISH_9_DAILY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_FINISH_9_DAILY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_FREE_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_FREE_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_GOFIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_GOFIGHT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_GO_PARTNER_STORY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_GO_PARTNER_STORY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_HARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_HARD.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_HOME_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_HOME_ICON.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_JUMP.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_LOGIN_BILI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_LOGIN_BILI.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_MOMOTALK_PARTNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_MOMOTALK_PARTNER.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_MOMOTALK_REPLY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_MOMOTALK_REPLY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_NEW_STORY_LEVEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_NEW_STORY_LEVEL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_NORMAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_NORMAL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_NOT_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_NOT_JUMP.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_ONE_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_ONE_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_QUIT_LAST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_QUIT_LAST.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_SHOP_CONTEST_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_SHOP_CONTEST_B.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_SHOP_CONTEST_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_SHOP_CONTEST_W.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_SHOP_REFRESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_SHOP_REFRESH.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_STORY_MENU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_STORY_MENU.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_STU_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_STU_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_TASK_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_TASK_START.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_TIMETABLE_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_TIMETABLE_START.png -------------------------------------------------------------------------------- /DATA/assets_global_en/BUTTON/BUTTON_USER_AGREEMENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/BUTTON/BUTTON_USER_AGREEMENT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_ASSAULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_ASSAULT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_CAFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_CAFE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_CLUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_CLUB.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_CONTEST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_CONTEST.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_CRAFT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_EDIT_QUEST_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_EDIT_QUEST_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_EDIT_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_EDIT_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_EVENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_EVENT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_EXAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_EXAM.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_EXCHANGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_EXCHANGE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_EXCHANGE_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_EXCHANGE_SUB.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_FIGHT_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_FIGHT_CENTER.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_GRID_FIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_GRID_FIGHT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_GRID_FIGHTING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_GRID_FIGHTING.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_HOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_HOME.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_LOADING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_LOADING.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_MAILBOX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_MAILBOX.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_QUEST_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_QUEST_SEL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_SHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_SHOP.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_SPECIAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_SPECIAL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_STORY_SELECT_SECTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_STORY_SELECT_SECTION.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_TASK_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_TASK_CENTER.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_TIMETABLE_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_TIMETABLE_SEL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_WANTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_WANTED.png -------------------------------------------------------------------------------- /DATA/assets_global_en/PAGE/PAGE_WANTED_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/PAGE/PAGE_WANTED_SUB.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_CAFE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_CAFE_INFO.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_CAFE_REPLACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_CAFE_REPLACE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_CAFE_VISITED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_CAFE_VISITED.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_CHAPTER_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_CHAPTER_INFO.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_CONTEST_TARGET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_CONTEST_TARGET.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_FIGHT_RESULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_FIGHT_RESULT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_LOGIN_FORM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_LOGIN_FORM.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_MOMOTALK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_MOMOTALK.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_SETTING_SELECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_SETTING_SELECT.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_TASK_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_TASK_INFO.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_TIMETABLE_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_TIMETABLE_ALL.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_TIMETABLE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_TIMETABLE_INFO.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_TOTAL_PRICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_TOTAL_PRICE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_UPDATE_APP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_UPDATE_APP.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_UPDATE_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_UPDATE_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_global_en/POPUP/POPUP_USE_DIAMOND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_global_en/POPUP/POPUP_USE_DIAMOND.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_ALL_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_ALL_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_ALL_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_ALL_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_ALL_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_ALL_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CAFE_CANINVITE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CAFE_CANINVITE.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CAFE_CANNOT_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CAFE_SET_ROOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CAFE_SET_ROOM.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CANCEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CANCEL.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CFIGHT_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CFIGHT_START.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_COLLECT_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_COLLECT_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_COLLECT_REWARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_COLLECT_REWARD.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CONFIRMY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CONFIRMY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_CONTEST_COLLECT_BOTH_GRAY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_DONT_SHOW_TODAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_DONT_SHOW_TODAY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_EDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_EDIT.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_EVENT_DAILY_TASK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_EVENT_DAILY_TASK.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_EVENT_FIRST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_EVENT_FIRST.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_EVENT_QUEST_SELLECTED.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_EXCHANGE_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_EXCHANGE_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_FIGHT_RESULT_CONFIRMB.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_FINISH_9_DAILY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_FINISH_9_DAILY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_FREE_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_FREE_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_GOFIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_GOFIGHT.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_GO_PARTNER_STORY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_GO_PARTNER_STORY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_HARD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_HARD.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_HOME_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_HOME_ICON.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_JUMP.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_LOGIN_BILI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_LOGIN_BILI.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_MOMOTALK_PARTNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_MOMOTALK_PARTNER.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_MOMOTALK_REPLY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_MOMOTALK_REPLY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_NEW_STORY_LEVEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_NEW_STORY_LEVEL.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_NORMAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_NORMAL.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_NOT_JUMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_NOT_JUMP.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_ONE_COLLECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_ONE_COLLECT.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_QUIT_LAST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_QUIT_LAST.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_SHOP_BUY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_SHOP_BUY.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_SHOP_CONTEST_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_SHOP_CONTEST_B.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_SHOP_CONTEST_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_SHOP_CONTEST_W.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_SHOP_REFRESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_SHOP_REFRESH.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_STORY_MENU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_STORY_MENU.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_STU_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_STU_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_TASK_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_TASK_START.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_TIMETABLE_START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_TIMETABLE_START.png -------------------------------------------------------------------------------- /DATA/assets_jp/BUTTON/BUTTON_USER_AGREEMENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/BUTTON/BUTTON_USER_AGREEMENT.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_ASSAULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_ASSAULT.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_CAFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_CAFE.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_CLUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_CLUB.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_CONTEST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_CONTEST.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_CRAFT.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_EDIT_QUEST_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_EDIT_QUEST_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_EDIT_TEAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_EDIT_TEAM.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_EVENT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_EVENT.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_EXAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_EXAM.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_EXCHANGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_EXCHANGE.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_EXCHANGE_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_EXCHANGE_SUB.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_FIGHT_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_FIGHT_CENTER.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_GRID_FIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_GRID_FIGHT.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_GRID_FIGHTING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_GRID_FIGHTING.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_HOME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_HOME.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_LOADING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_LOADING.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_MAILBOX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_MAILBOX.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_QUEST_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_QUEST_SEL.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_SHOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_SHOP.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_SPECIAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_SPECIAL.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_STORY_SELECT_SECTION.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_STORY_SELECT_SECTION.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_TASK_CENTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_TASK_CENTER.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_TIMETABLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_TIMETABLE.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_TIMETABLE_SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_TIMETABLE_SEL.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_WANTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_WANTED.png -------------------------------------------------------------------------------- /DATA/assets_jp/PAGE/PAGE_WANTED_SUB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/PAGE/PAGE_WANTED_SUB.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_CAFE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_CAFE_INFO.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_CAFE_REPLACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_CAFE_REPLACE.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_CAFE_VISITED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_CAFE_VISITED.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_CHAPTER_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_CHAPTER_INFO.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_CONTEST_TARGET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_CONTEST_TARGET.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_EASY_QUEST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_EASY_QUEST.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_FIGHT_RESULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_FIGHT_RESULT.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_LOGIN_FORM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_LOGIN_FORM.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_MOMOTALK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_MOMOTALK.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_SETTING_SELECT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_SETTING_SELECT.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_TASK_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_TASK_INFO.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_TIMETABLE_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_TIMETABLE_ALL.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_TIMETABLE_INFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_TIMETABLE_INFO.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_TOTAL_PRICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_TOTAL_PRICE.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_UPDATE_APP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_UPDATE_APP.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_UPDATE_NOTICE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_UPDATE_NOTICE.png -------------------------------------------------------------------------------- /DATA/assets_jp/POPUP/POPUP_USE_DIAMOND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/assets_jp/POPUP/POPUP_USE_DIAMOND.png -------------------------------------------------------------------------------- /DATA/grid_solution/grid_solution_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/grid_solution_format.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/1-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/1-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/1-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/1-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/1-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/1-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/1-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/1-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/1-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/1-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/10-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/10-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/10-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/10-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/10-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/10-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/10-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/10-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/10-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/10-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/11-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/11-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/11-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/11-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/11-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/11-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/11-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/11-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/11-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/11-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/12-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/12-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/12-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/12-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/12-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/12-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/12-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/12-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/12-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/12-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/13-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/13-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/13-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/13-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/13-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/13-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/13-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/13-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/13-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/13-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/14-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/14-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/14-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/14-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/14-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/14-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/14-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/14-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/14-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/14-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/15-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/15-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/15-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/15-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/15-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/15-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/15-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/15-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/15-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/15-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/16-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/16-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/16-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/16-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/16-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/16-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/16-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/16-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/16-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/16-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/17-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/17-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/17-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/17-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/17-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/17-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/17-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/17-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/17-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/17-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/18-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/18-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/18-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/18-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/18-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/18-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/18-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/18-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/18-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/18-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/19-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/19-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/19-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/19-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/19-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/19-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/19-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/19-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/19-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/19-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/2-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/2-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/2-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/2-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/2-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/2-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/2-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/2-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/2-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/2-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/20-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/20-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/20-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/20-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/20-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/20-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/20-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/20-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/20-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/20-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/21-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/21-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/21-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/21-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/21-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/21-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/21-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/21-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/21-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/21-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/22-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/22-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/22-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/22-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/22-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/22-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/22-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/22-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/22-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/22-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/23-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/23-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/23-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/23-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/23-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/23-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/23-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/23-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/23-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/23-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/24-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/24-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/24-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/24-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/24-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/24-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/24-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/24-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/24-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/24-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/25-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/25-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/25-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/25-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/25-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/25-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/25-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/25-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/25-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/25-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/26-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/26-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/26-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/26-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/26-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/26-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/26-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/26-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/26-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/26-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/27-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/27-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/27-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/27-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/27-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/27-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/27-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/27-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/27-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/27-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/28-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/28-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/28-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/28-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/28-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/28-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/28-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/28-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/28-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/28-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/29-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/29-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/29-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/29-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/29-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/29-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/29-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/29-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/29-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/29-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/3-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/3-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/3-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/3-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/3-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/3-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/3-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/3-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/3-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/3-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/4-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/4-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/4-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/4-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/4-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/4-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/4-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/4-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/4-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/4-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/5-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/5-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/5-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/5-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/5-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/5-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/5-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/5-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/5-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/5-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/6-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/6-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/6-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/6-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/6-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/6-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/6-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/6-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/6-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/6-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/7-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/7-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/7-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/7-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/7-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/7-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/7-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/7-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/7-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/7-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/8-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/8-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/8-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/8-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/8-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/8-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/8-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/8-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/8-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/8-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/9-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/9-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/9-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/9-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/9-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/9-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/9-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/9-4.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/9-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/9-5.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H1-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H1-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H1-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H1-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H1-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H1-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H10-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H10-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H10-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H10-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H10-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H10-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H11-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H11-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H11-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H11-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H11-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H11-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H12-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H12-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H12-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H12-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H12-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H12-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H13-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H13-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H13-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H13-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H13-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H13-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H14-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H14-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H14-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H14-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H14-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H14-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H15-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H15-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H15-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H15-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H15-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H15-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H16-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H16-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H16-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H16-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H16-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H16-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H17-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H17-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H17-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H17-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H17-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H17-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H18-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H18-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H18-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H18-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H18-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H18-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H19-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H19-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H19-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H19-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H19-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H19-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H2-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H2-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H2-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H2-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H2-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H2-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H20-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H20-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H20-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H20-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H20-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H20-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H21-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H21-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H21-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H21-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H21-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H21-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H22-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H22-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H22-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H22-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H22-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H22-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H23-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H23-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H23-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H23-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H23-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H23-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H24-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H24-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H24-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H24-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H24-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H24-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H25-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H25-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H25-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H25-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H25-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H25-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H26-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H26-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H26-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H26-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H26-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H26-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H27-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H27-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H27-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H27-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H27-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H27-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H28-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H28-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H28-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H28-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H28-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H28-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H29-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H29-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H29-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H29-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H29-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H29-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H3-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H3-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H3-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H3-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H3-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H3-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H4-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H4-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H4-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H4-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H4-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H4-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H5-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H5-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H5-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H5-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H5-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H5-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H6-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H6-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H6-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H6-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H6-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H6-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H7-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H7-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H7-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H7-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H7-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H7-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H8-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H8-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H8-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H8-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H8-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H8-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H9-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H9-1.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H9-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H9-2.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/H9-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/H9-3.json -------------------------------------------------------------------------------- /DATA/grid_solution/quest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/grid_solution/quest/README.txt -------------------------------------------------------------------------------- /DATA/i18n/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/i18n/en_US.json -------------------------------------------------------------------------------- /DATA/i18n/jp_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/i18n/jp_JP.json -------------------------------------------------------------------------------- /DATA/i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/i18n/zh_CN.json -------------------------------------------------------------------------------- /DATA/icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/icons/README.md -------------------------------------------------------------------------------- /DATA/icons/aris.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/icons/aris.ico -------------------------------------------------------------------------------- /DATA/icons/kayoko.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/icons/kayoko.ico -------------------------------------------------------------------------------- /DATA/icons/kei.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/icons/kei.ico -------------------------------------------------------------------------------- /DATA/touch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/DATA/touch.zip -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/Dockerfile.CN -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/README.md -------------------------------------------------------------------------------- /define_actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/define_actions/__init__.py -------------------------------------------------------------------------------- /define_actions/basic_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/define_actions/basic_objects.py -------------------------------------------------------------------------------- /define_actions/define_flow_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/define_actions/define_flow_items.py -------------------------------------------------------------------------------- /define_actions/define_main_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/define_actions/define_main_actions.py -------------------------------------------------------------------------------- /define_actions/define_pre_judges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/define_actions/define_pre_judges.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/README_cn.md -------------------------------------------------------------------------------- /docs/README_dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/README_dev.md -------------------------------------------------------------------------------- /docs/README_dev_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/README_dev_en.md -------------------------------------------------------------------------------- /docs/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/README_en.md -------------------------------------------------------------------------------- /docs/static/GUI_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/static/GUI_CN.png -------------------------------------------------------------------------------- /docs/static/GUI_EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/static/GUI_EN.png -------------------------------------------------------------------------------- /docs/static/GUI_JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/static/GUI_JP.png -------------------------------------------------------------------------------- /docs/static/aris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/static/aris.png -------------------------------------------------------------------------------- /docs/static/kei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/docs/static/kei.png -------------------------------------------------------------------------------- /gui/components/check_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/check_update.py -------------------------------------------------------------------------------- /gui/components/cut_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/cut_screenshot.py -------------------------------------------------------------------------------- /gui/components/edit_team_strength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/edit_team_strength.py -------------------------------------------------------------------------------- /gui/components/exec_arg_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/exec_arg_parse.py -------------------------------------------------------------------------------- /gui/components/fast_run_task_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/fast_run_task_buttons.py -------------------------------------------------------------------------------- /gui/components/get_app_entrance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/get_app_entrance.py -------------------------------------------------------------------------------- /gui/components/json_file_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/json_file_docker.py -------------------------------------------------------------------------------- /gui/components/list_edit_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/list_edit_area.py -------------------------------------------------------------------------------- /gui/components/manage_baah_in_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/manage_baah_in_gui.py -------------------------------------------------------------------------------- /gui/components/running_task_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/components/running_task_pool.py -------------------------------------------------------------------------------- /gui/define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/define.py -------------------------------------------------------------------------------- /gui/pages/Setting_Assault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_Assault.py -------------------------------------------------------------------------------- /gui/pages/Setting_BAAH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_BAAH.py -------------------------------------------------------------------------------- /gui/pages/Setting_BuyAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_BuyAP.py -------------------------------------------------------------------------------- /gui/pages/Setting_Craft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_Craft.py -------------------------------------------------------------------------------- /gui/pages/Setting_Login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_Login.py -------------------------------------------------------------------------------- /gui/pages/Setting_Oneclick_Raid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_Oneclick_Raid.py -------------------------------------------------------------------------------- /gui/pages/Setting_UserTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_UserTask.py -------------------------------------------------------------------------------- /gui/pages/Setting_cafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_cafe.py -------------------------------------------------------------------------------- /gui/pages/Setting_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_emulator.py -------------------------------------------------------------------------------- /gui/pages/Setting_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_event.py -------------------------------------------------------------------------------- /gui/pages/Setting_exam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_exam.py -------------------------------------------------------------------------------- /gui/pages/Setting_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_exchange.py -------------------------------------------------------------------------------- /gui/pages/Setting_explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_explore.py -------------------------------------------------------------------------------- /gui/pages/Setting_hard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_hard.py -------------------------------------------------------------------------------- /gui/pages/Setting_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_normal.py -------------------------------------------------------------------------------- /gui/pages/Setting_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_notification.py -------------------------------------------------------------------------------- /gui/pages/Setting_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_other.py -------------------------------------------------------------------------------- /gui/pages/Setting_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_server.py -------------------------------------------------------------------------------- /gui/pages/Setting_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_shop.py -------------------------------------------------------------------------------- /gui/pages/Setting_special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_special.py -------------------------------------------------------------------------------- /gui/pages/Setting_task_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_task_order.py -------------------------------------------------------------------------------- /gui/pages/Setting_timetable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_timetable.py -------------------------------------------------------------------------------- /gui/pages/Setting_vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_vpn.py -------------------------------------------------------------------------------- /gui/pages/Setting_wanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/pages/Setting_wanted.py -------------------------------------------------------------------------------- /gui/refactor_pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/refactor_pages/__init__.py -------------------------------------------------------------------------------- /gui/refactor_pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/refactor_pages/home.py -------------------------------------------------------------------------------- /gui/refactor_pages/json_set_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/gui/refactor_pages/json_set_panel.py -------------------------------------------------------------------------------- /jsoneditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/jsoneditor.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/main.py -------------------------------------------------------------------------------- /modules/AllPage/Page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllPage/Page.py -------------------------------------------------------------------------------- /modules/AllTask/AutoAssault/AutoAssault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/AutoAssault/AutoAssault.py -------------------------------------------------------------------------------- /modules/AllTask/AutoAssault/CollectAssaultReward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/AutoAssault/CollectAssaultReward.py -------------------------------------------------------------------------------- /modules/AllTask/AutoStory/AutoStory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/AutoStory/AutoStory.py -------------------------------------------------------------------------------- /modules/AllTask/AutoStory/SolveMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/AutoStory/SolveMain.py -------------------------------------------------------------------------------- /modules/AllTask/AutoStory/SolveShortOrSide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/AutoStory/SolveShortOrSide.py -------------------------------------------------------------------------------- /modules/AllTask/AutoStory/StoryHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/AutoStory/StoryHelper.py -------------------------------------------------------------------------------- /modules/AllTask/BuyAP/BuyAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/BuyAP/BuyAP.py -------------------------------------------------------------------------------- /modules/AllTask/CollectDailyRewards/CollectDailyRewards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/CollectDailyRewards/CollectDailyRewards.py -------------------------------------------------------------------------------- /modules/AllTask/CollectMails/CollectMails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/CollectMails/CollectMails.py -------------------------------------------------------------------------------- /modules/AllTask/EnterGame/CloseInform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/EnterGame/CloseInform.py -------------------------------------------------------------------------------- /modules/AllTask/EnterGame/EnterGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/EnterGame/EnterGame.py -------------------------------------------------------------------------------- /modules/AllTask/EnterGame/GameUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/EnterGame/GameUpdate.py -------------------------------------------------------------------------------- /modules/AllTask/EnterGame/Loginin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/EnterGame/Loginin.py -------------------------------------------------------------------------------- /modules/AllTask/InCafe/CollectPower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InCafe/CollectPower.py -------------------------------------------------------------------------------- /modules/AllTask/InCafe/InCafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InCafe/InCafe.py -------------------------------------------------------------------------------- /modules/AllTask/InCafe/InviteStudent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InCafe/InviteStudent.py -------------------------------------------------------------------------------- /modules/AllTask/InCafe/TouchHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InCafe/TouchHead.py -------------------------------------------------------------------------------- /modules/AllTask/InClub/InClub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InClub/InClub.py -------------------------------------------------------------------------------- /modules/AllTask/InContest/InContest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InContest/InContest.py -------------------------------------------------------------------------------- /modules/AllTask/InCraft/InCraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InCraft/InCraft.py -------------------------------------------------------------------------------- /modules/AllTask/InEvent/EventQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InEvent/EventQuest.py -------------------------------------------------------------------------------- /modules/AllTask/InEvent/EventStory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InEvent/EventStory.py -------------------------------------------------------------------------------- /modules/AllTask/InEvent/InEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InEvent/InEvent.py -------------------------------------------------------------------------------- /modules/AllTask/InEventRecap/InEventRecap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InEventRecap/InEventRecap.py -------------------------------------------------------------------------------- /modules/AllTask/InExam/InExam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InExam/InExam.py -------------------------------------------------------------------------------- /modules/AllTask/InExchange/InExchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InExchange/InExchange.py -------------------------------------------------------------------------------- /modules/AllTask/InExchange/RunExchangeFight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InExchange/RunExchangeFight.py -------------------------------------------------------------------------------- /modules/AllTask/InFreeAward/InFreeAward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InFreeAward/InFreeAward.py -------------------------------------------------------------------------------- /modules/AllTask/InMomotalk/InMomotalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InMomotalk/InMomotalk.py -------------------------------------------------------------------------------- /modules/AllTask/InQuest/HardQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InQuest/HardQuest.py -------------------------------------------------------------------------------- /modules/AllTask/InQuest/InQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InQuest/InQuest.py -------------------------------------------------------------------------------- /modules/AllTask/InQuest/NormalQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InQuest/NormalQuest.py -------------------------------------------------------------------------------- /modules/AllTask/InQuest/OneClickQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InQuest/OneClickQuest.py -------------------------------------------------------------------------------- /modules/AllTask/InQuest/PushQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InQuest/PushQuest.py -------------------------------------------------------------------------------- /modules/AllTask/InQuest/Questhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InQuest/Questhelper.py -------------------------------------------------------------------------------- /modules/AllTask/InShop/BuyItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InShop/BuyItems.py -------------------------------------------------------------------------------- /modules/AllTask/InShop/ContestItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InShop/ContestItems.py -------------------------------------------------------------------------------- /modules/AllTask/InShop/InShop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InShop/InShop.py -------------------------------------------------------------------------------- /modules/AllTask/InShop/NormalItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InShop/NormalItems.py -------------------------------------------------------------------------------- /modules/AllTask/InSpecial/InSpecial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InSpecial/InSpecial.py -------------------------------------------------------------------------------- /modules/AllTask/InSpecial/RunSpecialFight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InSpecial/RunSpecialFight.py -------------------------------------------------------------------------------- /modules/AllTask/InTimeTable/IdentifyRoomHreatNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InTimeTable/IdentifyRoomHreatNumber.py -------------------------------------------------------------------------------- /modules/AllTask/InTimeTable/InTimeTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InTimeTable/InTimeTable.py -------------------------------------------------------------------------------- /modules/AllTask/InTimeTable/LocationSelect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InTimeTable/LocationSelect.py -------------------------------------------------------------------------------- /modules/AllTask/InTimeTable/SmartSelect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InTimeTable/SmartSelect.py -------------------------------------------------------------------------------- /modules/AllTask/InWanted/InWanted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InWanted/InWanted.py -------------------------------------------------------------------------------- /modules/AllTask/InWanted/RunWantedFight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/InWanted/RunWantedFight.py -------------------------------------------------------------------------------- /modules/AllTask/PostAllTask/PostAllTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/PostAllTask/PostAllTask.py -------------------------------------------------------------------------------- /modules/AllTask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/README.md -------------------------------------------------------------------------------- /modules/AllTask/SolveChallenge/SolveChallenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SolveChallenge/SolveChallenge.py -------------------------------------------------------------------------------- /modules/AllTask/SubTask/ExecCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SubTask/ExecCode.py -------------------------------------------------------------------------------- /modules/AllTask/SubTask/FightQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SubTask/FightQuest.py -------------------------------------------------------------------------------- /modules/AllTask/SubTask/GridQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SubTask/GridQuest.py -------------------------------------------------------------------------------- /modules/AllTask/SubTask/RaidQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SubTask/RaidQuest.py -------------------------------------------------------------------------------- /modules/AllTask/SubTask/ScrollSelect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SubTask/ScrollSelect.py -------------------------------------------------------------------------------- /modules/AllTask/SubTask/SkipStory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/SubTask/SkipStory.py -------------------------------------------------------------------------------- /modules/AllTask/Task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/Task.py -------------------------------------------------------------------------------- /modules/AllTask/UserTask/UserTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/UserTask/UserTask.py -------------------------------------------------------------------------------- /modules/AllTask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/__init__.py -------------------------------------------------------------------------------- /modules/AllTask/ataskformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/ataskformat.py -------------------------------------------------------------------------------- /modules/AllTask/myAllTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/AllTask/myAllTask.py -------------------------------------------------------------------------------- /modules/configs/MyConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/configs/MyConfig.py -------------------------------------------------------------------------------- /modules/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/configs/defaultSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/configs/defaultSettings.py -------------------------------------------------------------------------------- /modules/configs/myversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/configs/myversion.py -------------------------------------------------------------------------------- /modules/configs/settingMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/configs/settingMaps.py -------------------------------------------------------------------------------- /modules/utils/I18nstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/I18nstr.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/__init__.py -------------------------------------------------------------------------------- /modules/utils/adb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/adb_utils.py -------------------------------------------------------------------------------- /modules/utils/baah_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/baah_exceptions.py -------------------------------------------------------------------------------- /modules/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/data_utils.py -------------------------------------------------------------------------------- /modules/utils/grid_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/grid_analyze.py -------------------------------------------------------------------------------- /modules/utils/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/image_processing.py -------------------------------------------------------------------------------- /modules/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/log_utils.py -------------------------------------------------------------------------------- /modules/utils/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/notification.py -------------------------------------------------------------------------------- /modules/utils/subprocess_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/modules/utils/subprocess_helper.py -------------------------------------------------------------------------------- /package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/package.py -------------------------------------------------------------------------------- /pythonrun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/pythonrun.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/test.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueArchiveArisHelper/BAAH/HEAD/update.py --------------------------------------------------------------------------------