mirror of
https://github.com/Nostalgica-Reverie/Content-Monorepo.git
synced 2026-05-09 00:24:15 +00:00
init: 1.21.10
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
|
||||
#General settings of Crash Assistant mod.
|
||||
[general]
|
||||
#Link which will be opened in browser on request_help_button pressed.
|
||||
#If equals CHANGE_ME, will open Forge/NeoForge/Fabric/Quilt discord link. Names of communities/channels also will be used not from config, but according to this link.
|
||||
#Must start with 'https://' or 'www.'
|
||||
help_link = "https://discord.com/invite/M9bQdm25Pk"
|
||||
#Anyways log will be uploaded to mclo.gs, but with this option you can wrap link to gnomebot.dev for better formatting.
|
||||
#If help_link equals 'CHANGE_ME', this value will be ignored and gnomebot.dev used.
|
||||
#Supported values: mclo.gs / gnomebot.dev
|
||||
upload_to = "gnomebot.dev"
|
||||
#Show gui on minecraft crashed on modloading and FML error screen displayed.
|
||||
show_on_fml_error_screen = true
|
||||
#Close old CrashAssistantApp if it's still running when starting a new instance of Minecraft, to avoid confusing player with window from old crash.
|
||||
kill_old_app = true
|
||||
#If options.txt doesn't exist, the default language will be used.
|
||||
default_lang = "en_us"
|
||||
#Append comment text with notice about sending screenshot of this gui tells nothing to modpack creators.
|
||||
show_dont_send_screenshot_of_gui_notice = true
|
||||
#List of blacklisted log files. This files won't show in GUI logs list.
|
||||
blacklisted_logs = []
|
||||
|
||||
#Here you can change text of lang placeHolders.
|
||||
#Also you can change any text in lang files.
|
||||
#You don't need to modify jar. You can change it in config/crash_assistant/lang. For more info read README.md file located where.
|
||||
[text]
|
||||
#$CONFIG.text.support_name$ in lang files will be replaced with this value.
|
||||
#For example this placeHolder used in: "Request help in the $CONFIG.text.support_name$"
|
||||
support_name = "Nostalgica Reverie Discord"
|
||||
#$CONFIG.text.support_place$ in lang files will be replaced with this value.
|
||||
support_place = "#legacy-console-modpacks"
|
||||
#$CONFIG.text.modpack_name$ in lang files will be replaced with this value.
|
||||
#For example this placeHolder used in: "Oops, $CONFIG.text.modpack_name$ crashed!"
|
||||
#Supports Better Compatibility Checker integration. You can use $BCC.modpackName$, $BCC.modpackVersion$, etc and it will be replaced with value from BCC config.
|
||||
modpack_name = "Re-Console"
|
||||
|
||||
#Settings of message generated by Upload all button
|
||||
[generated_message]
|
||||
#Add ### prefix before filename.
|
||||
#This can prevent too small, hard to hit on mobile links.
|
||||
h3_prefix = true
|
||||
#Replaces "\n" separator between logs to " | " to make message vertically smaller.
|
||||
one_line_logs = true
|
||||
#Adds line in log list about this Intel processor can be corrupted.
|
||||
intel_corrupted_notification = true
|
||||
#If the modpack is created for a non-English-speaking audience, сhange this to the language the modpack is designed for.
|
||||
#This lang will be used only for generating message by "Upload all..." button.Do not modify this value if there's a chance that the generated message will be sent to English-speaking communities.
|
||||
generated_msg_lang = "en_us"
|
||||
#This text will be under "$CONFIG.text.modpack_name$ crashed!" in generated message by Upload all button.
|
||||
#You can include:
|
||||
# * some form, which users should fill out.
|
||||
# * additional information like Minecraft version, etc.
|
||||
text_under_crashed = ""
|
||||
#With this option you can notify user about something related with posting generated message.
|
||||
#For example if they need to fill some option from "text_under_crashed", etc.
|
||||
#Supports html formatting, placeholders.
|
||||
#Leave empty to prevent showing this warning message.
|
||||
warning_after_upload_all_button_press = ""
|
||||
|
||||
#Settings of modlist feature.
|
||||
#Adds in generated msg block about which mods modpack user added/removed/updated.
|
||||
#Also you can see diff by running '/crash_assistant modlist diff' command.
|
||||
[modpack_modlist]
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
#nicknames of players, who considered as modpack creator.
|
||||
#Only this players can overwrite modlist.json
|
||||
#If this feature is enabled and this array is empty, will be appended with nickname of current player.
|
||||
modpack_creators = ["omoso_","Technocality","Cjnator38"]
|
||||
#If enabled, modlist.json will be overwritten on every launch(first tick of TitleScreen),
|
||||
#then game is launched by modpack creator.
|
||||
#So you won't forget to save it before publishing.
|
||||
#If you want to save manually: disable this and use '/crash_assistant modlist save' command.
|
||||
auto_update = true
|
||||
#If enabled, will add resourcepacks to modlist.json
|
||||
#After filename where will be ' (resourcepack)' suffix.
|
||||
add_resourcepacks = false
|
||||
|
||||
#Settings of '/crash_assistant crash' command feature.
|
||||
[crash_command]
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
#To ensure the user really wants to crash the game, the command needs to be run again within this amount of seconds.
|
||||
#Set to <= 0 to disable the confirmation.
|
||||
seconds = 10
|
||||
|
||||
#Settings of notifying about intel corrupted processors.
|
||||
[intel_corrupted]
|
||||
#Enable feature.
|
||||
enabled = true
|
||||
#Show funny related gif in warning message.
|
||||
show_gif = false
|
||||
|
||||
[greeting]
|
||||
#You don't need to touch this option.
|
||||
#On first world join of modpack creator if set to false shows greeting, then self enables.
|
||||
shown_greeting = true
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
Hi Localizer!
|
||||
|
||||
## Contributing
|
||||
|
||||
If you want to add new language to the mod, please create a pull request with a new or modified file:
|
||||
https://github.com/KostromDan/Crash-Assistant/
|
||||
|
||||
lang files locate here in source code:`common_config/src/main/resources/lang`
|
||||
|
||||
## Changing text for the modpack
|
||||
|
||||
If you want to change some text, don't edit the jar directly. Instead, you can modify the files in config/crash_assistant/lang.
|
||||
|
||||
You can also add an entirely new language file in this directory, and it will work.
|
||||
|
||||
"$DEFAULT" value means value will be taken from jar lang(if exists), else from en_us.
|
||||
|
||||
Warning: don't try to use any utils of changing lang like KubeJs, resourcepacks, etc. It won't work.
|
||||
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"commands.crash_command_crashing": "$DEFAULT",
|
||||
"gui.disable_mod": "$DEFAULT",
|
||||
"commands.diff_copy": "$DEFAULT",
|
||||
"gui.request_help_button": "$DEFAULT",
|
||||
"gui.ok": "$DEFAULT",
|
||||
"gui.oops": "$DEFAULT",
|
||||
"gui.uploading": "$DEFAULT",
|
||||
"gui.upload_all_button_warning_title": "$DEFAULT",
|
||||
"commands.mod_config_tooltip": "$DEFAULT",
|
||||
"msg.removed_mods": "$DEFAULT",
|
||||
"gui.error_delete_mod_exception": "$DEFAULT",
|
||||
"commands.crash_command_validation_failed": "$DEFAULT",
|
||||
"gui.copy_link_button": "$DEFAULT",
|
||||
"gui.intel_corrupted_title": "$DEFAULT",
|
||||
"gui.copied": "$DEFAULT",
|
||||
"text.opens_url": "$DEFAULT",
|
||||
"commands.crash_command_1": "$DEFAULT",
|
||||
"msg.mb": "$DEFAULT",
|
||||
"gui.comment_under_title_cant_resolve": "$DEFAULT",
|
||||
"msg.modlist_first_launch": "$DEFAULT",
|
||||
"gui.window_name": "$DEFAULT",
|
||||
"gui.title_crashed_without_report": "$DEFAULT",
|
||||
"gui.upload_all_comment": "$DEFAULT",
|
||||
"gui.preprocessing": "$DEFAULT",
|
||||
"gui.upload_all_button": "$DEFAULT",
|
||||
"gui.modlist_diff_dialog_name": "$DEFAULT",
|
||||
"gui.untrusted_domain_title": "$DEFAULT",
|
||||
"gui.error": "$DEFAULT",
|
||||
"commands.not_creator_error_msg": "$DEFAULT",
|
||||
"msg.modlist_changes_latest_launch_2": "$DEFAULT",
|
||||
"gui.split_log_dialog_msg_with_both": "$DEFAULT",
|
||||
"gui.error_disable_mod_exception": "$DEFAULT",
|
||||
"msg.modlist_changes_latest_launch_1": "$DEFAULT",
|
||||
"gui.open_button": "$DEFAULT",
|
||||
"msg.skip_launcher": "$DEFAULT",
|
||||
"gui.modlist_changed_label": "$DEFAULT",
|
||||
"gui.comment_under_title_pls_report": "$DEFAULT",
|
||||
"gui.modlist_not_changed_label": "$DEFAULT",
|
||||
"commands.crash_command_applying_args": "$DEFAULT",
|
||||
"text.greeting3": "$DEFAULT",
|
||||
"msg.updated_mods": "$DEFAULT",
|
||||
"text.greeting2": "$DEFAULT",
|
||||
"msg.modlist_unmodified": "$DEFAULT",
|
||||
"gui.modlist_changed_label_msg": "$DEFAULT",
|
||||
"commands.modlist_auto_update_msg": "$DEFAULT",
|
||||
"gui.show_in_explorer_button": "$DEFAULT",
|
||||
"gui.remove_mod": "$DEFAULT",
|
||||
"gui.copy_split_log_dialog_text": "$DEFAULT",
|
||||
"gui.title_crashed_with_report": "$DEFAULT",
|
||||
"gui.show_modlist_diff_button": "$DEFAULT",
|
||||
"text.greeting1": "$DEFAULT",
|
||||
"msg.intel_corrupted_notification": "$DEFAULT",
|
||||
"commands.add_to_creator_list_msg": "$DEFAULT",
|
||||
"gui.upload_and_copy_link_button": "$DEFAULT",
|
||||
"commands.nickname_tooltip": "$DEFAULT",
|
||||
"gui.error_open_explorer": "$DEFAULT",
|
||||
"commands.diff_tooltip": "$DEFAULT",
|
||||
"gui.failed_to_upload_file": "$DEFAULT",
|
||||
"msg.added_mods": "$DEFAULT",
|
||||
"gui.incompatible_mod": "$DEFAULT",
|
||||
"warnings.closed_by_windows": "$DEFAULT",
|
||||
"commands.crash_command_3": "$DEFAULT",
|
||||
"gui.untrusted_domain_question": "$DEFAULT",
|
||||
"commands.crash_command_2": "$DEFAULT",
|
||||
"warnings.atio6axx": "$DEFAULT",
|
||||
"gui.comment_under_title_screenshot_notice": "$DEFAULT",
|
||||
"gui.comment_under_title": "$DEFAULT",
|
||||
"gui.split_log_dialog_action_browser": "$DEFAULT",
|
||||
"msg.crashed": "$DEFAULT",
|
||||
"commands.modlist_disabled_error_msg": "$DEFAULT",
|
||||
"commands.crash_command_done": "$DEFAULT",
|
||||
"gui.split_log_dialog_action_copy": "$DEFAULT",
|
||||
"msg.k_lines": "$DEFAULT",
|
||||
"commands.modlist_overwritten_success": "$DEFAULT",
|
||||
"msg.modlist_changes_modpack_2": "$DEFAULT",
|
||||
"msg.over": "$DEFAULT",
|
||||
"gui.intel_corrupted_msg": "$DEFAULT",
|
||||
"msg.modlist_changes_modpack_1": "$DEFAULT",
|
||||
"gui.intel_corrupted_read_more": "$DEFAULT",
|
||||
"gui.browser_button_tooltip": "$DEFAULT",
|
||||
"gui.copy_split_log_dialog_title": "$DEFAULT",
|
||||
"gui.split_log_dialog_tail": "$DEFAULT",
|
||||
"commands.modlist_enable_auto_update_msg": "$DEFAULT",
|
||||
"gui.upload_all_finished_button": "$DEFAULT",
|
||||
"gui.split_log_dialog_head": "$DEFAULT",
|
||||
"gui.intel_corrupted_dont_show_again": "$DEFAULT",
|
||||
"gui.logs_analyser": "$DEFAULT",
|
||||
"gui.file_list_label": "$DEFAULT",
|
||||
"commands.crash_command_validation_failed_to_crash": "$DEFAULT"
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"commands.crash_command_crashing": "$DEFAULT",
|
||||
"gui.disable_mod": "$DEFAULT",
|
||||
"commands.diff_copy": "$DEFAULT",
|
||||
"gui.request_help_button": "$DEFAULT",
|
||||
"gui.ok": "$DEFAULT",
|
||||
"gui.oops": "$DEFAULT",
|
||||
"gui.uploading": "$DEFAULT",
|
||||
"gui.upload_all_button_warning_title": "$DEFAULT",
|
||||
"commands.mod_config_tooltip": "$DEFAULT",
|
||||
"msg.removed_mods": "$DEFAULT",
|
||||
"gui.error_delete_mod_exception": "$DEFAULT",
|
||||
"commands.crash_command_validation_failed": "$DEFAULT",
|
||||
"gui.copy_link_button": "$DEFAULT",
|
||||
"gui.intel_corrupted_title": "$DEFAULT",
|
||||
"gui.copied": "$DEFAULT",
|
||||
"text.opens_url": "$DEFAULT",
|
||||
"commands.crash_command_1": "$DEFAULT",
|
||||
"msg.mb": "$DEFAULT",
|
||||
"gui.comment_under_title_cant_resolve": "$DEFAULT",
|
||||
"msg.modlist_first_launch": "$DEFAULT",
|
||||
"gui.window_name": "$DEFAULT",
|
||||
"gui.title_crashed_without_report": "$DEFAULT",
|
||||
"gui.upload_all_comment": "$DEFAULT",
|
||||
"gui.preprocessing": "$DEFAULT",
|
||||
"gui.upload_all_button": "$DEFAULT",
|
||||
"gui.modlist_diff_dialog_name": "$DEFAULT",
|
||||
"gui.untrusted_domain_title": "$DEFAULT",
|
||||
"gui.error": "$DEFAULT",
|
||||
"commands.not_creator_error_msg": "$DEFAULT",
|
||||
"msg.modlist_changes_latest_launch_2": "$DEFAULT",
|
||||
"gui.split_log_dialog_msg_with_both": "$DEFAULT",
|
||||
"gui.error_disable_mod_exception": "$DEFAULT",
|
||||
"msg.modlist_changes_latest_launch_1": "$DEFAULT",
|
||||
"gui.open_button": "$DEFAULT",
|
||||
"msg.skip_launcher": "$DEFAULT",
|
||||
"gui.modlist_changed_label": "$DEFAULT",
|
||||
"gui.comment_under_title_pls_report": "$DEFAULT",
|
||||
"gui.modlist_not_changed_label": "$DEFAULT",
|
||||
"commands.crash_command_applying_args": "$DEFAULT",
|
||||
"text.greeting3": "$DEFAULT",
|
||||
"msg.updated_mods": "$DEFAULT",
|
||||
"text.greeting2": "$DEFAULT",
|
||||
"msg.modlist_unmodified": "$DEFAULT",
|
||||
"gui.modlist_changed_label_msg": "$DEFAULT",
|
||||
"commands.modlist_auto_update_msg": "$DEFAULT",
|
||||
"gui.show_in_explorer_button": "$DEFAULT",
|
||||
"gui.remove_mod": "$DEFAULT",
|
||||
"gui.copy_split_log_dialog_text": "$DEFAULT",
|
||||
"gui.title_crashed_with_report": "$DEFAULT",
|
||||
"gui.show_modlist_diff_button": "$DEFAULT",
|
||||
"text.greeting1": "$DEFAULT",
|
||||
"msg.intel_corrupted_notification": "$DEFAULT",
|
||||
"commands.add_to_creator_list_msg": "$DEFAULT",
|
||||
"gui.upload_and_copy_link_button": "$DEFAULT",
|
||||
"commands.nickname_tooltip": "$DEFAULT",
|
||||
"gui.error_open_explorer": "$DEFAULT",
|
||||
"commands.diff_tooltip": "$DEFAULT",
|
||||
"gui.failed_to_upload_file": "$DEFAULT",
|
||||
"msg.added_mods": "$DEFAULT",
|
||||
"gui.incompatible_mod": "$DEFAULT",
|
||||
"warnings.closed_by_windows": "$DEFAULT",
|
||||
"commands.crash_command_3": "$DEFAULT",
|
||||
"gui.untrusted_domain_question": "$DEFAULT",
|
||||
"commands.crash_command_2": "$DEFAULT",
|
||||
"warnings.atio6axx": "$DEFAULT",
|
||||
"gui.comment_under_title_screenshot_notice": "$DEFAULT",
|
||||
"gui.comment_under_title": "$DEFAULT",
|
||||
"gui.split_log_dialog_action_browser": "$DEFAULT",
|
||||
"msg.crashed": "$DEFAULT",
|
||||
"commands.modlist_disabled_error_msg": "$DEFAULT",
|
||||
"commands.crash_command_done": "$DEFAULT",
|
||||
"gui.split_log_dialog_action_copy": "$DEFAULT",
|
||||
"msg.k_lines": "$DEFAULT",
|
||||
"commands.modlist_overwritten_success": "$DEFAULT",
|
||||
"msg.modlist_changes_modpack_2": "$DEFAULT",
|
||||
"msg.over": "$DEFAULT",
|
||||
"gui.intel_corrupted_msg": "$DEFAULT",
|
||||
"msg.modlist_changes_modpack_1": "$DEFAULT",
|
||||
"gui.intel_corrupted_read_more": "$DEFAULT",
|
||||
"gui.browser_button_tooltip": "$DEFAULT",
|
||||
"gui.copy_split_log_dialog_title": "$DEFAULT",
|
||||
"gui.split_log_dialog_tail": "$DEFAULT",
|
||||
"commands.modlist_enable_auto_update_msg": "$DEFAULT",
|
||||
"gui.upload_all_finished_button": "$DEFAULT",
|
||||
"gui.split_log_dialog_head": "$DEFAULT",
|
||||
"gui.intel_corrupted_dont_show_again": "$DEFAULT",
|
||||
"gui.logs_analyser": "$DEFAULT",
|
||||
"gui.file_list_label": "$DEFAULT",
|
||||
"commands.crash_command_validation_failed_to_crash": "$DEFAULT"
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"commands.crash_command_crashing": "$DEFAULT",
|
||||
"gui.disable_mod": "$DEFAULT",
|
||||
"commands.diff_copy": "$DEFAULT",
|
||||
"gui.request_help_button": "$DEFAULT",
|
||||
"gui.ok": "$DEFAULT",
|
||||
"gui.oops": "$DEFAULT",
|
||||
"gui.uploading": "$DEFAULT",
|
||||
"gui.upload_all_button_warning_title": "$DEFAULT",
|
||||
"commands.mod_config_tooltip": "$DEFAULT",
|
||||
"msg.removed_mods": "$DEFAULT",
|
||||
"gui.error_delete_mod_exception": "$DEFAULT",
|
||||
"commands.crash_command_validation_failed": "$DEFAULT",
|
||||
"gui.copy_link_button": "$DEFAULT",
|
||||
"gui.intel_corrupted_title": "$DEFAULT",
|
||||
"gui.copied": "$DEFAULT",
|
||||
"text.opens_url": "$DEFAULT",
|
||||
"commands.crash_command_1": "$DEFAULT",
|
||||
"msg.mb": "$DEFAULT",
|
||||
"gui.comment_under_title_cant_resolve": "$DEFAULT",
|
||||
"msg.modlist_first_launch": "$DEFAULT",
|
||||
"gui.window_name": "$DEFAULT",
|
||||
"gui.title_crashed_without_report": "$DEFAULT",
|
||||
"gui.upload_all_comment": "$DEFAULT",
|
||||
"gui.preprocessing": "$DEFAULT",
|
||||
"gui.upload_all_button": "$DEFAULT",
|
||||
"gui.modlist_diff_dialog_name": "$DEFAULT",
|
||||
"gui.untrusted_domain_title": "$DEFAULT",
|
||||
"gui.error": "$DEFAULT",
|
||||
"commands.not_creator_error_msg": "$DEFAULT",
|
||||
"msg.modlist_changes_latest_launch_2": "$DEFAULT",
|
||||
"gui.split_log_dialog_msg_with_both": "$DEFAULT",
|
||||
"gui.error_disable_mod_exception": "$DEFAULT",
|
||||
"msg.modlist_changes_latest_launch_1": "$DEFAULT",
|
||||
"gui.open_button": "$DEFAULT",
|
||||
"msg.skip_launcher": "$DEFAULT",
|
||||
"gui.modlist_changed_label": "$DEFAULT",
|
||||
"gui.comment_under_title_pls_report": "$DEFAULT",
|
||||
"gui.modlist_not_changed_label": "$DEFAULT",
|
||||
"commands.crash_command_applying_args": "$DEFAULT",
|
||||
"text.greeting3": "$DEFAULT",
|
||||
"msg.updated_mods": "$DEFAULT",
|
||||
"text.greeting2": "$DEFAULT",
|
||||
"msg.modlist_unmodified": "$DEFAULT",
|
||||
"gui.modlist_changed_label_msg": "$DEFAULT",
|
||||
"commands.modlist_auto_update_msg": "$DEFAULT",
|
||||
"gui.show_in_explorer_button": "$DEFAULT",
|
||||
"gui.remove_mod": "$DEFAULT",
|
||||
"gui.copy_split_log_dialog_text": "$DEFAULT",
|
||||
"gui.title_crashed_with_report": "$DEFAULT",
|
||||
"gui.show_modlist_diff_button": "$DEFAULT",
|
||||
"text.greeting1": "$DEFAULT",
|
||||
"msg.intel_corrupted_notification": "$DEFAULT",
|
||||
"commands.add_to_creator_list_msg": "$DEFAULT",
|
||||
"gui.upload_and_copy_link_button": "$DEFAULT",
|
||||
"commands.nickname_tooltip": "$DEFAULT",
|
||||
"gui.error_open_explorer": "$DEFAULT",
|
||||
"commands.diff_tooltip": "$DEFAULT",
|
||||
"gui.failed_to_upload_file": "$DEFAULT",
|
||||
"msg.added_mods": "$DEFAULT",
|
||||
"gui.incompatible_mod": "$DEFAULT",
|
||||
"warnings.closed_by_windows": "$DEFAULT",
|
||||
"commands.crash_command_3": "$DEFAULT",
|
||||
"gui.untrusted_domain_question": "$DEFAULT",
|
||||
"commands.crash_command_2": "$DEFAULT",
|
||||
"warnings.atio6axx": "$DEFAULT",
|
||||
"gui.comment_under_title_screenshot_notice": "$DEFAULT",
|
||||
"gui.comment_under_title": "$DEFAULT",
|
||||
"gui.split_log_dialog_action_browser": "$DEFAULT",
|
||||
"msg.crashed": "$DEFAULT",
|
||||
"commands.modlist_disabled_error_msg": "$DEFAULT",
|
||||
"commands.crash_command_done": "$DEFAULT",
|
||||
"gui.split_log_dialog_action_copy": "$DEFAULT",
|
||||
"msg.k_lines": "$DEFAULT",
|
||||
"commands.modlist_overwritten_success": "$DEFAULT",
|
||||
"msg.modlist_changes_modpack_2": "$DEFAULT",
|
||||
"msg.over": "$DEFAULT",
|
||||
"gui.intel_corrupted_msg": "$DEFAULT",
|
||||
"msg.modlist_changes_modpack_1": "$DEFAULT",
|
||||
"gui.intel_corrupted_read_more": "$DEFAULT",
|
||||
"gui.browser_button_tooltip": "$DEFAULT",
|
||||
"gui.copy_split_log_dialog_title": "$DEFAULT",
|
||||
"gui.split_log_dialog_tail": "$DEFAULT",
|
||||
"commands.modlist_enable_auto_update_msg": "$DEFAULT",
|
||||
"gui.upload_all_finished_button": "$DEFAULT",
|
||||
"gui.split_log_dialog_head": "$DEFAULT",
|
||||
"gui.intel_corrupted_dont_show_again": "$DEFAULT",
|
||||
"gui.logs_analyser": "$DEFAULT",
|
||||
"gui.file_list_label": "$DEFAULT",
|
||||
"commands.crash_command_validation_failed_to_crash": "$DEFAULT"
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
{
|
||||
"fabric-loader-0.17.2.jar (modloader)": {
|
||||
"jarName": "fabric-loader-0.17.2.jar (modloader)",
|
||||
"modId": "fabric",
|
||||
"version": "fabric-loader-0.17.2.jar"
|
||||
},
|
||||
"BadOptimizations-2.3.0-1.21.6-21.7.jar": {
|
||||
"jarName": "BadOptimizations-2.3.0-1.21.6-21.7.jar",
|
||||
"modId": "badoptimizations",
|
||||
"version": "2.3.0"
|
||||
},
|
||||
"BetterGrassify-1.8.0+fabric.1.21.8.jar": {
|
||||
"jarName": "BetterGrassify-1.8.0+fabric.1.21.8.jar",
|
||||
"modId": "bettergrass",
|
||||
"version": "1.8.0+fabric.1.21.8"
|
||||
},
|
||||
"cape-provider-3.0.0.jar": {
|
||||
"jarName": "cape-provider-3.0.0.jar",
|
||||
"modId": "cape-provider",
|
||||
"version": "3.0.0"
|
||||
},
|
||||
"chat_heads-0.13.19-fabric-1.21.6.jar": {
|
||||
"jarName": "chat_heads-0.13.19-fabric-1.21.6.jar",
|
||||
"modId": "chat_heads",
|
||||
"version": "0.13.19"
|
||||
},
|
||||
"ConfiguredDefaults-v21.8.0-1.21.8-Fabric.jar": {
|
||||
"jarName": "ConfiguredDefaults-v21.8.0-1.21.8-Fabric.jar",
|
||||
"modId": "configureddefaults",
|
||||
"version": "21.8.0"
|
||||
},
|
||||
"continuity-3.0.1-beta.1+1.21.6.jar": {
|
||||
"jarName": "continuity-3.0.1-beta.1+1.21.6.jar",
|
||||
"modId": "continuity",
|
||||
"version": "3.0.1-beta.1+1.21.6"
|
||||
},
|
||||
"CraftPresence-2.6.2+1.21.8-fabric.jar": {
|
||||
"jarName": "CraftPresence-2.6.2+1.21.8-fabric.jar",
|
||||
"modId": "craftpresence",
|
||||
"version": "2.6.2"
|
||||
},
|
||||
"CrashAssistant-fabric-1.21.5-1.21.8-1.9.15.jar": {
|
||||
"jarName": "CrashAssistant-fabric-1.21.5-1.21.8-1.9.15.jar",
|
||||
"modId": "crash_assistant",
|
||||
"version": "1.9.15"
|
||||
},
|
||||
"CustomPlayerModels-Fabric-1.21.8-0.6.24a.jar": {
|
||||
"jarName": "CustomPlayerModels-Fabric-1.21.8-0.6.24a.jar",
|
||||
"modId": "cpm",
|
||||
"version": "0.6.24a"
|
||||
},
|
||||
"cwb-fabric-3.0.0+mc1.21.5.jar": {
|
||||
"jarName": "cwb-fabric-3.0.0+mc1.21.5.jar",
|
||||
"modId": "cubes-without-borders",
|
||||
"version": "3.0.0+mc1.21.5"
|
||||
},
|
||||
"debugify-1.21.8+1.0.jar": {
|
||||
"jarName": "debugify-1.21.8+1.0.jar",
|
||||
"modId": "debugify",
|
||||
"version": "1.21.8+1.0"
|
||||
},
|
||||
"dynamic-fps-3.9.6+minecraft-1.21.6-fabric.jar": {
|
||||
"jarName": "dynamic-fps-3.9.6+minecraft-1.21.6-fabric.jar",
|
||||
"modId": "dynamic_fps",
|
||||
"version": "3.9.6"
|
||||
},
|
||||
"entity_model_features_fabric_1.21.6-2.4.4.jar": {
|
||||
"jarName": "entity_model_features_fabric_1.21.6-2.4.4.jar",
|
||||
"modId": "entity_model_features",
|
||||
"version": "2.4.4"
|
||||
},
|
||||
"entity_sound_features_fabric_1.21.5-0.6.jar": {
|
||||
"jarName": "entity_sound_features_fabric_1.21.5-0.6.jar",
|
||||
"modId": "entity_sound_features",
|
||||
"version": "0.6"
|
||||
},
|
||||
"entity_texture_features_fabric_1.21.6-6.2.14.jar": {
|
||||
"jarName": "entity_texture_features_fabric_1.21.6-6.2.14.jar",
|
||||
"modId": "entity_texture_features",
|
||||
"version": "6.2.14"
|
||||
},
|
||||
"entityculling-fabric-1.8.2-mc1.21.6.jar": {
|
||||
"jarName": "entityculling-fabric-1.8.2-mc1.21.6.jar",
|
||||
"modId": "entityculling",
|
||||
"version": "1.8.2"
|
||||
},
|
||||
"fabric-api-0.132.0+1.21.8.jar": {
|
||||
"jarName": "fabric-api-0.132.0+1.21.8.jar",
|
||||
"modId": "fabric-api",
|
||||
"version": "0.132.0+1.21.8"
|
||||
},
|
||||
"FactoryAPI-1.21.8-2.2.6-fabric.jar": {
|
||||
"jarName": "FactoryAPI-1.21.8-2.2.6-fabric.jar",
|
||||
"modId": "factory_api",
|
||||
"version": "2.2.6"
|
||||
},
|
||||
"fastquit-3.1.1+mc1.21.6.jar": {
|
||||
"jarName": "fastquit-3.1.1+mc1.21.6.jar",
|
||||
"modId": "fastquit",
|
||||
"version": "3.1.1+mc1.21.6"
|
||||
},
|
||||
"ferritecore-8.0.0-fabric.jar": {
|
||||
"jarName": "ferritecore-8.0.0-fabric.jar",
|
||||
"modId": "ferritecore",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"fix-keyboard-on-linux-1.0.1.jar": {
|
||||
"jarName": "fix-keyboard-on-linux-1.0.1.jar",
|
||||
"modId": "fix-keyboard-on-linux",
|
||||
"version": "1.0.1"
|
||||
},
|
||||
"ImmediatelyFast-Fabric-1.12.1+1.21.8.jar": {
|
||||
"jarName": "ImmediatelyFast-Fabric-1.12.1+1.21.8.jar",
|
||||
"modId": "immediatelyfast",
|
||||
"version": "1.12.1+1.21.8"
|
||||
},
|
||||
"iris-fabric-1.9.1+mc1.21.7.jar": {
|
||||
"jarName": "iris-fabric-1.9.1+mc1.21.7.jar",
|
||||
"modId": "iris",
|
||||
"version": "1.9.1+mc1.21.7"
|
||||
},
|
||||
"lambdynamiclights-4.3.2+1.21.8.jar": {
|
||||
"jarName": "lambdynamiclights-4.3.2+1.21.8.jar",
|
||||
"modId": "lambdynlights",
|
||||
"version": "4.3.2+1.21.8"
|
||||
},
|
||||
"lazy-language-loader-0.3.8.jar": {
|
||||
"jarName": "lazy-language-loader-0.3.8.jar",
|
||||
"modId": "lazy-language-loader",
|
||||
"version": "0.3.8"
|
||||
},
|
||||
"Legacy4J-1.21.8-1.8.5-fabric.jar": {
|
||||
"jarName": "Legacy4J-1.21.8-1.8.5-fabric.jar",
|
||||
"modId": "legacy",
|
||||
"version": "1.8.5"
|
||||
},
|
||||
"legacyskins-1.5.0+fabric+1.21.8.jar": {
|
||||
"jarName": "legacyskins-1.5.0+fabric+1.21.8.jar",
|
||||
"modId": "legacyskins",
|
||||
"version": "1.5.0+fabric+1.21.8"
|
||||
},
|
||||
"macos-input-fixes-1.9.jar": {
|
||||
"jarName": "macos-input-fixes-1.9.jar",
|
||||
"modId": "macos_input_fixes",
|
||||
"version": "1.9"
|
||||
},
|
||||
"moderner-beta-fabric-3.1.4+1.21.6.jar": {
|
||||
"jarName": "moderner-beta-fabric-3.1.4+1.21.6.jar",
|
||||
"modId": "moderner_beta",
|
||||
"version": "3.1.4+1.21.6"
|
||||
},
|
||||
"modmenu-15.0.0-beta.3.jar": {
|
||||
"jarName": "modmenu-15.0.0-beta.3.jar",
|
||||
"modId": "modmenu",
|
||||
"version": "15.0.0-beta.3"
|
||||
},
|
||||
"Moonrise-Fabric-0.6.0-beta.1+45edfd7.jar": {
|
||||
"jarName": "Moonrise-Fabric-0.6.0-beta.1+45edfd7.jar",
|
||||
"modId": "moonrise",
|
||||
"version": "0.6.0-beta.1+45edfd7"
|
||||
},
|
||||
"moreculling-fabric-1.21.6-1.4.0-beta.1.jar": {
|
||||
"jarName": "moreculling-fabric-1.21.6-1.4.0-beta.1.jar",
|
||||
"modId": "moreculling",
|
||||
"version": "1.4.0-beta.1"
|
||||
},
|
||||
"nvidium-0.4.1-beta9-1.21.6-1.21.8.jar": {
|
||||
"jarName": "nvidium-0.4.1-beta9-1.21.6-1.21.8.jar",
|
||||
"modId": "nvidium",
|
||||
"version": "0.4.1-beta9-1.21.6-1.21.8"
|
||||
},
|
||||
"ok_zoomer-fabric-14.0.0-beta.3.jar": {
|
||||
"jarName": "ok_zoomer-fabric-14.0.0-beta.3.jar",
|
||||
"modId": "ok_zoomer",
|
||||
"version": "14.0.0-beta.3"
|
||||
},
|
||||
"raknetify-fabric-0.1.0+alpha.5.174-all.jar": {
|
||||
"jarName": "raknetify-fabric-0.1.0+alpha.5.174-all.jar",
|
||||
"modId": "raknetify",
|
||||
"version": "0.1.0+alpha.5.174"
|
||||
},
|
||||
"renderscale-fabric-1.21.8-1.3.3.jar": {
|
||||
"jarName": "renderscale-fabric-1.21.8-1.3.3.jar",
|
||||
"modId": "renderscale",
|
||||
"version": "1.3.3"
|
||||
},
|
||||
"sodium-fabric-0.6.13+mc1.21.6.jar": {
|
||||
"jarName": "sodium-fabric-0.6.13+mc1.21.6.jar",
|
||||
"modId": "sodium",
|
||||
"version": "0.6.13+mc1.21.6"
|
||||
},
|
||||
"threadtweak-fabric-0.1.7+mc1.21.5.jar": {
|
||||
"jarName": "threadtweak-fabric-0.1.7+mc1.21.5.jar",
|
||||
"modId": "threadtweak",
|
||||
"version": "0.1.7+mc1.21.5"
|
||||
},
|
||||
"UniLib-1.1.1+1.21.8-fabric.jar": {
|
||||
"jarName": "UniLib-1.1.1+1.21.8-fabric.jar",
|
||||
"modId": "unilib",
|
||||
"version": "1.1.1"
|
||||
},
|
||||
"voicechat-fabric-1.21.8-2.5.36.jar": {
|
||||
"jarName": "voicechat-fabric-1.21.8-2.5.36.jar",
|
||||
"modId": "voicechat",
|
||||
"version": "1.21.8-2.5.36"
|
||||
},
|
||||
"yet_another_config_lib_v3-3.7.1+1.21.6-fabric.jar": {
|
||||
"jarName": "yet_another_config_lib_v3-3.7.1+1.21.6-fabric.jar",
|
||||
"modId": "yet_another_config_lib_v3",
|
||||
"version": "3.7.1+1.21.6-fabric"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"example_modid": {
|
||||
"msg": "Custom msg on crash for this mod id. You can use $JAR_NAME$ placeholder, which will be replaced with jar name. You can use HTML here, it will work.",
|
||||
"should_crash_on_startup": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
// If enabled, shows the normal screenshot taken (same as F2) message when a screenshot is taken after an advancement.
|
||||
"showScreenshotTakenMessage": false,
|
||||
// How many ticks the mod should wait until it takes a screenshot. By default 1 second. 20 ticks = 1 second
|
||||
// min: 0, max: 100
|
||||
"takeScreenshotTickDelay": 20
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
// Variables: %timestamp% = timestamp set in timestampFormat. %username% = the username of the player who sent the message. %username% = the username of who sent the message.
|
||||
"chatMessageFormat": "%timestamp% | %username%: %chatmessage%",
|
||||
// Example time in formats: 5 seconds past 9 o' clock in the evening. *=Default. *(HH:mm) = 21:00, (HH:mm:ss) = 21:00:05, (hh:mm a) = 9:00 PM
|
||||
"timestampFormat": "HH:mm",
|
||||
// The colour of the timestamp in the chat message. The possible values are; 0: black, 1: dark_blue, 2: dark_green, 3: dark_aqua, 4: dark_red, 5: dark_purple, 6: gold, 7: gray, 8: dark_gray, 9: blue, 10: green, 11: aqua, 12: red, 13: light_purple, 14: yellow, 15: white.
|
||||
// min: 0, max: 15
|
||||
"chatTimestampColour": 8,
|
||||
// The colour of the username in the chat messsage. The possible values are; 0: black, 1: dark_blue, 2: dark_green, 3: dark_aqua, 4: dark_red, 5: dark_purple, 6: gold, 7: gray, 8: dark_gray, 9: blue, 10: green, 11: aqua, 12: red, 13: light_purple, 14: yellow, 15: white.
|
||||
// min: 0, max: 15
|
||||
"chatUsernameColour": 2,
|
||||
// The colour of the chat message. The possible values are; 0: black, 1: dark_blue, 2: dark_green, 3: dark_aqua, 4: dark_red, 5: dark_purple, 6: gold, 7: gray, 8: dark_gray, 9: blue, 10: green, 11: aqua, 12: red, 13: light_purple, 14: yellow, 15: white.
|
||||
// min: 0, max: 15
|
||||
"chatMessageColour": 15,
|
||||
// The colour of the other symbols from chatMessageFormat. So everything except the variables. The possible values are; 0: black, 1: dark_blue, 2: dark_green, 3: dark_aqua, 4: dark_red, 5: dark_purple, 6: gold, 7: gray, 8: dark_gray, 9: blue, 10: green, 11: aqua, 12: red, 13: light_purple, 14: yellow, 15: white.
|
||||
// min: 0, max: 15
|
||||
"chatOtherSymbolsColour": 7
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"general": {
|
||||
"betterGrassMode": "FANCY",
|
||||
"resourcePackCompatibilityMode": true,
|
||||
"blocks": {
|
||||
"grassBlocks": true,
|
||||
"snowy": true,
|
||||
"dirtPaths": true,
|
||||
"farmLands": true,
|
||||
"podzol": true,
|
||||
"mycelium": true,
|
||||
"crimsonNylium": true,
|
||||
"warpedNylium": true,
|
||||
"moreBlocks": []
|
||||
}
|
||||
},
|
||||
"betterSnow": {
|
||||
"betterSnowMode": "OFF",
|
||||
"snowLayers": [
|
||||
"snow",
|
||||
"moss_carpet",
|
||||
"pale_moss_carpet",
|
||||
"leaf_litter",
|
||||
"pink_petals",
|
||||
"wildflowers"
|
||||
],
|
||||
"whitelistedTags": [],
|
||||
"whitelistedBlocks": [],
|
||||
"excludedTags": [],
|
||||
"excludedBlocks": [
|
||||
"lantern[hanging]",
|
||||
"redstone_wall_torch",
|
||||
"soul_lantern[hanging]",
|
||||
"soul_wall_torch",
|
||||
"wall_torch"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
clientCapeType: "MINECRAFTCAPES",
|
||||
enableOptifine: true,
|
||||
enableLabyMod: false,
|
||||
enableWynntils: true,
|
||||
enableMinecraftCapesMod: true,
|
||||
enableCosmetica: true,
|
||||
enableCloaksPlus: true,
|
||||
enableElytraTexture: true
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"broken_paths": true
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"editorLastVersion": "0.6.21a",
|
||||
"editorSelectMouseButton": 0,
|
||||
"titleScreenButton": false,
|
||||
"playerSettings": {},
|
||||
"globalSettings": {},
|
||||
"friendSettings": {},
|
||||
"keybinds": {},
|
||||
"editorDragMouseButton": -1,
|
||||
"editorMenuMouseButton": 1,
|
||||
"editorRotateMouseButton": 2,
|
||||
"safetyProfiles": {},
|
||||
"editorRecentProjects": [],
|
||||
"serverSettings": {}
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
{
|
||||
"_schemaVersion": 6,
|
||||
"_lastMCVersionId": 769,
|
||||
"generalSettings": {
|
||||
"detectATLauncherInstance": false,
|
||||
"detectCurseManifest": false,
|
||||
"detectMultiMCManifest": true,
|
||||
"detectMCUpdaterInstance": false,
|
||||
"detectTechnicPack": true,
|
||||
"detectModrinthPack": false,
|
||||
"detectBiomeData": false,
|
||||
"detectDimensionData": false,
|
||||
"detectWorldData": true,
|
||||
"clientId": "1278509112128442443",
|
||||
"defaultIcon": "othericon",
|
||||
"enableJoinRequests": true,
|
||||
"preferredClientLevel": 3,
|
||||
"resetTimeOnInit": false,
|
||||
"autoRegister": false
|
||||
},
|
||||
"biomeSettings": {
|
||||
"fallbackBiomeIcon": "unknown",
|
||||
"biomeData": {
|
||||
"default": {
|
||||
"textOverride": "Playing in {biome.name}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dimensionSettings": {
|
||||
"fallbackDimensionIcon": "unknown",
|
||||
"dimensionData": {
|
||||
"default": {
|
||||
"textOverride": "In the {dimension.name}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"serverSettings": {
|
||||
"fallbackServerIcon": "default",
|
||||
"fallbackServerName": "Minecraft Server",
|
||||
"fallbackServerMotd": "A Minecraft Server",
|
||||
"serverData": {
|
||||
"default": {
|
||||
"textOverride": "Playing on {server.name}"
|
||||
}
|
||||
},
|
||||
"pingRateInterval": 5,
|
||||
"pingRateUnit": "minutes"
|
||||
},
|
||||
"statusMessages": {
|
||||
"mainMenuData": {
|
||||
"textOverride": "In the Main Menu"
|
||||
},
|
||||
"loadingData": {
|
||||
"textOverride": "Loading..."
|
||||
},
|
||||
"lanData": {
|
||||
"textOverride": "Playing on a LAN Server"
|
||||
},
|
||||
"singleplayerData": {
|
||||
"textOverride": "Playing Singleplayer - \"{world.name}\""
|
||||
},
|
||||
"realmData": {
|
||||
"textOverride": "Playing on {server.name} - Realm"
|
||||
}
|
||||
},
|
||||
"advancedSettings": {
|
||||
"enablePerGui": false,
|
||||
"enablePerItem": false,
|
||||
"enablePerEntity": false,
|
||||
"formatWords": true,
|
||||
"debugMode": false,
|
||||
"verboseMode": false,
|
||||
"refreshRate": 2,
|
||||
"allowPlaceholderPreviews": false,
|
||||
"guiSettings": {
|
||||
"fallbackGuiIcon": "unknown",
|
||||
"guiData": {
|
||||
"default": {
|
||||
"textOverride": "In {screen.name}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"itemMessages": {
|
||||
"default": "Holding {item.message.holding}"
|
||||
},
|
||||
"entitySettings": {
|
||||
"fallbackEntityIcon": "unknown",
|
||||
"targetData": {
|
||||
"default": {
|
||||
"textOverride": "Targeting {entity.target.name}"
|
||||
}
|
||||
},
|
||||
"ridingData": {
|
||||
"default": {
|
||||
"textOverride": "Riding {entity.riding.name}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"allowEndpointIcons": true,
|
||||
"serverIconEndpoint": "https://api.mcsrvstat.us/icon/{server.address.short}",
|
||||
"playerSkinEndpoint": "https://mc-heads.net/avatar/{getOrDefault(player.uuid.short, player.name)}",
|
||||
"allowDuplicatePackets": false,
|
||||
"maxConnectionAttempts": 10,
|
||||
"enableClassGraph": false,
|
||||
"useClassLoader": false
|
||||
},
|
||||
"accessibilitySettings": {
|
||||
"languageId": "en_us",
|
||||
"stripTranslationColors": false,
|
||||
"stripTranslationFormatting": false,
|
||||
"stripExtraGuiElements": false,
|
||||
"configKeyCode": 96
|
||||
},
|
||||
"displaySettings": {
|
||||
"presenceData": {
|
||||
"enabled": true,
|
||||
"useAsMain": false,
|
||||
"isInstance": false,
|
||||
"activityType": 0,
|
||||
"partyPrivacy": 1,
|
||||
"details": "{getFirst(menu.message, dimension.message)}",
|
||||
"gameState": "{getOrDefault(server.message)} {getOrDefault(pack.name)}",
|
||||
"largeImageKey": "othericon",
|
||||
"largeImageText": "Re-Console",
|
||||
"smallImageKey": "{player.icon}",
|
||||
"smallImageText": "{player.name}",
|
||||
"startTimestamp": "{data.general.time}",
|
||||
"endTimestamp": "",
|
||||
"buttons": {
|
||||
"default": {
|
||||
"label": "Example Text",
|
||||
"url": "https://google.com"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dynamicIcons": {
|
||||
"anamanaguchi": "https://mc-heads.net/avatar/225e311377f447c1bc6c36cfdd2308ad",
|
||||
"juneremover": "https://mc-heads.net/avatar/44db718c7bb44a229175c6593d0ab1ed",
|
||||
"default": "https://via.placeholder.com/256.png"
|
||||
},
|
||||
"dynamicVariables": {
|
||||
"default": "Example Text",
|
||||
"mods": "{general.mods} Mod(s)",
|
||||
"player_info_coordinate": "At {player.position.x}, {player.position.z}",
|
||||
"players": "{server.players.current} / {server.players.max} Players",
|
||||
"player_info_in": "({custom.player_info.health})",
|
||||
"player_info_items": "Items: {item.main_hand.message}",
|
||||
"player_info_out": "As {player.name}",
|
||||
"player_info_health": "Health: {player.health.current}/{player.health.max}",
|
||||
"world_info": "On {world.name}",
|
||||
"pack": "{pack.name}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
// How long the music track title should be visible on the screen. 20 ticks = 1 second.
|
||||
// min: 0, max: 1200
|
||||
"durationTitleShownInTicks": 80,
|
||||
// Whether the music track title should fade in.
|
||||
"titleShouldFadeIn": true,
|
||||
// Whether the music track title should fade out.
|
||||
"titleShouldFadeOut": true,
|
||||
// Places the GUI music GUI on the left.
|
||||
"musicGUIPositionIsLeft": false,
|
||||
// Places the GUI music GUI in the middle.
|
||||
"musicGUIPositionIsCenter": false,
|
||||
// Places the GUI music GUI on the right.
|
||||
"musicGUIPositionIsRight": true,
|
||||
// The vertical offset (y coord) for the music GUI. This determines how far up the text should be on the screen. Can be changed to prevent GUIs from overlapping.
|
||||
// min: 0, max: 3000
|
||||
"musicGUIBottomHeightOffset": 600,
|
||||
// The horizontal offset (x coord) for the music GUI.
|
||||
// min: -3000, max: 3000
|
||||
"musicGUIWidthOffset": 0,
|
||||
// If the text displayed should have a shadow drawn below it.
|
||||
"drawTextShadow": true,
|
||||
// The red RGB value for the music GUI text.
|
||||
// min: 0, max: 255
|
||||
"RGB_R": 13,
|
||||
// The green RGB value for the music GUI text.
|
||||
// min: 0, max: 255
|
||||
"RGB_G": 120,
|
||||
// The blue RGB value for the music GUI text.
|
||||
// min: 0, max: 255
|
||||
"RGB_B": 26
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
sign_ao=true
|
||||
shulker_box_ao=true
|
||||
chest_ao=true
|
||||
bed_ao=true
|
||||
@@ -0,0 +1 @@
|
||||
showToasts = false
|
||||
@@ -0,0 +1 @@
|
||||
useSmallThreadingDetector = true
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
// If enabled, always hides the main hand. If disabled, hides the main hand when holding the items defined in hideMainHandWithItems.
|
||||
"alwaysHideMainHand": false,
|
||||
// If enabled, always hides the main hand if it's empty. Will still be visible when swung empty.
|
||||
"alwaysHideEmptyMainHand": false,
|
||||
// The items which when held will hide the main hand if alwaysHideMainHand is disabled.
|
||||
"hideMainHandWithItems": "",
|
||||
// If enabled, always hides the offhand. If disabled, hides the offhand when holding the items defined in hideOffhandWithItems.
|
||||
"alwaysHideOffhand": false,
|
||||
// The items which when held will hide the offhand if alwaysHideOffhand is disabled.
|
||||
"hideOffhandWithItems": "minecraft:totem_of_undying,minecraft:torch"
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"REGULAR_INFO": "----- Regular config values below -----",
|
||||
"font_atlas_resizing": true,
|
||||
"map_atlas_generation": true,
|
||||
"fast_text_lookup": true,
|
||||
"avoid_redundant_framebuffer_switching": true,
|
||||
"fix_slow_buffer_upload_on_apple_gpu": true,
|
||||
"COSMETIC_INFO": "----- Cosmetic only config values below (Does not optimize anything) -----",
|
||||
"dont_add_info_into_debug_hud": false,
|
||||
"EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----",
|
||||
"experimental_disable_error_checking": true,
|
||||
"experimental_disable_resource_pack_conflict_handling": true,
|
||||
"experimental_sign_text_buffering": false,
|
||||
"DEBUG_INFO": "----- Debug only config values below (Do not touch) -----",
|
||||
"debug_only_and_not_recommended_disable_universal_batching": false,
|
||||
"debug_only_and_not_recommended_disable_mod_conflict_handling": false,
|
||||
"debug_only_and_not_recommended_disable_hardware_conflict_handling": false,
|
||||
"debug_only_print_additional_error_information": false,
|
||||
"debug_only_use_last_usage_for_batch_ordering": false
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
// A global toggle whether the improved edtiting functionality should be enabled.
|
||||
"enableImprovedEditing": true,
|
||||
// Whether the Improved/Normal Editing button should be visible on the sign edit screen.
|
||||
"showImprovedEditingButton": false
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
disableUpdateMessage=true
|
||||
enableShaders=false
|
||||
@@ -0,0 +1,180 @@
|
||||
# LambDynamicLights configuration.
|
||||
# The dynamic lights mode
|
||||
mode = "fancy"
|
||||
|
||||
# Light sources settings.
|
||||
[light_sources]
|
||||
# Enables water-sensitive light sources check. This means that water-sensitive items will not light up when submerged in water.
|
||||
water_sensitive_check = true
|
||||
beam = true
|
||||
firefly = true
|
||||
# Enable entities light source.
|
||||
entities = true
|
||||
# Enable first-person player light source.
|
||||
self = true
|
||||
# TNT lighting mode. May be off, simple or fancy.
|
||||
tnt = "fancy"
|
||||
# Creeper lighting mode. May be off, simple or fancy.
|
||||
creeper = "fancy"
|
||||
guardian_laser = true
|
||||
|
||||
[light_sources.settings.entities.minecraft]
|
||||
zombie_horse = true
|
||||
pale_oak_boat = true
|
||||
axolotl = true
|
||||
egg = true
|
||||
zoglin = true
|
||||
spawner_minecart = true
|
||||
allay = true
|
||||
llama = true
|
||||
jungle_chest_boat = true
|
||||
mule = true
|
||||
bat = true
|
||||
husk = true
|
||||
camel = true
|
||||
experience_bottle = true
|
||||
rabbit = true
|
||||
firework_rocket = true
|
||||
silverfish = true
|
||||
giant = true
|
||||
happy_ghast = true
|
||||
drowned = true
|
||||
creaking = true
|
||||
item = true
|
||||
oak_chest_boat = true
|
||||
goat = true
|
||||
horse = true
|
||||
vindicator = true
|
||||
birch_boat = true
|
||||
minecart = true
|
||||
spectral_arrow = true
|
||||
llama_spit = true
|
||||
mooshroom = true
|
||||
oak_boat = true
|
||||
glow_item_frame = false
|
||||
snowball = true
|
||||
tnt = true
|
||||
parrot = true
|
||||
creeper = true
|
||||
lightning_bolt = true
|
||||
tadpole = true
|
||||
ravager = true
|
||||
evoker_fangs = true
|
||||
chest_minecart = true
|
||||
tropical_fish = true
|
||||
slime = true
|
||||
pillager = true
|
||||
dark_oak_chest_boat = true
|
||||
area_effect_cloud = true
|
||||
blaze = true
|
||||
piglin = true
|
||||
end_crystal = true
|
||||
endermite = true
|
||||
ender_pearl = true
|
||||
zombie = true
|
||||
item_display = true
|
||||
breeze_wind_charge = true
|
||||
guardian = true
|
||||
fireball = true
|
||||
illusioner = true
|
||||
eye_of_ender = true
|
||||
wither_skull = true
|
||||
wolf = true
|
||||
block_display = true
|
||||
tnt_minecart = true
|
||||
zombie_villager = true
|
||||
elder_guardian = true
|
||||
chest_boat = true
|
||||
cherry_chest_boat = true
|
||||
acacia_chest_boat = true
|
||||
boat = true
|
||||
small_fireball = true
|
||||
strider = true
|
||||
cave_spider = true
|
||||
cod = true
|
||||
snow_golem = true
|
||||
witch = true
|
||||
spider = true
|
||||
command_block_minecart = true
|
||||
panda = true
|
||||
bee = true
|
||||
arrow = true
|
||||
lingering_potion = true
|
||||
cow = true
|
||||
birch_chest_boat = true
|
||||
magma_cube = true
|
||||
pig = true
|
||||
skeleton = true
|
||||
spruce_boat = true
|
||||
frog = true
|
||||
hoglin = true
|
||||
armadillo = true
|
||||
splash_potion = true
|
||||
armor_stand = true
|
||||
experience_orb = true
|
||||
dolphin = true
|
||||
stray = true
|
||||
shulker = true
|
||||
turtle = true
|
||||
jungle_boat = true
|
||||
salmon = true
|
||||
vex = true
|
||||
wandering_trader = true
|
||||
wither_skeleton = true
|
||||
piglin_brute = true
|
||||
breeze = true
|
||||
ocelot = true
|
||||
furnace_minecart = true
|
||||
acacia_boat = true
|
||||
pale_oak_chest_boat = true
|
||||
mangrove_boat = true
|
||||
item_frame = true
|
||||
phantom = true
|
||||
ender_dragon = true
|
||||
leash_knot = true
|
||||
evoker = true
|
||||
marker = true
|
||||
glow_squid = true
|
||||
warden = true
|
||||
shulker_bullet = true
|
||||
squid = true
|
||||
enderman = true
|
||||
dragon_fireball = true
|
||||
chicken = true
|
||||
sniffer = true
|
||||
dark_oak_boat = true
|
||||
trader_llama = true
|
||||
donkey = true
|
||||
bogged = true
|
||||
bamboo_chest_raft = true
|
||||
bamboo_raft = true
|
||||
fox = true
|
||||
mangrove_chest_boat = true
|
||||
cherry_boat = true
|
||||
iron_golem = true
|
||||
zombified_piglin = true
|
||||
cat = true
|
||||
wind_charge = true
|
||||
ghast = true
|
||||
sheep = true
|
||||
player = true
|
||||
pufferfish = true
|
||||
potion = true
|
||||
trident = true
|
||||
villager = true
|
||||
ominous_item_spawner = true
|
||||
skeleton_horse = true
|
||||
fishing_bobber = true
|
||||
text_display = true
|
||||
polar_bear = true
|
||||
hopper_minecart = true
|
||||
falling_block = true
|
||||
painting = true
|
||||
interaction = true
|
||||
wither = true
|
||||
spruce_chest_boat = true
|
||||
|
||||
[debug]
|
||||
active_dynamic_lighting_cells = false
|
||||
display_dynamic_lighting_chunk_rebuild = false
|
||||
display_behavior_bounding_box = false
|
||||
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"legacy.mixin.base.client.anvil": true,
|
||||
"legacy.mixin.base.client.beacon": true,
|
||||
"legacy.mixin.base.client.book": true,
|
||||
"legacy.mixin.base.client.bosshealth": true,
|
||||
"legacy.mixin.base.client.brewing": true,
|
||||
"legacy.mixin.base.client.cartography": true,
|
||||
"legacy.mixin.base.client.chat": true,
|
||||
"legacy.mixin.base.client.container": true,
|
||||
"legacy.mixin.base.client.crafter": true,
|
||||
"legacy.mixin.base.client.crafting": true,
|
||||
"legacy.mixin.base.client.create_world": true,
|
||||
"legacy.mixin.base.client.drowned": true,
|
||||
"legacy.mixin.base.client.enchantment": true,
|
||||
"legacy.mixin.base.client.furnace": true,
|
||||
"legacy.mixin.base.client.grindstone": true,
|
||||
"legacy.mixin.base.client.gui": true,
|
||||
"legacy.mixin.base.client.inventory": true,
|
||||
"legacy.mixin.base.client.loom": true,
|
||||
"legacy.mixin.base.client.merchant": true,
|
||||
"legacy.mixin.base.client.smithing": true,
|
||||
"legacy.mixin.base.client.stonecutter": true,
|
||||
"legacy.mixin.base.client.title": true,
|
||||
"legacy.mixin.base.client.witch": true
|
||||
}
|
||||
@@ -0,0 +1,206 @@
|
||||
{
|
||||
"advancedHeldItemTooltip": false,
|
||||
"advancedOptionsMode": 1,
|
||||
"advancements": true,
|
||||
"animatedCharacter": true,
|
||||
"autoSaveCountdown": true,
|
||||
"autoSaveInterval": 1,
|
||||
"autoSaveWhenPaused": false,
|
||||
"backSound": true,
|
||||
"bubblesOutsideWater": true,
|
||||
"caveSounds": true,
|
||||
"classicCrafting": false,
|
||||
"classicLoom": false,
|
||||
"classicStonecutting": false,
|
||||
"classicTrading": false,
|
||||
"component_iris.keybind.reload": "none",
|
||||
"component_iris.keybind.shaderPackSelection": "none",
|
||||
"component_iris.keybind.toggleShaders": "none",
|
||||
"component_iris.keybind.wireframe": "none",
|
||||
"component_key.advancements": "none",
|
||||
"component_key.attack": "right_trigger",
|
||||
"component_key.back": "left_stick_down",
|
||||
"component_key.chat": "touchpad_button",
|
||||
"component_key.command": "none",
|
||||
"component_key.cpm.gestureMenu": "none",
|
||||
"component_key.cpm.qa_1": "none",
|
||||
"component_key.cpm.qa_10": "none",
|
||||
"component_key.cpm.qa_11": "none",
|
||||
"component_key.cpm.qa_12": "none",
|
||||
"component_key.cpm.qa_13": "none",
|
||||
"component_key.cpm.qa_14": "none",
|
||||
"component_key.cpm.qa_15": "none",
|
||||
"component_key.cpm.qa_16": "none",
|
||||
"component_key.cpm.qa_2": "none",
|
||||
"component_key.cpm.qa_3": "none",
|
||||
"component_key.cpm.qa_4": "none",
|
||||
"component_key.cpm.qa_5": "none",
|
||||
"component_key.cpm.qa_6": "none",
|
||||
"component_key.cpm.qa_7": "none",
|
||||
"component_key.cpm.qa_8": "none",
|
||||
"component_key.cpm.qa_9": "none",
|
||||
"component_key.cpm.renderToggle": "none",
|
||||
"component_key.disable_voice_chat": "none",
|
||||
"component_key.drop": "right_button",
|
||||
"component_key.dynamic_fps.toggle_disabled": "none",
|
||||
"component_key.dynamic_fps.toggle_forced": "none",
|
||||
"component_key.entityculling.toggle": "none",
|
||||
"component_key.entityculling.toggleBoxes": "none",
|
||||
"component_key.fabrishot.screenshot": "none",
|
||||
"component_key.forward": "left_stick_up",
|
||||
"component_key.fullscreen": "none",
|
||||
"component_key.hide_icons": "none",
|
||||
"component_key.hotbar.1": "none",
|
||||
"component_key.hotbar.2": "none",
|
||||
"component_key.hotbar.3": "none",
|
||||
"component_key.hotbar.4": "none",
|
||||
"component_key.hotbar.5": "none",
|
||||
"component_key.hotbar.6": "none",
|
||||
"component_key.hotbar.7": "none",
|
||||
"component_key.hotbar.8": "none",
|
||||
"component_key.hotbar.9": "none",
|
||||
"component_key.jump": "down_button",
|
||||
"component_key.left": "left_stick_left",
|
||||
"component_key.loadToolbarActivator": "none",
|
||||
"component_key.modmenu.open_menu": "none",
|
||||
"component_key.mute_microphone": "none",
|
||||
"component_key.ok_zoomer.decrease_zoom": "none",
|
||||
"component_key.ok_zoomer.increase_zoom": "none",
|
||||
"component_key.ok_zoomer.reset_zoom": "none",
|
||||
"component_key.ok_zoomer.zoom": "none",
|
||||
"component_key.pickItem": "none",
|
||||
"component_key.playerlist": "none",
|
||||
"component_key.push_to_talk": "none",
|
||||
"component_key.quickActions": "none",
|
||||
"component_key.right": "left_stick_right",
|
||||
"component_key.saveToolbarActivator": "none",
|
||||
"component_key.screenshot": "capture",
|
||||
"component_key.smoothCamera": "none",
|
||||
"component_key.sneak": "right_stick_button",
|
||||
"component_key.socialInteractions": "none",
|
||||
"component_key.spectatorOutlines": "none",
|
||||
"component_key.sprint": "none",
|
||||
"component_key.swapOffhand": "none",
|
||||
"component_key.togglePerspective": "left_stick_button",
|
||||
"component_key.use": "left_trigger",
|
||||
"component_key.voice_chat": "none",
|
||||
"component_key.voice_chat_adjust_volumes": "none",
|
||||
"component_key.voice_chat_group": "none",
|
||||
"component_key.voice_chat_settings": "none",
|
||||
"component_key.voice_chat_toggle_recording": "none",
|
||||
"component_key.whisper": "none",
|
||||
"component_legacy.key.crafting": "left_button",
|
||||
"component_legacy.key.cycleHeldLeft": "left_bumper",
|
||||
"component_legacy.key.cycleHeldRight": "right_bumper",
|
||||
"component_legacy.key.flyDown": "dpad_down",
|
||||
"component_legacy.key.flyLeft": "dpad_left",
|
||||
"component_legacy.key.flyRight": "dpad_right",
|
||||
"component_legacy.key.flyUp": "dpad_up",
|
||||
"component_legacy.key.host_options": "back",
|
||||
"component_legacy.key.inventory": "up_button",
|
||||
"component_legacy.key.legacy4JSettings": "none",
|
||||
"component_legacy.key.toggleCursor": "none",
|
||||
"controlTooltipDisplay": 0,
|
||||
"controlType": "auto",
|
||||
"controllerCursorAtFirstInventorySlot": true,
|
||||
"controllerDoubleClick": false,
|
||||
"controllerSensitivity": 0.5,
|
||||
"controllerToasts": true,
|
||||
"controllerToggleCrouch": true,
|
||||
"controllerToggleSprint": false,
|
||||
"controllerVirtualCursor": true,
|
||||
"createWorldDifficulty": 2,
|
||||
"creativeTab": true,
|
||||
"cursorAtFirstInventorySlot": false,
|
||||
"cursorMode": 0,
|
||||
"defaultParticlePhysics": true,
|
||||
"directSaveLoad": false,
|
||||
"displayControlTooltips": true,
|
||||
"displayGamma": true,
|
||||
"displayHUD": true,
|
||||
"displayHand": true,
|
||||
"displayMultipleControlsFromAction": false,
|
||||
"displayNameTagBorder": true,
|
||||
"enhancedItemTranslucency": true,
|
||||
"enhancedPistonMovingRenderer": true,
|
||||
"fastLeavesCustomModels": false,
|
||||
"fastLeavesWhenBlocked": false,
|
||||
"flyingViewRolling": true,
|
||||
"forceMixedCrafting": false,
|
||||
"forceSmoothMovement": false,
|
||||
"gameTooltips": true,
|
||||
"gamma": 0.5,
|
||||
"headFollowsTheCamera": true,
|
||||
"hints": true,
|
||||
"hoverFocusSound": false,
|
||||
"hudDelay": 200,
|
||||
"hudDistance": 1.0,
|
||||
"hudOpacity": 0.8,
|
||||
"hudScale": 2,
|
||||
"interfaceSensitivity": 0.5,
|
||||
"inventoryHoverFocusSound": false,
|
||||
"invertControllerButtons": false,
|
||||
"invertYController": false,
|
||||
"invertedCrosshair": false,
|
||||
"invertedFrontCameraPitch": true,
|
||||
"itemLightingInHand": true,
|
||||
"itemTooltipEllipsis": true,
|
||||
"lastLoadedMinecraftVersion": "1.21.8",
|
||||
"lastLoadedVersion": "1.8.5",
|
||||
"leaderboards": true,
|
||||
"leftStickDeadZone": 0.25,
|
||||
"leftTriggerDeadZone": 0.2,
|
||||
"legacyBabyVillagerHead": true,
|
||||
"legacyCreativeBlockPlacing": true,
|
||||
"legacyCursor": true,
|
||||
"legacyDrownedAnimation": true,
|
||||
"legacyEntityFireTint": true,
|
||||
"legacyEvokerFangs": true,
|
||||
"legacyHearts": true,
|
||||
"legacyIntroAndReloading": true,
|
||||
"legacyItemPickup": true,
|
||||
"legacyItemTooltips": true,
|
||||
"legacyItemTooltipsScaling": true,
|
||||
"legacyLoadingAndConnecting": true,
|
||||
"legacyOverstackedItems": true,
|
||||
"legacyPanorama": true,
|
||||
"legacySkyShape": true,
|
||||
"limitCursor": true,
|
||||
"linearCameraMovement": false,
|
||||
"lockControlTypeChange": false,
|
||||
"loyaltyLines": true,
|
||||
"mapsWithCoords": true,
|
||||
"menusWithBackground": false,
|
||||
"merchantTradingIndicator": true,
|
||||
"minecartSounds": true,
|
||||
"modCraftingTabs": false,
|
||||
"overrideTerrainFogEnd": true,
|
||||
"overrideTerrainFogStart": true,
|
||||
"rightStickDeadZone": 0.34,
|
||||
"rightTriggerDeadZone": 0.2,
|
||||
"saveCache": false,
|
||||
"searchCreativeTab": true,
|
||||
"selectedController": 0,
|
||||
"selectedControllerHandler": 2,
|
||||
"selectedItemTooltipLines": 4,
|
||||
"selectedItemTooltipSpacing": 12,
|
||||
"showVanillaRecipeBook": false,
|
||||
"skipInitialSaveWarning": false,
|
||||
"skipIntro": false,
|
||||
"smoothAnimatedCharacter": false,
|
||||
"smoothMovement": true,
|
||||
"systemCursor": false,
|
||||
"systemMessagesAsOverlay": false,
|
||||
"terrainFogEnd": 16,
|
||||
"terrainFogStart": 2,
|
||||
"titleScreenFade": false,
|
||||
"titleScreenVersionText": false,
|
||||
"tooltipBoxes": true,
|
||||
"unbindConflictingButtons": true,
|
||||
"unbindConflictingKeys": true,
|
||||
"unfocusedInputs": false,
|
||||
"vanillaTabs": false,
|
||||
"vanillaTutorial": false,
|
||||
"vehicleCameraRotation": 2,
|
||||
"vignette": false
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"legacyCombat": true,
|
||||
"legacySwordBlocking": false,
|
||||
"squaredViewDistance": false
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"legacy.mixin.base.cauldron": true,
|
||||
"legacy.mixin.base.piston": true
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"globalResources": {
|
||||
"applyOnTop": true,
|
||||
"packs": [
|
||||
"file/Legacy Worlds.zip",
|
||||
"file/Modern-Skin-Packs-2.3.0.zip",
|
||||
"file/Legacy-Skin-Packs-2.3.0.zip",
|
||||
"file/The_Garden_Awakens_v1.0.zip",
|
||||
"file/Doctor Who Legacy Skins.zip",
|
||||
"file/Classic MCYT Skin Pack.zip",
|
||||
"file/Baby Kitty and Friends.zip",
|
||||
"file/Ocelots-Skin-Pack.zip",
|
||||
"file/Default Skin Pack.zip",
|
||||
"file/A Minecraft Movie Hero Pack.zip",
|
||||
"file/Legacy Skins Pack Ordering v3.zip",
|
||||
"file/TutorialWorldAddon.zip",
|
||||
"file/rcr3.zip",
|
||||
"file/Legacy Titles RC.zip",
|
||||
"legacy:legacy_resources",
|
||||
"file/1080p-kbm-tooltips.zip",
|
||||
"continuity:glass_pane_culling_fix",
|
||||
"continuity:default"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
mixin.minimal_nonvanilla=false
|
||||
mixin.experimental=true
|
||||
@@ -0,0 +1,80 @@
|
||||
# This is the configuration file for ModernFix.
|
||||
# In general, prefer using the config screen to editing this file. It can be accessed
|
||||
# via the standard mod menu on your respective mod loader. Changes will, however,
|
||||
# require restarting the game to take effect.
|
||||
#
|
||||
# The following options can be enabled or disabled if there is a compatibility issue.
|
||||
# Add a line with your option name and =true or =false at the bottom of the file to enable
|
||||
# or disable a rule. For example:
|
||||
# mixin.perf.dynamic_resources=true
|
||||
# Do not include the #. You may reset to defaults by deleting this file.
|
||||
#
|
||||
# Available options:
|
||||
# mixin.bugfix.chunk_deadlock=false # (overridden for mod compat)
|
||||
# mixin.bugfix.concurrency=true # (default)
|
||||
# mixin.bugfix.missing_block_entities=false # (default)
|
||||
# mixin.bugfix.packet_leak=false # (default)
|
||||
# mixin.bugfix.paper_chunk_patches=false # (overridden for mod compat)
|
||||
# mixin.bugfix.restore_old_dragon_movement=false # (default)
|
||||
# mixin.bugfix.world_leaks=true # (default)
|
||||
# mixin.bugfix.world_screen_skipped=true # (default)
|
||||
# mixin.devenv=false # (default)
|
||||
# mixin.feature.blockentity_incorrect_thread=false # (default)
|
||||
# mixin.feature.branding=true # (default)
|
||||
# mixin.feature.cause_lag_by_disabling_threads=false # (default)
|
||||
# mixin.feature.direct_stack_trace=false # (default)
|
||||
# mixin.feature.disable_unihex_font=false # (default)
|
||||
# mixin.feature.integrated_server_watchdog=true # (default)
|
||||
# mixin.feature.log_stdout_in_log_files=true # (default)
|
||||
# mixin.feature.mcfunction_profiling=true # (default)
|
||||
# mixin.feature.measure_time=true # (default)
|
||||
# mixin.feature.remove_chat_signing=false # (default)
|
||||
# mixin.feature.remove_telemetry=true # (default)
|
||||
# mixin.feature.snapshot_easter_egg=true # (default)
|
||||
# mixin.feature.spam_thread_dump=false # (default)
|
||||
# mixin.feature.spark_profile_launch=false # (default)
|
||||
# mixin.feature.spark_profile_world_join=false # (default)
|
||||
# mixin.feature.stalled_chunk_load_detection=false # (default)
|
||||
# mixin.feature.warn_missing_perf_mods=true # (default)
|
||||
# mixin.launch.class_search_cache=true # (default)
|
||||
# mixin.perf.cache_blockstate_cache_arrays=true # (default)
|
||||
# mixin.perf.cache_profile_texture_url=true # (default)
|
||||
# mixin.perf.cache_strongholds=false # (overridden for mod compat)
|
||||
# mixin.perf.chunk_meshing=true # (default)
|
||||
# mixin.perf.clear_fabric_mapping_tables=false # (default)
|
||||
# mixin.perf.clear_mixin_classinfo=false # (default)
|
||||
# mixin.perf.compact_bit_storage=true # (default)
|
||||
# mixin.perf.compress_unihex_font=true # (default)
|
||||
# mixin.perf.dedicated_reload_executor=true # (default)
|
||||
# mixin.perf.deduplicate_climate_parameters=false # (default)
|
||||
# mixin.perf.deduplicate_location=false # (default)
|
||||
# mixin.perf.deduplicate_wall_shapes=true # (default)
|
||||
# mixin.perf.dynamic_dfu=true # (default)
|
||||
# mixin.perf.dynamic_entity_renderers=false # (default)
|
||||
# mixin.perf.dynamic_resources=false # (default)
|
||||
# mixin.perf.dynamic_sounds=true # (default)
|
||||
# mixin.perf.dynamic_structure_manager=true # (default)
|
||||
# mixin.perf.faster_command_suggestions=true # (default)
|
||||
# mixin.perf.faster_item_rendering=false # (default)
|
||||
# mixin.perf.faster_texture_stitching=true # (default)
|
||||
# mixin.perf.fix_loop_spin_waiting=true # (default)
|
||||
# mixin.perf.lazy_search_tree_registry=true # (default)
|
||||
# mixin.perf.memoize_creative_tab_build=true # (default)
|
||||
# mixin.perf.model_optimizations=true # (default)
|
||||
# mixin.perf.mojang_registry_size=true # (default)
|
||||
# mixin.perf.remove_biome_temperature_cache=true # (default)
|
||||
# mixin.perf.state_definition_construct=true # (default)
|
||||
# mixin.perf.thread_priorities=false # (overridden for mod compat)
|
||||
# mixin.perf.ticking_chunk_alloc=true # (default)
|
||||
# mixin.perf.worldgen_allocation=false # (default)
|
||||
# mixin.safety=true # (default)
|
||||
#
|
||||
# User overrides go here.
|
||||
mixin.bugfix.missing_block_entities=true
|
||||
mixin.bugfix.restore_old_dragon_movement=true
|
||||
mixin.perf.clear_fabric_mapping_tables=true
|
||||
mixin.perf.clear_mixin_classinfo=true
|
||||
mixin.perf.dynamic_entity_renderers=true
|
||||
mixin.perf.dynamic_resources=true
|
||||
mixin.perf.faster_item_rendering=true
|
||||
mixin.perf.worldgen_allocation=true
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"mods_button_style": "icon",
|
||||
"game_menu_button_style": "icon",
|
||||
"update_checker": false,
|
||||
"count_libraries": false,
|
||||
"count_children": false
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
# This is the configuration file for Moonrise.
|
||||
#
|
||||
# Each configuration option is prefixed with a comment to explain what it does. Additional changes to this file
|
||||
# other than modifying the options, such as adding comments, will be overwritten when Moonrise loads the config.
|
||||
#
|
||||
# Below are the Moonrise startup flags. Note that startup flags must be placed in the JVM arguments, not
|
||||
# program arguments.
|
||||
# -DMoonrise.ConfigFile=<file> - Override the config file location. Might be useful for multiple game versions.
|
||||
# -DMoonrise.WorkerThreadCount=<number> - Override the auto configured worker thread counts (worker-threads).
|
||||
# -DMoonrise.MaxViewDistance=<number> - Overrides the maximum view distance, should only use for debugging purposes.
|
||||
|
||||
bug-fixes:
|
||||
# Fixes https://bugs.mojang.com/browse/MC-159283. This fixes a bug resulting in the end islands
|
||||
# not properly generating at far enough distances in the end. Note that toggling this config option
|
||||
# will not affect already generated areas.
|
||||
# This configuration has two options:
|
||||
# true -> Fixes the end islands generation. This is different from Vanilla behavior.
|
||||
# false -> Does not fix the end islands generation. This is the same behavior as Vanilla.
|
||||
fix-MC-159283: false
|
||||
# Fixes https://bugs.mojang.com/browse/MC-224294. By avoiding double ticking lava blocks during
|
||||
# chunk random ticking, the cost of world random ticking is significantly reduced.
|
||||
# This configuration has two options:
|
||||
# true -> Does not double tick lava. This is different from Vanilla behavior.
|
||||
# false -> Does double tick lava. This is the same behavior as Vanilla.
|
||||
fix-MC-224294: true
|
||||
chunk-loading:
|
||||
# Advanced configuration options for player chunk loading. You shouldn't be touching these
|
||||
# unless you have a reason.
|
||||
advanced:
|
||||
# Whether to avoid sending chunks to players who have a view distance
|
||||
# configured lower than the server's.
|
||||
auto-config-send-distance: true
|
||||
# The maximum amount of pending chunk generations per player. If
|
||||
# this value is 0, then the player chunk loader will automatically determine a value. If
|
||||
# this value is less-than 0, then there is no limit.
|
||||
#
|
||||
# This value should be used to tune the saturation of the chunk system.
|
||||
player-max-concurrent-chunk-generates: 0
|
||||
# The maximum amount of pending chunk loads per player. If
|
||||
# this value is 0, then the player chunk loader will automatically determine a value. If
|
||||
# this value is less-than 0, then there is no limit.
|
||||
#
|
||||
# This value should be used to tune the saturation of the chunk system.
|
||||
player-max-concurrent-chunk-loads: 0
|
||||
# Chunk loading/generation/sending rate targets for the chunk system. These values are the
|
||||
# maximum rates at which the player chunk loader will attempt to load/generate/send chunks to
|
||||
# players. Actual resulting rates will depend on hardware.
|
||||
basic:
|
||||
# The delay before chunks are unloaded around players once they leave their view distance.
|
||||
# The Vanilla value is 0 ticks. Setting this value higher (i.e 5s) will allow pets to teleport
|
||||
# to their owners when they teleport.
|
||||
player-chunk-unload-delay: 0t
|
||||
# The maximum rate of chunks to generate for given player, per second. If this value is <= 0,
|
||||
# then there is no rate limit.
|
||||
player-max-gen-rate: -1.0
|
||||
# The maximum rate of chunks to load from disk for any given player, per second. If this value is <= 0,
|
||||
# then there is no rate limit.
|
||||
player-max-load-rate: -1.0
|
||||
# The maximum rate of chunks to send to any given player, per second. If this value is <= 0,
|
||||
# then there is no rate limit.
|
||||
player-max-send-rate: -1.0
|
||||
chunk-saving:
|
||||
# The interval at which chunks should be incrementally autosaved.
|
||||
auto-save-interval: 5m
|
||||
# The maximum number of chunks to incrementally autosave each tick. If
|
||||
# the value is <= 0, then no chunks will be incrementally saved.
|
||||
max-auto-save-chunks-per-tick: 12
|
||||
chunk-system:
|
||||
# Whether to run generation population in parallel. By default this is set to false,
|
||||
# as mods affecting world gen are not safe to run in parallel. If you have no mods affecting
|
||||
# gen and are saturating the population generation (~10 threads of the worker pool generating
|
||||
# chunks), you may set this to true to possibly increase generation speed.
|
||||
population-gen-parallelism: true
|
||||
misc:
|
||||
# Whether the loading screen should be closed immediately when joining servers/SP worlds.
|
||||
# This will let you in game faster, but may result in getting in game before enough chunks are
|
||||
# loaded for rendering.
|
||||
immediately-close-loading-screen: true
|
||||
# Do not change, used internally.
|
||||
version: 1
|
||||
# Configuration options which control the behavior of the common threadpool workers.
|
||||
worker-pool:
|
||||
# Set the number of threads dedicated to RegionFile I/O operations.
|
||||
# If the value is <= 0, then the number of threads used is 1. Configuring
|
||||
# a higher value than 1 is only recommended on SSDs (HDDs scale negatively)
|
||||
# and when you have determined that I/O is the bottleneck for chunk loading/saving.
|
||||
io-threads: -1
|
||||
# Set the number of shared worker threads to be used by chunk rendering,
|
||||
# chunk loading, chunk generation. If the value is <= 0, then the number
|
||||
# of threads will automatically be determined.
|
||||
worker-threads: -1
|
||||
@@ -0,0 +1,25 @@
|
||||
version = 1
|
||||
enableSodiumMenu = true
|
||||
dontCull = []
|
||||
cloudCulling = true
|
||||
signTextCulling = true
|
||||
rainCulling = true
|
||||
useBlockStateCulling = true
|
||||
useCustomItemFrameRenderer = true
|
||||
itemFrameMapCulling = true
|
||||
useItemFrameLOD = true
|
||||
itemFrameLODRange = 16
|
||||
useItemFrame3FaceCulling = true
|
||||
itemFrame3FaceCullingRange = 2.0
|
||||
paintingCulling = true
|
||||
leavesCullingMode = "DEFAULT"
|
||||
leavesCullingAmount = 2
|
||||
includeMangroveRoots = true
|
||||
endGatewayCulling = true
|
||||
beaconBeamCulling = true
|
||||
useOnModdedBlocksByDefault = true
|
||||
|
||||
[modCompatibility]
|
||||
minimega = true
|
||||
legacy = true
|
||||
minecraft = true
|
||||
@@ -0,0 +1,601 @@
|
||||
{
|
||||
"modEnabled": true,
|
||||
"restrictedLan": true,
|
||||
"serverSideOnly": true,
|
||||
"serverLogging": true,
|
||||
"serverDebugMode": false,
|
||||
"mod": {
|
||||
"favoriteTweaks": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"openedConfigScreen": true,
|
||||
"openedSupporterScreen": false,
|
||||
"persistentConfigScreen": true,
|
||||
"defaultScreen": "HOME_SCREEN",
|
||||
"openConfigBinding": 79,
|
||||
"numberOfBackups": 5,
|
||||
"showWelcomeToast": true,
|
||||
"showHandshakeToast": false,
|
||||
"showLanChangeToast": true,
|
||||
"showServerboundToast": true,
|
||||
"showClientboundToast": false,
|
||||
"smoothScroll": true,
|
||||
"menuBackgroundOpacity": 85,
|
||||
"displayNewTags": true,
|
||||
"displayTagTooltips": true,
|
||||
"displayCategoryTree": true,
|
||||
"categoryTreeOpacity": 80,
|
||||
"displayRowHighlight": true,
|
||||
"displayRowHighlightFade": true,
|
||||
"overrideRowHighlight": false,
|
||||
"rowHighlightOpacity": 20
|
||||
},
|
||||
"sound": {
|
||||
"disabledPositionedSounds": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"disabledGlobalSounds": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"playMusicWhenPaused": true,
|
||||
"musicForMenu": "BLENDED",
|
||||
"musicForCreative": "BLENDED",
|
||||
"replaceOverworldBiomeMusic": true,
|
||||
"replaceNetherBiomeMusic": true,
|
||||
"replaceGameplayMusic": true,
|
||||
"stopSongBinding": -1,
|
||||
"nextSongBinding": -1,
|
||||
"oldCaveSounds": false,
|
||||
"oldCaveAmbience": false,
|
||||
"disableNetherAmbience": false,
|
||||
"disableWaterAmbience": false,
|
||||
"oldBed": false,
|
||||
"disableBedPlace": false,
|
||||
"oldChest": false,
|
||||
"disableChest": false,
|
||||
"disableLavaAmbience": false,
|
||||
"disableLavaPop": false,
|
||||
"disableFurnace": false,
|
||||
"disableBlastFurnace": false,
|
||||
"disableGrowth": false,
|
||||
"disableDoorPlace": false,
|
||||
"oldAttack": false,
|
||||
"oldHurt": false,
|
||||
"oldFall": false,
|
||||
"oldXp": false,
|
||||
"disableXpPickup": false,
|
||||
"disableXpLevel": false,
|
||||
"disableGenericSwim": false,
|
||||
"disableFishSwim": false,
|
||||
"disableFishHurt": false,
|
||||
"disableFishDeath": false,
|
||||
"disableSquid": false,
|
||||
"disableGlowSquidOther": false,
|
||||
"disableGlowSquidAmbience": false,
|
||||
"oldStep": false,
|
||||
"ignoreModdedStep": false
|
||||
},
|
||||
"eyeCandy": {
|
||||
"sodiumWaterAo": false,
|
||||
"oldGrassSideTexture": false,
|
||||
"oldFastGrassTexture": true,
|
||||
"removeMipmapTexture": false,
|
||||
"ambientOcclusionBlocks": {
|
||||
"items": [
|
||||
"minecraft:powder_snow_bucket",
|
||||
"minecraft:composter"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"disableBlockOffsets": {
|
||||
"items": [
|
||||
"minecraft:poppy",
|
||||
"minecraft:poppy*",
|
||||
"minecraft:rose_bush",
|
||||
"minecraft:rose_bush*"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"disableAllOffset": false,
|
||||
"oldMissingTexture": "MODERN",
|
||||
"applyFullBlockCollisions": false,
|
||||
"fullBlockCollisions": {
|
||||
"items": [],
|
||||
"disabled": false
|
||||
},
|
||||
"fullBlockOutlines": {
|
||||
"items": [
|
||||
"minecraft:cobblestone_stairs",
|
||||
"minecraft:cobblestone_stairs*",
|
||||
"minecraft:cobblestone_wall",
|
||||
"minecraft:cobblestone_wall*",
|
||||
"minecraft:oak_fence",
|
||||
"minecraft:oak_fence*",
|
||||
"minecraft:chest",
|
||||
"minecraft:chest*",
|
||||
"minecraft:ender_chest",
|
||||
"minecraft:ender_chest*",
|
||||
"minecraft:cauldron",
|
||||
"minecraft:cauldron*",
|
||||
"minecraft:hopper",
|
||||
"minecraft:hopper*",
|
||||
"minecraft:anvil",
|
||||
"minecraft:anvil*"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"blockOutlineColor": "#00000066",
|
||||
"blockOutlineThickness": 2.5,
|
||||
"oldBlockOverlay": false,
|
||||
"overlayRenderOrder": "FIRST",
|
||||
"blockOverlayColorType": "SOLID",
|
||||
"blockOverlayColor": "#FFFFFF5A",
|
||||
"blockOverlayGradientTop": "#0000005A",
|
||||
"blockOverlayGradientBottom": "#FFFFFF5A",
|
||||
"pulsateBlockOverlay": true,
|
||||
"pulsateOverlayAnimation": "LINEAR",
|
||||
"oldBlockOverlaySpeed": 0.2,
|
||||
"minimumBlockPulsationTransparency": 0.1,
|
||||
"maximumBlockPulsationTransparency": 0.4,
|
||||
"oldChest": false,
|
||||
"oldEnderChest": false,
|
||||
"oldTrappedChest": false,
|
||||
"applyChestVoxel": false,
|
||||
"oldModChests": {
|
||||
"items": [],
|
||||
"disabled": false
|
||||
},
|
||||
"translucentChests": {
|
||||
"items": [],
|
||||
"disabled": false
|
||||
},
|
||||
"oldTorchBrightness": false,
|
||||
"oldTorchBottom": false,
|
||||
"oldTorchModel": false,
|
||||
"oldRedstoneTorchModel": false,
|
||||
"oldSoulTorchModel": false,
|
||||
"hidePlayerInBed": false,
|
||||
"hideExperienceBar": false,
|
||||
"hideHungerBar": false,
|
||||
"adventureCraftOffhand": false,
|
||||
"leftOffhandOffset": 0,
|
||||
"rightOffhandOffset": 0,
|
||||
"showExpLevelText": false,
|
||||
"showExpLevelInCreative": false,
|
||||
"altExpLevelCorner": "TOP_LEFT",
|
||||
"altExpLevelOffsetX": 0,
|
||||
"altExpLevelOffsetY": 0,
|
||||
"altExpLevelShadow": true,
|
||||
"altExpLevelText": "Level: %a%v",
|
||||
"showExpProgressText": false,
|
||||
"showExpProgressInCreative": false,
|
||||
"useDynamicProgressColor": true,
|
||||
"altExpProgressCorner": "TOP_LEFT",
|
||||
"altExpProgressOffsetX": 0,
|
||||
"altExpProgressOffsetY": 0,
|
||||
"altExpProgressShadow": true,
|
||||
"altExpProgressText": "Experience: %v%",
|
||||
"showHungerFoodText": false,
|
||||
"useDynamicFoodColor": true,
|
||||
"altHungerFoodCorner": "TOP_LEFT",
|
||||
"altHungerFoodOffsetX": 0,
|
||||
"altHungerFoodOffsetY": 0,
|
||||
"altHungerFoodShadow": true,
|
||||
"altHungerFoodText": "Food: %v",
|
||||
"showHungerSaturationText": false,
|
||||
"useDynamicSaturationColor": true,
|
||||
"altHungerSaturationCorner": "TOP_LEFT",
|
||||
"altHungerSaturationOffsetX": 0,
|
||||
"altHungerSaturationOffsetY": 0,
|
||||
"altHungerSaturationShadow": true,
|
||||
"altHungerSaturationText": "Saturation: %v%",
|
||||
"oldVersionOverlay": false,
|
||||
"oldOverlayShadow": false,
|
||||
"oldOverlayCorner": "TOP_LEFT",
|
||||
"oldOverlayOffsetX": 0,
|
||||
"oldOverlayOffsetY": 0,
|
||||
"oldOverlayText": "Minecraft %v",
|
||||
"enableWindowTitle": false,
|
||||
"matchVersionOverlay": false,
|
||||
"windowTitleText": "Minecraft %v",
|
||||
"oldDebug": "MODERN",
|
||||
"debugEntityId": false,
|
||||
"fpsChart": "CLASSIC",
|
||||
"showDebugPieChart": false,
|
||||
"oldPieChartBackground": false,
|
||||
"showDebugLeftTextShadow": true,
|
||||
"showDebugRightTextShadow": true,
|
||||
"showDebugLeftBackground": false,
|
||||
"showDebugRightBackground": false,
|
||||
"debugLeftBackgroundColor": "#50505090",
|
||||
"debugRightBackgroundColor": "#50505090",
|
||||
"showDebugLeftTextColor": true,
|
||||
"showDebugRightTextColor": true,
|
||||
"debugLeftTextColor": "#FFFFFFFF",
|
||||
"debugRightTextColor": "#E0E0E0FF",
|
||||
"showDebugGpuUsage": false,
|
||||
"showDebugLightData": false,
|
||||
"showDebugFacingData": false,
|
||||
"showDebugTargetData": false,
|
||||
"showDebugBiomeData": false,
|
||||
"oldInventory": false,
|
||||
"inventoryBook": "SMALL",
|
||||
"inventoryShield": "MODERN",
|
||||
"disableEmptyArmorTexture": false,
|
||||
"disableEmptyShieldTexture": false,
|
||||
"invertedPlayerLighting": false,
|
||||
"oldCreativeHotbar": "MODERN",
|
||||
"removeScreenBlur": false,
|
||||
"oldButtonTextColor": false,
|
||||
"oldDirtScreenBackground": false,
|
||||
"applyGuiColorBackground": true,
|
||||
"oldGuiBackground": "SOLID_BLACK",
|
||||
"customGuiBackground": false,
|
||||
"customGuiTopGradient": "#00000000",
|
||||
"customGuiBottomGradient": "#00000000",
|
||||
"oldLoadingOverlay": "MODERN",
|
||||
"removeLoadingBar": false,
|
||||
"customLoadingOverlayBackground": false,
|
||||
"loadingOverlayBackgroundColor": "#000000",
|
||||
"customLoadingProgressBar": false,
|
||||
"progressBarOutlineColor": "#FFFFFF",
|
||||
"progressBarInsideColor": "#FFFFFF",
|
||||
"oldProgressScreen": false,
|
||||
"oldPauseMenu": "MODERN",
|
||||
"includeModsOnPause": true,
|
||||
"removeExtraPauseButtons": false,
|
||||
"oldAnvilScreen": false,
|
||||
"oldCraftingScreen": false,
|
||||
"craftingBook": "SMALL",
|
||||
"oldFurnaceScreen": false,
|
||||
"furnaceBook": "SMALL",
|
||||
"oldChatInput": false,
|
||||
"oldChatBox": false,
|
||||
"disableSignatureBoxes": false,
|
||||
"chatOffset": 0,
|
||||
"oldDeathScreen": false,
|
||||
"oldDeathScore": false,
|
||||
"hideCauseOfDeath": false,
|
||||
"oldWorldSelectScreen": "MODERN",
|
||||
"addWorldThumbnail": true,
|
||||
"addWorldMetadata": true,
|
||||
"ignoreWorldSize": false,
|
||||
"oldStyleCreateWorldTabs": false,
|
||||
"removeCreateWorldFooter": false,
|
||||
"overrideTitleScreen": false,
|
||||
"oldTitleBackground": false,
|
||||
"uncapTitleFPS": true,
|
||||
"oldAlphaLogo": false,
|
||||
"titleButtonLayout": "MODERN",
|
||||
"includeModsOnTitle": true,
|
||||
"removeTitleRealmsButton": false,
|
||||
"removeTitleAccessibilityButton": false,
|
||||
"removeTitleLanguageButton": false,
|
||||
"removeExtraTitleButtons": false,
|
||||
"addQuitButton": true,
|
||||
"titleVersionText": "Minecraft %v",
|
||||
"titleBottomLeftText": false,
|
||||
"titleTopRightDebugText": false,
|
||||
"removeTitleModLoaderText": true,
|
||||
"oldTooltipBoxes": false,
|
||||
"oldNoItemTooltips": false,
|
||||
"showEnchantmentTip": true,
|
||||
"showModifierTip": true,
|
||||
"showDyeTip": true,
|
||||
"tooltipColorType": "SOLID",
|
||||
"tooltipBackgroundColor": "#000000C0",
|
||||
"tooltipGradientTop": "#FFFFFFC0",
|
||||
"tooltipGradientBottom": "#000000C0",
|
||||
"fixItemModelGap": true,
|
||||
"oldDamageArmorTint": false,
|
||||
"oldItemHolding": false,
|
||||
"ignoredHoldingItems": {
|
||||
"items": [
|
||||
"minecraft:crossbow"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"itemMergeLimit": 16,
|
||||
"oldItemMerging": false,
|
||||
"old2dItems": false,
|
||||
"old2dRendering": false,
|
||||
"disableEnchantedGroundItems": false,
|
||||
"disableEnchantedStaticItems": false,
|
||||
"oldDurabilityColors": false,
|
||||
"oldNoSelectedItemName": false,
|
||||
"oldPlainSelectedItemName": false,
|
||||
"oldNameTags": false,
|
||||
"supporterTags": true,
|
||||
"disableLightFlicker": false,
|
||||
"invertedBlockLighting": false,
|
||||
"oldLeavesLighting": false,
|
||||
"oldWaterLighting": false,
|
||||
"chestLightBlock": false,
|
||||
"roundRobinRelight": false,
|
||||
"oldSmoothLighting": false,
|
||||
"oldNetherLighting": false,
|
||||
"oldClassicEngine": false,
|
||||
"smoothLightTransition": false,
|
||||
"disableBrightness": false,
|
||||
"oldLightColor": false,
|
||||
"maxBlockLight": 15,
|
||||
"disabledParticles": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"oldOpaqueExperience": false,
|
||||
"disableNetherParticles": false,
|
||||
"disableUnderwaterParticles": false,
|
||||
"disableLavaParticles": false,
|
||||
"disableLavaDripParticles": false,
|
||||
"disableWaterDripParticles": false,
|
||||
"disableLeverParticles": false,
|
||||
"disableModelDestructionParticles": false,
|
||||
"disableEnderChestParticles": false,
|
||||
"disableGrowthParticles": false,
|
||||
"disableFallingParticles": false,
|
||||
"disableSprintingParticles": false,
|
||||
"hideFirstPersonMagicParticles": false,
|
||||
"oldBoatMovementParticles": false,
|
||||
"oldSweepParticles": false,
|
||||
"oldNoDamageParticles": false,
|
||||
"oldNoCritParticles": false,
|
||||
"oldNoMagicHitParticles": false,
|
||||
"oldExplosionParticles": false,
|
||||
"oldMixedExplosionParticles": false,
|
||||
"unoptimizedExplosionParticles": false,
|
||||
"oldSquareBorder": true,
|
||||
"oldWorldFog": "MODERN",
|
||||
"fogBinding": -1,
|
||||
"oldNetherFog": false,
|
||||
"oldSunriseSunsetFog": false,
|
||||
"oldDarkFog": false,
|
||||
"oldDynamicFogColor": false,
|
||||
"universalFogColor": "DISABLED",
|
||||
"useCustomOverworldFogDensity": false,
|
||||
"useCustomOverworldFogColor": false,
|
||||
"useCustomNetherFogDensity": false,
|
||||
"useCustomNetherFogColor": false,
|
||||
"customOverworldFogColor": "#FFFFFF",
|
||||
"customNetherFogColor": "#540E0E",
|
||||
"customOverworldFogStart": 100,
|
||||
"customOverworldFogEnd": 60,
|
||||
"customNetherFogStart": 100,
|
||||
"customNetherFogEnd": 60,
|
||||
"oldWaterFogDensity": false,
|
||||
"oldWaterFogColor": false,
|
||||
"smoothWaterDensity": false,
|
||||
"smoothWaterColor": false,
|
||||
"renderSunriseSunsetColor": true,
|
||||
"oldSunriseAtNorth": false,
|
||||
"oldStars": "MODERN",
|
||||
"oldDynamicSkyColor": false,
|
||||
"universalSkyColor": "DISABLED",
|
||||
"oldNetherSky": false,
|
||||
"oldCloudHeight": 192,
|
||||
"sunsetSunriseType": "JAVA",
|
||||
"customOverworldSky": false,
|
||||
"customOverworldSkyColor": "#FFFFFF",
|
||||
"oldBlueVoid": "MODERN",
|
||||
"oldBlueVoidOverride": false,
|
||||
"oldDarkVoidHeight": false,
|
||||
"customVoidSky": false,
|
||||
"customVoidSkyColor": "#0000FF",
|
||||
"xbox360BlueVoidColor": true,
|
||||
"renderVoidFog": false,
|
||||
"creativeVoidFog": false,
|
||||
"creativeVoidParticles": false,
|
||||
"lightRemovesVoidFog": false,
|
||||
"voidFogEncroach": 70,
|
||||
"voidFogStart": 50,
|
||||
"voidParticleStart": -47,
|
||||
"voidParticleRadius": 16,
|
||||
"voidParticleDensity": 20
|
||||
},
|
||||
"gameplay": {
|
||||
"oldLadderGap": false,
|
||||
"oldSquidMilking": false,
|
||||
"disableAnimalPanic": false,
|
||||
"disableMonsterAvoidSun": false,
|
||||
"disableGolemCreation": false,
|
||||
"disableMonsterItemPickup": false,
|
||||
"disableBabyZombieSpawn": false,
|
||||
"disableBabyPiglinSpawn": false,
|
||||
"disableMonsterItemSpawn": false,
|
||||
"disableMonsterArmorSpawn": false,
|
||||
"disableMonsterEnchantSpawn": false,
|
||||
"piglinOnlyGoldSwordSpawn": false,
|
||||
"monsterSpawnCap": 90,
|
||||
"animalSpawnCap": 20,
|
||||
"oldAnimalSpawning": false,
|
||||
"disableBabyAnimalSpawning": false,
|
||||
"disableAnimalBreeding": false,
|
||||
"disableAnimalTempting": false,
|
||||
"disableSheepEatGrass": false,
|
||||
"randomSheepWoolRegen": false,
|
||||
"oldSheepPunching": false,
|
||||
"oneWoolPunch": false,
|
||||
"oldZombiePigmenDrops": false,
|
||||
"oldSkeletonDrops": false,
|
||||
"oldChickenDrops": false,
|
||||
"oldZombieDrops": false,
|
||||
"oldSpiderDrops": false,
|
||||
"oldSheepDrops": false,
|
||||
"oldCowDrops": false,
|
||||
"oldPigDrops": false,
|
||||
"oldStyleZombieVillagerDrops": false,
|
||||
"oldStyleCaveSpiderDrops": false,
|
||||
"oldStyleMooshroomDrops": false,
|
||||
"oldStyleDrownedDrops": false,
|
||||
"oldStyleRabbitDrops": false,
|
||||
"oldStyleStrayDrops": false,
|
||||
"oldStyleHuskDrops": false,
|
||||
"blockWithSwordOnShield": false,
|
||||
"oldSwordBlocking": true,
|
||||
"attackWhileSwordBlocking": true,
|
||||
"swordBlockDamageReduction": 50,
|
||||
"oldDamageValues": true,
|
||||
"disableCooldown": true,
|
||||
"disableMissTimer": true,
|
||||
"disableCriticalHit": true,
|
||||
"disableSweep": true,
|
||||
"arrowSpeed": 70,
|
||||
"instantBow": false,
|
||||
"invincibleBow": false,
|
||||
"disableOrbSpawn": false,
|
||||
"disableOrbRendering": false,
|
||||
"disableAnvil": false,
|
||||
"disableEnchantTable": false,
|
||||
"oldNightmares": false,
|
||||
"disableSprint": false,
|
||||
"leftClickDoor": false,
|
||||
"leftClickLever": false,
|
||||
"leftClickButton": false,
|
||||
"disableSneakingUnderSlabs": false,
|
||||
"disableCrawling": false,
|
||||
"instantBonemeal": false,
|
||||
"tilledGrassSeeds": false,
|
||||
"disableBonemealShortGrass": false,
|
||||
"disableTallGrassBonemeal": false,
|
||||
"disableCocoaBeanPlacement": false,
|
||||
"oldFire": false,
|
||||
"infiniteBurn": false,
|
||||
"disableSoulFire": false,
|
||||
"instantAir": false,
|
||||
"disableSwim": false,
|
||||
"cartBoosting": false,
|
||||
"cartRiderTurning": false,
|
||||
"cartSafeRiderTurning": false,
|
||||
"disableBoatBusyHands": false,
|
||||
"oldBoatWaterLift": false,
|
||||
"oldBoatDrops": true,
|
||||
"punchTntIgnition": false,
|
||||
"disableBedBounce": false,
|
||||
"alwaysOpenChest": false,
|
||||
"disableHunger": false,
|
||||
"instantEat": false,
|
||||
"oldFoodStacking": false,
|
||||
"preventHungerEffect": false,
|
||||
"customFoodHealth": {
|
||||
"items": {
|
||||
"minecraft:rotten_flesh": 0,
|
||||
"minecraft:spider_eye": 0,
|
||||
"minecraft:carrot": 1,
|
||||
"minecraft:melon_slice": 1,
|
||||
"minecraft:chorus_fruit": 1,
|
||||
"minecraft:sweet_berries": 1,
|
||||
"minecraft:glow_berries": 1,
|
||||
"minecraft:mushroom_stew": 10,
|
||||
"minecraft:beetroot_soup": 10,
|
||||
"minecraft:rabbit_stew": 10,
|
||||
"minecraft:suspicious_stew": 10,
|
||||
"minecraft:golden_apple": 20,
|
||||
"minecraft:enchanted_golden_apple": 20
|
||||
},
|
||||
"disabled": false
|
||||
},
|
||||
"customFoodStacking": {
|
||||
"items": {
|
||||
"minecraft:cookie": 8,
|
||||
"minecraft:beetroot": 8,
|
||||
"minecraft:carrot": 8,
|
||||
"minecraft:chorus_fruit": 8,
|
||||
"minecraft:dried_kelp": 9,
|
||||
"minecraft:melon_slice": 8,
|
||||
"minecraft:potato": 8,
|
||||
"minecraft:poisonous_potato": 8,
|
||||
"minecraft:sweet_berries": 8,
|
||||
"minecraft:glow_berries": 8,
|
||||
"minecraft:apple": 1,
|
||||
"minecraft:baked_potato": 1,
|
||||
"minecraft:beef": 1,
|
||||
"minecraft:beetroot_soup": 1,
|
||||
"minecraft:bread": 1,
|
||||
"minecraft:chicken": 1,
|
||||
"minecraft:cod": 1,
|
||||
"minecraft:cooked_beef": 1,
|
||||
"minecraft:cooked_chicken": 1,
|
||||
"minecraft:cooked_cod": 1,
|
||||
"minecraft:cooked_mutton": 1,
|
||||
"minecraft:cooked_porkchop": 1,
|
||||
"minecraft:cooked_rabbit": 1,
|
||||
"minecraft:cooked_salmon": 1,
|
||||
"minecraft:enchanted_golden_apple": 1,
|
||||
"minecraft:golden_apple": 1,
|
||||
"minecraft:golden_carrot": 1,
|
||||
"minecraft:honey_bottle": 4,
|
||||
"minecraft:mushroom_stew": 1,
|
||||
"minecraft:mutton": 1,
|
||||
"minecraft:porkchop": 1,
|
||||
"minecraft:pufferfish": 1,
|
||||
"minecraft:pumpkin_pie": 1,
|
||||
"minecraft:rabbit": 1,
|
||||
"minecraft:rabbit_stew": 1,
|
||||
"minecraft:salmon": 1,
|
||||
"minecraft:suspicious_stew": 1,
|
||||
"minecraft:tropical_fish": 1
|
||||
},
|
||||
"disabled": false
|
||||
},
|
||||
"customItemStacking": {
|
||||
"items": {},
|
||||
"disabled": false
|
||||
},
|
||||
"disableAxeStripping": false,
|
||||
"disableShovelPathing": false,
|
||||
"disableWaterBonemeal": false
|
||||
},
|
||||
"animation": {
|
||||
"preventArmSway": false,
|
||||
"armSwayMirror": false,
|
||||
"armSwayIntensity": 100,
|
||||
"oldSwing": false,
|
||||
"oldSwingInterrupt": true,
|
||||
"oldSwingDropping": false,
|
||||
"oldClassicAttackSwing": false,
|
||||
"oldClassicUseSwing": false,
|
||||
"oldItemCooldown": true,
|
||||
"oldItemReequip": false,
|
||||
"oldToolExplosion": false,
|
||||
"oldZombieArms": false,
|
||||
"oldSkeletonArms": false,
|
||||
"oldGhastCharging": false,
|
||||
"hideBoatRowing": false,
|
||||
"oldClassicWalkBobbing": false,
|
||||
"oldClassicWalkArms": false,
|
||||
"oldBackwardWalking": false,
|
||||
"oldVerticalBobbing": false,
|
||||
"oldCreativeCrouch": false,
|
||||
"oldRandomDamage": false,
|
||||
"oldSneaking": false,
|
||||
"preventDeathTopple": false
|
||||
},
|
||||
"swing": {
|
||||
"overrideSpeeds": false,
|
||||
"attackGlobalSpeed": -1,
|
||||
"useGlobalSpeed": -1,
|
||||
"attackItemSpeed": 8,
|
||||
"useItemSpeed": 8,
|
||||
"attackToolSpeed": 8,
|
||||
"useToolSpeed": 8,
|
||||
"attackBlockSpeed": 8,
|
||||
"useBlockSpeed": 8,
|
||||
"attackSwordSpeed": 8,
|
||||
"useSwordSpeed": 8,
|
||||
"attackHasteSpeed": -1,
|
||||
"useHasteSpeed": -1,
|
||||
"attackFatigueSpeed": -1,
|
||||
"useFatigueSpeed": -1,
|
||||
"attackSwingSpeeds": {
|
||||
"items": {},
|
||||
"disabled": false
|
||||
},
|
||||
"useSwingSpeeds": {
|
||||
"items": {},
|
||||
"disabled": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,601 @@
|
||||
{
|
||||
"modEnabled": true,
|
||||
"restrictedLan": true,
|
||||
"serverSideOnly": true,
|
||||
"serverLogging": true,
|
||||
"serverDebugMode": false,
|
||||
"mod": {
|
||||
"favoriteTweaks": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"openedConfigScreen": true,
|
||||
"openedSupporterScreen": false,
|
||||
"persistentConfigScreen": true,
|
||||
"defaultScreen": "HOME_SCREEN",
|
||||
"openConfigBinding": 79,
|
||||
"numberOfBackups": 5,
|
||||
"showWelcomeToast": true,
|
||||
"showHandshakeToast": false,
|
||||
"showLanChangeToast": true,
|
||||
"showServerboundToast": true,
|
||||
"showClientboundToast": false,
|
||||
"smoothScroll": true,
|
||||
"menuBackgroundOpacity": 85,
|
||||
"displayNewTags": true,
|
||||
"displayTagTooltips": true,
|
||||
"displayCategoryTree": true,
|
||||
"categoryTreeOpacity": 80,
|
||||
"displayRowHighlight": true,
|
||||
"displayRowHighlightFade": true,
|
||||
"overrideRowHighlight": false,
|
||||
"rowHighlightOpacity": 20
|
||||
},
|
||||
"sound": {
|
||||
"disabledPositionedSounds": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"disabledGlobalSounds": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"playMusicWhenPaused": true,
|
||||
"musicForMenu": "BLENDED",
|
||||
"musicForCreative": "BLENDED",
|
||||
"replaceOverworldBiomeMusic": true,
|
||||
"replaceNetherBiomeMusic": true,
|
||||
"replaceGameplayMusic": true,
|
||||
"stopSongBinding": -1,
|
||||
"nextSongBinding": -1,
|
||||
"oldCaveSounds": false,
|
||||
"oldCaveAmbience": false,
|
||||
"disableNetherAmbience": false,
|
||||
"disableWaterAmbience": false,
|
||||
"oldBed": false,
|
||||
"disableBedPlace": false,
|
||||
"oldChest": false,
|
||||
"disableChest": false,
|
||||
"disableLavaAmbience": false,
|
||||
"disableLavaPop": false,
|
||||
"disableFurnace": false,
|
||||
"disableBlastFurnace": false,
|
||||
"disableGrowth": false,
|
||||
"disableDoorPlace": false,
|
||||
"oldAttack": false,
|
||||
"oldHurt": false,
|
||||
"oldFall": false,
|
||||
"oldXp": false,
|
||||
"disableXpPickup": false,
|
||||
"disableXpLevel": false,
|
||||
"disableGenericSwim": false,
|
||||
"disableFishSwim": false,
|
||||
"disableFishHurt": false,
|
||||
"disableFishDeath": false,
|
||||
"disableSquid": false,
|
||||
"disableGlowSquidOther": false,
|
||||
"disableGlowSquidAmbience": false,
|
||||
"oldStep": false,
|
||||
"ignoreModdedStep": false
|
||||
},
|
||||
"eyeCandy": {
|
||||
"sodiumWaterAo": false,
|
||||
"oldGrassSideTexture": false,
|
||||
"oldFastGrassTexture": true,
|
||||
"removeMipmapTexture": false,
|
||||
"ambientOcclusionBlocks": {
|
||||
"items": [
|
||||
"minecraft:powder_snow_bucket",
|
||||
"minecraft:composter"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"disableBlockOffsets": {
|
||||
"items": [
|
||||
"minecraft:poppy",
|
||||
"minecraft:poppy*",
|
||||
"minecraft:rose_bush",
|
||||
"minecraft:rose_bush*"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"disableAllOffset": false,
|
||||
"oldMissingTexture": "MODERN",
|
||||
"applyFullBlockCollisions": false,
|
||||
"fullBlockCollisions": {
|
||||
"items": [],
|
||||
"disabled": false
|
||||
},
|
||||
"fullBlockOutlines": {
|
||||
"items": [
|
||||
"minecraft:cobblestone_stairs",
|
||||
"minecraft:cobblestone_stairs*",
|
||||
"minecraft:cobblestone_wall",
|
||||
"minecraft:cobblestone_wall*",
|
||||
"minecraft:oak_fence",
|
||||
"minecraft:oak_fence*",
|
||||
"minecraft:chest",
|
||||
"minecraft:chest*",
|
||||
"minecraft:ender_chest",
|
||||
"minecraft:ender_chest*",
|
||||
"minecraft:cauldron",
|
||||
"minecraft:cauldron*",
|
||||
"minecraft:hopper",
|
||||
"minecraft:hopper*",
|
||||
"minecraft:anvil",
|
||||
"minecraft:anvil*"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"blockOutlineColor": "#00000066",
|
||||
"blockOutlineThickness": 2.5,
|
||||
"oldBlockOverlay": false,
|
||||
"overlayRenderOrder": "FIRST",
|
||||
"blockOverlayColorType": "SOLID",
|
||||
"blockOverlayColor": "#FFFFFF5A",
|
||||
"blockOverlayGradientTop": "#0000005A",
|
||||
"blockOverlayGradientBottom": "#FFFFFF5A",
|
||||
"pulsateBlockOverlay": true,
|
||||
"pulsateOverlayAnimation": "LINEAR",
|
||||
"oldBlockOverlaySpeed": 0.2,
|
||||
"minimumBlockPulsationTransparency": 0.1,
|
||||
"maximumBlockPulsationTransparency": 0.4,
|
||||
"oldChest": false,
|
||||
"oldEnderChest": false,
|
||||
"oldTrappedChest": false,
|
||||
"applyChestVoxel": false,
|
||||
"oldModChests": {
|
||||
"items": [],
|
||||
"disabled": false
|
||||
},
|
||||
"translucentChests": {
|
||||
"items": [],
|
||||
"disabled": false
|
||||
},
|
||||
"oldTorchBrightness": false,
|
||||
"oldTorchBottom": false,
|
||||
"oldTorchModel": false,
|
||||
"oldRedstoneTorchModel": false,
|
||||
"oldSoulTorchModel": false,
|
||||
"hidePlayerInBed": false,
|
||||
"hideExperienceBar": false,
|
||||
"hideHungerBar": false,
|
||||
"adventureCraftOffhand": false,
|
||||
"leftOffhandOffset": 0,
|
||||
"rightOffhandOffset": 0,
|
||||
"showExpLevelText": false,
|
||||
"showExpLevelInCreative": false,
|
||||
"altExpLevelCorner": "TOP_LEFT",
|
||||
"altExpLevelOffsetX": 0,
|
||||
"altExpLevelOffsetY": 0,
|
||||
"altExpLevelShadow": true,
|
||||
"altExpLevelText": "Level: %a%v",
|
||||
"showExpProgressText": false,
|
||||
"showExpProgressInCreative": false,
|
||||
"useDynamicProgressColor": true,
|
||||
"altExpProgressCorner": "TOP_LEFT",
|
||||
"altExpProgressOffsetX": 0,
|
||||
"altExpProgressOffsetY": 0,
|
||||
"altExpProgressShadow": true,
|
||||
"altExpProgressText": "Experience: %v%",
|
||||
"showHungerFoodText": false,
|
||||
"useDynamicFoodColor": true,
|
||||
"altHungerFoodCorner": "TOP_LEFT",
|
||||
"altHungerFoodOffsetX": 0,
|
||||
"altHungerFoodOffsetY": 0,
|
||||
"altHungerFoodShadow": true,
|
||||
"altHungerFoodText": "Food: %v",
|
||||
"showHungerSaturationText": false,
|
||||
"useDynamicSaturationColor": true,
|
||||
"altHungerSaturationCorner": "TOP_LEFT",
|
||||
"altHungerSaturationOffsetX": 0,
|
||||
"altHungerSaturationOffsetY": 0,
|
||||
"altHungerSaturationShadow": true,
|
||||
"altHungerSaturationText": "Saturation: %v%",
|
||||
"oldVersionOverlay": false,
|
||||
"oldOverlayShadow": false,
|
||||
"oldOverlayCorner": "TOP_LEFT",
|
||||
"oldOverlayOffsetX": 0,
|
||||
"oldOverlayOffsetY": 0,
|
||||
"oldOverlayText": "Minecraft %v",
|
||||
"enableWindowTitle": false,
|
||||
"matchVersionOverlay": false,
|
||||
"windowTitleText": "Minecraft %v",
|
||||
"oldDebug": "MODERN",
|
||||
"debugEntityId": false,
|
||||
"fpsChart": "CLASSIC",
|
||||
"showDebugPieChart": false,
|
||||
"oldPieChartBackground": false,
|
||||
"showDebugLeftTextShadow": true,
|
||||
"showDebugRightTextShadow": true,
|
||||
"showDebugLeftBackground": false,
|
||||
"showDebugRightBackground": false,
|
||||
"debugLeftBackgroundColor": "#50505090",
|
||||
"debugRightBackgroundColor": "#50505090",
|
||||
"showDebugLeftTextColor": true,
|
||||
"showDebugRightTextColor": true,
|
||||
"debugLeftTextColor": "#FFFFFFFF",
|
||||
"debugRightTextColor": "#E0E0E0FF",
|
||||
"showDebugGpuUsage": false,
|
||||
"showDebugLightData": false,
|
||||
"showDebugFacingData": false,
|
||||
"showDebugTargetData": false,
|
||||
"showDebugBiomeData": false,
|
||||
"oldInventory": false,
|
||||
"inventoryBook": "SMALL",
|
||||
"inventoryShield": "MODERN",
|
||||
"disableEmptyArmorTexture": false,
|
||||
"disableEmptyShieldTexture": false,
|
||||
"invertedPlayerLighting": false,
|
||||
"oldCreativeHotbar": "MODERN",
|
||||
"removeScreenBlur": false,
|
||||
"oldButtonTextColor": false,
|
||||
"oldDirtScreenBackground": false,
|
||||
"applyGuiColorBackground": true,
|
||||
"oldGuiBackground": "SOLID_BLACK",
|
||||
"customGuiBackground": false,
|
||||
"customGuiTopGradient": "#00000000",
|
||||
"customGuiBottomGradient": "#00000000",
|
||||
"oldLoadingOverlay": "MODERN",
|
||||
"removeLoadingBar": false,
|
||||
"customLoadingOverlayBackground": false,
|
||||
"loadingOverlayBackgroundColor": "#000000",
|
||||
"customLoadingProgressBar": false,
|
||||
"progressBarOutlineColor": "#FFFFFF",
|
||||
"progressBarInsideColor": "#FFFFFF",
|
||||
"oldProgressScreen": false,
|
||||
"oldPauseMenu": "MODERN",
|
||||
"includeModsOnPause": true,
|
||||
"removeExtraPauseButtons": false,
|
||||
"oldAnvilScreen": false,
|
||||
"oldCraftingScreen": false,
|
||||
"craftingBook": "SMALL",
|
||||
"oldFurnaceScreen": false,
|
||||
"furnaceBook": "SMALL",
|
||||
"oldChatInput": false,
|
||||
"oldChatBox": false,
|
||||
"disableSignatureBoxes": false,
|
||||
"chatOffset": 0,
|
||||
"oldDeathScreen": false,
|
||||
"oldDeathScore": false,
|
||||
"hideCauseOfDeath": false,
|
||||
"oldWorldSelectScreen": "MODERN",
|
||||
"addWorldThumbnail": true,
|
||||
"addWorldMetadata": true,
|
||||
"ignoreWorldSize": false,
|
||||
"oldStyleCreateWorldTabs": false,
|
||||
"removeCreateWorldFooter": false,
|
||||
"overrideTitleScreen": false,
|
||||
"oldTitleBackground": false,
|
||||
"uncapTitleFPS": true,
|
||||
"oldAlphaLogo": false,
|
||||
"titleButtonLayout": "MODERN",
|
||||
"includeModsOnTitle": true,
|
||||
"removeTitleRealmsButton": false,
|
||||
"removeTitleAccessibilityButton": false,
|
||||
"removeTitleLanguageButton": false,
|
||||
"removeExtraTitleButtons": false,
|
||||
"addQuitButton": true,
|
||||
"titleVersionText": "Minecraft %v",
|
||||
"titleBottomLeftText": false,
|
||||
"titleTopRightDebugText": false,
|
||||
"removeTitleModLoaderText": true,
|
||||
"oldTooltipBoxes": false,
|
||||
"oldNoItemTooltips": false,
|
||||
"showEnchantmentTip": true,
|
||||
"showModifierTip": true,
|
||||
"showDyeTip": true,
|
||||
"tooltipColorType": "SOLID",
|
||||
"tooltipBackgroundColor": "#000000C0",
|
||||
"tooltipGradientTop": "#FFFFFFC0",
|
||||
"tooltipGradientBottom": "#000000C0",
|
||||
"fixItemModelGap": true,
|
||||
"oldDamageArmorTint": false,
|
||||
"oldItemHolding": false,
|
||||
"ignoredHoldingItems": {
|
||||
"items": [
|
||||
"minecraft:crossbow"
|
||||
],
|
||||
"disabled": false
|
||||
},
|
||||
"itemMergeLimit": 16,
|
||||
"oldItemMerging": false,
|
||||
"old2dItems": false,
|
||||
"old2dRendering": false,
|
||||
"disableEnchantedGroundItems": false,
|
||||
"disableEnchantedStaticItems": false,
|
||||
"oldDurabilityColors": false,
|
||||
"oldNoSelectedItemName": false,
|
||||
"oldPlainSelectedItemName": false,
|
||||
"oldNameTags": false,
|
||||
"supporterTags": true,
|
||||
"disableLightFlicker": false,
|
||||
"invertedBlockLighting": false,
|
||||
"oldLeavesLighting": false,
|
||||
"oldWaterLighting": false,
|
||||
"chestLightBlock": false,
|
||||
"roundRobinRelight": false,
|
||||
"oldSmoothLighting": false,
|
||||
"oldNetherLighting": false,
|
||||
"oldClassicEngine": false,
|
||||
"smoothLightTransition": false,
|
||||
"disableBrightness": false,
|
||||
"oldLightColor": false,
|
||||
"maxBlockLight": 15,
|
||||
"disabledParticles": {
|
||||
"list": [],
|
||||
"disabled": false
|
||||
},
|
||||
"oldOpaqueExperience": false,
|
||||
"disableNetherParticles": false,
|
||||
"disableUnderwaterParticles": false,
|
||||
"disableLavaParticles": false,
|
||||
"disableLavaDripParticles": false,
|
||||
"disableWaterDripParticles": false,
|
||||
"disableLeverParticles": false,
|
||||
"disableModelDestructionParticles": false,
|
||||
"disableEnderChestParticles": false,
|
||||
"disableGrowthParticles": false,
|
||||
"disableFallingParticles": false,
|
||||
"disableSprintingParticles": false,
|
||||
"hideFirstPersonMagicParticles": false,
|
||||
"oldBoatMovementParticles": false,
|
||||
"oldSweepParticles": false,
|
||||
"oldNoDamageParticles": false,
|
||||
"oldNoCritParticles": false,
|
||||
"oldNoMagicHitParticles": false,
|
||||
"oldExplosionParticles": false,
|
||||
"oldMixedExplosionParticles": false,
|
||||
"unoptimizedExplosionParticles": false,
|
||||
"oldSquareBorder": true,
|
||||
"oldWorldFog": "MODERN",
|
||||
"fogBinding": -1,
|
||||
"oldNetherFog": false,
|
||||
"oldSunriseSunsetFog": false,
|
||||
"oldDarkFog": false,
|
||||
"oldDynamicFogColor": false,
|
||||
"universalFogColor": "DISABLED",
|
||||
"useCustomOverworldFogDensity": false,
|
||||
"useCustomOverworldFogColor": false,
|
||||
"useCustomNetherFogDensity": false,
|
||||
"useCustomNetherFogColor": false,
|
||||
"customOverworldFogColor": "#FFFFFF",
|
||||
"customNetherFogColor": "#540E0E",
|
||||
"customOverworldFogStart": 100,
|
||||
"customOverworldFogEnd": 60,
|
||||
"customNetherFogStart": 100,
|
||||
"customNetherFogEnd": 60,
|
||||
"oldWaterFogDensity": false,
|
||||
"oldWaterFogColor": false,
|
||||
"smoothWaterDensity": false,
|
||||
"smoothWaterColor": false,
|
||||
"renderSunriseSunsetColor": true,
|
||||
"oldSunriseAtNorth": false,
|
||||
"oldStars": "MODERN",
|
||||
"oldDynamicSkyColor": false,
|
||||
"universalSkyColor": "DISABLED",
|
||||
"oldNetherSky": false,
|
||||
"oldCloudHeight": 192,
|
||||
"sunsetSunriseType": "JAVA",
|
||||
"customOverworldSky": false,
|
||||
"customOverworldSkyColor": "#FFFFFF",
|
||||
"oldBlueVoid": "MODERN",
|
||||
"oldBlueVoidOverride": false,
|
||||
"oldDarkVoidHeight": false,
|
||||
"customVoidSky": false,
|
||||
"customVoidSkyColor": "#0000FF",
|
||||
"xbox360BlueVoidColor": true,
|
||||
"renderVoidFog": false,
|
||||
"creativeVoidFog": false,
|
||||
"creativeVoidParticles": false,
|
||||
"lightRemovesVoidFog": false,
|
||||
"voidFogEncroach": 70,
|
||||
"voidFogStart": 50,
|
||||
"voidParticleStart": -47,
|
||||
"voidParticleRadius": 16,
|
||||
"voidParticleDensity": 20
|
||||
},
|
||||
"gameplay": {
|
||||
"oldLadderGap": false,
|
||||
"oldSquidMilking": false,
|
||||
"disableAnimalPanic": false,
|
||||
"disableMonsterAvoidSun": false,
|
||||
"disableGolemCreation": false,
|
||||
"disableMonsterItemPickup": false,
|
||||
"disableBabyZombieSpawn": false,
|
||||
"disableBabyPiglinSpawn": false,
|
||||
"disableMonsterItemSpawn": false,
|
||||
"disableMonsterArmorSpawn": false,
|
||||
"disableMonsterEnchantSpawn": false,
|
||||
"piglinOnlyGoldSwordSpawn": false,
|
||||
"monsterSpawnCap": 90,
|
||||
"animalSpawnCap": 20,
|
||||
"oldAnimalSpawning": false,
|
||||
"disableBabyAnimalSpawning": false,
|
||||
"disableAnimalBreeding": false,
|
||||
"disableAnimalTempting": false,
|
||||
"disableSheepEatGrass": false,
|
||||
"randomSheepWoolRegen": false,
|
||||
"oldSheepPunching": false,
|
||||
"oneWoolPunch": false,
|
||||
"oldZombiePigmenDrops": false,
|
||||
"oldSkeletonDrops": false,
|
||||
"oldChickenDrops": false,
|
||||
"oldZombieDrops": false,
|
||||
"oldSpiderDrops": false,
|
||||
"oldSheepDrops": false,
|
||||
"oldCowDrops": false,
|
||||
"oldPigDrops": false,
|
||||
"oldStyleZombieVillagerDrops": false,
|
||||
"oldStyleCaveSpiderDrops": false,
|
||||
"oldStyleMooshroomDrops": false,
|
||||
"oldStyleDrownedDrops": false,
|
||||
"oldStyleRabbitDrops": false,
|
||||
"oldStyleStrayDrops": false,
|
||||
"oldStyleHuskDrops": false,
|
||||
"blockWithSwordOnShield": false,
|
||||
"oldSwordBlocking": true,
|
||||
"attackWhileSwordBlocking": true,
|
||||
"swordBlockDamageReduction": 50,
|
||||
"oldDamageValues": true,
|
||||
"disableCooldown": true,
|
||||
"disableMissTimer": true,
|
||||
"disableCriticalHit": true,
|
||||
"disableSweep": true,
|
||||
"arrowSpeed": 70,
|
||||
"instantBow": false,
|
||||
"invincibleBow": false,
|
||||
"disableOrbSpawn": false,
|
||||
"disableOrbRendering": false,
|
||||
"disableAnvil": false,
|
||||
"disableEnchantTable": false,
|
||||
"oldNightmares": false,
|
||||
"disableSprint": false,
|
||||
"leftClickDoor": false,
|
||||
"leftClickLever": false,
|
||||
"leftClickButton": false,
|
||||
"disableSneakingUnderSlabs": false,
|
||||
"disableCrawling": false,
|
||||
"instantBonemeal": false,
|
||||
"tilledGrassSeeds": false,
|
||||
"disableBonemealShortGrass": false,
|
||||
"disableTallGrassBonemeal": false,
|
||||
"disableCocoaBeanPlacement": false,
|
||||
"oldFire": false,
|
||||
"infiniteBurn": false,
|
||||
"disableSoulFire": false,
|
||||
"instantAir": false,
|
||||
"disableSwim": false,
|
||||
"cartBoosting": false,
|
||||
"cartRiderTurning": false,
|
||||
"cartSafeRiderTurning": false,
|
||||
"disableBoatBusyHands": false,
|
||||
"oldBoatWaterLift": false,
|
||||
"oldBoatDrops": true,
|
||||
"punchTntIgnition": false,
|
||||
"disableBedBounce": false,
|
||||
"alwaysOpenChest": false,
|
||||
"disableHunger": false,
|
||||
"instantEat": false,
|
||||
"oldFoodStacking": false,
|
||||
"preventHungerEffect": false,
|
||||
"customFoodHealth": {
|
||||
"items": {
|
||||
"minecraft:rotten_flesh": 0,
|
||||
"minecraft:spider_eye": 0,
|
||||
"minecraft:carrot": 1,
|
||||
"minecraft:melon_slice": 1,
|
||||
"minecraft:chorus_fruit": 1,
|
||||
"minecraft:sweet_berries": 1,
|
||||
"minecraft:glow_berries": 1,
|
||||
"minecraft:mushroom_stew": 10,
|
||||
"minecraft:beetroot_soup": 10,
|
||||
"minecraft:rabbit_stew": 10,
|
||||
"minecraft:suspicious_stew": 10,
|
||||
"minecraft:golden_apple": 20,
|
||||
"minecraft:enchanted_golden_apple": 20
|
||||
},
|
||||
"disabled": false
|
||||
},
|
||||
"customFoodStacking": {
|
||||
"items": {
|
||||
"minecraft:cookie": 8,
|
||||
"minecraft:beetroot": 8,
|
||||
"minecraft:carrot": 8,
|
||||
"minecraft:chorus_fruit": 8,
|
||||
"minecraft:dried_kelp": 9,
|
||||
"minecraft:melon_slice": 8,
|
||||
"minecraft:potato": 8,
|
||||
"minecraft:poisonous_potato": 8,
|
||||
"minecraft:sweet_berries": 8,
|
||||
"minecraft:glow_berries": 8,
|
||||
"minecraft:apple": 1,
|
||||
"minecraft:baked_potato": 1,
|
||||
"minecraft:beef": 1,
|
||||
"minecraft:beetroot_soup": 1,
|
||||
"minecraft:bread": 1,
|
||||
"minecraft:chicken": 1,
|
||||
"minecraft:cod": 1,
|
||||
"minecraft:cooked_beef": 1,
|
||||
"minecraft:cooked_chicken": 1,
|
||||
"minecraft:cooked_cod": 1,
|
||||
"minecraft:cooked_mutton": 1,
|
||||
"minecraft:cooked_porkchop": 1,
|
||||
"minecraft:cooked_rabbit": 1,
|
||||
"minecraft:cooked_salmon": 1,
|
||||
"minecraft:enchanted_golden_apple": 1,
|
||||
"minecraft:golden_apple": 1,
|
||||
"minecraft:golden_carrot": 1,
|
||||
"minecraft:honey_bottle": 4,
|
||||
"minecraft:mushroom_stew": 1,
|
||||
"minecraft:mutton": 1,
|
||||
"minecraft:porkchop": 1,
|
||||
"minecraft:pufferfish": 1,
|
||||
"minecraft:pumpkin_pie": 1,
|
||||
"minecraft:rabbit": 1,
|
||||
"minecraft:rabbit_stew": 1,
|
||||
"minecraft:salmon": 1,
|
||||
"minecraft:suspicious_stew": 1,
|
||||
"minecraft:tropical_fish": 1
|
||||
},
|
||||
"disabled": false
|
||||
},
|
||||
"customItemStacking": {
|
||||
"items": {},
|
||||
"disabled": false
|
||||
},
|
||||
"disableAxeStripping": false,
|
||||
"disableShovelPathing": false,
|
||||
"disableWaterBonemeal": false
|
||||
},
|
||||
"animation": {
|
||||
"preventArmSway": false,
|
||||
"armSwayMirror": false,
|
||||
"armSwayIntensity": 100,
|
||||
"oldSwing": false,
|
||||
"oldSwingInterrupt": true,
|
||||
"oldSwingDropping": false,
|
||||
"oldClassicAttackSwing": false,
|
||||
"oldClassicUseSwing": false,
|
||||
"oldItemCooldown": true,
|
||||
"oldItemReequip": false,
|
||||
"oldToolExplosion": false,
|
||||
"oldZombieArms": false,
|
||||
"oldSkeletonArms": false,
|
||||
"oldGhastCharging": false,
|
||||
"hideBoatRowing": false,
|
||||
"oldClassicWalkBobbing": false,
|
||||
"oldClassicWalkArms": false,
|
||||
"oldBackwardWalking": false,
|
||||
"oldVerticalBobbing": false,
|
||||
"oldCreativeCrouch": false,
|
||||
"oldRandomDamage": false,
|
||||
"oldSneaking": false,
|
||||
"preventDeathTopple": false
|
||||
},
|
||||
"swing": {
|
||||
"overrideSpeeds": false,
|
||||
"attackGlobalSpeed": -1,
|
||||
"useGlobalSpeed": -1,
|
||||
"attackItemSpeed": 8,
|
||||
"useItemSpeed": 8,
|
||||
"attackToolSpeed": 8,
|
||||
"useToolSpeed": 8,
|
||||
"attackBlockSpeed": 8,
|
||||
"useBlockSpeed": 8,
|
||||
"attackSwordSpeed": 8,
|
||||
"useSwordSpeed": 8,
|
||||
"attackHasteSpeed": -1,
|
||||
"useHasteSpeed": -1,
|
||||
"attackFatigueSpeed": -1,
|
||||
"useFatigueSpeed": -1,
|
||||
"attackSwingSpeeds": {
|
||||
"items": {},
|
||||
"disabled": false
|
||||
},
|
||||
"useSwingSpeeds": {
|
||||
"items": {},
|
||||
"disabled": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
// When enabled, the shield will be hidden unless a player presses right-click.
|
||||
"hideShieldWhenNotInUse": true,
|
||||
// The percentage of damage that will be negated when a player is hit while holding a shield that's not held high.
|
||||
// min: 0.0, max: 1.0
|
||||
"passiveShieldPercentageDamageNegated": 0.3333
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"disabledIntegrations": [
|
||||
"borderlessmining",
|
||||
"cem",
|
||||
"citresewn",
|
||||
"continuity",
|
||||
"colormatic",
|
||||
"cullleaves",
|
||||
"dynamicfps",
|
||||
"entity_texture_features",
|
||||
"entity_model_features",
|
||||
"iris",
|
||||
"lambdabettergrass",
|
||||
"lambdynlights"
|
||||
],
|
||||
"enablePuzzleButton": false,
|
||||
"debugMessages": false,
|
||||
"checkUpdates": false,
|
||||
"showPuzzleInfo": false
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
// If the bundled Advancement Screenshot mod should be enabled.
|
||||
"enableAdvancementScreenshot": true,
|
||||
// If the bundled Beautified Chat Client mod should be enabled.
|
||||
"enableBeautifiedChatClient": true,
|
||||
// If the bundled Current Game Music Track mod should be enabled.
|
||||
"enableCurrentGameMusicTrack": true,
|
||||
// If the bundled Full Brightness Toggle mod should be enabled.
|
||||
"enableFullBrightnessToggle": false,
|
||||
// If the bundled Global Narration Toggle mod should be enabled.
|
||||
"enableGlobalNarrationToggle": false,
|
||||
// If the bundled GUI Clock mod should be enabled.
|
||||
"enableGUIClock": false,
|
||||
// If the bundled GUI Compass mod should be enabled.
|
||||
"enableGUICompass": false,
|
||||
// If the bundled GUI Followers mod should be enabled.
|
||||
"enableGUIFollowers": false,
|
||||
// If the bundled Hide Hands mod should be enabled.
|
||||
"enableHideHands": true,
|
||||
// If the bundled Improved Sign Editing mod should be enabled.
|
||||
"enableImprovedSignEditing": true,
|
||||
// If the bundled Omega Mute mod should be enabled.
|
||||
"enableOmegaMute": true,
|
||||
// If the bundled Passive Shield mod should be enabled.
|
||||
"enablePassiveShield": true,
|
||||
// If the bundled Persistent Inventory Search mod should be enabled.
|
||||
"enablePersistentInventorySearch": false,
|
||||
// If the bundled Vanilla Zoom mod should be enabled.
|
||||
"enableVanillaZoom": false
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
features:
|
||||
lobotomize-villagers:
|
||||
enabled: true
|
||||
@@ -0,0 +1 @@
|
||||
optimize-command-blocks: true
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"threadPriority": {
|
||||
"game": 8,
|
||||
"main": 4,
|
||||
"io": 7,
|
||||
"integratedServer": 7
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
showOnlineStatus: false,
|
||||
enableFriends: false,
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
version:3839
|
||||
biomeBlendRadius:1
|
||||
enableVsync:false
|
||||
fullscreen:true
|
||||
gamma:0.0
|
||||
fov:-0.05
|
||||
maxFps:240
|
||||
renderDistance:10
|
||||
simulationDistance:8
|
||||
notificationDisplayTime:1.2
|
||||
attackIndicator:0
|
||||
joinedFirstServer:true
|
||||
key_key.hide_icons:key.keyboard.z
|
||||
key_key.voice_chat_group:key.keyboard.b
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"default": "minecraft",
|
||||
"order": [
|
||||
"minecraft",
|
||||
"minecraft_classic",
|
||||
"caribbean",
|
||||
"super_cute",
|
||||
"norse",
|
||||
"festive",
|
||||
"chinese",
|
||||
"greek",
|
||||
"city",
|
||||
"plastic",
|
||||
"natural",
|
||||
"fallout",
|
||||
"fantasy",
|
||||
"candy",
|
||||
"cartoon",
|
||||
"steampunk",
|
||||
"pattern",
|
||||
"n7",
|
||||
"halloween",
|
||||
"super_mario",
|
||||
"animated",
|
||||
"trailer",
|
||||
"dark-mode",
|
||||
"faithful",
|
||||
"beta",
|
||||
"alpha"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"programmer_art",
|
||||
"file/golden-days-alpha-1.21.x-1.13.0.zip"
|
||||
],
|
||||
"id": "alpha",
|
||||
"name": "Alpha Texture Pack",
|
||||
"description": "Have a throwback to alpha with this Texture Pack!"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/FreshAnimations_v1.9.4.zip",
|
||||
"file/FA+All_Extensions-v1.5.2.zip",
|
||||
"file/+1.21.3 Fresh Moves v3.1.1 (No Animated Eyes).zip"
|
||||
],
|
||||
"id": "animated",
|
||||
"name": "Animated Texture Pack",
|
||||
"description": "Start moving like a movie with the Animated Texture Pack!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"programmer_art",
|
||||
"file/golden-days-base-1.21.x-1.13.1.zip"
|
||||
],
|
||||
"id": "beta",
|
||||
"name": "Beta Texture Pack",
|
||||
"description": "Return to the golden age of Minecraft."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Candy Texture Pack.zip"
|
||||
],
|
||||
"id": "candy",
|
||||
"name": "Candy Texture Pack",
|
||||
"description": "Indulge your sweet tooth with this sugar-coated texture pack!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"legacy:legacy_waters",
|
||||
"file/Pirates Of The Caribbean.zip"
|
||||
],
|
||||
"id": "caribbean",
|
||||
"name": "Pirates Of The Caribbean Mash-up",
|
||||
"description": "Take what you can. Give nothing back! Join Jack and his crew in the Pirates of the Caribbean Mash-up, featuring all of your favorite rogues and rascals. Plot a course from Tortuga to Shipwreck Cove and all the way down to Davy Jones’ Locker. This is the day you will always remember as the day you sailed with Captain Jack Sparrow."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Cartoon Texture Pack.zip"
|
||||
],
|
||||
"id": "cartoon",
|
||||
"name": "Cartoon Texture Pack",
|
||||
"description": "A Minecraft texture pack to surprise and amuse you. Even the spiders are happy!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Chinese Mythology Mash-up.zip"
|
||||
],
|
||||
"id": "chinese",
|
||||
"name": "Chinese Mythology",
|
||||
"description": "Journey through epic terrain and find enlightenment in the land of dragons with this Mash-up Pack inspired by the myths and legends of China. Minecrafters get to explore a Chinese Mythology-themed world, with glorious Textures, legendary Skins and enchanting Music. The Pack also includes a themed Battle map exclusive to this Mash-up!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/City Texture Pack.zip"
|
||||
],
|
||||
"id": "city",
|
||||
"name": "City Texture Pack",
|
||||
"description": "A creative texture set, ideal for building structures. The perfect set for the focused builder."
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"legacy:console_aspects",
|
||||
"legacy:legacy_waters",
|
||||
"file/Default-Dark-Mode-Legacy4J-1.20+-1.1.0.zip"
|
||||
],
|
||||
"id": "dark-mode",
|
||||
"name": "Dark-Mode Texture Pack",
|
||||
"description": "Save your eyes some strain with Default Dark Mode!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Faithful 32x - 1.21.7.zip",
|
||||
"file/Faithful Legacy 2 beta 4.zip"
|
||||
],
|
||||
"id": "faithful",
|
||||
"name": "High-Resolution Texture Pack",
|
||||
"description": "The original Minecraft texture feel, with double the resolution and double the fun!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/FalloutMash-upPack.zip"
|
||||
],
|
||||
"id": "fallout",
|
||||
"name": "Fallout",
|
||||
"description": "Welcome to the Wasteland! Celebrate the Fallout® series in Minecraft by cracking open this Vault containing 44 unique skins, custom textures, re-skinned mobs, a special post-apocalyptic map, original Fallout soundtrack compilation and a Pip-Boy inspired UI."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Fantasy Texture Pack.zip"
|
||||
],
|
||||
"id": "fantasy",
|
||||
"name": "Fantasy Texture Pack",
|
||||
"description": "The golden times are here. A medieval, fantasy look for your worlds."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Festive.zip"
|
||||
],
|
||||
"id": "festive",
|
||||
"name": "Festive",
|
||||
"description": "Celebrate the Festive period with this wintery Mash-Up Pack! This pack contains a Festive style Texture Pack, Skin Pack, new music and a Festive world."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Greek Mythology Mash-up.zip"
|
||||
],
|
||||
"id": "greek",
|
||||
"name": "Greek Mythology",
|
||||
"description": "Mythical Greece meets Minecraft! This Mash-Up Pack contains a Greek Mythology style Texture Pack, Skin Pack, and a themed world to explore."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Halloween Mash-up.zip"
|
||||
],
|
||||
"id": "halloween",
|
||||
"name": "Halloween",
|
||||
"description": "Happy Halloween! Dress suitably spookily and prepare for the ultimate Minecraft Halloween thrill ride."
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"background": "legacy:icon/background",
|
||||
"packs": [
|
||||
"file/SPBR-17_3.zip",
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"legacy:console_aspects",
|
||||
"file/magmafix.zip",
|
||||
"file/grassfix",
|
||||
"file/New Ores 1.16.5 Version 3.zip",
|
||||
"legacy:legacy_waters"
|
||||
],
|
||||
"displayPack": "vanilla",
|
||||
"id": "minecraft",
|
||||
"version": 2,
|
||||
"name": {
|
||||
"translate": "legacy.menu.albums.resource.minecraft"
|
||||
},
|
||||
"description": {
|
||||
"translate": "legacy.menu.albums.resource.minecraft.description"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"icon": "legacy:icon/minecraft_classic",
|
||||
"background": "legacy:icon/minecraft_classic_background",
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"programmer_art",
|
||||
"file/PACP_Base_Release.zip",
|
||||
"legacy:legacy_waters"
|
||||
],
|
||||
"id": "minecraft_classic",
|
||||
"version": 1,
|
||||
"name": {
|
||||
"translate": "legacy.menu.albums.resource.minecraft_classic"
|
||||
},
|
||||
"description": {
|
||||
"translate": "legacy.menu.albums.resource.minecraft_classic.description"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"legacy:legacy_waters",
|
||||
"file/Mass Effect.zip"
|
||||
],
|
||||
"id": "n7",
|
||||
"name": "Mass Effect",
|
||||
"description": "Mass Effect meets Minecraft! This Mash-Up Pack contains a Mass Effect style Texture Pack, and a Skin Pack with 36 Mass Effect characters!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Natural Texture Pack.zip"
|
||||
],
|
||||
"id": "natural",
|
||||
"name": "Natural Texture Pack",
|
||||
"description": "Give your worlds a more natural look. A texture pack based on soft colors and lines."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Norse Mythology.zip"
|
||||
],
|
||||
"id": "norse",
|
||||
"name": "Norse Mythology",
|
||||
"description": "Are you heroic enough to enter the Great Hall, Valhalla? Find out in the Norse Mythology Mash-up! Compose your own grand saga as you voyage through the 9 realms, from the treetops of Yggdrasil, down into the mines of Svartalfheim and the depths of Hel! The third episode in the mythology series, this pack has hand carved textures, a thunderous soundtrack and a horde of skins. Skål!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Pattern Texture Pack.zip"
|
||||
],
|
||||
"id": "pattern",
|
||||
"name": "Pattern Texture Pack",
|
||||
"description": "Decorate your world with this bright and colorful texture pack filled with beautiful patterns and knitted animals!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Plastic Texture Pack.zip"
|
||||
],
|
||||
"id": "plastic",
|
||||
"name": "Plastic Texture Pack",
|
||||
"description": "A brightly colored, simple texture pack with chocolate block highlighting and simple icons."
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Steampunk Texture Pack.zip"
|
||||
],
|
||||
"id": "steampunk",
|
||||
"name": "Steampunk Texture Pack",
|
||||
"description": "Create your own Industrial Revolution with this Victorian inspired Steampunk texture pack!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Super Cute Texture Pack.zip"
|
||||
],
|
||||
"id": "super_cute",
|
||||
"name": "Super Cute Texture Pack",
|
||||
"description": "The Super Cute Texture Pack lets you create a cheerful world full of the cutest and cuddliest mobs! Bouncing bunnies, ultra-adorable unicorns, brilliant bumblebees and, er, burgers? Yes, burgers! Even the squid will make you Squeee! This texture pack comes with 15 skins!"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Super Mario Mash-up.zip"
|
||||
],
|
||||
"id": "super_mario",
|
||||
"name": "Super Mario",
|
||||
"description": "Super Mario meets Minecraft! This Mash-Up Pack contains a Super Mario style Texture Pack, Skin Pack, and a Super Mario themed world to explore!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Ore4J v2.2.zip",
|
||||
"file/Bare Bones 1.21.9.zip"
|
||||
],
|
||||
"id": "trailer",
|
||||
"name": "Trailer-Style Texture Pack",
|
||||
"description": "Experience LCE in the style of the MC trailers"
|
||||
}
|
||||
@@ -0,0 +1,759 @@
|
||||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/config.toml"
|
||||
hash = "3800c00a252879fb83bdab36311b951c3cce1943b4afe844cc0f2f4e86224950"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/lang/README.md"
|
||||
hash = "92deb5c02f7625e07c4e477c1d8cf3b1fb920e27aea38b45ed0c06c4c0e420fc"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/lang/en_us.json"
|
||||
hash = "d651eafb669a2560b732b38a78dae72be74892e02773db07dfc999de9d6b92bf"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/lang/ru_ru.json"
|
||||
hash = "d651eafb669a2560b732b38a78dae72be74892e02773db07dfc999de9d6b92bf"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/lang/zh_cn.json"
|
||||
hash = "d651eafb669a2560b732b38a78dae72be74892e02773db07dfc999de9d6b92bf"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/modlist.json"
|
||||
hash = "db59a58e83101b70b8b6ba5d5cc1087f90f98e0edc410e776aee290511e65bd9"
|
||||
|
||||
[[files]]
|
||||
file = "config/crash_assistant/problematic_mods_config.json"
|
||||
hash = "989fb8f797a5a894f0cbf8bf529ac20c88cceee72384bdbeedd6a22d455199a3"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/advancementscreenshot.json5"
|
||||
hash = "bafdc53b21f11eadd6c1a932a9dcb7f7ec9e503be98cbd81ce92c17228be7439"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/beautifiedchatclient.json5"
|
||||
hash = "fd20f923db33eadb5b98950d754d2dfa58d75ec0f9f23590978d699c41739745"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/bettergrass.json"
|
||||
hash = "876580a5ebe7e34ca51b871828234e5f949968392cbbbb3e6da2a32c67efe674"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/capes.json5"
|
||||
hash = "3c5f5e2ce32a31415ea9667f667eecc074cf9de46421afc348e1d17e8fd6957c"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/citresewn.json"
|
||||
hash = "2a4e3e29038837de5cd1004738a73243d7870b4f9dddadef6653ae5158920f01"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/cpm.json"
|
||||
hash = "20537ee105d0cfdd6b4c7bdff851dd1a1a8adbf0d73d08219f97af5734854f75"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/craftpresence.json"
|
||||
hash = "1d855833cc00eb0aa2e7ee1aa6e84b3ae84264cd3a276d862cf0a4e499e27955"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/currentgamemusictrack.json5"
|
||||
hash = "ff54b6483e46419b1d8cee3152e7d6d1dda4bfdf277ae4cd607ffa1e86f7534c"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/enhanced_bes.properties"
|
||||
hash = "219204a2efc6d53ad8b3116db7392e039ba8e0ed5f45bc18562c9697bdf8f5c9"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/fastquit.toml"
|
||||
hash = "2b41a15e0094436d471abe27f4439a41636a8baf0d057574289c19c0844201a4"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/ferritecore.mixin.properties"
|
||||
hash = "1fbbea658d8af2a751857e70cf2d5930a24490cc4c24f8db9b49630a818b895c"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/hidehands.json5"
|
||||
hash = "3074931fda9af006879400bddc0d8ac2806d5cd53b8bff881679cec60386e62f"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/immediatelyfast.json"
|
||||
hash = "892f8cd94a9de2a17b2a938d8b33b5b411a20b0f14a5857963333cbd8ce2f36c"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/improvedsignediting.json5"
|
||||
hash = "734a1f076312ffa5a6222f7fd0abb1f9ec40033730653ca7c1c4ff479cc2d82a"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/iris.properties"
|
||||
hash = "bc5fc249179fa926c9395c63626120f52f55e5c25638712a3e4008a3737e9013"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/lambdynlights.toml"
|
||||
hash = "0fbd6c5f78625f0240300838e7ff89836df8612cca07091a644819341624138f"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/legacy/client_mixin.json"
|
||||
hash = "ace4602e3fd17695499bd3c4c098009bd0e78d7c8e094428688d262a85236d8f"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/legacy/client_options.json"
|
||||
hash = "adb3216aa6f06cc2840fb842e2ab9d189f076f6cba67c3241b4c1144447e7016"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/legacy/common.json"
|
||||
hash = "102803aae5342ed1907d7c1aa18b5ea41f622ab588a6b1c9694ae41f962d5b3a"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/legacy/common_mixin.json"
|
||||
hash = "8c3090d5ad28a65c7f946726318c7b578e9708cec49fc2eee99f746780e002bf"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/legacy/global_packs.json"
|
||||
hash = "67738db2835ad387ec61870c57eebf110eddbaed3727ecded6f178d3438910b4"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/lithium.properties"
|
||||
hash = "cddd1a067b1702014533549650079daf13df9cf5eccb5aff54da0aabf6570f7b"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/modernfix-mixins.properties"
|
||||
hash = "890f408f1f70e476505023ef20da5613d0245d27c6ca1b4a692548e294c5fcac"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/modmenu.json"
|
||||
hash = "4dc7d729a2b83401f4a39dff457680f6f5872df1a5b2a93d9eb27b0b5df42d0e"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/moonrise.yml"
|
||||
hash = "8366e8d4fa7952e0abcf0a0871c06f0b562725b912e0d3537fc37906392a2329"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/moreculling.toml"
|
||||
hash = "20a7c9a9d1ec3c730f37af63357d6847afbb28fd37cd13657928c3d22feb055c"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/nostalgic_tweaks/backup/nostalgic_tweaks-client-startup_backup.json"
|
||||
hash = "da9e16081492698179576b7dbfe7bf1e3fe5a44aa6ec8d14b17f9f0e6dd70341"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/nostalgic_tweaks/nostalgic_tweaks.json"
|
||||
hash = "da9e16081492698179576b7dbfe7bf1e3fe5a44aa6ec8d14b17f9f0e6dd70341"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/passiveshield.json5"
|
||||
hash = "71e75f88c2bd7f82563a26de633c0d37c8b0e3d67258a82082f09c201fd40a19"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/puzzle.json"
|
||||
hash = "dd04f1ceea37a64e0867a55b3bb6e559f4f2358113717abe76a8e250e3718b03"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/serilumsclientbundle.json5"
|
||||
hash = "cefddb1867d1af187f8208c1cd619c7c9f3f5907fe41e7938083adc80508dd11"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/servercore/config.yml"
|
||||
hash = "a6fbf706590f394558edc5996f07a9575739fb9f056eed59cffe17fa57ec4e55"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/servercore/optimizations.yml"
|
||||
hash = "8d528c4cad1cca659e5582d0ac35bb1ab971d4a98df009e3fc224d03f2304eff"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/threadtweak.json"
|
||||
hash = "b4c1cc5fc213225d64e685a3b632092e909386ab41bd9925f9cf7efd53d1ad46"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/config/world-host.json5"
|
||||
hash = "beb51783002c46da1c609c40f31cd3a79773a1a0c2b63f7d6442c61b0bf9ae43"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/options.txt"
|
||||
hash = "7460845c9b5066bc36a7fbf2358f5fdba57a3104c8052e93a76de1b06aae938e"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums.json"
|
||||
hash = "1d9ecd334372b9a130168619133c15d315686f879680a25217af10c1b0fceb71"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/alpha.json"
|
||||
hash = "f7da923a67bbf61f8ff58e5934bd9823098d338e46698d0f3831d4876eaada8f"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/animated.json"
|
||||
hash = "4c00ec445b6cbd13068bd6a91b3e70647013b8f537f9dfdc67ab1c8f46a28fb0"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/beta.json"
|
||||
hash = "40d92cc908c0ad2dada5297edfeeeeb728f2be28529feda4f629c78b3237704e"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/candy.json"
|
||||
hash = "fd3ed1c665ab17d274d7010da30d9bbd4349c7df557fd697c965ddafd76f69ed"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/caribbean.json"
|
||||
hash = "d679c233f04fdf4c8a2fc1b498b887db20a2c46c985cff83e216a499aa80a8bb"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/cartoon.json"
|
||||
hash = "4bc7db98154db8632d22c503f760ddc2a231d1b2232cbc3e008630c59a74b46b"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/chinese.json"
|
||||
hash = "65cd273c5bfc655b148e0b53e09aa9895e13555170bf6c810698f74096197ed5"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/city.json"
|
||||
hash = "0b6cb147e132150afd6add37f2011b40d7a9838345ba418957253ad9b525f92e"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/dark-mode.json"
|
||||
hash = "eacca1fbfc7718a56c883605dc215e978f5a2e6027c2db9ecd8c5367a411179e"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/faithful.json"
|
||||
hash = "824ab124efafff16fab8d498585d29ddbd667b3830026954874d517f6c59d884"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/fallout.json"
|
||||
hash = "d0657baf75413d086ce2530f7eeea9030568cfd2cf6ad12e3bc4249137f552e3"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/fantasy.json"
|
||||
hash = "f56cb12785e540788b752d740fc45a629cf705096400b36750d3f1ef64b60145"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/festive.json"
|
||||
hash = "e5abb09c4fdf9be196331d0595c6dfe34d7aae35d77fd3b8b7c471ac9e80a208"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/greek.json"
|
||||
hash = "1f3dfca841aa745932626da1515dc7f54430c1cb5e1faef6f711bb936426e4ab"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/halloween.json"
|
||||
hash = "343e397e323485ebf9f7f9f532ac5a4015a1494d0cada70fc6000a9be579fc8f"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/minecraft.json"
|
||||
hash = "978375794ec8b8381ab01fbcad3d647b9a0c50e4496c8306895f2b3011b8c781"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/minecraft_classic.json"
|
||||
hash = "7464c63eeb981fcb7ddf98dc98a8cdbf21fa8f21615501da9b0be2967bac95a6"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/n7.json"
|
||||
hash = "2edf8c4c52bde62ec390970adf66ac211d541d5c19e4353330db0d26c13f1277"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/natural.json"
|
||||
hash = "ea618658c8b9086acbff3cd9c89a0e5909187263f67047c8838e1120af40af48"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/norse.json"
|
||||
hash = "c75481f035185be42e077035bb1a8f5bc06465e0905aa4f5349bf1d0e9c57ffa"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/pattern.json"
|
||||
hash = "2627cd48fa453192a661071555eb3c7253eb4b6f62c081a9627c01f1dcb7ff04"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/plastic.json"
|
||||
hash = "5963dfc9f69c88930cabdc41bc43c0961974caaaf67a9af33f01a7224522707d"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/steampunk.json"
|
||||
hash = "f503d6bb97ff4706bfe4968e095b4d7e4bce85794800e8382eac15756c2d3f66"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/super_cute.json"
|
||||
hash = "a257c00c4c02f54d8b2384b3785e7a8e01b07d18f7f2bdbb2e6bb1101f7d20b4"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/super_mario.json"
|
||||
hash = "dfaff10d2c8d432900485f60e42bbe525b76f6f7502984001f774e4aaf32fe45"
|
||||
|
||||
[[files]]
|
||||
file = "configureddefaults/resource_albums/trailer.json"
|
||||
hash = "3640a67d8ecbdb2493ae703149cf17438e60ab8c8cd754129eca51fc0704ee30"
|
||||
|
||||
[[files]]
|
||||
file = "mods/animatica.pw.toml"
|
||||
hash = "7749a788cd34e08e2280dc5e05db1bbf375d7a184d787f682f7df19709a754e3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/badoptimizations.pw.toml"
|
||||
hash = "ff991657ef2511d8f02a9999d55ec367a37b20a3987eb1d75ff82ba720a96aa5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cape-provider.pw.toml"
|
||||
hash = "76427b7c0023393e46d6a240a3d45e4074a157fb935b7a1b9a683c7e6e2ce1f2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chat-heads.pw.toml"
|
||||
hash = "4a9910d74bb7a85600abaf36ae568bcfb10e76062b9d5d718656f5d172e79419"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/collective.pw.toml"
|
||||
hash = "669721333fca74496cd64ba542e71214e677101c5edc2fd2f29d4e04ccd8bc01"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/configured-defaults.pw.toml"
|
||||
hash = "0fc46535baa2b4d05786d64803e0161e2ec2e408d0337e047ff81543ac8f0eaa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/console-advancement-sounds.pw.toml"
|
||||
hash = "562e8c4fe9cc395411ce7c90998f7cc1f09fba2065df568c8c290eb1d1b63f39"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/craftpresence.pw.toml"
|
||||
hash = "8ec6163b55eb8103772d0fb2959837ccf1192b6d5536d14c0d418c232d511244"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/crash-assistant.pw.toml"
|
||||
hash = "4de89746f41405854ba54d7f16c71949f620282087aa3ee3233440086f1e081e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cubes-without-borders.pw.toml"
|
||||
hash = "a90139b002d632ba9256cb3e7e877945bf8e3afa5b191d1adc83c5e3eb72da4c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/dynamic-fps.pw.toml"
|
||||
hash = "d541d1522108112346d35a6e9a3a9979d735cfc766d3ea6477c6306450c35f23"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entity-model-features.pw.toml"
|
||||
hash = "d980c9bbc31a2fbac6070ed2c8992e2f1527839c54c4299d7a52f015775d8067"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entityculling.pw.toml"
|
||||
hash = "023334b6d5d5472a218b475e8264bf30d09592eae65de9e597180950e5632a49"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/entitytexturefeatures.pw.toml"
|
||||
hash = "2a9e9968c598e234a84ccd9afc80a424d5c2ad9a37e4c85a0d36d06ddc9ebfa9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "b908cccddb4f18a5f570a0201b7a6f7f6775f9fcb0dcd0a1a0d7600ff1d7c7f3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabricbettergrass.pw.toml"
|
||||
hash = "980b7de1e21a77cfd54db66cbbd097e45fbbfd80831f3fd6185f9dd421c5bb30"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/factory-api.pw.toml"
|
||||
hash = "d3bab339ac3c9b1e159eb2c4fc42e38d0686f30caac49398fcbee18acfc7bfbd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ferrite-core.pw.toml"
|
||||
hash = "fbf9806c22ee5bccbe08f7dec15b742f5ae3a70caf186d6dce0d42f28790f559"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fix-keyboard-on-linux.pw.toml"
|
||||
hash = "33cf6c7885bb2a0d2e95467b546565cad5bd2714e2e53601ab8011b6910eac26"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immediatelyfast.pw.toml"
|
||||
hash = "5f40e2db6037f733566c81e8f11ca3c425d738eb5a182658691f36d041b5df40"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.pw.toml"
|
||||
hash = "4ed061d122cb39f34ed730984c7bcf03437250f24a21975203bb4598d7d86a14"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdabettergrass.pw.toml"
|
||||
hash = "a44c5f37ba55dd8ac2924df90283724538b4f6ecdb6f813e287175bbb88623f8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lambdynamiclights.pw.toml"
|
||||
hash = "e570f2284d94889aa091327cca3264ea6c637dc01aa4c2a3e5f06c437a09a8a0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lazy-language-loader.pw.toml"
|
||||
hash = "4150ca7c5bfbc1fbb7f9986a8dbd784ed469c5bc7c382671ee4675f2c2019fc9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lazyai.pw.toml"
|
||||
hash = "0338f2b260c68c5cac1a40206749c44d43f68dd1459f745b3bc5b6d41868a362"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/legacy-nether-extended.pw.toml"
|
||||
hash = "00d01654badc0673fe334c0a8e4943f6e3e482fe2cb954bcdd6cd777ba0bcb94"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/legacy4j.pw.toml"
|
||||
hash = "5d2e24173ea6c0ff5ac5f8e281d97bf242daf84e30b289af73585e0ba5e927f1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/lithium.pw.toml"
|
||||
hash = "ed9d0d5d4078c137900006321d35515cee46058b92df1128ea37cda3e5e1bb2b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macos-input-fixes.pw.toml"
|
||||
hash = "46666563d30fc4eb96533ee5968eda5786a2984740474f024eebc541e4fab081"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moderner-beta.pw.toml"
|
||||
hash = "1a008347bf976dd026177e22b4c063fc2640fbfe65e678eb290ed0ca9296f577"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.pw.toml"
|
||||
hash = "5dd45d5fd5e1ae2bd521b93a70b83c69b57ada18f424c6562d8c6ea9980cfb3e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moonrise-opt.pw.toml"
|
||||
hash = "47bdd55765d74cc1e458cc6760a78748d637169b507051aa46065db6c9c73786"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moreculling.pw.toml"
|
||||
hash = "204a4b3b041fad4bb4dc543c74d540fcf239710494d2130cebe700bf1d8a7805"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/noisiumforked.pw.toml"
|
||||
hash = "8b9bd9736ddd6211c31c8f808bb95473fde04c524b578cbc8fb1c5555ecc9a37"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/numeral-ping.pw.toml"
|
||||
hash = "dfddd8520fa2cbf80313f8680cdd99ed8b9342f7ad0a0abf268c2dce471e7b7e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ok-zoomer.pw.toml"
|
||||
hash = "478cd4b2fec408c22999469637c2c6ff341ca5525fee24b765c116bd38c908ea"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/optiboxes.pw.toml"
|
||||
hash = "3b2913fc75916a0fba87bdc0e5aa962fa25d86fd2cfb28543667a62add3311e8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/raknetify.pw.toml"
|
||||
hash = "1bd16c36df6be2752be3da5fcf414b252e4f6f8bb4cb086d0eca02e66afd7555"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/renderscale.pw.toml"
|
||||
hash = "c72134131fd9f582fe9edd7aa284de872193a68e44bbd8cb570956ea79d94592"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "cdde1ed66709cde0656be902a1109532f255fd1526991acebe91116a4ab399df"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.pw.toml"
|
||||
hash = "e8c961dbadf2dde334c857d0b42a6c6452aa77a146cf80d4febf7f46e4ac2ef6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/unilib.pw.toml"
|
||||
hash = "c4d548eff5cc51d1d183b00553fd0b7fe17ea744d9f6532d1f88c42a8afcbb64"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yacl.pw.toml"
|
||||
hash = "cfa4ddfc8999e7be331c6dad1f2a0372f996243241d21697939e6838b3402c6d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "rc-icon.png"
|
||||
hash = "47bb137dfbe2f18f76a42f9f0171a5bdc203dd614b285dcc17743f869442887e"
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/1080p-kbm-tooltips.pw.toml"
|
||||
hash = "7f33b842746b73ed35ddd97dc78641fa39df8304a4ab6d37e25eb7356822447e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/a-minecraft-movie-hero-pack.pw.toml"
|
||||
hash = "b192157ca5878d821d80ae59845e4085336a55124058e81f5154e512b8e18ba5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/bare-bones.pw.toml"
|
||||
hash = "7260559c6579847c30a935eb9de5208eb996ba1439828135c10ec23150e04db6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/candy-texture-pack.pw.toml"
|
||||
hash = "9e1366c8ba3d6185086495e35af20c7ef571aadd683cd999865cd2e33c747d41"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/cartoon-texture-pack.pw.toml"
|
||||
hash = "c01032a7b99b42e62f3b787897f922907c5e433a905eb676aa273fd7a74d07b4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/chat-reporting-helper.pw.toml"
|
||||
hash = "97d4b700ffc10156f2b9e31329f1a401b0453e7c08587baa5076afeca2ca8ec3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/chinese-mythology-mash-up.pw.toml"
|
||||
hash = "0d32bb9e9bdb258cdc93f0a1497279d4c49383a1a9fa396db5fc3d7df9f01810"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/city-texture-pack.pw.toml"
|
||||
hash = "1e5a54b20b350664ad5288c922190c2a619d2598f84806a323dd86e3cbf7c53a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/classic-mcyt-sp.pw.toml"
|
||||
hash = "38d203433b1c508f70c46b66989af4c04528f6283ac56aebe5c8980e816f21b6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/default-dark-mode-legacy4j.pw.toml"
|
||||
hash = "4f91bbb3088b6a0062648ced05c183c4e4dac3382a5e3ce7162ec4c05bb730c0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/default-skinpack.pw.toml"
|
||||
hash = "377d9f3d8afeb03582db8048c8acb28ab612c2541f48e65f1994bd02b381d119"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/faithful-32x.pw.toml"
|
||||
hash = "4c8677833dd857d3d3a682116fa8845c29c207c8f3f86e75e2783492c06b72d0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/faithful-legacy.pw.toml"
|
||||
hash = "bafc126d9eb66870e7c3602580eb779d7684c4b69d1f4419f2208c94ef6b57ca"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/fallout-mashup.pw.toml"
|
||||
hash = "15b5ff1b94bacec8ea7e58b6c29ebdef07d3d53c6d3b8d0c791803fb64a4d046"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/fantasy-texture-pack.pw.toml"
|
||||
hash = "3bde29ef9346576fb4a298b278a70e18f25264732c537b3df48414f09535e583"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/fast-better-grass.pw.toml"
|
||||
hash = "10046ebd948f0de1e01c8251c750b8c9481636a8b40fc85de1dec4868fc883a6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/festive-mash-up.pw.toml"
|
||||
hash = "ff1fd3456077a9159c6c6debf9749344544b4ead515d03adaae4fbdf82cd7f65"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/fresh-animations-extensions.pw.toml"
|
||||
hash = "9064f4642ae9641ab7cd215dc36dd794ffb6fd23d2170085ddccd5245a96979c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/fresh-animations.pw.toml"
|
||||
hash = "a6c3718d882abdbf077fd1243bb24edb53806ae9e0d7c25762bfb0260c890c00"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/golden-days-alpha.pw.toml"
|
||||
hash = "779d6dd4029af7fc667e28d8613ce641f3b6f0a05d5617f1b1f24d8c8b5eb0e2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/golden-days.pw.toml"
|
||||
hash = "23ba5e1c70c553f2e12b0ac0de1e32ee0020b5f85281a99bbf38877f5ee529c0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/greek-mythology-mash-up.pw.toml"
|
||||
hash = "bbd3df96b52262fa94986f3539e34d314f387041b3a17983ce4b47178f1812f7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/halloween-mash-up.pw.toml"
|
||||
hash = "b6ba3b5de0a7c0d14b7f6ff59f09e166dc546de25b0e0211a3674b4bb7cc662b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/hellokitty-skinpack.pw.toml"
|
||||
hash = "9d84baa3d22f3ec6bd1fa36237e4c221900b67080c7b9062d4247945903b1410"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/lce-panorama-collection.pw.toml"
|
||||
hash = "abb33d78e21b4534f1a0454f21b3e3908ad5df02af8e985e0221e1804c96e530"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/legacy-skin-packs.pw.toml"
|
||||
hash = "11b0c66e2b294eab4ae270ed7d34e67986224a70974914ce18bf1374285580a1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/legacy-skins-doctor-who-skin-pack-1.pw.toml"
|
||||
hash = "91ae0adb7510abb1409444ce55bfa6202cb358a8f1ff37a01dfb3267d57d315c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/legacy-skins-pack-ordering.pw.toml"
|
||||
hash = "630caa688be90d27ad2953e835ffcc0e3034c011ee836cbd2a2901146efe474f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/legacy-titles.pw.toml"
|
||||
hash = "b3ef3dab7a28b82449657797814ec2a56b248658da95e916b3a0049a22365187"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/legacy-worlds.pw.toml"
|
||||
hash = "aed5efab46de12e572df2b7f73173d7536552b941d796ca7afea7d8218c6afa1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/mash-up-addon.pw.toml"
|
||||
hash = "b86eb987d865f884df36c44e293f8a91e624892197abc2058f1442cf7030d12e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/mass-effect-mash-up.pw.toml"
|
||||
hash = "cd55ef8ccfb05c318e8b827ef516e39fed104f9c5d9a897bccebd85783de5732"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/modern-skin-packs.pw.toml"
|
||||
hash = "492f4486f8896daaf2372ced22ce736fd1803f3774d9d889a0cbd62b9e90ba13"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/natural-texture-pack.pw.toml"
|
||||
hash = "9b74657cc5d81c45158271d7383f2dfdfe390a7aa6fa78c21b53fe0839847733"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/norse-mythology-mash-up.pw.toml"
|
||||
hash = "cc1cff1be476ff3a6660ebe8061780c8edae0916bf28a513190f7ffc0ebe083f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/ore4j.pw.toml"
|
||||
hash = "50ffe03d8356c972546bda611b282b684db10230e40de9db5bab8fa93f2f86fd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/pacp.pw.toml"
|
||||
hash = "6d5d7ec730da9321df1ed448d643e844657197926a4a273e3dabe3e09cab4c65"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/pattern-texture-pack.pw.toml"
|
||||
hash = "f7e27be27a145af458cf460c7f7a8e70042671d0bba008bb1b4ad776ad0e3e06"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/pirates-of-the-caribbean-mash-up.pw.toml"
|
||||
hash = "081794531d6d45d5bb3bb92927a309f1d577d6332db0fc0499aa0266ddc6aa09"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/plastic-texture-pack.pw.toml"
|
||||
hash = "3b2345e5a8c95d2a6a8ea083481cb0b9b836247947838e6e866e5679a148bf0e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/re-console-resources.pw.toml"
|
||||
hash = "0e0d1d8f83c5af75781b11907ff1d52737f4fcfb7786ed16d69b31c4fce26f48"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/steampunk-texture-pack.pw.toml"
|
||||
hash = "75abb54977e2dfbd1200d191c6ae3322ac2b27e50974d78f76006ccb41bf5256"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/super-cute.pw.toml"
|
||||
hash = "756bc6e0bfef80d2afba74b68009a3740dfe54d3461c9f9b5cac2e15ade47179"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/super-mario-mash-up.pw.toml"
|
||||
hash = "c6c5beec5462adcc8d75121c6c53c1e08a9f0e33beee969cbd21384dd12c220b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/the-garden-awakens-skin-pack.pw.toml"
|
||||
hash = "e7331a2204e94f749e246f1e4af60ce21b5995afc5a0da45541b49645fc3855f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/the-ocelots-skin-pack.pw.toml"
|
||||
hash = "b49f4d4f3ddd16944ac7b4d678933c443cd04c388c57645395361868637e1d2e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/tras-fresh-player.pw.toml"
|
||||
hash = "0815aa678f2ecbb6987c9bf3f56099c98f53a0f4608e70f5d6b51bf2e29a5189"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/tutorial-world-addon.pw.toml"
|
||||
hash = "de5f3c59c9ec0ad545235dca595c8bb8a28d4c72ba0cfd5a491f234c0e948f44"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/vanilla-3d-doors.pw.toml"
|
||||
hash = "db31050c794f63a043f59acd39d716c718ac7d7e8eb21d8657784ae699dc7ec6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/vanilla-3d.pw.toml"
|
||||
hash = "0a0a113cbf9235d723636102d05629250f6aff435220041393faabe585c18de6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "resourcepacks/vanilla-plus-jaronwqhd.pw.toml"
|
||||
hash = "c7ce26bd5d99af09746b35df67aeba19f21b007b920d97349bde16bc38a87b4c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "servers.dat"
|
||||
hash = "92a8f35269e798d375d31e5d1f1abd5964f6c52d64cdb8b12b759b91833a4587"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Animatica"
|
||||
filename = "animatica-0.6.1+1.21.5.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/PRN43VSY/versions/CVlwSVpU/animatica-0.6.1%2B1.21.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2e4de7ac455996d3fc79cec1645018f698b9bd184db3e990cb774ae9eaf0208f75605cae09f93ead9aa22fbe324c07b73348468af29b97757c205f99e91bc7d0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "PRN43VSY"
|
||||
version = "CVlwSVpU"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "BadOptimizations"
|
||||
filename = "BadOptimizations-2.3.3-1.21.9-21.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/6uGJM3JZ/BadOptimizations-2.3.3-1.21.9-21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "537ac9bbf9674e6bca4a984bf6638e3912f8426889645485d3903a4af2a1681f4bf117677a4abd5f6bda0ed1700ac7adf83ba84194c66f09fed7849e7bd1e6dc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "g96Z4WVZ"
|
||||
version = "6uGJM3JZ"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Cape Provider"
|
||||
filename = "cape-provider-4.1.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/orXAsira/versions/Guii8t2f/cape-provider-4.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "eb5257d53a6e163c4430e330f2ee4f4a1060a53b6b7ea1c55bfa62ad14186fbace370647e9e18dbf96f40e594f412fac8b52460339140dbe6517f2e052f3f26c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "orXAsira"
|
||||
version = "Guii8t2f"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Chat Heads"
|
||||
filename = "chat_heads-1.1.2-fabric-1.21.9.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/VAYOVjEl/chat_heads-1.1.2-fabric-1.21.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3d66eb7082e48071333bc05daab86d62722dc49d21133182500516e2a33ab7f4084f53be14b8c912f38d10b8c9e9734ba2d8bb67937a2b34ec7f13ca0336911f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Wb5oqrBJ"
|
||||
version = "VAYOVjEl"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Collective"
|
||||
filename = "collective-1.21.10-8.11.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/Gi3mtnzR/collective-1.21.10-8.11.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "391ce30547c2fc3886d917333a4ea813296ae02497186783d6474084e5638e0447b28a68e8d2160cce1fecc394b2a08fb6bcfb94e0ba6ff8009db781425eecf8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "e0M1UDsY"
|
||||
version = "Gi3mtnzR"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Configured Defaults"
|
||||
filename = "ConfiguredDefaults-v21.10.0+mc1.21.10-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/SISoSFPP/versions/VnozxNCX/ConfiguredDefaults-v21.10.0%2Bmc1.21.10-Fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3e8f2049806bb9677a49be2275e9d1ebb9c6eaa52e1827357440258dc3cd27bf0842a69a746a91d100145e73a0fcdb0e37b2dcce2da1a09de7f77ed46452c317"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "SISoSFPP"
|
||||
version = "VnozxNCX"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Console Advancement Sounds"
|
||||
filename = "console-adv-sounds-1.0.16.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/v2x7Gozv/versions/a2AaEaAL/console-adv-sounds-1.0.16.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6ea14f819092c3b39283c3f996a8eb08198b4c7853c35da5489f610bd87e006dc466f2f61615f958cdf725be85a36f880de719f180b3a2109bda4dd0fe6483ec"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "v2x7Gozv"
|
||||
version = "a2AaEaAL"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "CraftPresence"
|
||||
filename = "CraftPresence-2.6.2+1.21.10-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/DFqQfIBR/versions/KqNDzdjS/CraftPresence-2.6.2%2B1.21.10-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "34e7e6bf2d953786d36e00b37625c36c88530e44b64f627ba8d8c02936d05adad29635f52d4acefbcff14413e279a195137be8a3a592fc89a4d6e96767bab7dd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "DFqQfIBR"
|
||||
version = "KqNDzdjS"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Crash Assistant"
|
||||
filename = "CrashAssistant-fabric-1.21.5-1.21.10-1.10.12.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ix1qq8Ux/versions/pbwmM3E4/CrashAssistant-fabric-1.21.5-1.21.10-1.10.12.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7eb841a74d63986dff7ed2cb83915dfa93715d73f40a99fdbbeef637d007e84691e00ec6439927546fb1d780cee338ab3d2816c8ed3b71a7bccbf1a893c4fc29"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ix1qq8Ux"
|
||||
version = "pbwmM3E4"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Cubes Without Borders"
|
||||
filename = "cwb-fabric-3.0.0+mc1.21.5.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ETlrkaYF/versions/wXhtL4fb/cwb-fabric-3.0.0%2Bmc1.21.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "93ef2bce695fd7d180d03d8d1d2a15c74e7807f74f087518d607f754d58b1945fb571c5aa426e673c70c4c08dab54034cc927c89d4e5bf9521035dbbd5a6f236"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ETlrkaYF"
|
||||
version = "wXhtL4fb"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Dynamic FPS"
|
||||
filename = "dynamic-fps-3.9.6+minecraft-1.21.9-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/8xJxJV8H/dynamic-fps-3.9.6%2Bminecraft-1.21.9-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "89f7442fe5fea8f014372d397eca44c9e1139ca01a736fa34192287471516e1dee33f2061454556f25db3fca78f727cf728dd73530a37ae9212d9b901f0c12fd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LQ3K71Q1"
|
||||
version = "8xJxJV8H"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "[EMF] Entity Model Features"
|
||||
filename = "entity_model_features_1.21.9-fabric-3.0.3.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/RBKKgBqz/entity_model_features_1.21.9-fabric-3.0.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4041380cffc540190e5d65309fb04441a1d5614a19865eef67ae107ab048b94a48b3ee05b292b20592bcbc2ee01941a469841122ab3065bda365686919e326a6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4I1XuqiY"
|
||||
version = "RBKKgBqz"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "EntityCulling"
|
||||
filename = "entityculling-fabric-1.9.2-mc1.21.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/jUAl8SgQ/entityculling-fabric-1.9.2-mc1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d241dda17bc6207c062de4c63672d760dd5492e0c557d0e55aab1aed9a117670f3152aab09afd5631a395c1684b53e51f21b8258ecc44bb7c14ac233e2d6e194"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NNAgCjsB"
|
||||
version = "jUAl8SgQ"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "[ETF] Entity Texture Features"
|
||||
filename = "entity_texture_features-7.0.4-1.21.9-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/dP1ZqaGp/entity_texture_features-7.0.4-1.21.9-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e0e923bcede8f40a95bf3dd1b3bc09466e55ad82287280eb1b5f3933d0183c51517f14db2c8baa5123d273331db2a39d7cd85af21373fb30224ac7b77107b8c2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "BVzZfTc1"
|
||||
version = "dP1ZqaGp"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.136.0+1.21.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/lxeiLRwe/fabric-api-0.136.0%2B1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d6ad5afeb57dc6dbe17a948990fc8441fbbc13a748814a71566404d919384df8bd7abebda52a58a41eb66370a86b8c4f910b64733b135946ecd47e53271310b5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "lxeiLRwe"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "FabricBetterGrass"
|
||||
filename = "BetterGrassify-1.8.1+fabric.1.21.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/m5T5xmUy/versions/B2ILcU84/BetterGrassify-1.8.1%2Bfabric.1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0d8d79233fca5345b2a3b4f2c73856e02378a222550c63c6c81ae126a7614c8bfb001205eabf9d7aebe547c430a5b7a896ea547427387a09125178e04a3b8b4e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "m5T5xmUy"
|
||||
version = "B2ILcU84"
|
||||
@@ -0,0 +1,9 @@
|
||||
name = "Factory API"
|
||||
filename = "FactoryAPI-1.21.10-2.2.6.2541.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://github.com/omo50/aw/releases/download/1/factory_api-fabric-1.21.10-2.2.6.2541.3.jar"
|
||||
hash-format = "sha256"
|
||||
hash = "ced06ffd87807902eaf026f4a7cea6c1ec23b253b874e5574116472422cbb618"
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "FerriteCore"
|
||||
filename = "ferritecore-8.0.0-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uXXizFIs/versions/CtMpt7Jr/ferritecore-8.0.0-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "131b82d1d366f0966435bfcb38c362d604d68ecf30c106d31a6261bfc868ca3a82425bb3faebaa2e5ea17d8eed5c92843810eb2df4790f2f8b1e6c1bdc9b7745"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uXXizFIs"
|
||||
version = "CtMpt7Jr"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Fix Keyboard on Linux"
|
||||
filename = "fix-keyboard-on-linux-1.0.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/siXFh9dn/versions/hoSPSRQf/fix-keyboard-on-linux-1.0.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7f4c00bd555cc26f4152ee8ed99d3ec2813a6e1b8a6462cc4572645a8f259cad89e25eacb96f10e8769cb9e7ddaeecd7728f1bea547d7955b9f9901e3b061a4b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "siXFh9dn"
|
||||
version = "hoSPSRQf"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "ImmediatelyFast"
|
||||
filename = "ImmediatelyFast-Fabric-1.13.1+1.21.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/pAXzwgEN/ImmediatelyFast-Fabric-1.13.1%2B1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d9d0bf83f88d992521aef2a2f31fb53967fcc8515f70c870322e4009d67f7475002d44428921e3085e1d849e805b3080fc5f1c5f8daa926b20d121214b1acc5a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5ZwdcRci"
|
||||
version = "pAXzwgEN"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Iris Shaders"
|
||||
filename = "iris-fabric-1.9.6+mc1.21.9.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/r1MZ1Bpv/iris-fabric-1.9.6%2Bmc1.21.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1bbe1101a0fed2b8c0cd537c0e37a8dd56ce3f35ac8d5fecc7cd73256b3c8bd13fa84de3f36070159918d46744d753474a775ca12c7326af602be2a6377429d4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "r1MZ1Bpv"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "LambdaBetterGrass"
|
||||
filename = "lambdabettergrass-2.5.0+1.21.9.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/2Uev7LdA/versions/FY86dPVr/lambdabettergrass-2.5.0%2B1.21.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "82b34615d4b7cf35cd577234af22e8a3882a009e31cbcf4a659d0282f381bfe6a58ff480c5743257dbc38294cd26e497f1663a24a6ebd4c41b2cc4863c510545"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "2Uev7LdA"
|
||||
version = "FY86dPVr"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "LambDynamicLights"
|
||||
filename = "lambdynamiclights-4.8.5+1.21.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/bORAMbLk/lambdynamiclights-4.8.5%2B1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "81dc51213bb20901bb86a3866890b3acbb2c10f8785d714d6d36bd33e9544cf1b1ea17f166844d996160a16d8102b76d8d463e3b9282b9ce21a38a21dac87258"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yBW8D80W"
|
||||
version = "bORAMbLk"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "lazy-language-loader"
|
||||
filename = "lazy-language-loader-0.3.9.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Nz0RSWrF/versions/IDCC6VWl/lazy-language-loader-0.3.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3a027632b65f9499121e9f6cd7de4956ba41144ae9a0befd42143e9eca309b274039d3826b548acebec494215ed7d52f965ae71fa6fe9274d3dd65a4ce37de83"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Nz0RSWrF"
|
||||
version = "IDCC6VWl"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "LazyAI"
|
||||
filename = "lazy-ai-1.3.0.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qgWgCnzi/versions/EmwJCMXj/lazy-ai-1.3.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7f21b02ffe1136912b7760aa134e0730a9fc01557ff150fb698596f89b9df1fc4ed2cccc6896ecfcd5a2574a1e6f45867d6a605d2326937fead6af1d55f91040"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qgWgCnzi"
|
||||
version = "EmwJCMXj"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Legacy Nether: Extended"
|
||||
filename = "legacy-nether-extended-1.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/l54rfVmm/versions/V0tEKCuN/legacy-nether-extended-1.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3e9788924f773590ffefeb1da96f51b45a6570220560f1cf5de4a20346acaa0e238efcbbe4710e6da43ecd170abc679e88f2a44d7d77d4bc961fb61caebc519f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "l54rfVmm"
|
||||
version = "V0tEKCuN"
|
||||
@@ -0,0 +1,9 @@
|
||||
name = "Legacy4J"
|
||||
filename = "legacy-fabric-1.21.10-1.8.5.2541.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://github.com/omo50/i-hope-this-will-work-for-gods-sake/releases/download/2.0/legacy-fabric-1.21.10-1.8.5.2541.2.jar"
|
||||
hash-format = "sha256"
|
||||
hash = "c4bb6942f2d32d87e7885b5a5326921c7cbe331503a820a217a716c37c4e8ab4"
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Lithium"
|
||||
filename = "lithium-fabric-0.20.0+mc1.21.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/oGKQMdyZ/lithium-fabric-0.20.0%2Bmc1.21.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "755c0e0fc7f6f38ac4d936cc6023d1dce6ecfd8d6bdc2c544c2a3c3d6d04f0d85db53722a089fa8be72ae32fc127e87f5946793ba6e8b4f2c2962ed30d333ed2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "oGKQMdyZ"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "MacOS Input Fixes"
|
||||
filename = "macos-input-fixes-1.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/x9BrsVME/versions/XJx2d4Os/macos-input-fixes-1.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3c0b92ef243ea34be5e0240afbbc7c2eaa18a8378ad3c9ce71a3699c8ffd8d3c5424c0ab029a123dcf0fc218c769f08805d0e0a40d1196a1593247e05b881989"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "x9BrsVME"
|
||||
version = "XJx2d4Os"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user