diff --git a/assets/en/daily/camera/PICTURE_TAKEN.png b/assets/en/daily/camera/PICTURE_TAKEN.png new file mode 100644 index 000000000..b4a0ce015 Binary files /dev/null and b/assets/en/daily/camera/PICTURE_TAKEN.png differ diff --git a/assets/en/daily/synthesize_consumable/RECIPE_UNLOCK.png b/assets/en/daily/synthesize_consumable/RECIPE_UNLOCK.png new file mode 100644 index 000000000..f6cca9f15 Binary files /dev/null and b/assets/en/daily/synthesize_consumable/RECIPE_UNLOCK.png differ diff --git a/assets/en/daily/synthesize_consumable/SYNTHESIZE_CONFIRM.png b/assets/en/daily/synthesize_consumable/SYNTHESIZE_CONFIRM.png new file mode 100644 index 000000000..03a0e2e0f Binary files /dev/null and b/assets/en/daily/synthesize_consumable/SYNTHESIZE_CONFIRM.png differ diff --git a/assets/en/item/consumable_usage/USE_CONSUMABLE.png b/assets/en/item/consumable_usage/USE_CONSUMABLE.png new file mode 100644 index 000000000..27e314e27 Binary files /dev/null and b/assets/en/item/consumable_usage/USE_CONSUMABLE.png differ diff --git a/tasks/daily/assets/assets_daily_camera.py b/tasks/daily/assets/assets_daily_camera.py index 8a58062f1..c54b4e8bd 100644 --- a/tasks/daily/assets/assets_daily_camera.py +++ b/tasks/daily/assets/assets_daily_camera.py @@ -12,7 +12,13 @@ PICTURE_TAKEN = ButtonWrapper( color=(153, 153, 155), button=(1030, 620, 1069, 639), ), - en=None, + en=Button( + file='./assets/en/daily/camera/PICTURE_TAKEN.png', + area=(1027, 622, 1072, 638), + search=(1007, 602, 1092, 658), + color=(160, 161, 162), + button=(1027, 622, 1072, 638), + ), ) TAKE_PICTURE = ButtonWrapper( name='TAKE_PICTURE', diff --git a/tasks/daily/assets/assets_daily_synthesize_consumable.py b/tasks/daily/assets/assets_daily_synthesize_consumable.py index 4e9d84ee2..87043b768 100644 --- a/tasks/daily/assets/assets_daily_synthesize_consumable.py +++ b/tasks/daily/assets/assets_daily_synthesize_consumable.py @@ -72,7 +72,13 @@ RECIPE_UNLOCK = ButtonWrapper( color=(167, 167, 167), button=(836, 647, 913, 668), ), - en=None, + en=Button( + file='./assets/en/daily/synthesize_consumable/RECIPE_UNLOCK.png', + area=(803, 646, 944, 671), + search=(783, 626, 964, 691), + color=(197, 198, 200), + button=(803, 646, 944, 671), + ), ) SIMPLE_PROTECTIVE_GEAR = ButtonWrapper( name='SIMPLE_PROTECTIVE_GEAR', @@ -103,7 +109,13 @@ SYNTHESIZE_CONFIRM = ButtonWrapper( color=(189, 190, 190), button=(847, 645, 895, 672), ), - en=None, + en=Button( + file='./assets/en/daily/synthesize_consumable/SYNTHESIZE_CONFIRM.png', + area=(812, 645, 927, 673), + search=(792, 625, 947, 693), + color=(195, 196, 197), + button=(812, 645, 927, 673), + ), ) SYNTHESIZE_CONSUMABLES_CHECK = ButtonWrapper( name='SYNTHESIZE_CONSUMABLES_CHECK', diff --git a/tasks/item/assets/assets_item_consumable_usage.py b/tasks/item/assets/assets_item_consumable_usage.py index e058c3730..1670c72b3 100644 --- a/tasks/item/assets/assets_item_consumable_usage.py +++ b/tasks/item/assets/assets_item_consumable_usage.py @@ -42,5 +42,11 @@ USE_CONSUMABLE = ButtonWrapper( color=(158, 158, 159), button=(1042, 647, 1084, 669), ), - en=None, + en=Button( + file='./assets/en/item/consumable_usage/USE_CONSUMABLE.png', + area=(1037, 643, 1091, 672), + search=(1017, 623, 1111, 692), + color=(206, 207, 208), + button=(1037, 643, 1091, 672), + ), )