├── manifest.json ├── pack_icon.png ├── readme.md ├── sounds └── sound_definitions.json ├── texts ├── bg_BG.lang ├── cs_CZ.lang ├── da_DK.lang ├── de_DE.lang ├── el_GR.lang ├── en_GB.lang ├── en_US.lang ├── es_ES.lang ├── es_MX.lang ├── fi_FI.lang ├── fr_CA.lang ├── fr_FR.lang ├── hu_HU.lang ├── id_ID.lang ├── it_IT.lang ├── ja_JP.lang ├── ko_KR.lang ├── nb_NO.lang ├── nl_NL.lang ├── pl_PL.lang ├── pt_BR.lang ├── pt_PT.lang ├── ru_RU.lang ├── sk_SK.lang ├── sv_SE.lang ├── tr_TR.lang ├── uk_UA.lang ├── zh_CN.lang └── zh_TW.lang ├── textures ├── environment │ ├── destroy_stage_0.png │ ├── destroy_stage_1.png │ ├── destroy_stage_2.png │ ├── destroy_stage_3.png │ ├── destroy_stage_4.png │ ├── destroy_stage_5.png │ ├── destroy_stage_6.png │ ├── destroy_stage_7.png │ ├── destroy_stage_8.png │ └── destroy_stage_9.png ├── misc │ └── pumpkinblur.png └── ui │ ├── arrow_down_gs.png │ ├── arrow_up_gs.png │ ├── f1button.png │ ├── f8button.png │ ├── gamertag_back.json │ ├── gamertag_back.png │ ├── gamertag_hover.json │ ├── gamertag_hover.png │ ├── gote_support_config_icon.png │ ├── gote_support_icon.png │ ├── goteinfo_button_default.json │ ├── goteinfo_button_default.png │ ├── goteinfo_button_hover.json │ ├── goteinfo_button_hover.png │ ├── goteinfo_button_sel.png │ ├── goteinfo_close_button_default.png │ ├── goteinfo_close_button_hover.png │ ├── goteinfo_panel.json │ ├── goteinfo_panel.png │ ├── hotbar_hidari.png │ ├── hotbar_migi.png │ ├── howtoplay_icon.png │ ├── info_icon.png │ ├── info_line.json │ ├── info_line.png │ ├── info_line_v.json │ ├── info_line_v.png │ ├── invite_mail.png │ ├── ms_warning.png │ ├── onpu.png │ ├── playsound_play.png │ ├── playsound_stop.png │ ├── spyglass_scope.png │ ├── switch_toggle.png │ ├── yuka0813.png │ └── yume_dream.jpg └── ui ├── _change_logs_gote.json ├── _global_variables.json ├── _gote_assets.json ├── _ui_defs.json ├── anvil_screen.json ├── anvil_screen_pocket.json ├── beacon_screen.json ├── brewing_stand_screen.json ├── cartography_screen.json ├── chat_screen.json ├── chest_screen.json ├── command_block_screen.json ├── edu_pause_screen.json ├── enchanting_screen.json ├── furnace_screen.json ├── gotemba ├── gote_info_screen.json └── gote_info_sections.json ├── grindstone_screen.json ├── horse_screen.json ├── hud_screen.json ├── inventory_screen.json ├── loom_screen.json ├── npc_interact_screen.json ├── pause_screen.json ├── pause_screen_v16.json ├── play_screen.json ├── profile_card.json ├── redstone_screen.json ├── safe_zone_screen.json ├── scoreboards.json ├── server_form.json ├── settings_screen.json ├── settings_sections ├── controls_section.json ├── general_section.json ├── gote_section.json └── world_section.json ├── smithing_table_screen.json ├── start_screen.json ├── stonecutter_screen.json ├── storage_management.json ├── tabbed_upsell_screen.json ├── thanks_for_testing_screen.json ├── trade_2_screen.json ├── trade_screen.json ├── ui_common.json └── win10_trial_conversion_screen.json /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/manifest.json -------------------------------------------------------------------------------- /pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/pack_icon.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/readme.md -------------------------------------------------------------------------------- /sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/sounds/sound_definitions.json -------------------------------------------------------------------------------- /texts/bg_BG.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/bg_BG.lang -------------------------------------------------------------------------------- /texts/cs_CZ.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/cs_CZ.lang -------------------------------------------------------------------------------- /texts/da_DK.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/da_DK.lang -------------------------------------------------------------------------------- /texts/de_DE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/de_DE.lang -------------------------------------------------------------------------------- /texts/el_GR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/el_GR.lang -------------------------------------------------------------------------------- /texts/en_GB.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/en_GB.lang -------------------------------------------------------------------------------- /texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/en_US.lang -------------------------------------------------------------------------------- /texts/es_ES.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/es_ES.lang -------------------------------------------------------------------------------- /texts/es_MX.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/es_MX.lang -------------------------------------------------------------------------------- /texts/fi_FI.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/fi_FI.lang -------------------------------------------------------------------------------- /texts/fr_CA.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/fr_CA.lang -------------------------------------------------------------------------------- /texts/fr_FR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/fr_FR.lang -------------------------------------------------------------------------------- /texts/hu_HU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/hu_HU.lang -------------------------------------------------------------------------------- /texts/id_ID.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/id_ID.lang -------------------------------------------------------------------------------- /texts/it_IT.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/it_IT.lang -------------------------------------------------------------------------------- /texts/ja_JP.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/ja_JP.lang -------------------------------------------------------------------------------- /texts/ko_KR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/ko_KR.lang -------------------------------------------------------------------------------- /texts/nb_NO.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/nb_NO.lang -------------------------------------------------------------------------------- /texts/nl_NL.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/nl_NL.lang -------------------------------------------------------------------------------- /texts/pl_PL.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/pl_PL.lang -------------------------------------------------------------------------------- /texts/pt_BR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/pt_BR.lang -------------------------------------------------------------------------------- /texts/pt_PT.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/pt_PT.lang -------------------------------------------------------------------------------- /texts/ru_RU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/ru_RU.lang -------------------------------------------------------------------------------- /texts/sk_SK.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/sk_SK.lang -------------------------------------------------------------------------------- /texts/sv_SE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/sv_SE.lang -------------------------------------------------------------------------------- /texts/tr_TR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/tr_TR.lang -------------------------------------------------------------------------------- /texts/uk_UA.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/uk_UA.lang -------------------------------------------------------------------------------- /texts/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/zh_CN.lang -------------------------------------------------------------------------------- /texts/zh_TW.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/texts/zh_TW.lang -------------------------------------------------------------------------------- /textures/environment/destroy_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_0.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_1.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_2.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_3.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_4.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_5.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_6.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_7.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_8.png -------------------------------------------------------------------------------- /textures/environment/destroy_stage_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/environment/destroy_stage_9.png -------------------------------------------------------------------------------- /textures/misc/pumpkinblur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/misc/pumpkinblur.png -------------------------------------------------------------------------------- /textures/ui/arrow_down_gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/arrow_down_gs.png -------------------------------------------------------------------------------- /textures/ui/arrow_up_gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/arrow_up_gs.png -------------------------------------------------------------------------------- /textures/ui/f1button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/f1button.png -------------------------------------------------------------------------------- /textures/ui/f8button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/f8button.png -------------------------------------------------------------------------------- /textures/ui/gamertag_back.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/gamertag_back.json -------------------------------------------------------------------------------- /textures/ui/gamertag_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/gamertag_back.png -------------------------------------------------------------------------------- /textures/ui/gamertag_hover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/gamertag_hover.json -------------------------------------------------------------------------------- /textures/ui/gamertag_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/gamertag_hover.png -------------------------------------------------------------------------------- /textures/ui/gote_support_config_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/gote_support_config_icon.png -------------------------------------------------------------------------------- /textures/ui/gote_support_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/gote_support_icon.png -------------------------------------------------------------------------------- /textures/ui/goteinfo_button_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_button_default.json -------------------------------------------------------------------------------- /textures/ui/goteinfo_button_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_button_default.png -------------------------------------------------------------------------------- /textures/ui/goteinfo_button_hover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_button_hover.json -------------------------------------------------------------------------------- /textures/ui/goteinfo_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_button_hover.png -------------------------------------------------------------------------------- /textures/ui/goteinfo_button_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_button_sel.png -------------------------------------------------------------------------------- /textures/ui/goteinfo_close_button_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_close_button_default.png -------------------------------------------------------------------------------- /textures/ui/goteinfo_close_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_close_button_hover.png -------------------------------------------------------------------------------- /textures/ui/goteinfo_panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_panel.json -------------------------------------------------------------------------------- /textures/ui/goteinfo_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/goteinfo_panel.png -------------------------------------------------------------------------------- /textures/ui/hotbar_hidari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/hotbar_hidari.png -------------------------------------------------------------------------------- /textures/ui/hotbar_migi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/hotbar_migi.png -------------------------------------------------------------------------------- /textures/ui/howtoplay_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/howtoplay_icon.png -------------------------------------------------------------------------------- /textures/ui/info_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/info_icon.png -------------------------------------------------------------------------------- /textures/ui/info_line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/info_line.json -------------------------------------------------------------------------------- /textures/ui/info_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/info_line.png -------------------------------------------------------------------------------- /textures/ui/info_line_v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/info_line_v.json -------------------------------------------------------------------------------- /textures/ui/info_line_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/info_line_v.png -------------------------------------------------------------------------------- /textures/ui/invite_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/invite_mail.png -------------------------------------------------------------------------------- /textures/ui/ms_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/ms_warning.png -------------------------------------------------------------------------------- /textures/ui/onpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/onpu.png -------------------------------------------------------------------------------- /textures/ui/playsound_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/playsound_play.png -------------------------------------------------------------------------------- /textures/ui/playsound_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/playsound_stop.png -------------------------------------------------------------------------------- /textures/ui/spyglass_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/spyglass_scope.png -------------------------------------------------------------------------------- /textures/ui/switch_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/switch_toggle.png -------------------------------------------------------------------------------- /textures/ui/yuka0813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/yuka0813.png -------------------------------------------------------------------------------- /textures/ui/yume_dream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/textures/ui/yume_dream.jpg -------------------------------------------------------------------------------- /ui/_change_logs_gote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/_change_logs_gote.json -------------------------------------------------------------------------------- /ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/_global_variables.json -------------------------------------------------------------------------------- /ui/_gote_assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/_gote_assets.json -------------------------------------------------------------------------------- /ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/_ui_defs.json -------------------------------------------------------------------------------- /ui/anvil_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/anvil_screen.json -------------------------------------------------------------------------------- /ui/anvil_screen_pocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/anvil_screen_pocket.json -------------------------------------------------------------------------------- /ui/beacon_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/beacon_screen.json -------------------------------------------------------------------------------- /ui/brewing_stand_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/brewing_stand_screen.json -------------------------------------------------------------------------------- /ui/cartography_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/cartography_screen.json -------------------------------------------------------------------------------- /ui/chat_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/chat_screen.json -------------------------------------------------------------------------------- /ui/chest_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/chest_screen.json -------------------------------------------------------------------------------- /ui/command_block_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/command_block_screen.json -------------------------------------------------------------------------------- /ui/edu_pause_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/edu_pause_screen.json -------------------------------------------------------------------------------- /ui/enchanting_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/enchanting_screen.json -------------------------------------------------------------------------------- /ui/furnace_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/furnace_screen.json -------------------------------------------------------------------------------- /ui/gotemba/gote_info_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/gotemba/gote_info_screen.json -------------------------------------------------------------------------------- /ui/gotemba/gote_info_sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/gotemba/gote_info_sections.json -------------------------------------------------------------------------------- /ui/grindstone_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/grindstone_screen.json -------------------------------------------------------------------------------- /ui/horse_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/horse_screen.json -------------------------------------------------------------------------------- /ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/hud_screen.json -------------------------------------------------------------------------------- /ui/inventory_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/inventory_screen.json -------------------------------------------------------------------------------- /ui/loom_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/loom_screen.json -------------------------------------------------------------------------------- /ui/npc_interact_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/npc_interact_screen.json -------------------------------------------------------------------------------- /ui/pause_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/pause_screen.json -------------------------------------------------------------------------------- /ui/pause_screen_v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/pause_screen_v16.json -------------------------------------------------------------------------------- /ui/play_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/play_screen.json -------------------------------------------------------------------------------- /ui/profile_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/profile_card.json -------------------------------------------------------------------------------- /ui/redstone_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/redstone_screen.json -------------------------------------------------------------------------------- /ui/safe_zone_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/safe_zone_screen.json -------------------------------------------------------------------------------- /ui/scoreboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/scoreboards.json -------------------------------------------------------------------------------- /ui/server_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/server_form.json -------------------------------------------------------------------------------- /ui/settings_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/settings_screen.json -------------------------------------------------------------------------------- /ui/settings_sections/controls_section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/settings_sections/controls_section.json -------------------------------------------------------------------------------- /ui/settings_sections/general_section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/settings_sections/general_section.json -------------------------------------------------------------------------------- /ui/settings_sections/gote_section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/settings_sections/gote_section.json -------------------------------------------------------------------------------- /ui/settings_sections/world_section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/settings_sections/world_section.json -------------------------------------------------------------------------------- /ui/smithing_table_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/smithing_table_screen.json -------------------------------------------------------------------------------- /ui/start_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/start_screen.json -------------------------------------------------------------------------------- /ui/stonecutter_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/stonecutter_screen.json -------------------------------------------------------------------------------- /ui/storage_management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/storage_management.json -------------------------------------------------------------------------------- /ui/tabbed_upsell_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/tabbed_upsell_screen.json -------------------------------------------------------------------------------- /ui/thanks_for_testing_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/thanks_for_testing_screen.json -------------------------------------------------------------------------------- /ui/trade_2_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/trade_2_screen.json -------------------------------------------------------------------------------- /ui/trade_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/trade_screen.json -------------------------------------------------------------------------------- /ui/ui_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/ui_common.json -------------------------------------------------------------------------------- /ui/win10_trial_conversion_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GotembaYuka/Gote-Supporter/HEAD/ui/win10_trial_conversion_screen.json --------------------------------------------------------------------------------