diff --git a/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.BUTTON.png b/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.BUTTON.png index e686a7b8e..bc5de00fd 100644 Binary files a/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.BUTTON.png and b/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.BUTTON.png differ diff --git a/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.SEARCH.png b/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.SEARCH.png new file mode 100644 index 000000000..1ff4a3a81 Binary files /dev/null and b/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.SEARCH.png differ diff --git a/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.png b/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.png index 2bf9e0002..a759c117f 100644 Binary files a/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.png and b/assets/share/base/popup/BATTLE_PASS_NOTIFICATION.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_1.BUTTON.png b/assets/share/forgotten_hall/team/CHARACTER_1.BUTTON.png index 38907e7e2..14de6a2ff 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_1.BUTTON.png and b/assets/share/forgotten_hall/team/CHARACTER_1.BUTTON.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_1.png b/assets/share/forgotten_hall/team/CHARACTER_1.png index ab5d74189..656fef4a9 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_1.png and b/assets/share/forgotten_hall/team/CHARACTER_1.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_2.BUTTON.png b/assets/share/forgotten_hall/team/CHARACTER_2.BUTTON.png index 847349c3d..e4d9dcee7 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_2.BUTTON.png and b/assets/share/forgotten_hall/team/CHARACTER_2.BUTTON.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_2.png b/assets/share/forgotten_hall/team/CHARACTER_2.png index 38537f613..688cfac3d 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_2.png and b/assets/share/forgotten_hall/team/CHARACTER_2.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_3.BUTTON.png b/assets/share/forgotten_hall/team/CHARACTER_3.BUTTON.png index be6e456db..3bf841e3f 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_3.BUTTON.png and b/assets/share/forgotten_hall/team/CHARACTER_3.BUTTON.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_3.png b/assets/share/forgotten_hall/team/CHARACTER_3.png index 1dd0120f8..5c5834a9b 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_3.png and b/assets/share/forgotten_hall/team/CHARACTER_3.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_4.BUTTON.png b/assets/share/forgotten_hall/team/CHARACTER_4.BUTTON.png index a9888f78a..85dd13fb0 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_4.BUTTON.png and b/assets/share/forgotten_hall/team/CHARACTER_4.BUTTON.png differ diff --git a/assets/share/forgotten_hall/team/CHARACTER_4.png b/assets/share/forgotten_hall/team/CHARACTER_4.png index 60979c128..a4708cbd0 100644 Binary files a/assets/share/forgotten_hall/team/CHARACTER_4.png and b/assets/share/forgotten_hall/team/CHARACTER_4.png differ diff --git a/tasks/base/assets/assets_base_popup.py b/tasks/base/assets/assets_base_popup.py index 1489417f0..e5f762dd4 100644 --- a/tasks/base/assets/assets_base_popup.py +++ b/tasks/base/assets/assets_base_popup.py @@ -7,10 +7,10 @@ BATTLE_PASS_NOTIFICATION = ButtonWrapper( name='BATTLE_PASS_NOTIFICATION', share=Button( file='./assets/share/base/popup/BATTLE_PASS_NOTIFICATION.png', - area=(960, 601, 984, 625), - search=(940, 581, 1004, 645), - color=(137, 127, 109), - button=(895, 595, 1180, 630), + area=(922, 592, 944, 614), + search=(850, 589, 952, 618), + color=(122, 112, 93), + button=(918, 587, 1079, 619), ), ) GET_LIGHT_CONE = ButtonWrapper( diff --git a/tasks/forgotten_hall/assets/assets_forgotten_hall_team.py b/tasks/forgotten_hall/assets/assets_forgotten_hall_team.py index 14bacbcbb..51800d0b3 100644 --- a/tasks/forgotten_hall/assets/assets_forgotten_hall_team.py +++ b/tasks/forgotten_hall/assets/assets_forgotten_hall_team.py @@ -7,39 +7,39 @@ CHARACTER_1 = ButtonWrapper( name='CHARACTER_1', share=Button( file='./assets/share/forgotten_hall/team/CHARACTER_1.png', - area=(44, 166, 140, 190), - search=(24, 146, 160, 210), + area=(44, 172, 140, 196), + search=(24, 152, 160, 216), color=(211, 210, 213), - button=(44, 100, 140, 211), + button=(44, 106, 140, 217), ), ) CHARACTER_2 = ButtonWrapper( name='CHARACTER_2', share=Button( file='./assets/share/forgotten_hall/team/CHARACTER_2.png', - area=(150, 166, 246, 190), - search=(130, 146, 266, 210), + area=(150, 172, 246, 196), + search=(130, 152, 266, 216), color=(212, 211, 210), - button=(150, 100, 246, 212), + button=(150, 106, 246, 218), ), ) CHARACTER_3 = ButtonWrapper( name='CHARACTER_3', share=Button( file='./assets/share/forgotten_hall/team/CHARACTER_3.png', - area=(256, 166, 352, 190), - search=(236, 146, 372, 210), + area=(256, 172, 352, 196), + search=(236, 152, 372, 216), color=(214, 211, 212), - button=(256, 100, 352, 212), + button=(256, 106, 352, 218), ), ) CHARACTER_4 = ButtonWrapper( name='CHARACTER_4', share=Button( file='./assets/share/forgotten_hall/team/CHARACTER_4.png', - area=(44, 298, 140, 322), - search=(24, 278, 160, 342), + area=(44, 304, 140, 328), + search=(24, 284, 160, 348), color=(212, 211, 213), - button=(44, 232, 140, 344), + button=(44, 238, 140, 350), ), )