mirror of
https://github.com/Nostalgica-Reverie/Content-Monorepo.git
synced 2026-05-09 00:24:15 +00:00
AC: import re-console 2.0.0
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 = "CHANGE_ME"
|
||||
#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 = "example Discord"
|
||||
#$CONFIG.text.support_place$ in lang files will be replaced with this value.
|
||||
support_place = "#example channel"
|
||||
#$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 = "Minecraft"
|
||||
|
||||
#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_"]
|
||||
#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 = true
|
||||
|
||||
[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,178 @@
|
||||
{
|
||||
"architectury-13.0.8-fabric.jar": {
|
||||
"modId": "architectury",
|
||||
"version": "13.0.8"
|
||||
},
|
||||
"BadOptimizations-2.2.1-1.21.1.jar": {
|
||||
"modId": "badoptimizations",
|
||||
"version": "2.2.1"
|
||||
},
|
||||
"BetterGrassify-1.5.1+fabric.1.21.1.jar": {
|
||||
"modId": "bettergrass",
|
||||
"version": "1.5.1+fabric.1.21.1"
|
||||
},
|
||||
"BetterPingDisplay-Fabric-1.21.1-1.1.1.jar": {
|
||||
"modId": "betterpingdisplay",
|
||||
"version": "1.1.1"
|
||||
},
|
||||
"calcmod-1.3.2+fabric.1.21.jar": {
|
||||
"modId": "calcmod",
|
||||
"version": "1.3.2+fabric.1.21"
|
||||
},
|
||||
"capes-1.5.4+1.21-fabric.jar": {
|
||||
"modId": "capes",
|
||||
"version": "1.5.4+1.21"
|
||||
},
|
||||
"chat_heads-0.13.13-fabric-1.21.jar": {
|
||||
"modId": "chat_heads",
|
||||
"version": "0.13.13"
|
||||
},
|
||||
"cloth-config-15.0.140-fabric.jar": {
|
||||
"modId": "cloth-config",
|
||||
"version": "15.0.140"
|
||||
},
|
||||
"continuity-3.0.0+1.21.jar": {
|
||||
"modId": "continuity",
|
||||
"version": "3.0.0+1.21"
|
||||
},
|
||||
"CraftPresence-2.5.3+1.21.1-fabric.jar": {
|
||||
"modId": "craftpresence",
|
||||
"version": "2.5.3"
|
||||
},
|
||||
"crash_assistant-fabric-1.4.3.jar": {
|
||||
"modId": "crash_assistant",
|
||||
"version": "1.4.3"
|
||||
},
|
||||
"CustomPlayerModels-Fabric-1.21-0.6.21a.jar": {
|
||||
"modId": "cpm",
|
||||
"version": "0.6.21a"
|
||||
},
|
||||
"cwb-fabric-3.0.0+mc1.21.jar": {
|
||||
"modId": "cubes-without-borders",
|
||||
"version": "3.0.0+mc1.21"
|
||||
},
|
||||
"dynamic-fps-3.9.0+minecraft-1.21.0-fabric.jar": {
|
||||
"modId": "dynamic_fps",
|
||||
"version": "3.9.0"
|
||||
},
|
||||
"entity_model_features_fabric_1.21.1-2.4.1.jar": {
|
||||
"modId": "entity_model_features",
|
||||
"version": "2.4.1"
|
||||
},
|
||||
"entity_texture_features_fabric_1.21.1-6.2.9.jar": {
|
||||
"modId": "entity_texture_features",
|
||||
"version": "6.2.9"
|
||||
},
|
||||
"entityculling-fabric-1.7.3-mc1.21.jar": {
|
||||
"modId": "entityculling",
|
||||
"version": "1.7.3"
|
||||
},
|
||||
"fabric-api-0.115.1+1.21.1.jar": {
|
||||
"modId": "fabric-api",
|
||||
"version": "0.115.1+1.21.1"
|
||||
},
|
||||
"fabric-language-kotlin-1.13.1+kotlin.2.1.10.jar": {
|
||||
"modId": "fabric-language-kotlin",
|
||||
"version": "1.13.1+kotlin.2.1.10"
|
||||
},
|
||||
"FactoryAPI-1.21.1-2.2.3-fabric.jar": {
|
||||
"modId": "factory_api",
|
||||
"version": "2.2.3"
|
||||
},
|
||||
"fastquit-3.0.0+1.20.6.jar": {
|
||||
"modId": "fastquit",
|
||||
"version": "3.0.0+1.20.6"
|
||||
},
|
||||
"ferritecore-7.0.2-hotfix-fabric.jar": {
|
||||
"modId": "ferritecore",
|
||||
"version": "7.0.2-hotfix"
|
||||
},
|
||||
"fix-keyboard-on-linux-1.0.1.jar": {
|
||||
"modId": "fix-keyboard-on-linux",
|
||||
"version": "1.0.1"
|
||||
},
|
||||
"ImmediatelyFast-Fabric-1.6.1+1.21.1.jar": {
|
||||
"modId": "immediatelyfast",
|
||||
"version": "1.6.1+1.21.1"
|
||||
},
|
||||
"iris-fabric-1.8.8+mc1.21.1.jar": {
|
||||
"modId": "iris",
|
||||
"version": "1.8.8+mc1.21.1"
|
||||
},
|
||||
"lambdynamiclights-3.1.4+1.21.1.jar": {
|
||||
"modId": "lambdynlights",
|
||||
"version": "3.1.4+1.21.1"
|
||||
},
|
||||
"Legacy4J-1.21.1-1.8.0.2511.2-fabric.jar": {
|
||||
"modId": "legacy",
|
||||
"version": "1.8.0.2511.2"
|
||||
},
|
||||
"legacyskins-1.4.0+fabric+1.21.1.jar": {
|
||||
"modId": "legacyskins",
|
||||
"version": "1.4.0+fabric+1.21.1"
|
||||
},
|
||||
"lithium-fabric-0.15.0+mc1.21.1.jar": {
|
||||
"modId": "lithium",
|
||||
"version": "0.15.0+mc1.21.1"
|
||||
},
|
||||
"macos-input-fixes-1.8.jar": {
|
||||
"modId": "macos_input_fixes",
|
||||
"version": "1.8"
|
||||
},
|
||||
"modelfix-1.21-1.6-fabric.jar": {
|
||||
"modId": "modelfix",
|
||||
"version": "1.21-1.6"
|
||||
},
|
||||
"moderner-beta-2.1.4+1.21-fabric.jar": {
|
||||
"modId": "moderner_beta",
|
||||
"version": "2.1.4+1.21"
|
||||
},
|
||||
"modernfix-fabric-5.20.2+mc1.21.1.jar": {
|
||||
"modId": "modernfix",
|
||||
"version": "5.20.2+mc1.21.1"
|
||||
},
|
||||
"modmenu-11.0.3.jar": {
|
||||
"modId": "modmenu",
|
||||
"version": "11.0.3"
|
||||
},
|
||||
"NostalgicTweaks-mc1.21.1-Fabric-2.0.0-beta.910.jar": {
|
||||
"modId": "nostalgic_tweaks",
|
||||
"version": "2.0.0-beta.910"
|
||||
},
|
||||
"ok_zoomer-fabric-10.0.0-beta.8.jar": {
|
||||
"modId": "ok_zoomer",
|
||||
"version": "10.0.0-beta.8"
|
||||
},
|
||||
"optigui-2.3.0-beta.6.1-modrinth+1.21.jar": {
|
||||
"modId": "optigui",
|
||||
"version": "2.3.0-beta.6.1-modrinth+1.21"
|
||||
},
|
||||
"placeholder-api-2.4.2+1.21.jar": {
|
||||
"modId": "placeholder-api",
|
||||
"version": "2.4.2+1.21"
|
||||
},
|
||||
"sodium-extra-fabric-0.6.0+mc1.21.1.jar": {
|
||||
"modId": "sodium-extra",
|
||||
"version": "0.6.0+mc1.21.1"
|
||||
},
|
||||
"sodium-fabric-0.6.9+mc1.21.1.jar": {
|
||||
"modId": "sodium",
|
||||
"version": "0.6.9+mc1.21.1"
|
||||
},
|
||||
"UniLib-1.0.5+1.21.1-fabric.jar": {
|
||||
"modId": "unilib",
|
||||
"version": "1.0.5"
|
||||
},
|
||||
"world-host-0.5.1+1.21.1-fabric.jar": {
|
||||
"modId": "world-host",
|
||||
"version": "0.5.1+1.21.1-fabric"
|
||||
},
|
||||
"yet_another_config_lib_v3-3.6.3+1.21.1-fabric.jar": {
|
||||
"modId": "yet_another_config_lib_v3",
|
||||
"version": "3.6.3+1.21.1-fabric"
|
||||
},
|
||||
"yosbr-0.1.2.jar": {
|
||||
"modId": "yosbr",
|
||||
"version": "0.1.2"
|
||||
}
|
||||
}
|
||||
@@ -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,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,164 @@
|
||||
{
|
||||
"advancedHeldItemTooltip": false,
|
||||
"advancedOptionsMode": 0,
|
||||
"animatedCharacter": true,
|
||||
"autoResolution": true,
|
||||
"autoSaveCountdown": true,
|
||||
"autoSaveInterval": 1,
|
||||
"autoSaveWhenPaused": false,
|
||||
"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": "none",
|
||||
"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.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.forward": "left_stick_up",
|
||||
"component_key.fullscreen": "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.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.optigui.inspect": "none",
|
||||
"component_key.pickItem": "none",
|
||||
"component_key.playerlist": "none",
|
||||
"component_key.right": "left_stick_right",
|
||||
"component_key.saveToolbarActivator": "none",
|
||||
"component_key.screenshot": "none",
|
||||
"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_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",
|
||||
"controlType": "auto",
|
||||
"controllerSensitivity": 0.5,
|
||||
"controllerToggleCrouch": true,
|
||||
"controllerToggleSprint": false,
|
||||
"controllerVirtualCursor": true,
|
||||
"createWorldDifficulty": 2,
|
||||
"creativeTab": true,
|
||||
"cursorMode": 0,
|
||||
"defaultParticlePhysics": true,
|
||||
"directSaveLoad": false,
|
||||
"displayControlTooltips": true,
|
||||
"displayGamma": true,
|
||||
"displayHUD": true,
|
||||
"displayHand": true,
|
||||
"displayMultipleControlsFromAction": false,
|
||||
"displayNameTagBorder": true,
|
||||
"enhancedPistonMovingRenderer": true,
|
||||
"fastLeavesCustomModels": false,
|
||||
"fastLeavesWhenBlocked": false,
|
||||
"flyingViewRolling": true,
|
||||
"forceMixedCrafting": false,
|
||||
"forceSmoothMovement": false,
|
||||
"gameTooltips": true,
|
||||
"gamma": 0.5,
|
||||
"headFollowsTheCamera": true,
|
||||
"hints": true,
|
||||
"hudDistance": 1.0,
|
||||
"hudOpacity": 0.8,
|
||||
"hudScale": 2,
|
||||
"interfaceResolution": 0.5,
|
||||
"interfaceSensitivity": 0.5,
|
||||
"invertControllerButtons": false,
|
||||
"invertYController": false,
|
||||
"invertedCrosshair": false,
|
||||
"invertedFrontCameraPitch": true,
|
||||
"itemLightingInHand": true,
|
||||
"itemTooltipEllipsis": true,
|
||||
"lastLoadedMinecraftVersion": "1.21.4",
|
||||
"lastLoadedVersion": "1.8",
|
||||
"leftStickDeadZone": 0.25,
|
||||
"leftTriggerDeadZone": 0.2,
|
||||
"legacyCreativeBlockPlacing": true,
|
||||
"legacyDrownedAnimation": true,
|
||||
"legacyEntityFireTint": true,
|
||||
"legacyItemTooltips": true,
|
||||
"legacyItemTooltipsScaling": true,
|
||||
"legacyOverstackedItems": true,
|
||||
"legacySkyShape": true,
|
||||
"linearCameraMovement": false,
|
||||
"lockControlTypeChange": false,
|
||||
"loyaltyLines": true,
|
||||
"merchantTradingIndicator": true,
|
||||
"minecartSounds": true,
|
||||
"overrideTerrainFogEnd": true,
|
||||
"overrideTerrainFogStart": true,
|
||||
"rightStickDeadZone": 0.34,
|
||||
"rightTriggerDeadZone": 0.2,
|
||||
"saveCache": false,
|
||||
"searchCreativeTab": true,
|
||||
"selectedController": 0,
|
||||
"selectedControllerHandler": 1,
|
||||
"selectedItemTooltipLines": 4,
|
||||
"selectedItemTooltipSpacing": 12,
|
||||
"showVanillaRecipeBook": false,
|
||||
"smoothAnimatedCharacter": false,
|
||||
"smoothMovement": true,
|
||||
"systemMessagesAsOverlay": true,
|
||||
"terrainFogEnd": 16,
|
||||
"terrainFogStart": 4,
|
||||
"tooltipBoxes": true,
|
||||
"unfocusedInputs": false,
|
||||
"vanillaTabs": 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,14 @@
|
||||
{
|
||||
"globalResources": {
|
||||
"applyOnTop": true,
|
||||
"packs": [
|
||||
"file/Legacy Worlds.zip",
|
||||
"file/Modern-Skin-Packs-1.0.0.zip",
|
||||
"file/Legacy-Skin-Packs-2.1.0.zip",
|
||||
"file/The_Garden_Awakens_v1.0.zip",
|
||||
"file/Legacy Skins Pack Ordering v3.zip",
|
||||
"file/TutorialWorldAddon.zip",
|
||||
"file/rcr.zip"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,9 @@
|
||||
{
|
||||
"defaultSigningMode": "ON_DEMAND",
|
||||
"showNCRButton": false,
|
||||
"showReloadButton": false,
|
||||
"verifiedIconEnabled": false,
|
||||
"hideModifiedMessageIndicators": false,
|
||||
"hideSigningRequestMessage": true,
|
||||
"skipSigningWarning": true
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"addQueryData": false
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"showEncryptionButton": false
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"betterGrassMode": "OFF"
|
||||
}
|
||||
@@ -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,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,3 @@
|
||||
{
|
||||
"experimental_screen_batching": true
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
disableUpdateMessage=true
|
||||
enableShaders=false
|
||||
@@ -0,0 +1,148 @@
|
||||
# LambDynamicLights configuration.
|
||||
# The dynamic lights mode
|
||||
mode = "off"
|
||||
|
||||
# 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
|
||||
# Enable first-person player light source.
|
||||
self = true
|
||||
# TNT lighting mode. May be off, simple or fancy.
|
||||
tnt = "off"
|
||||
# Enable entities light source.
|
||||
entities = true
|
||||
# Creeper lighting mode. May be off, simple or fancy.
|
||||
creeper = "simple"
|
||||
|
||||
[light_sources.settings.entities.minecraft]
|
||||
zombie_horse = true
|
||||
axolotl = true
|
||||
egg = true
|
||||
zoglin = true
|
||||
spawner_minecart = true
|
||||
allay = true
|
||||
llama = true
|
||||
mule = true
|
||||
bat = true
|
||||
husk = true
|
||||
camel = true
|
||||
experience_bottle = true
|
||||
rabbit = true
|
||||
firework_rocket = true
|
||||
silverfish = true
|
||||
giant = true
|
||||
drowned = true
|
||||
item = true
|
||||
goat = true
|
||||
horse = true
|
||||
vindicator = true
|
||||
minecart = true
|
||||
spectral_arrow = true
|
||||
llama_spit = true
|
||||
mooshroom = 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
|
||||
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
|
||||
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
|
||||
cow = true
|
||||
magma_cube = true
|
||||
pig = true
|
||||
skeleton = true
|
||||
frog = true
|
||||
hoglin = true
|
||||
armadillo = true
|
||||
armor_stand = true
|
||||
experience_orb = true
|
||||
dolphin = true
|
||||
stray = true
|
||||
shulker = true
|
||||
turtle = true
|
||||
salmon = true
|
||||
vex = true
|
||||
wandering_trader = true
|
||||
wither_skeleton = true
|
||||
piglin_brute = true
|
||||
breeze = true
|
||||
ocelot = true
|
||||
furnace_minecart = 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
|
||||
trader_llama = true
|
||||
donkey = true
|
||||
bogged = true
|
||||
fox = 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
|
||||
@@ -0,0 +1,15 @@
|
||||
# This config file is taken from Simply Optimized 6.2.2, and the following
|
||||
# patches that SO enables are removed for stability and compatibility:
|
||||
# mixin.bugfix.packet_leak | experimental
|
||||
# mixin.perf.clear_fabric_mapping_tables | may be incompatible with other mods
|
||||
# mixin.perf.remove_spawn_chunks | breaks vanilla parity
|
||||
# mixin.perf.clear_mixin_classinfo | may be incompatible with other mods
|
||||
#
|
||||
# Thanks HyperSoop for allowing me to modify the config file for Adrenaline :)
|
||||
#
|
||||
# For more information on the ModernFix patches and what they do, see the
|
||||
# wiki on the Git repo: https://github.com/embeddedt/ModernFix/wiki
|
||||
|
||||
mixin.perf.dynamic_entity_renderers=true
|
||||
mixin.perf.dynamic_resources=true
|
||||
mixin.perf.faster_item_rendering=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,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,9 @@
|
||||
mode = "fancy"
|
||||
|
||||
[light_sources]
|
||||
water_sensitive_check = false
|
||||
block_entities = false
|
||||
entities = true
|
||||
self = true
|
||||
tnt = "simple"
|
||||
creeper = "simple"
|
||||
@@ -0,0 +1,3 @@
|
||||
features:
|
||||
lobotomize-villagers:
|
||||
enabled: true
|
||||
@@ -0,0 +1 @@
|
||||
optimize-command-blocks: true
|
||||
@@ -0,0 +1,2 @@
|
||||
# Configuration file for VMP
|
||||
show_async_loading_messages=false
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
showOnlineStatus: false,
|
||||
enableFriends: false,
|
||||
}
|
||||
13
versions/modded/src/arics-console/config/yosbr/options.txt
Normal file
13
versions/modded/src/arics-console/config/yosbr/options.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
version:3839
|
||||
biomeBlendRadius:1
|
||||
enableVsync:false
|
||||
fullscreen:true
|
||||
gamma:0.0
|
||||
fov:-0.05
|
||||
maxFps:240
|
||||
renderDistance:18
|
||||
simulationDistance:8
|
||||
toggleCrouch:true
|
||||
notificationDisplayTime:1.2
|
||||
attackIndicator:0
|
||||
joinedFirstServer:true
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"default": "minecraft",
|
||||
"order": [
|
||||
"minecraft",
|
||||
"minecraft_classic",
|
||||
"ps4-parity",
|
||||
"dark-mode",
|
||||
"trailer",
|
||||
"faithful",
|
||||
"plastic",
|
||||
"natural",
|
||||
"city",
|
||||
"fantasy",
|
||||
"cartoon",
|
||||
"festive",
|
||||
"halloween",
|
||||
"candy",
|
||||
"steampunk",
|
||||
"pattern",
|
||||
"sctp",
|
||||
"skyrim",
|
||||
"fallout",
|
||||
"china",
|
||||
"greek",
|
||||
"egypt",
|
||||
"norse",
|
||||
"adventuretime",
|
||||
"halo",
|
||||
"pirate",
|
||||
"toystory",
|
||||
"nmbc",
|
||||
"masseffect",
|
||||
"supermario"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Adventure Time.zip"
|
||||
],
|
||||
"id": "adventuretime",
|
||||
"name": "Adventure-time",
|
||||
"description": "Adventure Time, c'mon grab your tools, we're going to a very blocky world. With Jake the Dog and Finn the Human, and a bundle of their friends, it's Adventure Time!… Mash-up!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"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",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Cartoon Texture Pack.zip"
|
||||
],
|
||||
"id": "cartoon",
|
||||
"name": "Cartoon Texture Pack",
|
||||
"description": "Googly eyes! Goofy grins! Turn your world into a toon with this pack."
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Chinese Mythology.zip"
|
||||
],
|
||||
"id": "cartoon",
|
||||
"name": "Chinese Mythology Mash-up",
|
||||
"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."
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/City Texture Pack.zip"
|
||||
],
|
||||
"id": "city",
|
||||
"name": "City Texture Pack",
|
||||
"description": "Free your inner architect and shape the world around you."
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/Default-Dark-Mode-1.20.2+-2024.6.0.zip",
|
||||
"legacy:console_aspects",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Default-Dark-Mode-Expansion-1.19.0+-2025.5.1.zip"
|
||||
],
|
||||
"id": "dark-mode",
|
||||
"name": "Dark-Mode Texture Pack",
|
||||
"description": "Save your eyes some strain with Default Dark Mode!"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"legacy:legacy_waters",
|
||||
"file/Faithful 32x - 1.21.1.zip",
|
||||
"file/Faithful Legacy 1.2.zip"
|
||||
],
|
||||
"id": "faithful",
|
||||
"name": "High Resolution Texturepack",
|
||||
"description": "Experience Minecraft with 2x the texture quality!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Fantasy Texture Pack.zip"
|
||||
],
|
||||
"id": "fantasy",
|
||||
"name": "Fantasy Texture Pack",
|
||||
"description": "Transport yourselves to a time where knights were heroes."
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Festive.zip"
|
||||
],
|
||||
"id": "festive",
|
||||
"name": "Festive Mash-up",
|
||||
"description": "Wander through a winter wonderland!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Greek Mythology.zip"
|
||||
],
|
||||
"id": "greek",
|
||||
"name": "Greek Mythology Mash-up",
|
||||
"description": "Build a pantheon fit for the gods, trap the Minotaur in an elaborate maze, or set sail for adventures across the sea – the world is your square oyster!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Halloween.zip"
|
||||
],
|
||||
"id": "halloween",
|
||||
"name": "Halloween Mash-up",
|
||||
"description": "Happy Halloween! Dress suitably spookily and prepare for the ultimate Minecraft Halloween thrill ride!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Mass Effect.zip"
|
||||
],
|
||||
"id": "masseffect",
|
||||
"name": "Mass Effect Mash-up",
|
||||
"description": "Shape the fate of your Minecraft galaxy with this amazing Mash-up!"
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"background": "legacy:icon/background",
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"legacy:legacy_waters",
|
||||
"file/rc1.21.1.zip"
|
||||
],
|
||||
"displayPack": "vanilla",
|
||||
"id": "minecraft",
|
||||
"version": 2,
|
||||
"name": {
|
||||
"translate": "legacy.menu.albums.resource.minecraft"
|
||||
},
|
||||
"description": {
|
||||
"translate": "legacy.menu.albums.resource.minecraft.description"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"icon": "legacy:icon/minecraft_classic",
|
||||
"background": "legacy:icon/minecraft_classic_background",
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"programmer_art",
|
||||
"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",
|
||||
"file/rc1.21.1.zip",
|
||||
"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,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/The Nightmare Before Christmas.zip"
|
||||
],
|
||||
"id": "nmbc",
|
||||
"name": "The Nightmare Before Christmas Mash-up",
|
||||
"description": "A nightmare? Before Christmas? With thousands of blocks over there, and more redstone than I can bear? Looks scary, but also fun! Could it be I got my wish? Should I play, or should I run? A Christmas pack so nightmarish!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Norse Mythology.zip"
|
||||
],
|
||||
"id": "norse",
|
||||
"name": "Norse Mythology Mash-up",
|
||||
"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,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"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,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Pirates Of The Caribbean.zip"
|
||||
],
|
||||
"id": "pirate",
|
||||
"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"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"background": "legacy:icon/minecraft_classic_background",
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/tu69.zip",
|
||||
"legacy:console_aspects"
|
||||
],
|
||||
"id": "ps4-parity",
|
||||
"name": "PS4 Parity",
|
||||
"description": "Using Console Aspects by AgentMindStorm, this is the most accurate group of textures to PS4 edition."
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Super Cute Texture Pack.zip"
|
||||
],
|
||||
"id": "sctp",
|
||||
"name": "Super Cute Texture Pack",
|
||||
"description": "The Super Cute Texture Pack lets you create a cheerful world full of the cutest and cuddliest mobs!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Skyrim Mash-up.zip"
|
||||
],
|
||||
"id": "skyrim",
|
||||
"name": "Skyrim Mash-up",
|
||||
"description": "The Elder Scrolls V: Skyrim meets Minecraft in a clash of epic proportions. Build your own worlds in the land of Skyrim and experience adventure with many of its most iconic characters. Legendary fun awaits."
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Super Mario Mash-up.zip"
|
||||
],
|
||||
"id": "supermario",
|
||||
"name": "Super Mario Mash-up",
|
||||
"description": "Super Mario meets Minecraft!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Toy Story Mash-Up.zip"
|
||||
],
|
||||
"id": "toystory",
|
||||
"name": "Toy Story Mash-up",
|
||||
"description": "Open up the toy box! Woody, Buzz, Bo Peep and many of your favorite toys come to life in this oversized Mash-up based on all the Toy Story movies! To infinity and beyond!"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"packs": [
|
||||
"vanilla",
|
||||
"fabric",
|
||||
"file/rc1.21.1.zip",
|
||||
"file/Bare Bones 1.21.5.zip"
|
||||
],
|
||||
"id": "trailer",
|
||||
"name": "Trailer-Style Texture Pack",
|
||||
"description": "Experience LCE in the style of the MC trailers"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Architectury API"
|
||||
filename = "architectury-13.0.8-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/Wto0RchG/architectury-13.0.8-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7a24a0481732c5504b07347d64a2843c10c29e748018af8e5f5844e5ea2f4517433886231025d823f90eb0b0271d1fa9849c27e7b0c81476c73753f79f19302a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "lhGA9TYQ"
|
||||
version = "Wto0RchG"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "BadOptimizations"
|
||||
filename = "BadOptimizations-2.2.2-1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/pXtg3eQL/BadOptimizations-2.2.2-1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fe51cd245d837b31b96426f9ded594d515ab13716ac34b494cc9ac5231ca9d8c0531bd1569a096f1a6bb754febac8a1a2dc82ecd45f569fbe09a20a85117765f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "g96Z4WVZ"
|
||||
version = "pXtg3eQL"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Better Ping Display [Fabric]"
|
||||
filename = "BetterPingDisplay-Fabric-1.21.1-1.1.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/MS1ZMyR7/versions/xCWQ8iLW/BetterPingDisplay-Fabric-1.21.1-1.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "04bca229ffd42eccf1d7d0fc05c02f1a8a5cde20b263ed7b72a3cf7557e8606b6f78192f0f4e99bb88eaff3d48612e248762cdbbb5f5bb02315ee4d7b86a585c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "MS1ZMyR7"
|
||||
version = "xCWQ8iLW"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "BetterGrassify"
|
||||
filename = "BetterGrassify-1.6.0+fabric.1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/m5T5xmUy/versions/Q4KwGdqS/BetterGrassify-1.6.0%2Bfabric.1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "bc516f3818be0f538ebdfa3dba3d33dcb7c4eea68e0186a1617b680507cb5ddfaf684e1e4c1c2eb49581b709f46f1b435ebfef1a52d8fbc3a29bcdb77dc90e1e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "m5T5xmUy"
|
||||
version = "Q4KwGdqS"
|
||||
13
versions/modded/src/arics-console/mods/bobby.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/bobby.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Bobby"
|
||||
filename = "bobby-5.2.4+mc1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M08ruV16/versions/oeSOphtG/bobby-5.2.4%2Bmc1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "414436bf14ee9ad76ff2f849ffb5a2acda122a7588231d14dfbd27253924d08c22368c73ebd4b0048209d14682579be58743993265daaface4fdec6ec8e6e7ee"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M08ruV16"
|
||||
version = "oeSOphtG"
|
||||
13
versions/modded/src/arics-console/mods/c2me-fabric.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/c2me-fabric.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Concurrent Chunk Management Engine (Fabric)"
|
||||
filename = "c2me-fabric-mc1.21.5-0.3.4+alpha.0.16.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/w9MJjrit/c2me-fabric-mc1.21.5-0.3.4%2Balpha.0.16.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ed9b934a1fed93d613619d888d0b6048369055998879f6748cf569a3e0da63ae97d2d29f06cc45fbc01564883cc2f222ecc1a5512bfa51928efa7f7f5871e6c2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "VSNURh3q"
|
||||
version = "w9MJjrit"
|
||||
13
versions/modded/src/arics-console/mods/calcmod.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/calcmod.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "CalcMod"
|
||||
filename = "calcmod-1.3.2+fabric.1.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/XoHTb2Ap/versions/LE8aEZ5E/calcmod-1.3.2%2Bfabric.1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "cd6e2859661f2020a52d1f61596e1db8156af69cf8879cf297237cb80ea5a955c1cb9eb6ee4fd59c3538411779d121fab0333b9e915f863e9c605a89b6bb74fb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "XoHTb2Ap"
|
||||
version = "LE8aEZ5E"
|
||||
13
versions/modded/src/arics-console/mods/capes.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/capes.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Capes"
|
||||
filename = "capes-1.5.4+1.21-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/89Wsn8GD/versions/6SzVPVR4/capes-1.5.4%2B1.21-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8cd91182feec18a41412d6a8ad5311f730d881c30959aeb80eddf993c7930200758d0f4f1676dcbced7d315c124a0c02137f997c998a4912dd1a10a6a33664af"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "89Wsn8GD"
|
||||
version = "6SzVPVR4"
|
||||
13
versions/modded/src/arics-console/mods/chat-heads.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/chat-heads.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Chat Heads"
|
||||
filename = "chat_heads-0.13.18-fabric-1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/44MAqJD2/chat_heads-0.13.18-fabric-1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "b4e94f535e9ec5ac5491690f8310f61ed5f74260627b2032935d82a0ea413d1b9109e07432edf4f8589b3ad68c23aa4e20e3bda8c5d005f534e81b1662eff0af"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Wb5oqrBJ"
|
||||
version = "44MAqJD2"
|
||||
13
versions/modded/src/arics-console/mods/cloth-config.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/cloth-config.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Cloth Config API"
|
||||
filename = "cloth-config-15.0.140-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/HpMb5wGb/cloth-config-15.0.140-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "1b3f5db4fc1d481704053db9837d530919374bf7518d7cede607360f0348c04fc6347a3a72ccfef355559e1f4aef0b650cd58e5ee79c73b12ff0fc2746797a00"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9s6osm5g"
|
||||
version = "HpMb5wGb"
|
||||
13
versions/modded/src/arics-console/mods/continuity.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/continuity.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Continuity"
|
||||
filename = "continuity-3.0.0+1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/1IjD5062/versions/kSPJ4hQv/continuity-3.0.0%2B1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3601ddb50f19142c087d32525bc0afcfb5f49a2e7477b6645a98ec191218739fdf3c6ac95cd298e826eb34fc533af43bb0e78c64e51292866ecabade4d14b13a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "1IjD5062"
|
||||
version = "kSPJ4hQv"
|
||||
13
versions/modded/src/arics-console/mods/craftpresence.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/craftpresence.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "CraftPresence"
|
||||
filename = "CraftPresence-2.6.1+1.21.1-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/DFqQfIBR/versions/wychwoaB/CraftPresence-2.6.1%2B1.21.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d5c480f2a11f21abccc9e8f7d0e004a4e185cbb7835fca65a35be5c214249c351b403234d6915f8777aa62c14d2a411fda58d8c8293673805ede4bec86ac9891"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "DFqQfIBR"
|
||||
version = "wychwoaB"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Crash Assistant"
|
||||
filename = "CrashAssistant-fabric-1.19.2-1.21.4-1.8.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ix1qq8Ux/versions/JXJnzAcY/CrashAssistant-fabric-1.19.2-1.21.4-1.8.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "d5afd19188b8b625be49f564fd14532a8264d8d89253d65a2bc56acada3103bb99817ef60550a9f2f98848420b86926669100524e32376338352cdf4993089e7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ix1qq8Ux"
|
||||
version = "JXJnzAcY"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Cubes Without Borders"
|
||||
filename = "cwb-fabric-3.0.0+mc1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ETlrkaYF/versions/m350hyy8/cwb-fabric-3.0.0%2Bmc1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "78a9e25f6b8bdd4637a10d7e0ffea85c9704bcae88a4daba27a843e63e2044cf2718c4807c247745e2992fdda06ec176c326e7ca862200fab2125de8fa03436d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ETlrkaYF"
|
||||
version = "m350hyy8"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Customizable Player Models"
|
||||
filename = "CustomPlayerModels-Fabric-1.21-0.6.22a.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/h1E7sQNL/versions/W7RfIDSO/CustomPlayerModels-Fabric-1.21-0.6.22a.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "a932e7c47fcfa0103048fc7a4d572f90f12b22f730e8fc592e0489de62bf9c8037634a9a75456236eb5c1cdbeef4442ebd59c5840780a01049d32fd7e03dfe0c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "h1E7sQNL"
|
||||
version = "W7RfIDSO"
|
||||
13
versions/modded/src/arics-console/mods/dynamic-fps.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/dynamic-fps.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Dynamic FPS"
|
||||
filename = "dynamic-fps-3.9.4+minecraft-1.21.0-fabric.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/ampsorYv/dynamic-fps-3.9.4%2Bminecraft-1.21.0-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "24d1c008925a5935505602a06ce604809571c58b3195612aa96f0a2510614ade88866110e0403018462779fe4750552bccf0d37149552085c68ad937daf8ddbb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LQ3K71Q1"
|
||||
version = "ampsorYv"
|
||||
13
versions/modded/src/arics-console/mods/ears.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/ears.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Ears (+ Snouts/Muzzles, Tails, Horns, Wings, and More)"
|
||||
filename = "ears-fabric-1.21.5-1.4.7.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mfzaZK3Z/versions/a4WQVEND/ears-fabric-1.21.5-1.4.7.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4dd5d282944f9dc4f788e96cbbfce0773eaa8846b14b2900c6812ad475e6dd3a4247f73419993a082652fd4095b4726c7876b0d683cbe3beb334b42f89b5b210"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mfzaZK3Z"
|
||||
version = "a4WQVEND"
|
||||
13
versions/modded/src/arics-console/mods/ebe.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/ebe.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Enhanced Block Entities"
|
||||
filename = "enhancedblockentities-0.10.2+1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/OVuFYfre/versions/HBZAPs3u/enhancedblockentities-0.10.2%2B1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "60e01db603fcf1392c0cd5c3ce742e568f7d445d83fe60828b21f546e7d29fb6947231f22d28e29b07f4bdcb767b6dc2a2398b4decea665ecba1166690a44d49"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "OVuFYfre"
|
||||
version = "HBZAPs3u"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Entity Model Features [CEM]"
|
||||
filename = "entity_model_features_fabric_1.21.1-2.4.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4I1XuqiY/versions/9t01xL7K/entity_model_features_fabric_1.21.1-2.4.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fe605def2b560685e4c7081c0cbb678720b39308905a362fb155cb8b54a471549100d8d29004d9630348de0283744810c78b62aec9d1f93ca5c9585dbf0eb4db"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4I1XuqiY"
|
||||
version = "9t01xL7K"
|
||||
13
versions/modded/src/arics-console/mods/entityculling.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/entityculling.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "EntityCulling"
|
||||
filename = "entityculling-fabric-1.7.4-mc1.21.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/eKX1ek3L/entityculling-fabric-1.7.4-mc1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "9deacc4695d0be204600b2f0bfc9ecaac6c639f5d0823108ac927d6a9d1eaa95af9ee41a750b8d3e478df629ea0c4105014df27763384af20f706ba59d83c11e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NNAgCjsB"
|
||||
version = "eKX1ek3L"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Entity Texture Features"
|
||||
filename = "entity_texture_features_fabric_1.21.1-6.2.9.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/BVzZfTc1/versions/zzyLrMkD/entity_texture_features_fabric_1.21.1-6.2.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2acbb6da814568cfc1899eb30b9a7459ec4ed25229fecd5fb9252d79f42bf5bfd92fc61fc57adb5002e4fc844223ffe0ff2e395dd7ae760e955c514e9967b42f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "BVzZfTc1"
|
||||
version = "zzyLrMkD"
|
||||
13
versions/modded/src/arics-console/mods/esf.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/esf.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "[ESF] Entity Sound Features"
|
||||
filename = "entity_sound_features_fabric_1.21.5-0.6.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/IMuO8COj/versions/ZjM0JQbW/entity_sound_features_fabric_1.21.5-0.6.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "37ec08a0759dc1a44f53504260571dc657e72bf5e7cc9d5d0fe482a7d855974060702e7af808616fbfee79a867f378f08767dc265ea72a7249b6884b86141bb4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "IMuO8COj"
|
||||
version = "ZjM0JQbW"
|
||||
13
versions/modded/src/arics-console/mods/fabric-api.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/fabric-api.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Fabric API"
|
||||
filename = "fabric-api-0.116.0+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/73Q31My7/fabric-api-0.116.0%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4023117916ba06e1f81f6321f8bb21d34f14b3001da5a9785496ff1544b1f5bc04d59d93cb4f88a0015286e6e8cb382875a9b208d46222718c107599bf4b4bdc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "73Q31My7"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.13.3+kotlin.2.1.21.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/iqWDz8qt/fabric-language-kotlin-1.13.3%2Bkotlin.2.1.21.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "805eb96067560fa8acc8fcc7dbfba4ad8eed1a2bc9b46566e184f122533fdff844288f3df635762e1af927a4efe8989e9f11007a24bcdc73a32fc2dbebd720c3"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "iqWDz8qt"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "FabricBetterGrass"
|
||||
filename = "BetterGrassify-1.6.0+fabric.1.21.5.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/m5T5xmUy/versions/Is0HRoQH/BetterGrassify-1.6.0%2Bfabric.1.21.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4dada7aefb8a8d74aeb15cfb825c9cf37a4e4687313ecb90db32cc302ce4d513ce3058287b4636dbbf52e270abfb201dad40b809ab4bfbc56043f125903e1973"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "m5T5xmUy"
|
||||
version = "Is0HRoQH"
|
||||
13
versions/modded/src/arics-console/mods/factory-api.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/factory-api.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Factory API"
|
||||
filename = "FactoryAPI-1.21.1-2.2.4-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/nkTZHOLD/versions/FqwKDKuS/FactoryAPI-1.21.1-2.2.4-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "04a8353f9d650812ac1dd6e8a0f60360bab5a3d74a4cdd024b2e73cdf255f00e444371fef21b4cf6439dd19c3867c86402d4e95c950e7dffa1d859a628cb49e5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "nkTZHOLD"
|
||||
version = "FqwKDKuS"
|
||||
13
versions/modded/src/arics-console/mods/fastquit.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/fastquit.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "FastQuit"
|
||||
filename = "fastquit-3.0.0+1.21.4.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/x1hIzbuY/versions/HdbAWjaF/fastquit-3.0.0%2B1.21.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "b2f0fe92e1c3ea6424a1b02271b63e66e37481be4e39cef170ff1ea690a78b25b1f5b25da14733018ed23c229e2832de5752a2257041306b2c72af34406e3ea5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "x1hIzbuY"
|
||||
version = "HdbAWjaF"
|
||||
13
versions/modded/src/arics-console/mods/ferrite-core.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/ferrite-core.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "FerriteCore"
|
||||
filename = "ferritecore-7.0.2-hotfix-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uXXizFIs/versions/bwKMSBhn/ferritecore-7.0.2-hotfix-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ca975bd3708cd96d30cf1447ac8883572113562eb2dd697e60c1cf382d6b70d0b1a511fcbfd042c51b2cf5d5ffc718b847f845e4c8a3e421e8c9ee741119a421"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uXXizFIs"
|
||||
version = "bwKMSBhn"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Fix Keyboard on Linux"
|
||||
filename = "fix-keyboard-on-linux-1.0.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/siXFh9dn/versions/ZKDQu5sd/fix-keyboard-on-linux-1.0.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "54f8961e608e0846f2f1feb25846643c2b024af6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "siXFh9dn"
|
||||
version = "ZKDQu5sd"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "ImmediatelyFast"
|
||||
filename = "ImmediatelyFast-Fabric-1.6.5+1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/UDgEo3mK/ImmediatelyFast-Fabric-1.6.5%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "928cc4c14e90107383195b1a1ee57ae48f4299a13b15909473479f49f1bd86cd7e2bcaa129c9cb239d50eb3b5558798f2cafd9b229b12fea06e0e4e0f5eabd61"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5ZwdcRci"
|
||||
version = "UDgEo3mK"
|
||||
13
versions/modded/src/arics-console/mods/iris.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/iris.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Iris Shaders"
|
||||
filename = "iris-fabric-1.8.8+mc1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/zsoi0dso/iris-fabric-1.8.8%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2e6ba2ffa1e1a6799288245a7e0ac68ee8df1d41b98362189df58f535cae34fa9277801e4136633467341b7dae5be0e5c698011b480b3d91b66d3dd4f7567aa6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "zsoi0dso"
|
||||
13
versions/modded/src/arics-console/mods/krypton.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/krypton.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Krypton"
|
||||
filename = "krypton-0.2.9.jar"
|
||||
side = "server"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/neW85eWt/krypton-0.2.9.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2e2304b1b17ecf95783aee92e26e54c9bfad325c7dfcd14deebf9891266eb2933db00ff77885caa083faa96f09c551eb56f93cf73b357789cb31edad4939ffeb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "fQEb0iXm"
|
||||
version = "neW85eWt"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "LambDynamicLights"
|
||||
filename = "lambdynamiclights-4.1.2+1.21.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/kuX6nw8R/lambdynamiclights-4.1.2%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "36ed600e596c098d237d1d996c2b505c546414a3a8bc84e5ffbea92b858c00d0fdbb12d89cf85b6320f0c523afb447392dafe93d6a6e87bb0a12a6073a316e39"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "yBW8D80W"
|
||||
version = "kuX6nw8R"
|
||||
@@ -0,0 +1,13 @@
|
||||
name = "Language Reload"
|
||||
filename = "language-reload-1.7.3+1.21.5.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uLbm7CG6/versions/BMmbiHSJ/language-reload-1.7.3%2B1.21.5.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8c051c79923f07191a8c714c67a8b16c09ef74a6500743baf15eb988593cedad2d683d3b892a64629ba7bfd0aca119c87835f604ccd80a790debbe0253c0d0f2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uLbm7CG6"
|
||||
version = "BMmbiHSJ"
|
||||
13
versions/modded/src/arics-console/mods/legacy-skins.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/legacy-skins.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Legacy Skins"
|
||||
filename = "legacyskins-1.4.5+fabric+1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4UNJZ4cX/versions/C8yeSlUW/legacyskins-1.4.5%2Bfabric%2B1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "6c12260faa17e02b7ecaac466570ec3862a8b4afd255f51b77ef98e45f117419c1163a9d14ed7a10483815958d53fb725e5dc8d1fcb34508d7144fa9d2a49d8b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4UNJZ4cX"
|
||||
version = "C8yeSlUW"
|
||||
13
versions/modded/src/arics-console/mods/legacy4j.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/legacy4j.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Legacy4J"
|
||||
filename = "Legacy4J-1.21.1-1.8.1-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gHvKJofA/versions/vEqfuw3A/Legacy4J-1.21.1-1.8.1-fabric.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "241cf608b747697ff677facce883ba5960f400d4afb8d2d86619edb28f829c3f06d5da851bb2bb4d9c9ab5b81d7693cdd096c57681d102d5414fb21e5259af6b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gHvKJofA"
|
||||
version = "vEqfuw3A"
|
||||
13
versions/modded/src/arics-console/mods/lithium.pw.toml
Normal file
13
versions/modded/src/arics-console/mods/lithium.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
name = "Lithium"
|
||||
filename = "lithium-fabric-0.15.0+mc1.21.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/MM5BBBOK/lithium-fabric-0.15.0%2Bmc1.21.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "fd3215501ebe8f6590cdf1ccc58182873cad8d74ebc4b0b3a2f5724748b9cb04c2b967503c072311dfbca9ba856195dc4662f3395a071b294fa0acfdd2a86bf6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "gvQqBUqZ"
|
||||
version = "MM5BBBOK"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user