diff --git a/.gitignore b/.gitignore index 34d3703fa..36bbc1365 100644 --- a/.gitignore +++ b/.gitignore @@ -64,6 +64,7 @@ defaultconfigs/ftbranks/players.snbt /.bobby/ /.mixin.out/ +/tacz/tacz_default_gun /classOut /backups /profileImage @@ -91,6 +92,7 @@ defaultconfigs/ftbranks/players.snbt /chiselsandbits /gtceu/prospection_cache /data +/ESM # Client data bansoukou @@ -115,6 +117,8 @@ optionsshaders.txt OpenComputersMod-* hei_bookmarks.ini icon.png +EffekseerNativeForJava.dll +libEffekseerNativeForJava.so # Server data # .pakku/server-overrides/libraries @@ -125,6 +129,6 @@ icon.png # .pakku/server-overrides/mods # .pakku/server-overrides/user_jvm_args.txt -/tacz/tacz_default_gun -EffekseerNativeForJava.dll -libEffekseerNativeForJava.so + + + diff --git a/.pakku/server-overrides/config/ftbbackups2.json b/.pakku/server-overrides/config/ftbbackups2.json new file mode 100644 index 000000000..c83ca4361 --- /dev/null +++ b/.pakku/server-overrides/config/ftbbackups2.json @@ -0,0 +1,73 @@ +{ + // Allow the creation of backups automatically + "enabled": true, + // Permission level to use the /backup command + "command_permission_level": 3, + // Only send backup status to server ops + "notify_op_only": true, + // Don't send backup status at all + "do_not_notify": true, + /* Backup retention mode. Valid Modes: MAX_BACKUPS, TIERED + Note: TIERED mode is an experimental feature, Use at your own risk. + */ + "retention_mode": "MAX_BACKUPS", + // Applies to retention_mode:MAX_BACKUPS, Sets the maximum number of backups to keep + "max_backups": 3, + // Applies to retention_mode:TIERED, The latest x number of backups will be retained + "keep_latest": 3, + // Applies to retention_mode:TIERED, Sets number of hourly backups to keep + "keep_hourly": 1, + // Applies to retention_mode:TIERED, Sets number of daily backups to keep + "keep_daily": 1, + // Applies to retention_mode:TIERED, Sets number of weekly backups to keep + "keep_weekly": 1, + // Applies to retention_mode:TIERED, Sets number of monthly backups to keep + "keep_monthly": 1, + /* This is done with an implementation of cron from the Quartz java library. + More info here + (http://www.cronmaker.com) + */ + "backup_cron": "0 15 10 * * ? *", + // Time between manual backups using the command + "manual_backups_time": 0, + // Only run a backup if a player has been online since the last backup + "only_if_players_been_online": true, + // Additional directories to include in backup + "additional_directories": [], + /* Additional files and directories to include in backup. + Can specify a file name, path relative to server directory or wildcard file path + Examples: (All file paths are relative to server root) + fileName.txt Any/all file named "fileName.txt" + folder/file.txt Exact file path + folder/ Everything in this folder + path/starts/with* Any files who's path starts with + *path/ends/with.txt Any files who's path ends with + *path/contains* Any files who's path contains + */ + "additional_files": [], + // Display file size in backup message + "display_file_size": false, + // backup location + "backup_location": ".", + // Specify the backup format. Valid options are ZIP and DIRECTORY + "backup_format": "ZIP", + // Minimum free disk space in MB. If a backup's creation would leave less than this amount of disk space remaining, the backup will be aborted. + "minimum_free_space": 51200, + // If the previous backup failed due to lack of space, the oldest backup will be deleted to free space. + "free_space_if_needed": true, + /* Specify files or folders to be excluded. + Can specify a file name, path relative to server directory or wildcard file path + Examples: (All file paths are relative to server root) + fileName.txt Any/all file named "fileName.txt" + folder/file.txt Exact file path + folder/ Everything in this folder + path/starts/with* Any files who's path starts with + *path/ends/with.txt Any files who's path ends with + *path/contains* Any files who's path contains + */ + "excluded": [ + "DistantHorizons.sqlite" + ], + // The dimension used when creating backup preview image, specify "all" to enable automatic detection of primary dimension (can be very slow) + "preview_dimension": "minecraft:overworld" +} \ No newline at end of file diff --git a/config/ae2/client.json b/config/ae2/client.json index 5def997ef..76072eb77 100644 --- a/config/ae2/client.json +++ b/config/ae2/client.json @@ -5,6 +5,8 @@ "enableFacadesInJEI": true, "enableFacadeRecipesInJEI_comment": "Show facade recipes in JEI for supported blocks", "enableFacadeRecipesInJEI": true, + "exposeInventoryToEmi_comment": "Expose the full network inventory to EMI, which might cause performance problems.", + "exposeInventoryToEmi": false, "enableEffects": true, "useTerminalUseLargeFont": false, "useColoredCraftingStatus": true, @@ -16,10 +18,33 @@ "showPlacementPreview": true, "notifyForFinishedCraftingJobs_comment": "Show toast when long-running crafting jobs finish.", "notifyForFinishedCraftingJobs": true, + "fancyPatternTooltips_comment": "Show fancy tooltips for encoded patterns.", + "fancyPatternTooltips": true, "clearGridOnClose_comment": "Automatically clear the crafting/encoding grid when closing the terminal", "clearGridOnClose": false, "terminalMargin_comment": "The vertical margin to apply when sizing terminals. Used to make room for centered item mod search bars", - "terminalMargin": 25 + "terminalMargin": 25, + "autoPauseTerminal_comment": "Pause the terminal exactly like when pressing shift, except done automatically", + "autoPauseTerminal": false + }, + "widgetNumbers": { + "_comment": "Number button values in the level emitter config panel and the craft order amount picker", + "widgetNumberBase1_comment": "Value of the first button when not pressing shift or ctrl", + "widgetNumberBase1": 1, + "widgetNumberBase2_comment": "Value of the second button when not pressing shift or ctrl", + "widgetNumberBase2": 10, + "widgetNumberBase3_comment": "Value of the third button when not pressing shift or ctrl", + "widgetNumberBase3": 100, + "widgetNumberBase4_comment": "Value of the fourth button when not pressing shift or ctrl", + "widgetNumberBase4": 1000, + "widgetNumberAlt1_comment": "Value of the first button when pressing shift or ctrl", + "widgetNumberAlt1": 1, + "widgetNumberAlt2_comment": "Value of the second button when pressing shift or ctrl", + "widgetNumberAlt2": 16, + "widgetNumberAlt3_comment": "Value of the third button when pressing shift or ctrl", + "widgetNumberAlt3": 32, + "widgetNumberAlt4_comment": "Value of the fourth button when pressing shift or ctrl", + "widgetNumberAlt4": 64 }, "terminals": { "terminalStyle": "small", diff --git a/config/ae2/common.json b/config/ae2/common.json index 2c91128bd..2e4bb8227 100644 --- a/config/ae2/common.json +++ b/config/ae2/common.json @@ -7,6 +7,8 @@ "tinyTntBlockDamage": true, "channels_comment": "Changes the channel capacity that cables provide in AE2.", "channels": "default", + "controllerLength_comment": "Maximum length for AE controllers", + "controllerLength": 11, "spatialAnchorEnableRandomTicks_comment": "Whether Spatial Anchors should force random chunk ticks and entity spawning.", "spatialAnchorEnableRandomTicks": true }, diff --git a/config/alltheleaks.json b/config/alltheleaks.json index dcf6e81ce..9f532945e 100644 --- a/config/alltheleaks.json +++ b/config/alltheleaks.json @@ -1,5 +1,10 @@ { "preventSearchIgnoredItems": false, "ingredientDedupe": false, - "resourceLocationDedupe": false + "resourceLocationDedupe": false, + "debugItemStackModifications": false, + "logIntervalInMinutes": 10, + "showSummaryOnDebugScreen": true, + "memoryUsageWarningPercentage": 90, + "debugThreadsStuck": false } \ No newline at end of file diff --git a/config/ambientsounds-client.json b/config/ambientsounds-client.json index 9a09df752..c73d140af 100644 --- a/config/ambientsounds-client.json +++ b/config/ambientsounds-client.json @@ -8,6 +8,9 @@ }, "dimensions": { "abyssalcraft": 1, + "ad_astra_mars": 1, + "ad_astra_mercury": 1, + "ad_astra_venus": 1, "betweenlands": 1, "cave": 1, "end": 1, @@ -17,14 +20,21 @@ "nether": 1, "surface": 1, "twilightforest": 1, - "void": 1, - "ad_astra": 1 + "void": 1 }, "regions": { "abyssalcraft_dark": { "overall": 1, "suspense.suspense": 1 }, + "ad_astra_mars_wind": { + "overall": 1, + "wind.light-wind": 1 + }, + "ad_astra_mercury_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, "end_unknown": { "overall": 1, "suspense.suspense": 1 @@ -49,7 +59,8 @@ "overall": 1, "beach": 1, "seagull": 1, - "seagull-long": 1 + "seagull-long": 1, + "ocean": 1 }, "cave_ambience": { "overall": 1, @@ -86,11 +97,17 @@ }, "forest_cold": { "overall": 1, - "crow": 1 + "bird-ambience": 1, + "crow": 1, + "owl": 1, + "wolf": 1, + "long-wolf": 1 }, "forest": { "overall": 1, - "bird-ambience": 1, + "bird-warm": 1, + "cricket": 1, + "cricket-warm-night": 1, "owl": 1 }, "forest_roofed": { @@ -115,6 +132,10 @@ "bird-ambience-jungle": 1, "bird-ambience-jungle-night": 1 }, + "lake": { + "overall": 1, + "ocean": 1 + }, "mesa": { "overall": 1, "wind-mesa": 1 @@ -157,6 +178,10 @@ "overall": 1, "wind.light-wind": 1 }, + "snow": { + "overall": 1, + "wind.light-wind": 1 + }, "space": { "overall": 1 }, @@ -182,7 +207,10 @@ }, "taiga": { "overall": 1, - "bird-ambience-huge": 1 + "bird-ambience-huge": 1, + "crow": 1, + "wolf": 1, + "long-wolf": 1 }, "underwater": { "overall": 1, @@ -193,6 +221,15 @@ "overall": 1, "underworld": 1 }, + "venus": { + "overall": 1, + "cricket": 1, + "cricket-night": 1, + "cicadas": 1, + "cicadas-desert": 1, + "cicadas-night": 1, + "cricket-warm-night": 1 + }, "warden": { "overall": 1, "warden": 1 diff --git a/config/applied_ammo_box-common.toml b/config/applied_ammo_box-common.toml new file mode 100644 index 000000000..a7fb3dd30 --- /dev/null +++ b/config/applied_ammo_box-common.toml @@ -0,0 +1,11 @@ + +[power] + #Energy consumed per round of ammo retrieved from an ammo box, default: 1000.0 + #Range: 0.0 ~ 1.7976931348623157E308 + AmmoBoxUsePowerPerAmmo = 1000.0 + +[jei] + #Modify the recipe content displayed in JEI, Normally, there is no need to disable this + #When creating custom modpacks, disable this if fake recipes remain after deleting the default crafting recipes + JeiRecipeDisplayCorrection = true + diff --git a/config/attributefix.json b/config/attributefix.json index 770c5f0c0..226d7129b 100644 --- a/config/attributefix.json +++ b/config/attributefix.json @@ -1,16 +1,5 @@ { "attributes": { - "tacz:tacz.bullet_resistance": { - "enabled": false, - "min": { - "default": 0, - "value": 0 - }, - "max": { - "default": 1, - "value": 1 - } - }, "forge:step_height_addition": { "enabled": false, "min": { @@ -33,17 +22,6 @@ "value": 2048 } }, - "minecraft:generic.flying_speed": { - "enabled": true, - "min": { - "default": 0, - "value": 0 - }, - "max": { - "default": 1024, - "value": 1024 - } - }, "forge:nametag_distance": { "enabled": false, "min": { @@ -55,17 +33,6 @@ "value": 64 } }, - "minecraft:generic.movement_speed": { - "enabled": true, - "min": { - "default": 0, - "value": 0 - }, - "max": { - "default": 1024, - "value": 1024 - } - }, "forge:entity_gravity": { "enabled": false, "min": { @@ -88,17 +55,6 @@ "value": 1024 } }, - "minecraft:generic.max_health": { - "enabled": true, - "min": { - "default": 1, - "value": 1 - }, - "max": { - "default": 1024, - "value": 1000000 - } - }, "minecraft:generic.attack_speed": { "enabled": true, "min": { @@ -121,6 +77,17 @@ "value": 1000000 } }, + "lodestone:magic_proficiency": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, "minecolonies:mc_mob_damage": { "enabled": false, "min": { @@ -143,6 +110,83 @@ "value": 1024 } }, + "minecraft:generic.armor": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 30, + "value": 1000000 + } + }, + "forge:entity_reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "tacz:tacz.bullet_resistance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "sns:extra_fall_distance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 64, + "value": 64 + } + }, + "minecraft:generic.flying_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.movement_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.max_health": { + "enabled": true, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 1024, + "value": 1000000 + } + }, "minecraft:zombie.spawn_reinforcements": { "enabled": true, "min": { @@ -176,15 +220,15 @@ "value": 1000000 } }, - "minecraft:generic.armor": { - "enabled": true, + "lodestone:magic_resistance": { + "enabled": false, "min": { - "default": 0, - "value": 0 + "default": 1, + "value": 1 }, "max": { - "default": 30, - "value": 1000000 + "default": 2048, + "value": 2048 } }, "forge:swim_speed": { @@ -220,15 +264,15 @@ "value": 1000000 } }, - "forge:entity_reach": { + "lodestone:magic_damage": { "enabled": false, "min": { "default": 0, "value": 0 }, "max": { - "default": 1024, - "value": 1024 + "default": 2048, + "value": 2048 } } } diff --git a/config/blockrunner-client.toml b/config/blockrunner-client.toml new file mode 100644 index 000000000..cb8a96d4d --- /dev/null +++ b/config/blockrunner-client.toml @@ -0,0 +1,5 @@ +#Prevent running on blocks with higher speeds from changing the field of view. +disable_field_of_view_changes = true +#Add a tooltip to blocks that have an altered block speed with the multiplier. +block_speed_multiplier_tooltip = true + diff --git a/config/blockrunner.json b/config/blockrunner.json new file mode 100644 index 000000000..0f8a78d4c --- /dev/null +++ b/config/blockrunner.json @@ -0,0 +1,11 @@ +{ + "schema_version": "2", + "minecraft:dirt_path": 1.35, + "#blockrunner:slow_blocks": 0.65, + "#blockrunner:very_slow_blocks": 0.45, + "#blockrunner:quick_blocks": 1.35, + "#blockrunner:very_quick_blocks": 1.55, + "#blockrunner:slightly_slow_blocks": 0.85, + "#blockrunner:slightly_quick_blocks": 1.15, + "#minecraft:stone_bricks": 1.15 +} \ No newline at end of file diff --git a/config/chat_heads.json5 b/config/chat_heads.json5 index e1d42f383..01b112a23 100644 --- a/config/chat_heads.json5 +++ b/config/chat_heads.json5 @@ -4,5 +4,6 @@ "senderDetection": "UUID_AND_HEURISTIC", "smartHeuristics": true, "handleSystemMessages": true, + "drawShadow": true, "nameAliases": { } } \ No newline at end of file diff --git a/config/clienttweaks-common.toml b/config/clienttweaks-common.toml index 48651a458..00cf2b62a 100644 --- a/config/clienttweaks-common.toml +++ b/config/clienttweaks-common.toml @@ -56,4 +56,6 @@ fireworkItems = ["minecraft:firework_rocket"] #Blocks that should be protected in the prevent accidental mining tweak. fragileBlocks = ["minecraft:large_amethyst_bud", "minecraft:medium_amethyst_bud", "minecraft:small_amethyst_bud", "minecraft:budding_amethyst"] + #Items that count as food for the offhand-torch and -use tweak options. + foodItems = ["supplementaries:lunch_basket"] diff --git a/config/colorwheel-client.toml b/config/colorwheel-client.toml new file mode 100644 index 000000000..0fbcfceb7 --- /dev/null +++ b/config/colorwheel-client.toml @@ -0,0 +1,7 @@ +#Should display a message when an incompatible shaderpack is used. +alertIncompatiblePack = true +#Should display a message when a broken shaderpack is used. +alertBrokenPack = true +#Should fallback mode be used for non supported shaderpacks. +enableFallbackMode = false + diff --git a/config/crash_assistant/config.toml b/config/crash_assistant/config.toml index f928162af..d110c1492 100644 --- a/config/crash_assistant/config.toml +++ b/config/crash_assistant/config.toml @@ -8,7 +8,7 @@ #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" + upload_to = "mclo.gs" #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. @@ -65,13 +65,13 @@ [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 = "TFG Github" + support_name = "TerraFirmaGreg-Github" #$CONFIG.text.support_place$ in lang files will be replaced with this value. support_place = "the text boxes after pressing the green New Issue button" #$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 = "TerraFirmaGreg" + modpack_name = "TerraFirmaGreg-Modern" #Settings of message generated by Upload all button [generated_message] @@ -170,7 +170,7 @@ blacklisted_reasons = [] #Settings of analysis tools feature. -#Here you can enable disable showing some analysis tools fot end user. +#Here you can enable or disable showing some analysis tools for end user. [analysis_tools] #Enable feature. enabled = true diff --git a/config/crash_assistant/modlist.json b/config/crash_assistant/modlist.json index 734dbc542..8c6d49e04 100644 --- a/config/crash_assistant/modlist.json +++ b/config/crash_assistant/modlist.json @@ -1,8 +1,8 @@ { - "fmlloader-1.20.1-47.4.6.jar (modloader)": { - "jarName": "fmlloader-1.20.1-47.4.6.jar (modloader)", + "fmlloader-1.20.1-47.4.13.jar (modloader)": { + "jarName": "fmlloader-1.20.1-47.4.13.jar (modloader)", "modId": "forge", - "version": "fmlloader-1.20.1-47.4.6.jar" + "version": "fmlloader-1.20.1-47.4.13.jar" }, "[1.20.1-Forge] Additional Placements-2.3.1.jar": { "jarName": "[1.20.1-Forge] Additional Placements-2.3.1.jar", @@ -958,8 +958,8 @@ "jarName": "lmft-1.0.4+1.20.1-forge.jar", "modId": "lmft", "version": "1.0.4+1.20.1", - "curseForgeHash": 1956694745, - "modrinthHash": "e44a12eb51813b16faaab89b8073ec63c746c1b0" + "curseForgeHash": 3540923086, + "modrinthHash": "3c0dc40afb617ca2b5b2bbb4f7e831bd75009753" }, "lodestone-1.20.1-1.6.4.1.jar": { "jarName": "lodestone-1.20.1-1.6.4.1.jar", @@ -1031,12 +1031,12 @@ "curseForgeHash": 3074548209, "modrinthHash": "4069534174e618393f0c14d9dc61ac27a04bb992" }, - "moonlight-1.20-2.16.18-forge.jar": { - "jarName": "moonlight-1.20-2.16.18-forge.jar", + "moonlight-1.20-2.16.19-forge.jar": { + "jarName": "moonlight-1.20-2.16.19-forge.jar", "modId": "moonlight", - "version": "1.20-2.16.18", - "curseForgeHash": 4116986064, - "modrinthHash": "48dc8e4c200c487df69195fe503dc67493050b6b" + "version": "1.20-2.16.19", + "curseForgeHash": 2861614006, + "modrinthHash": "de55e348bdf3a3ac7520fde157654d615967f9b1" }, "morered-1.20.1-4.0.0.4.jar": { "jarName": "morered-1.20.1-4.0.0.4.jar", diff --git a/config/crash_assistant/problematic_mods_config.json b/config/crash_assistant/problematic_mods_config.json index 7a73a41bf..680dd9548 100644 --- a/config/crash_assistant/problematic_mods_config.json +++ b/config/crash_assistant/problematic_mods_config.json @@ -1,2 +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 + } } \ No newline at end of file diff --git a/config/drippyloadingscreen/options.txt b/config/drippyloadingscreen/options.txt index 65c3a59cf..67ef67835 100644 --- a/config/drippyloadingscreen/options.txt +++ b/config/drippyloadingscreen/options.txt @@ -1,6 +1,49 @@ ##[general] B:early_fade_out_elements = 'true'; -B:fade_out_loading_screen = 'true'; B:allow_universal_layouts = 'false'; -B:wait_for_textures_in_loading = 'true'; \ No newline at end of file +B:fade_out_loading_screen = 'true'; +B:wait_for_textures_in_loading = 'true'; + + +##[early_loading] + +I:early_loading_top_right_watermark_position_offset_y = '0'; +I:early_loading_bottom_left_watermark_position_offset_x = '0'; +I:early_loading_bottom_left_watermark_position_offset_y = '0'; +B:early_loading_hide_logger = 'false'; +I:early_loading_bar_width = '400'; +I:early_loading_bar_position_offset_y = '50'; +I:early_loading_top_right_watermark_height = '100'; +S:early_loading_bottom_right_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_top_right_watermark_position_offset_x = '0'; +S:early_loading_top_left_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_bottom_right_watermark_height = '100'; +I:early_loading_bar_position_offset_x = '0'; +I:early_loading_logo_height = '120'; +I:early_loading_top_right_watermark_width = '100'; +I:early_loading_bottom_right_watermark_position_offset_y = '0'; +I:early_loading_window_height = '-1'; +S:early_loading_bar_progress_texture_path = '/config/fancymenu/assets/some_bar_progress_image.png'; +I:early_loading_bottom_right_watermark_position_offset_x = '0'; +S:early_loading_background_texture_path = '/config/fancymenu/assets/some_image.png'; +B:early_loading_background_preserve_aspect_ratio = 'true'; +I:early_loading_top_left_watermark_width = '100'; +B:early_loading_hide_logo = 'false'; +S:early_loading_bar_background_texture_path = '/config/fancymenu/assets/some_bar_background_image.png'; +S:early_loading_logo_texture_path = '/config/fancymenu/assets/some_image.png'; +S:early_loading_bottom_left_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_top_left_watermark_position_offset_y = '0'; +I:early_loading_top_left_watermark_position_offset_x = '0'; +I:early_loading_logo_width = '480'; +S:early_loading_top_right_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_bottom_left_watermark_width = '100'; +I:early_loading_bottom_right_watermark_width = '100'; +I:early_loading_bottom_left_watermark_height = '100'; +I:early_loading_bar_height = '40'; +S:early_loading_window_title = 'Minecraft'; +I:early_loading_top_left_watermark_height = '100'; +I:early_loading_window_width = '-1'; +I:early_loading_logo_position_offset_y = '-50'; +B:early_loading_hide_bar = 'false'; +I:early_loading_logo_position_offset_x = '0'; \ No newline at end of file diff --git a/config/everycomp-common.toml b/config/everycomp-common.toml index 073eb95ed..f6d3e07ee 100644 --- a/config/everycomp-common.toml +++ b/config/everycomp-common.toml @@ -12,6 +12,10 @@ generate_dynamic_assets = true #Allow the item_search or searchBar to be visible. tab_item_search = true + #If set to true, then all of the generated items will not be put into the mod's tab. + no_mod_creative_tab = false + #Generate blocktype tags for every block type. This will be applied to all the mods that use the system, not just Every Compat. It's currently off and Can make pack a bit faster. Turn on if you need it. + generate_blocktype_tags = false [general.tooltips] #Enabled tooltips showing which mod an EC item is from diff --git a/config/everycomp-hazardous.toml b/config/everycomp-hazardous.toml index 55a35bf79..c469e4378 100644 --- a/config/everycomp-hazardous.toml +++ b/config/everycomp-hazardous.toml @@ -12,6 +12,8 @@ # # Module - is a Supported Mod, just a modId is sufficient. # EntrySet - is a FurnitureType or DecorativeType that Wood-Good is supporting via the mod. it is either block or item. +# Wood-Mods - Biomes O' Plenty, The Twilight Forest, so on... +# Supported-Mods - The mods that EveryCompat is currently supporting # # NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm # @@ -38,6 +40,7 @@ # "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak" # "chipped:.*" COMMENT: .* is an regex which will exclude all of EntrySets from one Module - Wood-Good ONLY # ] + # NOTE: This excluded one entryset from all WoodTypes/LeavesTypes # blacklist = [] @@ -50,3 +53,21 @@ # blacklist = [] +[block] + #Exclude a specific WoodType/LeavesType block + # This is only applied to Wood-Good. + # EXAMPLE: blacklist = [ + # "chipped/biomesoplenty/checkered_redwood_trapdoor", COMMENT: excluded a checkered_trapdoor from Chipped with Biomes-O'-Plenty's redwood + # "variantvanillablocks/biomesoplenty/fir_chest", COMMENT: excluded a chest from Variant-Vanilla-Blocks with Biomes-O'-Plenty's fir + # ".*/biomesoplenty/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods with just Biomes-O'-Plenty (Wood-Mods) + # "chipped/.*/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Wood-Mods with just chipped (Supported-Mod) + # ".*fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods & Wood-Mods + # ] + # + blacklist = [] + +[other] + #Disable all of Supported Mods on EveryCompat's side. This feature is same as Library-Section which do not have any Wood Modules. + #WARNING: If the config between CLIENT & SERVER are not the same, then you won't able to join a server + include_all_wood_modules = true + diff --git a/config/extremesoundmuffler-client.toml b/config/extremesoundmuffler-client.toml new file mode 100644 index 000000000..bab3a17df --- /dev/null +++ b/config/extremesoundmuffler-client.toml @@ -0,0 +1,45 @@ + +#General settings +[general] + #Blacklisted Sounds - add the name of the sounds to blacklist, separated with comma + forbiddenSounds = ["ui.", "music.", "ambient."] + #Allow the "ALL" sounds list to include the blacklisted sounds? + lawfulAllList = false + #Volume set when pressed the mute button by default + #Range: 0.0 ~ 0.9 + defaultMuteVolume = 0.0 + #Set to true to move the muffle and play buttons to the left side of the GUI + leftButtons = false + #Show tips in the Muffler screen? + showTip = true + #Whether or not use the dark theme + useDarkTheme = false + +#Inventory button settings +[inventory_button] + #Disable the Muffle button in the player inventory? + disableInventoryButton = false + #Coordinates for the Muffler button in the player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + invButtonX = 75 + #Coordinates for the Muffler button in the player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + invButtonY = 7 + #Disable the Muffle button in the creative player inventory? + disableCreativeInventoryButton = false + #Coordinates for the Muffler button in the creative player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + creativeInvButtonX = 2 + #Coordinates for the Muffler button in the creative player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + creativeInvButtonY = 2 + +#Anchor settings +[Anchors] + #Disable the Anchors? + disableAnchors = false + diff --git a/config/fallingtrees_common.json b/config/fallingtrees_common.json index f8e545647..16e175457 100644 --- a/config/fallingtrees_common.json +++ b/config/fallingtrees_common.json @@ -1,126 +1,126 @@ { - "disableCrouchMining": false, - "disableExtraToolDamage": false, - "disableExtraFoodExhaustion": false, - "treeLifetimeLength": 4.0, - "dynamicMiningSpeed": { - "disable": false, - "speedMultiplication": 0.05, - "maxSpeedMultiplication": 16.0 + "disableCrouchMining": false, + "disableExtraToolDamage": false, + "disableExtraFoodExhaustion": false, + "treeLifetimeLength": 4.0, + "dynamicMiningSpeed": { + "disable": false, + "speedMultiplication": 0.05, + "maxSpeedMultiplication": 16.0 + }, + "trees": { + "standardTree": { + "algorithm": { + "maxLeavesRadius": 25, + "maxLogAmount": 512, + "shouldFallOnMaxLogAmount": true, + "shouldIgnorePersistentLeaves": true + }, + "logFilter": { + "whitelistedTags": [ + "minecraft:logs" + ], + "whitelist": [ + "minecraft:mushroom_stem", + "beneath:wood/log/crimson", + "beneath:wood/stripped_log/crimson", + "beneath:wood/wood/crimson", + "beneath:wood/stripped_wood/crimson", + "beneath:wood/log/warped", + "beneath:wood/stripped_log/warped", + "beneath:wood/wood/warped", + "beneath:wood/stripped_wood/warped", + "ad_astra:aeronos_stem", + "ad_astra:strophar_stem" + ], + "blacklist": [] + }, + "leavesFilter": { + "whitelistedTags": [ + "minecraft:leaves" + ], + "whitelist": [ + "minecraft:red_mushroom_block", + "minecraft:brown_mushroom_block", + "minecraft:shroomlight", + "species:alphacene_mushroom_block", + "species:alphacene_mushroom_growth", + "minecraft:nether_wart_block", + "minecraft:warped_wart_block", + "beneath:wood/leaves/crimson", + "beneath:wood/leaves/warped", + "ad_astra:aeronos_cap", + "ad_astra:strophar_cap" + ], + "blacklist": [] + }, + "extraBlockFilter": { + "whitelistedTags": [], + "whitelist": [ + "minecraft:vine", + "minecraft:bee_nest", + "minecraft:cocoa" + ], + "blacklist": [] + }, + "enabled": true, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [ + "minecraft:axes" + ], + "whitelist": [], + "blacklist": [] + } }, - "trees": { - "standardTree": { - "algorithm": { - "maxLeavesRadius": 25, - "maxLogAmount": 512, - "shouldFallOnMaxLogAmount": true, - "shouldIgnorePersistentLeaves": true - }, - "logFilter": { - "whitelistedTags": [ - "minecraft:logs" - ], - "whitelist": [ - "minecraft:mushroom_stem", - "beneath:wood/log/crimson", - "beneath:wood/stripped_log/crimson", - "beneath:wood/wood/crimson", - "beneath:wood/stripped_wood/crimson", - "beneath:wood/log/warped", - "beneath:wood/stripped_log/warped", - "beneath:wood/wood/warped", - "beneath:wood/stripped_wood/warped", - "ad_astra:aeronos_stem", - "ad_astra:strophar_stem" - ], - "blacklist": [] - }, - "leavesFilter": { - "whitelistedTags": [ - "minecraft:leaves" - ], - "whitelist": [ - "minecraft:red_mushroom_block", - "minecraft:brown_mushroom_block", - "minecraft:shroomlight", - "species:alphacene_mushroom_block", - "species:alphacene_mushroom_growth", - "minecraft:nether_wart_block", - "minecraft:warped_wart_block", - "beneath:wood/leaves/crimson", - "beneath:wood/leaves/warped", - "ad_astra:aeronos_cap", - "ad_astra:strophar_cap" - ], - "blacklist": [] - }, - "extraBlockFilter": { - "whitelistedTags": [], - "whitelist": [ - "minecraft:vine", - "minecraft:bee_nest", - "minecraft:cocoa" - ], - "blacklist": [] - }, - "enabled": true, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [ - "minecraft:axes" - ], - "whitelist": [], - "blacklist": [] - } - }, - "verticalTree": { - "filter": { - "whitelistedTags": [], - "whitelist": [ - "minecraft:cactus", - "minecraft:bamboo" - ], - "blacklist": [] - }, - "enabled": true, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [ - "minecraft:axes" - ], - "whitelist": [], - "blacklist": [] - } - }, - "chorusTree": { - "enabled": false, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [], - "whitelist": [ - "tfg:charred_log" - ], - "blacklist": [] - } - }, - "mushroomTree": { - "stemFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - }, - "capFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - }, - "enabled": true, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - } - } + "verticalTree": { + "filter": { + "whitelistedTags": [], + "whitelist": [ + "minecraft:cactus", + "minecraft:bamboo" + ], + "blacklist": [] + }, + "enabled": true, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [ + "minecraft:axes" + ], + "whitelist": [], + "blacklist": [] + } + }, + "chorusTree": { + "enabled": false, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [], + "whitelist": [ + "tfg:charred_log" + ], + "blacklist": [] + } + }, + "mushroomTree": { + "stemFilter": { + "whitelistedTags": [], + "whitelist": [], + "blacklist": [] + }, + "capFilter": { + "whitelistedTags": [], + "whitelist": [], + "blacklist": [] + }, + "enabled": true, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [], + "whitelist": [], + "blacklist": [] + } } + } } \ No newline at end of file diff --git a/config/fancymenu/options.txt b/config/fancymenu/options.txt index 00ba655f9..12de0eee3 100644 --- a/config/fancymenu/options.txt +++ b/config/fancymenu/options.txt @@ -1,8 +1,8 @@ ##[general] +B:force_fullscreen = 'false'; I:default_gui_scale = '-1'; B:play_vanilla_menu_music = 'true'; -B:force_fullscreen = 'false'; ##[customization] @@ -15,19 +15,19 @@ B:advanced_customization_mode = 'false'; ##[loading] S:preload_resources = '[cubic_panorama]beneath%!source_end!%[slideshow]new_loading_screen%!source_end!%'; -S:custom_game_intro_skip_text = ''; B:allow_game_intro_skip = 'true'; S:game_intro_animation_name = ''; B:game_intro_fade_out = 'true'; +S:custom_game_intro_skip_text = ''; ##[window] +S:custom_window_icon_16 = '/config/fancymenu/assets/icons/icon16x16.png'; B:show_custom_window_icon = 'true'; S:custom_window_icon_macos = '/config/fancymenu/assets/icons/macOS.icns'; S:custom_window_icon_32 = '/config/fancymenu/assets/icons/icon32x32.png'; S:custom_window_title = 'TerraFirmaGreg-Modern'; -S:custom_window_icon_16 = '/config/fancymenu/assets/icons/icon16x16.png'; ##[multiplayer_screen] @@ -45,36 +45,38 @@ B:show_singleplayer_screen_world_icons = 'true'; B:layout_editor_grid_snapping = 'true'; B:anchor_overlay_change_anchor_on_area_hover = 'true'; B:show_layout_editor_grid = 'true'; +S:anchor_overlay_color_base_override = ''; +B:enable_element_rotation_controls = 'true'; +F:anchor_overlay_opacity_normal = '0.5'; +F:anchor_overlay_opacity_busy = '0.7'; +D:anchor_overlay_hover_charging_time_seconds = '2.0'; B:anchor_overlay_change_anchor_on_element_hover = 'true'; S:anchor_overlay_visibility_mode = 'dragging'; B:anchor_overlay_show_all_connection_lines = 'false'; F:layout_editor_grid_snapping_strength = '1.0'; -S:anchor_overlay_color_base_override = ''; I:layout_editor_grid_size = '10'; B:invert_anchor_overlay_color = 'false'; B:enable_buddy = 'true'; S:anchor_overlay_color_border_override = ''; -F:anchor_overlay_opacity_normal = '0.5'; -F:anchor_overlay_opacity_busy = '0.7'; -D:anchor_overlay_hover_charging_time_seconds = '2.0'; +B:enable_element_tilting_controls = 'true'; ##[ui] -I:context_menu_hover_open_speed = '1'; -S:ui_theme = 'dark'; F:ui_scale = '4.0'; B:play_ui_click_sounds = 'true'; B:enable_ui_text_shadow = 'false'; +I:context_menu_hover_open_speed = '1'; +S:ui_theme = 'dark'; ##[debug_overlay] B:debug_overlay_show_basic_screen_category = 'true'; -B:debug_overlay_show_system_category = 'true'; -B:debug_overlay_show_advanced_screen_category = 'true'; B:show_debug_overlay = 'false'; B:debug_overlay_show_resources_category = 'true'; +B:debug_overlay_show_system_category = 'true'; +B:debug_overlay_show_advanced_screen_category = 'true'; ##[tutorial] diff --git a/config/fancymenu/ui_themes/dark.json b/config/fancymenu/ui_themes/dark.json index 9ad7950f4..67b5605f4 100644 --- a/config/fancymenu/ui_themes/dark.json +++ b/config/fancymenu/ui_themes/dark.json @@ -19,9 +19,24 @@ "layout_editor_element_border_color_selected": { "hex": "#03DBFCFF" }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9E2BFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFB52BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#91FF2BFF" + }, "layout_editor_element_dragging_not_allowed_color": { "hex": "#E83609C8" }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, "layout_editor_anchor_point_overlay_color_base": { "hex": "#25B479FF" }, @@ -76,6 +91,72 @@ "list_entry_color_selected_hovered": { "hex": "#323232FF" }, + "actions_entry_background_color_action": { + "hex": "#3A3F44FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#44494EFF" + }, + "actions_entry_background_color_if": { + "hex": "#263F55FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#2D516EFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#392D4FFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#463A5FFF" + }, + "actions_entry_background_color_else": { + "hex": "#4E3721FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#5F462DFF" + }, + "actions_entry_background_color_while": { + "hex": "#234A42FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#2D5C52FF" + }, + "actions_entry_background_color_folder": { + "hex": "#50303CFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#613E4DFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#3A3B3EFF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#47484CFF" + }, + "actions_chain_indicator_color": { + "hex": "#587096B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#64B5F6D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#FFC147DC" + }, + "actions_minimap_background_color": { + "hex": "#181B20C8" + }, + "actions_minimap_border_color": { + "hex": "#5E636CDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF23" + }, + "actions_minimap_viewport_border_color": { + "hex": "#D2DEFF64" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#78AADCDC" + }, "text_editor_sidebar_color": { "hex": "#313335FF" }, diff --git a/config/fancymenu/ui_themes/light.json b/config/fancymenu/ui_themes/light.json index 4c56d55cf..6971d4415 100644 --- a/config/fancymenu/ui_themes/light.json +++ b/config/fancymenu/ui_themes/light.json @@ -19,9 +19,24 @@ "layout_editor_element_border_color_selected": { "hex": "#03DBFCFF" }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9E2BFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFB52BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#91FF2BFF" + }, "layout_editor_element_dragging_not_allowed_color": { "hex": "#E83609C8" }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, "layout_editor_anchor_point_overlay_color_base": { "hex": "#25B479FF" }, @@ -76,6 +91,72 @@ "list_entry_color_selected_hovered": { "hex": "#AFAFAFFF" }, + "actions_entry_background_color_action": { + "hex": "#E0E0E0FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#CECECEFF" + }, + "actions_entry_background_color_if": { + "hex": "#C9DBEFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#B8CEE8FF" + }, + "actions_entry_background_color_else_if": { + "hex": "#E9D7F0FF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#D8C6E3FF" + }, + "actions_entry_background_color_else": { + "hex": "#F3E1C7FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#E5D1B6FF" + }, + "actions_entry_background_color_while": { + "hex": "#CCEBE3FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#BCDED4FF" + }, + "actions_entry_background_color_folder": { + "hex": "#F2D5DBFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#E6C7CEFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#E5E5E5FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#D2D2D2FF" + }, + "actions_chain_indicator_color": { + "hex": "#8CAAD296" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#6895D7BE" + }, + "actions_chain_indicator_selected_color": { + "hex": "#DCA236D2" + }, + "actions_minimap_background_color": { + "hex": "#ECECECC8" + }, + "actions_minimap_border_color": { + "hex": "#ACACACDC" + }, + "actions_minimap_viewport_color": { + "hex": "#5050503C" + }, + "actions_minimap_viewport_border_color": { + "hex": "#D2DEFF64" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#78AADCDC" + }, "text_editor_sidebar_color": { "hex": "#A4A4A4FF" }, diff --git a/config/ftbbackups2.json b/config/ftbbackups2.json index 32efe057c..bedb47018 100644 --- a/config/ftbbackups2.json +++ b/config/ftbbackups2.json @@ -27,7 +27,7 @@ More info here (http://www.cronmaker.com) */ - "backup_cron": "0 0 0/1 1/1 * ? *", + "backup_cron": "0 15 10 * * ? *", // Time between manual backups using the command "manual_backups_time": 0, // Only run a backup if a player has been online since the last backup @@ -52,9 +52,9 @@ // Specify the backup format. Valid options are ZIP and DIRECTORY "backup_format": "ZIP", // Minimum free disk space in MB. If a backup's creation would leave less than this amount of disk space remaining, the backup will be aborted. - "minimum_free_space": 0, + "minimum_free_space": 51200, // If the previous backup failed due to lack of space, the oldest backup will be deleted to free space. - "free_space_if_needed": false, + "free_space_if_needed": true, /* Specify files or folders to be excluded. Can specify a file name, path relative to server directory or wildcard file path Examples: (All file paths are relative to server root) diff --git a/config/ihearttfc-client.toml b/config/ihearttfc-client.toml new file mode 100644 index 000000000..8d328eea6 --- /dev/null +++ b/config/ihearttfc-client.toml @@ -0,0 +1,13 @@ +#Renders partial hearts when your health total is not evenly divisible into heart values. +renderPartialHearts = true +#Uses 5x5 hearts instead of the vanilla 9x9, with a value of 25 each instead of 100. Will show a more precise total health value when partial hearts are turned off. +useSmallHearts = false +#Uses empty droplets for the thirst bar instead of puddles. +useEmptyDroplets = false +#Display saturation on the hunger bar like the popular mod "Appleskin". +displayAppleskinLikeSaturation = true +#Use pictographic half-eaten food for food icons instead of just cutting the full food image in half. +useHalfEatenFood = true +#Use the space that is normally taken up by the experience bar to show the current temperature. Overrides the TFC experience bar config. +showTemperatureInsteadOfExperience = true + diff --git a/config/immersive_aircraft.json b/config/immersive_aircraft.json index 67ff523d1..e6ba1c420 100644 --- a/config/immersive_aircraft.json +++ b/config/immersive_aircraft.json @@ -1,75 +1,75 @@ { - "enableDropsForNonPlayer": true, - "enableCrashExplosion": true, - "enableCrashBlockDestruction": false, - "enableCrashFire": false, - "crashExplosionRadius": 2.0, - "crashDamage": 2.0, - "preventKillThroughCrash": true, - "healthBarRow": 0, - "damagePerHealthPoint": 30, - "separateCamera": true, - "useThirdPersonByDefault": true, - "enableTrails": true, - "renderDistance": 192.0, - "fuelConsumption": 1.0, - "windClearWeather": 1.0, - "windRainWeather": 3.0, - "windThunderWeather": 3.0, - "repairSpeed": 0.025, - "repairExhaustion": 0.5, - "collisionDamage": true, - "collisionDamageMultiplier": 40.0, - "burnFuelInCreative": false, - "acceptVanillaFuel": true, - "useCustomKeybindSystem": true, - "showHotbarEngineGauge": true, - "weaponsAreDestructive": false, - "dropAircraft": true, - "dropInventory": true, - "dropUpgrades": false, - "regenerateHealthEveryNTicks": 0, - "requireShiftForRepair": false, - "bombBayEntity": { - "minecraft:egg": "tfc:chicken" - }, - "rotaryCannonDamage": 5.0, - "heavyCrossBowVelocity": 3.0, - "fuelList": { - "minecraft:blaze_powder": 1200, - "gtceu:coke_gem": 1200, - "beneath:cursecoal": 1200 - }, - "validDimensions": { - "minecraft:the_end": true, - "minecraft:the_nether": true, - "minecraft:overworld": true, - "ad_astra:earth_orbit": false, - "ad_astra:moon": false, - "ad_astra:moon_orbit": false, - "ad_astra:mars": false, - "ad_astra:mars_orbit": false, - "ad_astra:venus": true, - "ad_astra:venus_orbit": false, - "ad_astra:mercury": false, - "ad_astra:mercury_orbit": false, - "ad_astra:glacio": false, - "ad_astra:glacio_orbit": false - }, - "gunpowderAmmunition": { - "minecraft:gunpowder": 100 - }, - "arrowAmmunition": { - "minecraft:arrow": 100, - "minecraft:spectral_arrow": 100, - "minecraft:tipped_arrow": 100 - }, - "bombBayAmmunition": { - "minecraft:tnt": 100, - "gtceu:powderbarrel": 80, - "gtceu:industrial_tnt": 50, - "gtceu:dynamite": 200 - }, - "version": 1, - "name": "immersive_aircraft" + "enableDropsForNonPlayer": true, + "enableCrashExplosion": true, + "enableCrashBlockDestruction": false, + "enableCrashFire": false, + "crashExplosionRadius": 2.0, + "crashDamage": 2.0, + "preventKillThroughCrash": true, + "healthBarRow": 0, + "damagePerHealthPoint": 30, + "separateCamera": true, + "useThirdPersonByDefault": true, + "enableTrails": true, + "renderDistance": 192.0, + "fuelConsumption": 1.0, + "windClearWeather": 1.0, + "windRainWeather": 3.0, + "windThunderWeather": 3.0, + "repairSpeed": 0.025, + "repairExhaustion": 0.5, + "collisionDamage": true, + "collisionDamageMultiplier": 40.0, + "burnFuelInCreative": false, + "acceptVanillaFuel": true, + "useCustomKeybindSystem": true, + "showHotbarEngineGauge": true, + "weaponsAreDestructive": false, + "dropAircraft": true, + "dropInventory": true, + "dropUpgrades": false, + "regenerateHealthEveryNTicks": 0, + "requireShiftForRepair": false, + "bombBayEntity": { + "minecraft:egg": "tfc:chicken" + }, + "rotaryCannonDamage": 5.0, + "heavyCrossBowVelocity": 3.0, + "fuelList": { + "minecraft:blaze_powder": 1200, + "gtceu:coke_gem": 1200, + "beneath:cursecoal": 1200 + }, + "validDimensions": { + "minecraft:the_end": true, + "minecraft:the_nether": true, + "minecraft:overworld": true, + "ad_astra:earth_orbit": false, + "ad_astra:moon": false, + "ad_astra:moon_orbit": false, + "ad_astra:mars": false, + "ad_astra:mars_orbit": false, + "ad_astra:venus": true, + "ad_astra:venus_orbit": false, + "ad_astra:mercury": false, + "ad_astra:mercury_orbit": false, + "ad_astra:glacio": false, + "ad_astra:glacio_orbit": false + }, + "gunpowderAmmunition": { + "minecraft:gunpowder": 100 + }, + "arrowAmmunition": { + "minecraft:arrow": 100, + "minecraft:spectral_arrow": 100, + "minecraft:tipped_arrow": 100 + }, + "bombBayAmmunition": { + "minecraft:tnt": 100, + "gtceu:powderbarrel": 80, + "gtceu:industrial_tnt": 50, + "gtceu:dynamite": 200 + }, + "version": 1, + "name": "immersive_aircraft" } \ No newline at end of file diff --git a/config/immersive_optimization.json b/config/immersive_optimization.json index 8f8728a8c..4597219e1 100644 --- a/config/immersive_optimization.json +++ b/config/immersive_optimization.json @@ -1,43 +1,43 @@ { - "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/wiki", - "enableEntities": true, - "enableBlockEntities": true, - "enableDistanceCulling": true, - "enableTrackingCulling": true, - "enableViewportCulling": true, - "minDistance": 6, - "blocksPerLevel": 64, - "blocksPerLevelDistanceCulled": 10, - "blocksPerLevelTrackingCulled": 10, - "blocksPerLevelViewportCulled": 20, - "maxLevel": 20, - "blocksPerLevelBlockEntities": 32, - "entityTickBudget": 30.0, - "stressedThreshold": 45, - "dimensions": { - "minecraft:overworld": true, - "minecraft:the_nether": true, - "minecraft:the_end": true, - "ad_astra:earth_orbit": true, - "ad_astra:moon": true, - "ad_astra:moon_orbit": true, - "ad_astra:mars": true, - "ad_astra:mars_orbit": true, - "ad_astra:venus": true, - "ad_astra:venus_orbit": true, - "ad_astra:mercury": true, - "ad_astra:mercury_orbit": true, - "ad_astra:glacio": true, - "ad_astra:glacio_orbit": true - }, - "entities": { - "fromanotherworld:starship": false, - "minecraft:player": false, - "minecraft:arrow": false, - "create": false, - "minecraft:ender_dragon": false, - "sandworm_mod": false - }, - "version": 2, - "name": "immersive_optimization" + "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/wiki", + "enableEntities": true, + "enableBlockEntities": true, + "enableDistanceCulling": true, + "enableTrackingCulling": true, + "enableViewportCulling": true, + "minDistance": 6, + "blocksPerLevel": 64, + "blocksPerLevelDistanceCulled": 10, + "blocksPerLevelTrackingCulled": 10, + "blocksPerLevelViewportCulled": 20, + "maxLevel": 20, + "blocksPerLevelBlockEntities": 32, + "stressedThreshold": 45, + "minDecreaseFactor": 0.25, + "dimensions": { + "minecraft:overworld": true, + "minecraft:the_nether": true, + "minecraft:the_end": true, + "ad_astra:earth_orbit": true, + "ad_astra:moon": true, + "ad_astra:moon_orbit": true, + "ad_astra:mars": true, + "ad_astra:mars_orbit": true, + "ad_astra:venus": true, + "ad_astra:venus_orbit": true, + "ad_astra:mercury": true, + "ad_astra:mercury_orbit": true, + "ad_astra:glacio": true, + "ad_astra:glacio_orbit": true + }, + "entities": { + "fromanotherworld:starship": false, + "minecraft:player": false, + "minecraft:arrow": false, + "create": false, + "minecraft:ender_dragon": false, + "sandworm_mod": false + }, + "version": 2, + "name": "immersive_optimization" } \ No newline at end of file diff --git a/config/jade/plugins.json b/config/jade/plugins.json index a11eac63b..e440742bb 100644 --- a/config/jade/plugins.json +++ b/config/jade/plugins.json @@ -54,9 +54,6 @@ "painting": true, "chiseled_bookshelf": true }, - "greate": { - "belt_icon": true - }, "jadeaddons.create": { "filter": true, "backtank_capacity": true, @@ -90,7 +87,8 @@ "stained_color": true, "hazard_cleaner_provider": true, "cable_info": true, - "parallel_info": true + "parallel_info": true, + "data_bank": true }, "jade": { "coordinates.rel": false, @@ -155,6 +153,7 @@ "sapling": true, "rabbit": true, "composter": true, + "surfer": true, "decaying": true, "wall_torch": true, "windmill": true, @@ -193,9 +192,14 @@ "candle": true, "jack_o_lantern": true, "firepit": true, + "soarer": true, "wet_concrete": true, "ingot_pile": true }, + "deafission": { + "reactor": true, + "battery": true + }, "firmaciv": { "tfc_chest": true, "barrel": true diff --git a/config/jade/sort-order.json b/config/jade/sort-order.json index 7676c82ec..7956abee5 100644 --- a/config/jade/sort-order.json +++ b/config/jade/sort-order.json @@ -28,6 +28,8 @@ "create:goggles": null, "create:hide_boiler_tanks": null, "create:placard": null, + "deafission:battery": null, + "deafission:reactor": null, "expatternprovider:jade_chamber": null, "expatternprovider:jade_wireless": null, "expatternprovider:tile_data": null, @@ -69,6 +71,7 @@ "gtceu:controllable_provider": null, "gtceu:custom_fluid_storage": null, "gtceu:custom_item_storage": null, + "gtceu:data_bank": null, "gtceu:electric_container_provider": null, "gtceu:energy_converter_provider": null, "gtceu:exhaust_vent_info": null, @@ -193,7 +196,9 @@ "tfc:rabbit": null, "tfc:sapling": null, "tfc:sheet_pile": null, + "tfc:soarer": null, "tfc:squid": null, + "tfc:surfer": null, "tfc:torch": null, "tfc:wall_torch": null, "tfc:water_wheel": null, diff --git a/config/lithostitched.json b/config/lithostitched.json new file mode 100644 index 000000000..65a3b5519 --- /dev/null +++ b/config/lithostitched.json @@ -0,0 +1,8 @@ +{ + // If disabled, some mod compat features will be turned off to prioritize parity with vanilla seeds. + // The following features will break if disabled: + // - Custom wood type shipwrecks + // - Structure optimizations + "breaks_seed_parity": true, + "log_debug_messages": false +} \ No newline at end of file diff --git a/config/lootr-common.toml b/config/lootr-common.toml index 7fc827ea7..5ed06f7af 100644 --- a/config/lootr-common.toml +++ b/config/lootr-common.toml @@ -84,4 +84,6 @@ refresh_structures = [] refresh_all = false #if true, all block entities will be checked before being added to the ticker for an eligible loot table. enable this if a huge quantity of containers are clogging the conversion system; note that aggressive mode may prevent certain chests from properly converted even though eligible aggressive_mode = false +#allows players to open Lootr containers within spawn protection areas +bypass_spawn_protection = true diff --git a/config/modernfix-mixins.properties b/config/modernfix-mixins.properties index 0a656c7f5..f516e79ff 100644 --- a/config/modernfix-mixins.properties +++ b/config/modernfix-mixins.properties @@ -50,6 +50,7 @@ # mixin.feature.spark_profile_launch=false # (default) # mixin.feature.spark_profile_world_join=false # (default) # mixin.feature.stalled_chunk_load_detection=false # (default) +# mixin.feature.suppress_narrator_stacktrace=true # (default) # mixin.feature.warn_missing_perf_mods=true # (default) # mixin.launch.class_search_cache=true # (default) # mixin.perf.blast_search_trees=true # (default) @@ -62,6 +63,7 @@ # mixin.perf.chunk_meshing=true # (default) # mixin.perf.clear_mixin_classinfo=false # (default) # mixin.perf.compact_bit_storage=true # (default) +# mixin.perf.compact_mojang_registries=true # (default) # mixin.perf.compress_unihex_font=true # (default) # mixin.perf.datapack_reload_exceptions=true # (default) # mixin.perf.dedicated_reload_executor=true # (default) @@ -74,7 +76,6 @@ # mixin.perf.dynamic_resources.ctm=true # (default) # mixin.perf.dynamic_resources.ldlib=true # (default) # mixin.perf.dynamic_resources.supermartijncore=true # (default) -# mixin.perf.dynamic_sounds=true # (default) # mixin.perf.dynamic_structure_manager=true # (default) # mixin.perf.fast_forge_dummies=true # (default) # mixin.perf.fast_registry_validation=true # (default) @@ -97,19 +98,19 @@ # mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) # mixin.perf.remove_biome_temperature_cache=true # (default) # mixin.perf.remove_spawn_chunks=false # (default) +# mixin.perf.resourcefullib_highlight_deduplication=true # (default) # mixin.perf.resourcepacks=true # (default) # mixin.perf.smart_ingredient_sync=true # (default) # mixin.perf.state_definition_construct=true # (default) # mixin.perf.tag_id_caching=true # (default) # mixin.perf.thread_priorities=false # (overridden for mod compat) # mixin.perf.ticking_chunk_alloc=true # (default) -# mixin.perf.worldgen_allocation=false # (default) +# mixin.perf.worldgen_allocation=true # (default) # mixin.safety=true # (default) # # User overrides go here. mixin.bugfix.packet_leak=true mixin.feature.disable_unihex_font=true -mixin.feature.spark_profile_launch=false mixin.perf.clear_mixin_classinfo=true mixin.perf.deduplicate_location=true mixin.perf.dynamic_entity_renderers=true @@ -117,4 +118,3 @@ mixin.perf.dynamic_resources=true mixin.perf.faster_item_rendering=true mixin.perf.remove_spawn_chunks=true mixin.perf.smart_ingredient_sync=false -mixin.perf.worldgen_allocation=true diff --git a/config/moonlight-common.toml b/config/moonlight-common.toml index 0dbf52d84..eba15ddf6 100644 --- a/config/moonlight-common.toml +++ b/config/moonlight-common.toml @@ -6,4 +6,6 @@ extra_debug = false #Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too. extra_children_debug = false + #Global datapack folder. A folder where you can store and load datapacks for all your worlds automatically. Set to empty string to disable + global_datapacks_folder = "moonlight-global-datapacks" diff --git a/config/packetfixer.properties b/config/packetfixer.properties index bf2f88ce1..78648fc50 100644 --- a/config/packetfixer.properties +++ b/config/packetfixer.properties @@ -1,7 +1,7 @@ #Packet Fixer config file. #Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3. #Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize. -#Sat Jul 19 21:52:19 YEKT 2025 +#Tue Dec 30 17:41:22 YEKT 2025 utfSize=3276700 allSizesUnlimited=true forceUnlimitedNbtEnabled=false diff --git a/config/railways-client.toml b/config/railways-client.toml index 36b4db25d..41aea197a 100644 --- a/config/railways-client.toml +++ b/config/railways-client.toml @@ -64,17 +64,3 @@ #Spawn steam on an interval spawnSteam = false - #. - #Journeymap Settings - [client.journeymap] - #. - #[in Ticks] - #Journeymap train overlay update time - #Range: 1 ~ 600 - updateRate = 1 - #. - #[in Ticks] - #Journeymap train overlay old marker removal check time - #Range: 10 ~ 1200 - removeObsoleteRate = 200 - diff --git a/config/shouldersurfing-client.toml b/config/shouldersurfing-client.toml new file mode 100644 index 000000000..c5d5ec178 --- /dev/null +++ b/config/shouldersurfing-client.toml @@ -0,0 +1,340 @@ + +[camera] + #The distance multiplier on whether or not to hide the player model if the camera gets too close to it. Set to 0 to disable. + #Range: 0.0 ~ 1.7976931348623157E308 + keep_camera_out_of_head_distance_multiplier = 0.75 + #Size of the camera adjustment per step. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + camera_step_size = 0.025 + #The speed multiplier at which the camera transitions between positions. + #Range: 0.05 ~ 1.0 + camera_transition_speed_multiplier = 0.25 + #The angle at which the camera will be centered when looking down. Set to 0 to disable. + #Range: 0.0 ~ 90.0 + center_camera_when_looking_down_angle = 1.0 + #Whether or not to dynamically adjust camera offsets depending on space constraints. + dynamically_adjust_offsets = true + #Whether or not to decouple the camera rotation from the player rotation. + decoupled_camera = true + #Whether or not to orient the camera rotation when the player is teleported. This includes passenger (dis-)mounting and traveling through portals. + orient_camera_on_teleport = true + #Whether or not to apply the FOV override when in shoulder surfing perspective. + fov_override_enabled = false + #The camera FOV when in shoulder surfing perspective. Depends on config option 'fov_override_enabled'. + #Range: 30.0 ~ 110.0 + fov_override = 70.0 + #Whether to apply view bobbing in shoulder surfing perspective. Set to INHERIT to inherit vanilla setting. + #Allowed Values: INHERIT, ON, OFF + view_bobbing_mode = "INHERIT" + + [camera.offset] + #Third person camera x-offset. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + offset_x = -0.75 + #Third person camera y-offset. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + offset_y = 0.0 + #Third person camera z-offset. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + offset_z = 4.0 + + [camera.offset.presets] + #A list of x-offset presets that can be toggled via the 'Toggle X-Offset Presets' keybind. WARNING: Duplicate entries can result in undefined behavior! + presets_offset_x = [] + #A list of y-offset presets that can be toggled via the 'Toggle Y-Offset Presets' keybind. WARNING: Duplicate entries can result in undefined behavior! + presets_offset_y = [] + #A list of z-offset presets that can be toggled via the 'Toggle Z-Offset Presets' keybind. WARNING: Duplicate entries can result in undefined behavior! + presets_offset_z = [] + + [camera.offset.min] + #When x-offset is limited this is the minimum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + min_offset_x = -3.0 + #When y-offset is limited this is the minimum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + min_offset_y = -1.0 + #When z-offset is limited this is the minimum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + min_offset_z = -3.0 + + [camera.offset.max] + #When x-offset is limited this is the maximum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + max_offset_x = 3.0 + #When y-offset is limited this is the maximum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + max_offset_y = 1.5 + #When z-offset is limited this is the maximum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + max_offset_z = 5.0 + + [camera.offset.limits] + #Whether or not x-offset adjustment has limits. + unlimited_offset_x = false + #Whether or not y-offset adjustment has limits. + unlimited_offset_y = false + #Whether or not z-offset adjustment has limits. + unlimited_offset_z = false + + [camera.offset.multiplier] + + [camera.offset.multiplier.passenger] + #x-offset multiplier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.sprint] + #x-offset multiplier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.aiming] + #x-offset multiplier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.fall_flying] + #x-offset multiplier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.climbing] + #x-offset multiplier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 0.0 + #y-offset multiplier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.modifiers] + + [camera.offset.modifiers.passenger] + #x-offset modifier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.sprint] + #x-offset modifier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.aiming] + #x-offset modifier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.fall_flying] + #x-offset modifier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.climbing] + #x-offset modifier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.camera_drag] + #x-axis multiplier for camera drag. + #Range: 0.0 ~ 5.0 + multiplier_axis_x = 0.0 + #y-axis multiplier for camera drag. + #Range: 0.0 ~ 5.0 + multiplier_axis_y = 0.0 + #z-axis multiplier for camera drag. + #Range: 0.0 ~ 5.0 + multiplier_axis_z = 0.0 + + [camera.camera_sway] + #The maximum x-axis angle in degrees. Set to 0 to disable. + #Range: -30.0 ~ 30.0 + max_angle_axis_x = 0.0 + #The maximum x-axis angle in degrees. Set to 0 to disable. + #Range: -30.0 ~ 30.0 + max_angle_axis_z = 0.0 + #The velocity of the player in blocks per second, where the maximum camera x-axis sway is applied. + #Range: 0.05 ~ 1000.0 + max_velocity_axis_x = 5.0 + #The velocity of the player in blocks per second, where the maximum camera z-axis sway is applied. + #Range: 0.05 ~ 1000.0 + max_velocity_axis_z = 5.0 + +[perspective] + #The default perspective when you load the game. + #Allowed Values: FIRST_PERSON, THIRD_PERSON_BACK, THIRD_PERSON_FRONT, SHOULDER_SURFING + default_perspective = "FIRST_PERSON" + #Whether or not to remember the last perspective used. + remember_last_perspective = true + #Whether or not to replace the default third person perspective. + replace_default_perspective = false + #Whether or not the first person perspective is enabled. + first_person_enabled = true + #Whether or not the third person front perspective is enabled. + third_person_front_enabled = true + #Whether or not the third person back perspective is enabled. + third_person_back_enabled = true + +[player] + #Whether or not to adjust the player model transparency when view is obstructed. Changing this value may require a game restart to take full effect. + adjust_player_transparency = true + #Whether or not to turn the player model transparent when aiming. This config option only applies when adjust player transparency is enabled. + turn_player_transparent_when_aiming = false + #The angle at which the player will no longer be rendered when looking up. Set to 0 to disable. + #Range: 0.0 ~ 90.0 + hide_player_when_looking_up_angle = 0.0 + #Whether the x-rot of the player should follow the camera x-rot. This config option only applies when camera is decoupled. + player_x_rot_follows_camera = false + #Whether the y-rot of the player should follow the camera y-rot. This config option only applies when camera is decoupled. + player_y_rot_follows_camera = false + #The maximum angle to which the player y-rot follows the camera y-rot. This config option only applies when player y-rot follows camera option is enabled. + #Range: 0.0 ~ 180.0 + player_y_rot_follow_angle_limit = 90.0 + + [player.turning] + #Whether to turn the player when using an item. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_using_item = "ALWAYS" + #Whether to turn the player when attacking. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_attacking = "REQUIRES_TARGET" + #Whether to turn the player when interacting with blocks. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_interacting = "ALWAYS" + #Whether to turn the player when picking blocks or entities. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_picking = "ALWAYS" + #The time in ticks the player will remain turned after the interaction has ended. Set to 0 to disable. This config option only applies when camera is decoupled. + #Range: > 0 + turning_lock_time = 4 + +[object_picker] + #The raytrace distance used for the dynamic crosshair. + #Range: 0.0 ~ 1.7976931348623157E308 + custom_raytrace_distance = 400.0 + #Whether or not to use the custom raytrace distance used for the dynamic crosshair. + use_custom_raytrace_distance = true + + [object_picker.pick_origin] + #The origin where the entity pick starts when using the static crosshair. + #Allowed Values: PLAYER, CAMERA + entity_pick_origin = "PLAYER" + #The origin where the block pick starts when using the static crosshair. + #Allowed Values: PLAYER, CAMERA + block_pick_origin = "PLAYER" + + [object_picker.pick_vector] + #The vector direction of the raytrace when picking objects. This config option only applies when using the dynamic crosshair. + #Allowed Values: PLAYER, CAMERA + pick_vector = "CAMERA" + +[crosshair] + #Crosshair type to use for shoulder surfing. + #Allowed Values: ADAPTIVE, DYNAMIC, STATIC, STATIC_WITH_1PP, DYNAMIC_WITH_1PP + crosshair_type = "STATIC" + #Items that when held, trigger the dynamic crosshair in adaptive mode. This config option supports regular expressions. Example: 'minecraft:.*sword' matches 'minecraft:wooden_sword' and 'minecraft:netherite_sword'. + adaptive_crosshair_hold_items = ["minecraft:snowball", "minecraft:egg", "minecraft:experience_bottle", "minecraft:ender_pearl", "minecraft:splash_potion", "minecraft:fishing_rod", "minecraft:lingering_potion"] + #Items that when used, trigger the dynamic crosshair in adaptive mode. This config option supports regular expressions. Example: 'minecraft:.*sword' matches 'minecraft:wooden_sword' and 'minecraft:netherite_sword'. + adaptive_crosshair_use_items = [] + #Item properties of an item, that when held, trigger the dynamic crosshair in adaptive mode. + adaptive_crosshair_hold_item_properties = ["minecraft:charged"] + #Item properties of an item, that when used, trigger the dynamic crosshair in adaptive mode. + adaptive_crosshair_use_item_properties = ["minecraft:pull", "minecraft:throwing"] + + [crosshair.obstruction] + #When the crosshair type is static, shows an additional indicator on obstacles that stand between you and your target. + show_obstruction_indicator = true + #Only show the obstruction indicator when using items that would trigger the adaptive crosshair. + only_when_aiming = true + #Hide the obstruction indicator when it is too close to the main crosshair. Distance measured in scaled pixels. + #Range: > 0 + min_distance_to_crosshair = 8 + #Ignore obstructions that are too far away from the player. Distance measured in blocks. Set to 0 to disable. + #Range: 0.0 ~ 1.7976931348623157E308 + max_distance_to_obstruction = 20.0 + + [crosshair.visibility] + #Crosshair visibility for first person. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + first_person = "ALWAYS" + #Crosshair visibility for third person back. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + third_person_back = "NEVER" + #Crosshair visibility for third person front. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + third_person_front = "NEVER" + #Crosshair visibility for shoulder surfing. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + shoulder_surfing = "ALWAYS" + +[audio] + #Whether to center sounds made by the player. + center_player_sounds = false + +[integrations] + + [integrations.curios] + #Items that when equipped in a curios slot, trigger the dynamic crosshair in adaptive mode. This config option supports regular expressions. The curios slot must be specified before the expression and is separated by an '@' character. Example: 'ring@angelring:.*_ring' matches 'angelring:diamond_ring' and 'angelring:angel_ring' when equipped in the 'ring' slot. + adaptive_crosshair_items = [] + #Item properties of an item, that when equipped in a curios slot, trigger the dynamic crosshair in adaptive mode. Example: 'necklace@charged' + adaptive_crosshair_item_properties = [] + + [integrations.epicfight] + #Whether to allow target lock-on when camera is decoupled. + decoupled_camera_lock_on = false + diff --git a/config/sophisticatedcore-client.toml b/config/sophisticatedcore-client.toml index 7f5845dc7..30cd4d397 100644 --- a/config/sophisticatedcore-client.toml +++ b/config/sophisticatedcore-client.toml @@ -6,4 +6,6 @@ sortButtonsPosition = "TITLE_LINE_RIGHT" #Whether click sound should play when custom buttons are clicked in gui playButtonSound = true + #Whether scrolling in inventory should be handled by Mouse Tweaks mod if it is in the pack + mouseTweaksScrollEnabled = true diff --git a/config/sound_physics_remastered/allowed_sounds.properties b/config/sound_physics_remastered/allowed_sounds.properties deleted file mode 100644 index 6b370c3b7..000000000 --- a/config/sound_physics_remastered/allowed_sounds.properties +++ /dev/null @@ -1,1897 +0,0 @@ -# Allowed sounds -# Set to 'false' to disable sound physics for that sound - -minecraft\:entity.parrot.imitate.vindicator=true -tfc\:block.thin.fall=true -minecraft\:item.bucket.fill=true -gtceu\:chemical=true -minecraft\:entity.sniffer.digging=true -minecraft\:block.lodestone.place=true -minecraft\:music.overworld.bamboo_jungle=true -minecraft\:entity.hoglin.death=true -minecraft\:block.cherry_wood_fence_gate.open=true -minecraft\:entity.parrot.imitate.witch=true -minecraft\:entity.pillager.celebrate=true -minecraft\:block.chiseled_bookshelf.insert.enchanted=true -minecraft\:entity.mule.eat=true -minecraft\:item.trident.thunder=true -minecraft\:block.bamboo_wood_door.open=true -minecraft\:entity.piglin.ambient=true -minecraft\:block.pink_petals.step=true -create_connected\:interlude_music=true -tfc\:block.charcoal.break=true -minecraft\:block.bamboo_wood_pressure_plate.click_on=true -minecraft\:music.overworld.jagged_peaks=true -endermanoverhaul\:ancient_pearl_hit=true -tfc\:entity.lake_trout.ambient=true -minecraft\:block.bamboo_sapling.break=true -minecraft\:block.note_block.banjo=true -minecraft\:entity.llama.step=true -create\:clipboard_check=true -tfc\:item.armor.equip_steel=true -minecraft\:item.flintandsteel.use=true -minecraft\:entity.shulker.open=true -minecraft\:block.note_block.imitate.creeper=true -minecraft\:entity.skeleton_horse.hurt=true -minecraft\:block.powder_snow.break=true -minecraft\:entity.camel.eat=true -tfc\:entity.wildebeest.death=true -minecraft\:entity.mule.death=true -minecraft\:entity.magma_cube.hurt_small=true -tfc\:entity.penguin.ambient=true -minecraft\:block.roots.hit=true -minecraft\:entity.sniffer.step=true -minecraft\:entity.player.attack.crit=true -minecraft\:entity.silverfish.death=true -minecraft\:entity.axolotl.splash=true -minecraft\:block.frogspawn.hatch=true -minecraft\:music.overworld.cherry_grove=true -create\:sanding_short=true -endermanoverhaul\:dark_oak_enderman_ambient=true -minecraft\:entity.camel.saddle=true -minecraft\:block.froglight.hit=true -etched\:ui.etching_table.take_result=true -minecraft\:block.nether_sprouts.place=true -immersive_aircraft\:cannon=true -minecraft\:block.fungus.place=true -minecraft\:block.gilded_blackstone.step=true -minecraft\:entity.piglin.retreat=true -minecraft\:entity.armor_stand.hit=true -minecraft\:ambient.basalt_deltas.loop=true -minecraft\:entity.skeleton_horse.step_water=true -minecraft\:music.menu=true -minecraft\:block.sculk_vein.place=true -create\:whistle_low=true -minecraft\:block.anvil.hit=true -minecraft\:entity.chicken.step=true -minecraft\:entity.cat.beg_for_food=true -minecraft\:block.wood.fall=true -minecraft\:entity.camel.hurt=true -minecraft\:entity.zombie.break_wooden_door=true -create\:mechanical_press_activation_belt_compounded_1=true -minecraft\:entity.goat.screaming.horn_break=true -tfc\:entity.dog.attack=true -minecraft\:entity.sniffer.digging_stop=true -minecraft\:ambient.warped_forest.mood=true -tfc\:entity.boar.death=true -exposure\:item.photograph.rustle=true -minecraft\:block.wood.place=true -minecraft\:block.anvil.land=true -tfc\:entity.peafowl.hurt=true -minecraft\:item.firecharge.use=true -minecraft\:entity.horse.jump=true -minecraft\:block.pointed_dripstone.drip_lava=true -tfc\:entity.bear.sleep=true -tfc\:entity.hyena.death=true -exposure\:item.camera.dial_click=true -endermanoverhaul\:dark_oak_enderman_darkness=true -minecraft\:entity.parrot.imitate.pillager=true -tfc\:entity.hyena.attack=true -minecraft\:entity.ravager.death=true -endermanoverhaul\:plant_enderman_hurt=true -minecraft\:block.grindstone.use=true -minecraft\:entity.firework_rocket.twinkle_far=true -minecraft\:block.powder_snow.place=true -minecraft\:entity.illusioner.prepare_blindness=true -minecraft\:entity.camel.death=true -minecraft\:entity.llama.chest=true -tfc\:entity.turkey.step=true -minecraft\:block.ladder.fall=true -minecraft\:block.candle.step=true -minecraft\:block.coral_block.break=true -minecraft\:block.soul_sand.step=true -tfc\:entity.dog.hurt=true -tfc\:entity.smallmouth_bass.ambient=true -minecraft\:block.cherry_sapling.step=true -minecraft\:entity.evoker.prepare_summon=true -minecraft\:entity.armor_stand.fall=true -minecraft\:block.netherite_block.place=true -minecraft\:entity.turtle.ambient_land=true -minecraft\:block.bamboo_sapling.place=true -minecraft\:entity.piglin.admiring_item=true -minecraft\:block.calcite.fall=true -minecraft\:block.cherry_wood.break=true -minecraft\:entity.enderman.stare=true -tfc\:entity.boar.step=true -minecraft\:entity.generic.big_fall=true -minecraft\:block.cherry_leaves.hit=true -tfc\:entity.cougar.hurt=true -chalk\:item.glow_applied=true -minecraft\:entity.wandering_trader.no=true -minecraft\:block.wool.hit=true -minecraft\:entity.tadpole.flop=true -minecraft\:block.netherrack.place=true -minecraft\:block.ladder.step=true -minecraft\:block.candle.fall=true -tfc\:entity.bear.step=true -minecraft\:block.packed_mud.hit=true -minecraft\:entity.phantom.flap=true -minecraft\:item.hoe.till=true -minecraft\:block.tuff.step=true -minecraft\:block.cherry_sapling.fall=true -minecraft\:block.gilded_blackstone.fall=true -minecraft\:block.wart_block.step=true -minecraft\:entity.turtle.hurt=true -minecraft\:entity.dolphin.play=true -minecraft\:block.note_block.bit=true -minecraft\:block.sculk_sensor.fall=true -minecraft\:entity.villager.celebrate=true -minecraft\:block.lodestone.break=true -astikorcarts\:entity.cart.detach=true -minecraft\:block.basalt.step=true -minecraft\:entity.polar_bear.hurt=true -exposure\:item.photograph_frame.remove_item=true -minecraft\:entity.parrot.imitate.wither=true -gtceu\:jet_engine=true -minecraft\:entity.fox.screech=true -minecraft\:block.sculk_sensor.clicking_stop=true -endermanoverhaul\:soul_pearl_hit=true -minecraft\:entity.vex.death=true -tfc\:entity.tfc_wolf.ambient=true -minecraft\:entity.bee.loop=true -minecraft\:entity.vex.charge=true -minecraft\:block.beehive.work=true -gtceu\:cooling=true -createaddition\:little_zap=true -immersive_aircraft\:propeller_small=true -minecraft\:entity.skeleton_horse.jump_water=true -minecraft\:entity.zombie_villager.death=true -tfc\:item.javelin.hit=true -tfc\:block.thin.place=true -minecraft\:entity.horse.ambient=true -minecraft\:entity.villager.work_armorer=true -minecraft\:block.mud_bricks.fall=true -minecraft\:entity.phantom.death=true -minecraft\:block.tripwire.detach=true -minecraft\:block.deepslate.place=true -tfc\:block.charcoal.place=true -tfc\:entity.jellyfish.hurt=true -minecraft\:entity.ender_dragon.death=true -minecraft\:block.sand.hit=true -minecraft\:entity.leash_knot.place=true -minecraft\:entity.strider.retreat=true -minecraft\:entity.cow.step=true -minecraft\:entity.allay.item_taken=true -minecraft\:block.note_block.imitate.zombie=true -minecraft\:entity.mooshroom.convert=true -minecraft\:entity.warden.death=true -minecraft\:block.sculk_sensor.step=true -tfc\:entity.cougar.ambient=true -minecraft\:item.armor.equip_leather=true -minecraft\:block.bell.resonate=true -minecraft\:entity.mooshroom.milk=true -minecraft\:block.dispenser.fail=true -minecraft\:entity.endermite.death=true -minecraft\:entity.goat.screaming.prepare_ram=true -minecraft\:block.nether_sprouts.break=true -minecraft\:block.respawn_anchor.ambient=true -gtceu\:drill=true -chalk\:ambient.glowing=true -astikorcarts\:entity.cart.place=true -minecraft\:item.crossbow.shoot=true -minecraft\:entity.bee.sting=true -minecraft\:block.deepslate.break=true -immersive_aircraft\:woosh=true -minecraft\:block.chest.open=true -minecraft\:block.netherite_block.break=true -minecraft\:block.note_block.cow_bell=true -minecraft\:block.iron_door.open=true -minecraft\:block.fungus.break=true -gtceu\:motor=true -tfc\:block.thin.break=true -minecraft\:entity.strider.happy=true -gtceu\:turbine=true -tfc\:entity.alpaca.hurt=true -minecraft\:ambient.soul_sand_valley.additions=true -minecraft\:block.slime_block.place=true -tfc\:item.knapping.leather=true -minecraft\:block.sculk_vein.break=true -minecraft\:block.fire.ambient=true -minecraft\:block.wooden_trapdoor.open=true -gtceu\:spray_can=true -minecraft\:entity.ravager.stunned=true -minecraft\:block.nether_wood.fall=true -minecraft\:entity.fox.aggro=true -minecraft\:entity.player.levelup=true -minecraft\:entity.dolphin.hurt=true -exposure\:item.camera.lens_insert=true -minecraft\:entity.glow_item_frame.place=true -minecraft\:entity.player.small_fall=true -tfc\:block.charcoal.fall=true -minecraft\:entity.skeleton.step=true -minecraft\:music_disc.13=true -minecraft\:entity.bee.death=true -minecraft\:entity.parrot.imitate.wither_skeleton=true -endermanoverhaul\:corrupted_pearl_hit=true -minecraft\:music_disc.11=true -minecraft\:block.wart_block.hit=true -minecraft\:block.wet_grass.step=true -minecraft\:entity.pillager.ambient=true -minecraft\:entity.experience_bottle.throw=true -minecraft\:entity.wither_skeleton.ambient=true -minecraft\:item.trident.riptide_3=true -minecraft\:item.trident.riptide_2=true -minecraft\:block.calcite.break=true -minecraft\:block.pointed_dripstone.fall=true -minecraft\:entity.piglin_brute.hurt=true -minecraft\:block.nether_gold_ore.fall=true -minecraft\:entity.fox.eat=true -minecraft\:block.azalea.break=true -minecraft\:entity.armor_stand.place=true -minecraft\:item.trident.riptide_1=true -minecraft\:block.wet_grass.fall=true -minecraft\:block.mud_bricks.step=true -minecraft\:entity.pig.hurt=true -minecraft\:block.bamboo_wood_hanging_sign.fall=true -minecraft\:entity.wolf.pant=true -minecraft\:block.sweet_berry_bush.place=true -minecraft\:entity.parrot.imitate.endermite=true -minecraft\:block.tuff.fall=true -minecraft\:block.ancient_debris.hit=true -gtceu\:mixer=true -minecraft\:block.netherite_block.step=true -minecraft\:entity.frog.death=true -minecraft\:entity.endermite.hurt=true -minecraft\:block.deepslate.hit=true -minecraft\:entity.evoker.prepare_wololo=true -minecraft\:entity.warden.sniff=true -tfc\:entity.gazelle.hurt=true -tfc\:entity.rainbow_trout.flop=true -minecraft\:entity.polar_bear.ambient_baby=true -tfc\:item.armor.equip_black_steel=true -minecraft\:block.sculk.hit=true -minecraft\:block.gravel.place=true -minecraft\:block.deepslate_bricks.break=true -tfc\:block.charcoal.step=true -minecraft\:entity.warden.nearby_closer=true -minecraft\:entity.wolf.shake=true -immersive_aircraft\:propeller=true -minecraft\:entity.firework_rocket.launch=true -minecraft\:block.basalt.break=true -tfc\:entity.rat.step=true -minecraft\:block.hanging_roots.fall=true -minecraft\:block.ender_chest.open=true -minecraft\:entity.piglin.jealous=true -create\:controller_take=true -minecraft\:block.sculk_sensor.hit=true -minecraft\:entity.camel.step_sand=true -tfc\:entity.quail.ambient=true -minecraft\:block.bamboo_wood.break=true -minecraft\:entity.parrot.imitate.ender_dragon=true -minecraft\:block.dispenser.dispense=true -minecraft\:block.sculk.fall=true -minecraft\:block.water.ambient=true -minecraft\:entity.donkey.eat=true -minecraft\:item.bucket.empty_tadpole=true -minecraft\:block.moss_carpet.hit=true -minecraft\:ambient.underwater.enter=true -minecraft\:entity.puffer_fish.hurt=true -minecraft\:entity.piglin.celebrate=true -minecraft\:entity.husk.ambient=true -gtceu\:combustion=true -tfc\:entity.dog.sleep=true -minecraft\:entity.guardian.death=true -minecraft\:entity.stray.step=true -minecraft\:entity.shulker.death=true -minecraft\:entity.camel.dash_ready=true -minecraft\:entity.iron_golem.repair=true -minecraft\:block.large_amethyst_bud.break=true -minecraft\:block.shulker_box.close=true -minecraft\:block.deepslate_bricks.place=true -minecraft\:entity.guardian.flop=true -minecraft\:entity.piglin_brute.ambient=true -minecraft\:entity.chicken.death=true -minecraft\:entity.glow_item_frame.remove_item=true -minecraft\:entity.salmon.hurt=true -minecraft\:entity.spider.death=true -create\:clipboard_erase=true -minecraft\:entity.turtle.shamble_baby=true -create\:mixing=true -create\:confirm=true -minecraft\:ui.button.click=true -tfc\:entity.boar.ambient=true -tfc\:entity.bluegill.hurt=true -minecraft\:entity.generic.death=true -minecraft\:block.bamboo_wood_button.click_off=true -minecraft\:block.sculk_vein.fall=true -minecraft\:entity.hoglin.retreat=true -minecraft\:block.wooden_trapdoor.close=true -minecraft\:block.roots.fall=true -minecraft\:block.shroomlight.hit=true -minecraft\:block.flowering_azalea.break=true -tfc\:entity.tfc_wolf.death=true -minecraft\:block.nether_wood.step=true -tfc\:entity.rooster.cry=true -tfc\:entity.bongo.ambient=true -minecraft\:block.sculk_shrieker.hit=true -endermanoverhaul\:plant_enderman_ambient=true -minecraft\:block.honey_block.fall=true -minecraft\:block.hanging_roots.hit=true -gtceu\:wrench=true -minecraft\:block.moss_carpet.fall=true -minecraft\:item.trident.throw=true -minecraft\:entity.armor_stand.break=true -minecraft\:entity.goat.prepare_ram=true -tfc\:entity.turkey.ambient=true -minecraft\:entity.player.attack.nodamage=true -minecraft\:entity.cow.milk=true -minecraft\:entity.hoglin.ambient=true -minecraft\:entity.llama.ambient=true -minecraft\:block.nylium.fall=true -minecraft\:block.sculk.step=true -minecraft\:entity.strider.step_lava=true -minecraft\:block.sweet_berry_bush.break=true -minecraft\:block.calcite.place=true -minecraft\:entity.snow_golem.ambient=true -tfc\:entity.rainbow_trout.death=true -minecraft\:block.metal.step=true -minecraft\:entity.donkey.angry=true -gtceu\:replicator=true -tfc\:entity.bluegill.ambient=true -minecraft\:ui.toast.in=true -minecraft\:block.wart_block.fall=true -minecraft\:block.slime_block.break=true -minecraft\:entity.enderman.ambient=true -minecraft\:item.crossbow.loading_start=true -minecraft\:entity.shulker.shoot=true -minecraft\:entity.drowned.swim=true -minecraft\:block.wet_grass.break=true -minecraft\:block.note_block.bass=true -tfc\:entity.lion.hurt=true -minecraft\:block.stem.hit=true -minecraft\:entity.parrot.imitate.ghast=true -minecraft\:block.honey_block.step=true -tfc\:entity.bongo.death=true -minecraft\:entity.squid.ambient=true -minecraft\:entity.strider.ambient=true -minecraft\:entity.ghast.ambient=true -exposure\:item.camera.generic_click=true -chalk\:block.mark_removed=true -minecraft\:ambient.underwater.loop=true -tfc\:entity.lake_trout.flop=true -minecraft\:block.respawn_anchor.set_spawn=true -minecraft\:block.wooden_pressure_plate.click_off=true -minecraft\:entity.experience_orb.pickup=true -minecraft\:entity.villager.work_fisherman=true -minecraft\:block.hanging_roots.step=true -minecraft\:entity.skeleton.ambient=true -minecraft\:music.overworld.forest=true -minecraft\:item.trident.return=true -minecraft\:entity.turtle.egg_crack=true -minecraft\:block.gilded_blackstone.break=true -tfc\:entity.pheasant.step=true -minecraft\:entity.magma_cube.jump=true -tfc\:entity.duck.step=true -minecraft\:block.mud.step=true -minecraft\:block.end_portal_frame.fill=true -create\:cranking_compounded_1=true -minecraft\:item.elytra.flying=true -minecraft\:entity.goat.screaming.ram_impact=true -minecraft\:block.lava.ambient=true -minecraft\:entity.rabbit.death=true -fallingtrees\:tree_fall=true -minecraft\:entity.camel.stand=true -minecraft\:block.cake.add_candle=true -minecraft\:block.slime_block.step=true -minecraft\:block.nether_gold_ore.step=true -create\:crushing_3=true -create\:crushing_2=true -minecraft\:entity.spider.ambient=true -create\:crushing_1=true -minecraft\:block.nether_wood_door.close=true -minecraft\:block.bamboo_wood.place=true -exposure\:block.lightroom.print=true -minecraft\:block.fungus.step=true -create\:whistle_train_low=true -minecraft\:entity.horse.breathe=true -tfc\:entity.tiger.death=true -minecraft\:entity.tropical_fish.death=true -minecraft\:block.moss_carpet.step=true -minecraft\:block.note_block.chime=true -minecraft\:entity.cow.death=true -minecraft\:ambient.crimson_forest.mood=true -minecraft\:ambient.underwater.loop.additions=true -minecraft\:block.bamboo_wood_hanging_sign.hit=true -minecraft\:entity.skeleton_horse.ambient_water=true -minecraft\:entity.hostile.death=true -minecraft\:block.chain.hit=true -minecraft\:entity.warden.roar=true -minecraft\:block.flowering_azalea.place=true -tfc\:entity.sabertooth.step=true -minecraft\:block.mud.hit=true -minecraft\:entity.minecart.inside.underwater=true -minecraft\:entity.strider.hurt=true -tfc\:item.armor.equip_bismuth_bronze=true -create\:chiff=true -minecraft\:entity.evoker.prepare_attack=true -minecraft\:block.note_block.imitate.wither_skeleton=true -minecraft\:item.bundle.drop_contents=true -minecraft\:entity.horse.angry=true -minecraft\:entity.zoglin.ambient=true -minecraft\:block.stone.hit=true -exposure\:item.camera.shutter_close=true -minecraft\:block.nylium.step=true -minecraft\:block.soul_sand.fall=true -create\:mechanical_press_activation_belt=true -minecraft\:entity.strider.saddle=true -minecraft\:entity.zombie_horse.hurt=true -endermanoverhaul\:icy_pearl_hit=true -minecraft\:entity.cod.ambient=true -minecraft\:entity.player.hurt_freeze=true -minecraft\:block.enchantment_table.use=true -minecraft\:block.bell.use=true -minecraft\:entity.frog.long_jump=true -minecraft\:entity.hostile.splash=true -minecraft\:block.large_amethyst_bud.place=true -minecraft\:block.weeping_vines.break=true -minecraft\:block.wood.step=true -minecraft\:block.wet_grass.place=true -minecraft\:entity.goat.screaming.hurt=true -minecraft\:item.bucket.fill_tadpole=true -minecraft\:block.bamboo_wood_hanging_sign.step=true -minecraft\:block.note_block.guitar=true -minecraft\:item.bottle.fill_dragonbreath=true -minecraft\:entity.rabbit.hurt=true -minecraft\:entity.wandering_trader.reappeared=true -create\:haunted_bell_convert=true -minecraft\:item.honey_bottle.drink=true -minecraft\:entity.turtle.death=true -minecraft\:entity.pig.saddle=true -minecraft\:entity.parrot.imitate.guardian=true -minecraft\:entity.tadpole.death=true -minecraft\:entity.fox.ambient=true -minecraft\:entity.villager.work_farmer=true -tfc\:item.pan.use=true -minecraft\:block.roots.step=true -minecraft\:block.fungus.hit=true -gtceu\:electrolyzer=true -minecraft\:entity.villager.work_shepherd=true -minecraft\:entity.player.hurt_sweet_berry_bush=true -minecraft\:block.sculk_vein.step=true -minecraft\:block.pointed_dripstone.place=true -minecraft\:block.slime_block.fall=true -minecraft\:block.decorated_pot.place=true -minecraft\:entity.fishing_bobber.retrieve=true -minecraft\:entity.axolotl.idle_water=true -minecraft\:music.overworld.grove=true -minecraft\:block.weeping_vines.place=true -minecraft\:block.note_block.didgeridoo=true -tfc\:entity.penguin.hurt=true -tfc\:entity.tiger.attack=true -minecraft\:entity.wandering_trader.trade=true -create\:whistle_train_manual_low=true -minecraft\:block.nether_ore.hit=true -minecraft\:entity.vex.hurt=true -minecraft\:block.fence_gate.open=true -minecraft\:block.sweet_berry_bush.pick_berries=true -minecraft\:entity.ender_dragon.ambient=true -minecraft\:block.stone.break=true -tfc\:entity.moose.hurt=true -minecraft\:block.sniffer_egg.plop=true -minecraft\:entity.ravager.celebrate=true -minecraft\:block.chain.step=true -minecraft\:block.suspicious_gravel.break=true -minecraft\:block.mud.fall=true -minecraft\:block.lava.pop=true -exposure\:item.camera.film_advance_last=true -exposure\:item.camera.film_advance=true -tfc\:entity.lake_trout.hurt=true -minecraft\:entity.item_frame.break=true -minecraft\:block.amethyst_block.hit=true -minecraft\:block.beacon.ambient=true -create\:saw_activate_wood=true -minecraft\:entity.guardian.hurt_land=true -tfc\:block.wattle.daubed=true -minecraft\:entity.fox.hurt=true -minecraft\:entity.panda.death=true -create\:peculiar_bell_use=true -minecraft\:item.totem.use=true -minecraft\:entity.fishing_bobber.splash=true -minecraft\:music_disc.wait=true -minecraft\:ambient.underwater.loop.additions.ultra_rare=true -gtceu\:arc=true -minecraft\:block.honey_block.slide=true -minecraft\:block.nether_ore.fall=true -minecraft\:entity.skeleton_horse.ambient=true -minecraft\:block.soul_soil.place=true -tfc\:entity.bear.hurt=true -create\:potato_hit=true -tfc\:entity.musk_ox.step=true -minecraft\:block.wooden_button.click_on=true -minecraft\:block.shroomlight.break=true -minecraft\:entity.squid.hurt=true -minecraft\:block.rooted_dirt.hit=true -minecraft\:block.cherry_wood_trapdoor.open=true -minecraft\:block.roots.place=true -minecraft\:block.mud.break=true -minecraft\:entity.arrow.hit_player=true -minecraft\:block.mud.place=true -minecraft\:block.muddy_mangrove_roots.fall=true -minecraft\:entity.illusioner.death=true -minecraft\:entity.shulker.hurt_closed=true -minecraft\:entity.silverfish.hurt=true -minecraft\:item.spyglass.use=true -minecraft\:entity.parrot.imitate.hoglin=true -exposure\:item.camera.flash=true -tfc\:entity.ramming.impact=true -tfc\:entity.moose.attack=true -minecraft\:entity.iron_golem.step=true -minecraft\:block.blastfurnace.fire_crackle=true -minecraft\:block.chain.fall=true -tfc\:entity.rainbow_trout.ambient=true -minecraft\:block.honey_block.hit=true -minecraft\:entity.magma_cube.death_small=true -minecraft\:entity.fox.teleport=true -minecraft\:entity.phantom.hurt=true -minecraft\:block.candle.hit=true -minecraft\:block.portal.travel=true -minecraft\:item.brush.brushing.gravel.complete=true -create\:saw_activate_stone=true -minecraft\:entity.goat.screaming.eat=true -minecraft\:entity.allay.ambient_with_item=true -minecraft\:music_disc.otherside=true -minecraft\:entity.slime.death=true -tfc\:entity.manatee.ambient=true -tfc\:entity.turkey.death=true -minecraft\:entity.skeleton.hurt=true -minecraft\:block.moss_carpet.place=true -minecraft\:block.nether_wood_door.open=true -playerrevive\:death=true -minecraft\:block.big_dripleaf.step=true -minecraft\:block.bamboo.hit=true -tfc\:entity.caribou.death=true -minecraft\:block.bamboo_wood_pressure_plate.click_off=true -minecraft\:item.trident.hit_ground=true -minecraft\:item.brush.brushing.gravel=true -minecraft\:block.portal.ambient=true -minecraft\:block.snow.place=true -minecraft\:entity.stray.hurt=true -minecraft\:music_disc.blocks=true -endermanoverhaul\:summoner_pearl_hit=true -minecraft\:entity.ender_dragon.hurt=true -minecraft\:entity.glow_squid.ambient=true -minecraft\:item.honeycomb.wax_on=true -minecraft\:entity.wither.break_block=true -minecraft\:entity.sniffer.sniffing=true -minecraft\:block.ender_chest.close=true -tfc\:item.armor.equip_wrought_iron=true -minecraft\:entity.witch.ambient=true -immersive_aircraft\:engine_start=true -minecraft\:block.respawn_anchor.deplete=true -minecraft\:block.candle.break=true -minecraft\:block.spore_blossom.break=true -minecraft\:block.amethyst_block.place=true -minecraft\:item.armor.equip_diamond=true -minecraft\:block.nether_wood.place=true -minecraft\:block.pointed_dripstone.drip_water=true -minecraft\:entity.blaze.shoot=true -minecraft\:block.nether_gold_ore.break=true -minecraft\:entity.sheep.shear=true -minecraft\:entity.ender_pearl.throw=true -minecraft\:block.beacon.activate=true -minecraft\:block.tuff.break=true -minecraft\:entity.turtle.egg_hatch=true -immersive_aircraft\:repair=true -minecraft\:block.redstone_torch.burnout=true -minecraft\:intentionally_empty=true -minecraft\:entity.zombified_piglin.angry=true -gtceu\:furnace=true -minecraft\:block.fungus.fall=true -minecraft\:block.moss.step=true -minecraft\:block.dispenser.launch=true -minecraft\:entity.cat.hiss=true -minecraft\:block.nether_wart.break=true -minecraft\:entity.goat.long_jump=true -minecraft\:entity.ravager.roar=true -minecraft\:block.note_block.imitate.ender_dragon=true -create\:sanding_long=true -minecraft\:entity.blaze.hurt=true -firmalife\:item.hollow_shell.blow=true -minecraft\:block.sniffer_egg.crack=true -minecraft\:entity.endermite.ambient=true -minecraft\:block.ancient_debris.step=true -minecraft\:entity.panda.bite=true -minecraft\:entity.parrot.imitate.silverfish=true -create\:slime_added=true -minecraft\:block.polished_deepslate.step=true -minecraft\:block.bamboo_wood.fall=true -minecraft\:entity.wandering_trader.hurt=true -minecraft\:entity.dolphin.ambient_water=true -tfc\:entity.turkey.hurt=true -endermanoverhaul\:tall_enderman_ambient=true -railways\:handcar_cogs=true -cccbridge\:cage_unlock=true -minecraft\:entity.bat.death=true -minecraft\:item.bottle.fill=true -tfc\:entity.moose.ambient=true -minecraft\:entity.piglin.converted_to_zombified=true -minecraft\:entity.arrow.shoot=true -minecraft\:ambient.warped_forest.additions=true -minecraft\:block.nether_ore.step=true -minecraft\:entity.strider.step=true -minecraft\:entity.goat.death=true -minecraft\:entity.panda.aggressive_ambient=true -minecraft\:block.big_dripleaf.hit=true -minecraft\:entity.husk.converted_to_zombie=true -minecraft\:entity.villager.work_cleric=true -minecraft\:block.bubble_column.bubble_pop=true -minecraft\:entity.phantom.swoop=true -minecraft\:entity.piglin_brute.death=true -minecraft\:entity.llama.death=true -minecraft\:entity.piglin.hurt=true -minecraft\:entity.parrot.imitate.phantom=true -minecraft\:music.overworld.lush_caves=true -tfc\:entity.jellyfish.ambient=true -minecraft\:entity.boat.paddle_land=true -minecraft\:entity.frog.tongue=true -minecraft\:music_disc.ward=true -minecraft\:entity.fox.sniff=true -minecraft\:entity.wither_skeleton.hurt=true -minecraft\:block.azalea_leaves.fall=true -minecraft\:entity.wither_skeleton.step=true -minecraft\:entity.drowned.hurt_water=true -gtceu\:wirecutter=true -minecraft\:block.tuff.hit=true -minecraft\:entity.sheep.hurt=true -tfc\:entity.crappie.death=true -minecraft\:block.metal.fall=true -minecraft\:block.netherite_block.fall=true -minecraft\:entity.pig.step=true -minecraft\:entity.villager.yes=true -minecraft\:music.nether.soul_sand_valley=true -minecraft\:entity.ender_dragon.growl=true -minecraft\:entity.vindicator.hurt=true -create\:blaze_munch=true -minecraft\:entity.llama.swag=true -minecraft\:block.small_dripleaf.break=true -create_connected\:elevator_music=true -minecraft\:entity.villager.work_toolsmith=true -minecraft\:item.bucket.fill_fish=true -minecraft\:block.moss_carpet.break=true -minecraft\:block.bamboo_sapling.hit=true -tfc\:entity.moose.death=true -minecraft\:block.nether_wood_hanging_sign.break=true -minecraft\:block.spore_blossom.place=true -minecraft\:entity.enderman.scream=true -minecraft\:block.soul_sand.hit=true -exposure\:item.photograph.break=true -minecraft\:entity.parrot.imitate.warden=true -minecraft\:entity.minecart.riding=true -minecraft\:block.tuff.place=true -minecraft\:block.soul_soil.break=true -minecraft\:entity.illusioner.prepare_mirror=true -minecraft\:entity.elder_guardian.death=true -create\:mechanical_press_activation_compounded_1=true -minecraft\:block.ladder.hit=true -minecraft\:entity.polar_bear.warning=true -minecraft\:block.amethyst_block.break=true -minecraft\:entity.piglin_brute.converted_to_zombified=true -minecraft\:entity.parrot.imitate.magma_cube=true -minecraft\:block.small_dripleaf.place=true -minecraft\:entity.cat.purreow=true -minecraft\:block.beacon.deactivate=true -minecraft\:music_disc.pigstep=true -tfc\:entity.dog.step=true -minecraft\:entity.parrot.imitate.elder_guardian=true -playerrevive\:revived=true -immersive_aircraft\:warship=true -minecraft\:block.conduit.attack.target=true -minecraft\:music.overworld.flower_forest=true -minecraft\:entity.arrow.hit=true -tfc\:entity.quail.hurt=true -minecraft\:item.ink_sac.use=true -minecraft\:entity.witch.death=true -minecraft\:entity.squid.death=true -minecraft\:block.gilded_blackstone.hit=true -tfc\:entity.yak.hurt=true -minecraft\:entity.sheep.ambient=true -minecraft\:block.bone_block.place=true -minecraft\:entity.cow.ambient=true -minecraft\:entity.tropical_fish.flop=true -minecraft\:block.frogspawn.place=true -minecraft\:entity.snow_golem.shear=true -minecraft\:block.azalea_leaves.step=true -minecraft\:entity.panda.ambient=true -minecraft\:block.polished_deepslate.fall=true -minecraft\:item.armor.equip_chain=true -minecraft\:entity.dolphin.ambient=true -minecraft\:entity.parrot.imitate.zombie=true -minecraft\:block.snow.break=true -minecraft\:block.lily_pad.place=true -gtceu\:compressor=true -tfc\:entity.wildebeest.hurt=true -minecraft\:entity.zombie_villager.hurt=true -minecraft\:item.bucket.empty_milk=true -minecraft\:entity.dolphin.eat=true -minecraft\:entity.evoker.hurt=true -tfc\:entity.sabertooth.ambient=true -minecraft\:block.gravel.hit=true -minecraft\:item.bucket.fill_lava=true -minecraft\:entity.magma_cube.squish_small=true -minecraft\:entity.bee.pollinate=true -minecraft\:entity.ocelot.hurt=true -minecraft\:block.sand.place=true -gtceu\:portal_closing=true -minecraft\:entity.generic.small_fall=true -minecraft\:block.chiseled_bookshelf.hit=true -tfc\:entity.deer.step=true -tfc\:entity.wildebeest.attack=true -minecraft\:block.chain.break=true -gtceu\:assembler=true -minecraft\:entity.ravager.hurt=true -minecraft\:block.weeping_vines.fall=true -minecraft\:block.soul_soil.step=true -minecraft\:block.bamboo_wood_hanging_sign.break=true -minecraft\:block.wooden_button.click_off=true -minecraft\:entity.wandering_trader.death=true -minecraft\:entity.warden.dig=true -minecraft\:entity.guardian.attack=true -minecraft\:entity.bee.loop_aggressive=true -minecraft\:block.scaffolding.hit=true -minecraft\:event.raid.horn=true -minecraft\:entity.goat.screaming.death=true -minecraft\:ambient.nether_wastes.mood=true -minecraft\:block.anvil.destroy=true -minecraft\:block.cherry_wood.place=true -minecraft\:block.bamboo_wood_button.click_on=true -minecraft\:block.hanging_roots.break=true -minecraft\:block.netherrack.break=true -minecraft\:block.respawn_anchor.charge=true -tfc\:block.bloomery.crackle=true -minecraft\:block.pink_petals.break=true -minecraft\:entity.piglin.death=true -minecraft\:entity.warden.listening_angry=true -minecraft\:entity.witch.hurt=true -minecraft\:entity.player.breath=true -minecraft\:entity.dolphin.swim=true -minecraft\:entity.stray.death=true -minecraft\:block.deepslate_tiles.step=true -minecraft\:block.wet_grass.hit=true -minecraft\:block.ancient_debris.fall=true -minecraft\:block.note_block.pling=true -minecraft\:entity.ghast.warn=true -minecraft\:entity.warden.heartbeat=true -minecraft\:entity.skeleton_horse.death=true -minecraft\:entity.sniffer.scenting=true -tfc\:entity.pheasant.hurt=true -minecraft\:entity.parrot.imitate.husk=true -minecraft\:block.spore_blossom.hit=true -minecraft\:entity.tadpole.grow_up=true -waterflasks\:item.flaskbreak=true -minecraft\:entity.axolotl.attack=true -minecraft\:entity.polar_bear.step=true -exposure\:item.photograph_frame.break=true -minecraft\:entity.turtle.hurt_baby=true -tfc\:entity.duck.ambient=true -minecraft\:entity.horse.land=true -tfc\:entity.bongo.step=true -minecraft\:entity.parrot.step=true -tfc\:entity.tiger.hurt=true -minecraft\:music.dragon=true -minecraft\:block.big_dripleaf.place=true -minecraft\:block.nether_sprouts.hit=true -gtceu\:centrifuge=true -minecraft\:block.lava.extinguish=true -minecraft\:block.basalt.fall=true -minecraft\:entity.player.big_fall=true -minecraft\:entity.villager.work_librarian=true -minecraft\:block.stone_button.click_off=true -minecraft\:block.dripstone_block.hit=true -minecraft\:entity.slime.hurt=true -minecraft\:block.end_gateway.spawn=true -minecraft\:entity.iron_golem.attack=true -immersive_aircraft\:engine_start_warship=true -tfc\:entity.peafowl.death=true -minecraft\:entity.chicken.egg=true -tfc\:entity.jellyfish.death=true -minecraft\:block.amethyst_cluster.hit=true -minecraft\:entity.zoglin.hurt=true -minecraft\:block.ladder.break=true -minecraft\:block.bubble_column.whirlpool_inside=true -minecraft\:entity.glow_item_frame.break=true -minecraft\:item.crossbow.hit=true -minecraft\:entity.elder_guardian.hurt_land=true -minecraft\:block.end_portal.spawn=true -minecraft\:music_disc.cat=true -minecraft\:music.overworld.snowy_slopes=true -minecraft\:block.bamboo_wood.step=true -minecraft\:entity.generic.burn=true -minecraft\:block.bubble_column.whirlpool_ambient=true -tfc\:block.quern.drag=true -minecraft\:block.composter.empty=true -minecraft\:block.sculk.break=true -tfc\:entity.boar.hurt=true -minecraft\:entity.zombie_villager.converted=true -minecraft\:block.chain.place=true -minecraft\:entity.shulker.teleport=true -tfc\:random.dirt_slide_short=true -minecraft\:entity.sniffer.happy=true -minecraft\:block.bone_block.break=true -minecraft\:item.glow_ink_sac.use=true -tfc\:entity.crappie.flop=true -minecraft\:entity.leash_knot.break=true -minecraft\:entity.zombie_villager.ambient=true -minecraft\:entity.enderman.death=true -minecraft\:block.froglight.break=true -create\:contraption_assemble=true -tfc\:block.anvil.hit=true -minecraft\:ambient.underwater.loop.additions.rare=true -minecraft\:block.calcite.step=true -minecraft\:entity.zoglin.attack=true -minecraft\:block.stone.fall=true -minecraft\:ui.loom.take_result=true -minecraft\:entity.puffer_fish.flop=true -minecraft\:block.big_dripleaf.tilt_down=true -minecraft\:entity.parrot.death=true -tfc\:entity.lion.death=true -minecraft\:block.hanging_roots.place=true -minecraft\:block.amethyst_block.fall=true -minecraft\:block.note_block.xylophone=true -minecraft\:entity.elder_guardian.ambient_land=true -minecraft\:entity.rabbit.ambient=true -tfc\:item.firestarter.use=true -minecraft\:entity.blaze.death=true -patchouli\:book_flip=true -minecraft\:block.beehive.exit=true -minecraft\:entity.vex.ambient=true -minecraft\:block.dripstone_block.break=true -minecraft\:block.coral_block.place=true -tfc\:block.scribing_table.use=true -exposure\:item.camera.button_click=true -createaddition\:tesla_coil=true -minecraft\:block.shroomlight.place=true -minecraft\:entity.guardian.ambient_land=true -minecraft\:block.coral_block.step=true -gtceu\:saw=true -minecraft\:entity.generic.eat=true -minecraft\:item.bucket.fill_milk=true -tfc\:block.barrel.open=true -minecraft\:block.weeping_vines.step=true -tfc\:entity.peafowl.ambient=true -minecraft\:block.moss.fall=true -tfc\:block.charcoal.hit=true -minecraft\:block.cherry_wood.hit=true -guideme\:guide.click=true -minecraft\:entity.axolotl.swim=true -minecraft\:block.slime_block.hit=true -minecraft\:entity.husk.step=true -minecraft\:entity.zombie.death=true -create\:contraption_disassemble=true -create\:wrench_rotate=true -minecraft\:entity.ender_dragon.shoot=true -minecraft\:block.sculk_catalyst.hit=true -minecraft\:entity.zombie.step=true -minecraft\:block.stone.place=true -tfc\:entity.crocodile.attack=true -minecraft\:entity.allay.item_given=true -minecraft\:entity.wolf.howl=true -minecraft\:entity.pig.ambient=true -tfc\:entity.smallmouth_bass.death=true -minecraft\:entity.iron_golem.death=true -tfc\:entity.caribou.hurt=true -minecraft\:block.nether_wood_trapdoor.close=true -minecraft\:entity.item_frame.place=true -minecraft\:music.overworld.jungle=true -minecraft\:block.chiseled_bookshelf.pickup=true -minecraft\:entity.item_frame.remove_item=true -tfc\:entity.rat.ambient=true -minecraft\:entity.warden.ambient=true -tfc\:entity.bluegill.flop=true -minecraft\:block.flowering_azalea.hit=true -minecraft\:block.nether_gold_ore.place=true -minecraft\:entity.iron_golem.damage=true -minecraft\:block.candle.place=true -minecraft\:block.beehive.enter=true -minecraft\:entity.elder_guardian.curse=true -minecraft\:entity.firework_rocket.blast=true -minecraft\:entity.wolf.whine=true -minecraft\:ambient.basalt_deltas.mood=true -gtceu\:boiler=true -minecraft\:block.coral_block.fall=true -minecraft\:block.stone.step=true -minecraft\:block.nether_wood.break=true -minecraft\:block.sculk.place=true -minecraft\:entity.llama.eat=true -tfc\:entity.smallmouth_bass.hurt=true -create\:mechanical_press_activation=true -minecraft\:entity.generic.splash=true -minecraft\:block.sculk_catalyst.place=true -minecraft\:entity.frog.ambient=true -minecraft\:entity.wolf.step=true -minecraft\:entity.slime.squish=true -minecraft\:block.sniffer_egg.hatch=true -minecraft\:block.froglight.place=true -minecraft\:entity.bat.loop=true -minecraft\:item.bucket.empty_fish=true -minecraft\:entity.goat.eat=true -minecraft\:entity.hoglin.step=true -minecraft\:entity.illusioner.hurt=true -minecraft\:entity.slime.death_small=true -minecraft\:entity.zombie.ambient=true -minecraft\:block.sand.break=true -minecraft\:block.amethyst_block.step=true -minecraft\:block.decorated_pot.break=true -minecraft\:entity.goat.hurt=true -minecraft\:entity.generic.extinguish_fire=true -minecraft\:block.metal.hit=true -minecraft\:entity.rabbit.attack=true -minecraft\:block.muddy_mangrove_roots.step=true -tfc\:item.cool=true -minecraft\:block.big_dripleaf.break=true -minecraft\:entity.guardian.ambient=true -minecraft\:block.tripwire.attach=true -exposure\:item.camera.release_button_click=true -tfc\:entity.grouse.death=true -minecraft\:block.suspicious_gravel.place=true -minecraft\:entity.goat.screaming.long_jump=true -minecraft\:block.ladder.place=true -minecraft\:block.dripstone_block.place=true -minecraft\:block.bamboo_wood_hanging_sign.place=true -minecraft\:entity.hostile.swim=true -tfc\:entity.tfc_wolf.hurt=true -minecraft\:block.nether_wood_fence_gate.open=true -minecraft\:entity.tnt.primed=true -minecraft\:block.soul_soil.fall=true -minecraft\:block.big_dripleaf.fall=true -minecraft\:entity.generic.swim=true -minecraft\:block.stone_button.click_on=true -minecraft\:entity.slime.squish_small=true -tfc\:entity.peafowl.step=true -minecraft\:entity.villager.work_cartographer=true -minecraft\:entity.warden.nearby_closest=true -minecraft\:block.fence_gate.close=true -minecraft\:entity.mule.ambient=true -tfc\:block.thin.hit=true -minecraft\:block.beehive.drip=true -minecraft\:block.campfire.crackle=true -minecraft\:block.comparator.click=true -minecraft\:block.metal_pressure_plate.click_off=true -minecraft\:item.armor.equip_iron=true -minecraft\:entity.panda.sneeze=true -minecraft\:entity.dolphin.jump=true -minecraft\:music_disc.relic=true -gtceu\:science=true -minecraft\:block.sculk_catalyst.fall=true -minecraft\:block.ancient_debris.break=true -minecraft\:item.nether_wart.plant=true -minecraft\:entity.fox.spit=true -minecraft\:block.chiseled_bookshelf.break=true -buildinggadgets2\:beep=true -minecraft\:block.cherry_leaves.fall=true -minecraft\:block.azalea_leaves.break=true -minecraft\:entity.hostile.big_fall=true -minecraft\:entity.turtle.death_baby=true -minecraft\:entity.cod.death=true -minecraft\:entity.player.death=true -minecraft\:block.scaffolding.fall=true -minecraft\:block.lantern.fall=true -create\:cranking=true -minecraft\:entity.splash_potion.throw=true -cucumber\:watering_can=true -minecraft\:block.bone_block.step=true -minecraft\:entity.dolphin.splash=true -createaddition\:loud_zap=true -minecraft\:entity.wither.ambient=true -minecraft\:block.wart_block.place=true -minecraft\:entity.creeper.primed=true -minecraft\:entity.horse.eat=true -tfc\:random.rock_slide_short=true -endermanoverhaul\:cave_enderman_ambient=true -minecraft\:block.copper.place=true -minecraft\:entity.elder_guardian.hurt=true -minecraft\:entity.polar_bear.ambient=true -minecraft\:block.nether_wood_button.click_off=true -minecraft\:block.chest.locked=true -tfc\:entity.duck.death=true -minecraft\:entity.frog.step=true -minecraft\:block.small_amethyst_bud.break=true -minecraft\:entity.wolf.ambient=true -minecraft\:block.cherry_wood.fall=true -minecraft\:block.nether_wood_pressure_plate.click_on=true -minecraft\:block.decorated_pot.fall=true -exposure\:item.photograph_frame.add_item=true -minecraft\:block.candle.extinguish=true -minecraft\:weather.rain=false -minecraft\:entity.phantom.ambient=true -minecraft\:entity.cat.death=true -tfc\:entity.rat.hurt=true -minecraft\:block.sand.step=true -minecraft\:entity.goat.screaming.ambient=true -minecraft\:entity.ender_dragon.flap=true -create\:whistle_train=true -tfc\:entity.caribou.ambient=true -create\:funnel_flap=true -minecraft\:block.conduit.deactivate=true -tfc\:block.thatch.fall=true -minecraft\:entity.generic.hurt=true -minecraft\:entity.puffer_fish.death=true -minecraft\:entity.turtle.egg_break=true -minecraft\:entity.elder_guardian.death_land=true -minecraft\:entity.magma_cube.death=true -tfc\:entity.lion.attack=true -minecraft\:item.spyglass.stop_using=true -minecraft\:entity.donkey.ambient=true -minecraft\:ui.loom.select_pattern=true -minecraft\:weather.rain.above=false -tfc\:entity.musk_ox.death=true -tfc\:entity.smallmouth_bass.flop=true -create\:wrench_remove_compounded_1=true -minecraft\:block.wooden_door.open=true -minecraft\:ambient.crimson_forest.loop=true -minecraft\:block.cherry_wood_button.click_on=true -gtceu\:sus=true -gtceu\:macerator=true -minecraft\:block.pumpkin.carve=true -tfc\:block.bellows.blow=true -minecraft\:block.vine.fall=true -minecraft\:block.cherry_wood_trapdoor.close=true -minecraft\:block.decorated_pot.step=true -minecraft\:item.shield.block=true -minecraft\:block.note_block.snare=true -minecraft\:block.copper.break=true -minecraft\:block.grass.break=true -minecraft\:block.metal.place=true -minecraft\:entity.allay.hurt=true -minecraft\:block.vine.hit=true -minecraft\:block.wart_block.break=true -minecraft\:entity.zombie_horse.ambient=true -minecraft\:block.nether_ore.place=true -minecraft\:block.sculk_catalyst.step=true -minecraft\:entity.horse.death=true -minecraft\:entity.parrot.imitate.ravager=true -tfc\:random.rock_slide_long_fake=true -minecraft\:entity.item.break=true -minecraft\:entity.wandering_trader.yes=true -minecraft\:entity.blaze.burn=true -tfc\:block.thatch.step=true -minecraft\:entity.mooshroom.suspicious_milk=true -minecraft\:entity.pig.death=true -minecraft\:entity.zombie.infect=true -tfc\:entity.cougar.sleep=true -minecraft\:block.sand.fall=true -minecraft\:item.bundle.remove_one=true -minecraft\:entity.hoglin.hurt=true -minecraft\:entity.horse.hurt=true -minecraft\:block.polished_deepslate.place=true -minecraft\:entity.creeper.death=true -minecraft\:block.honey_block.break=true -minecraft\:block.sculk_catalyst.break=true -minecraft\:entity.squid.squirt=true -minecraft\:entity.villager.work_leatherworker=true -endermanoverhaul\:cave_enderman_hurt=true -minecraft\:block.stone_pressure_plate.click_on=true -minecraft\:ui.toast.challenge_complete=true -chalk\:item.chalk_box_open=true -minecraft\:entity.guardian.death_land=true -tfc\:item.jug.blow=true -minecraft\:block.pink_petals.place=true -minecraft\:block.cherry_wood_pressure_plate.click_off=true -minecraft\:entity.hoglin.converted_to_zombified=true -minecraft\:block.nether_wood_fence_gate.close=true -minecraft\:music_disc.stal=true -create\:mixing_compounded_1=true -minecraft\:block.sculk_vein.hit=true -tfc\:entity.rat.death=true -minecraft\:entity.firework_rocket.large_blast_far=true -minecraft\:entity.parrot.imitate.zoglin=true -minecraft\:entity.drowned.ambient_water=true -minecraft\:entity.fish.swim=true -minecraft\:entity.sniffer.drop_seed=true -minecraft\:entity.villager.ambient=true -tfc\:entity.crappie.hurt=true -cccbridge\:cage_lock=true -minecraft\:block.lantern.step=true -patchouli\:book_open=true -tfc\:entity.tiger.sleep=true -create\:whistle_high=true -minecraft\:block.note_block.harp=true -minecraft\:entity.parrot.imitate.shulker=true -minecraft\:entity.axolotl.death=true -exposure\:item.camera.lens_remove=true -exposure\:item.camera.viewfinder_open=true -minecraft\:entity.skeleton_horse.gallop_water=true -minecraft\:music_disc.mellohi=true -minecraft\:music.overworld.frozen_peaks=true -minecraft\:entity.drowned.ambient=true -minecraft\:entity.elder_guardian.ambient=true -minecraft\:block.nether_wood_hanging_sign.hit=true -exposure\:item.photograph_frame.place=true -minecraft\:block.rooted_dirt.place=true -tfc\:entity.rainbow_trout.hurt=true -minecraft\:block.vine.step=true -minecraft\:block.azalea_leaves.place=true -exposure\:item.camera.viewfinder_close=true -minecraft\:music.credits=true -minecraft\:entity.zombie.converted_to_drowned=true -minecraft\:block.note_block.flute=true -tfc\:entity.largemouth_bass.hurt=true -minecraft\:entity.zombified_piglin.ambient=true -minecraft\:entity.fox.death=true -minecraft\:block.bone_block.fall=true -minecraft\:item.crossbow.quick_charge_2=true -minecraft\:item.crossbow.quick_charge_1=true -minecraft\:entity.player.splash=true -minecraft\:block.amethyst_block.chime=true -minecraft\:entity.husk.death=true -minecraft\:music_disc.far=true -minecraft\:music.end=true -create\:potato_hit_compounded_1=true -minecraft\:item.bucket.empty_powder_snow=true -minecraft\:item.bucket.fill_powder_snow=true -minecraft\:block.scaffolding.step=true -minecraft\:entity.firework_rocket.large_blast=true -minecraft\:entity.panda.eat=true -minecraft\:item.crossbow.quick_charge_3=true -minecraft\:entity.wither_skeleton.death=true -minecraft\:ambient.cave=true -minecraft\:block.cave_vines.pick_berries=true -minecraft\:entity.spider.step=true -minecraft\:entity.illusioner.mirror_move=true -tfc\:item.fertilizer.use=true -minecraft\:block.pointed_dripstone.drip_lava_into_cauldron=true -create\:steam=true -minecraft\:entity.salmon.ambient=true -minecraft\:entity.slime.hurt_small=true -minecraft\:block.azalea.step=true -minecraft\:entity.wolf.death=true -minecraft\:entity.wandering_trader.disappeared=true -minecraft\:block.pointed_dripstone.land=true -minecraft\:block.small_amethyst_bud.place=true -minecraft\:entity.mule.angry=true -minecraft\:entity.husk.hurt=true -minecraft\:block.snow.hit=true -tfc\:entity.manatee.hurt=true -tfc\:entity.boar.attack=true -minecraft\:block.portal.trigger=true -minecraft\:entity.puffer_fish.sting=true -minecraft\:block.grass.hit=true -minecraft\:block.conduit.ambient=true -minecraft\:block.deepslate_tiles.fall=true -gtceu\:portable_scanner=true -minecraft\:block.stone_pressure_plate.click_off=true -minecraft\:block.bubble_column.upwards_inside=true -minecraft\:block.copper.hit=true -minecraft\:entity.parrot.hurt=true -minecraft\:entity.horse.gallop=true -create\:copper_armor_equip=true -minecraft\:entity.allay.item_thrown=true -minecraft\:entity.zombie_horse.death=true -minecraft\:block.grass.place=true -minecraft\:entity.evoker.ambient=true -tfc\:block.peat.hit=true -minecraft\:entity.zoglin.death=true -minecraft\:entity.parrot.imitate.slime=true -minecraft\:block.bamboo_wood_trapdoor.open=true -exposure\:item.camera.film_removed=true -minecraft\:block.cave_vines.hit=true -minecraft\:block.barrel.close=true -minecraft\:entity.chicken.ambient=true -minecraft\:entity.cat.hurt=true -tfc\:random.rock_smash=true -minecraft\:entity.guardian.hurt=true -minecraft\:entity.hoglin.angry=true -minecraft\:entity.ghast.death=true -minecraft\:music_disc.mall=true -minecraft\:entity.silverfish.step=true -tfc\:entity.duck.hurt=true -tfc\:entity.manatee.death=true -minecraft\:entity.turtle.shamble=true -minecraft\:entity.shulker_bullet.hurt=true -minecraft\:music.game=true -minecraft\:block.nether_ore.break=true -minecraft\:item.bucket.empty=true -minecraft\:block.calcite.hit=true -minecraft\:block.decorated_pot.shatter=true -minecraft\:block.sculk_shrieker.step=true -tfc\:entity.sabertooth.death=true -minecraft\:entity.snowball.throw=true -minecraft\:block.chorus_flower.grow=true -minecraft\:entity.hostile.small_fall=true -minecraft\:block.bubble_column.upwards_ambient=true -tfc\:entity.hyena.hurt=true -minecraft\:entity.hoglin.attack=true -minecraft\:entity.warden.nearby_close=true -minecraft\:block.cave_vines.place=true -minecraft\:block.nylium.hit=true -minecraft\:item.bucket.empty_lava=true -tfc\:entity.caribou.step=true -minecraft\:block.azalea.fall=true -ae2\:guide.click=true -tfc\:item.armor.equip_blue_steel=true -minecraft\:block.nether_wood_hanging_sign.step=true -minecraft\:block.nether_wood_hanging_sign.place=true -minecraft\:entity.player.burp=true -minecraft\:block.cherry_wood_button.click_off=true -create\:schematicannon_launch_block=true -minecraft\:block.bamboo_wood_trapdoor.close=true -minecraft\:entity.item.pickup=true -minecraft\:entity.villager.work_butcher=true -minecraft\:entity.player.attack.knockback=true -exposure\:item.photograph.place=true -minecraft\:block.bamboo.step=true -minecraft\:block.stem.place=true -minecraft\:block.cherry_wood_hanging_sign.step=true -minecraft\:block.amethyst_cluster.break=true -minecraft\:block.glass.place=true -minecraft\:item.armor.equip_elytra=true -minecraft\:entity.cat.stray_ambient=true -minecraft\:block.small_dripleaf.step=true -minecraft\:entity.strider.eat=true -minecraft\:entity.player.hurt_drown=true -gtceu\:fire=true -exposure\:item.camera.lens_ring_click=true -minecraft\:block.growing_plant.crop=true -minecraft\:entity.lingering_potion.throw=true -minecraft\:block.cherry_sapling.hit=true -minecraft\:block.deepslate_bricks.fall=true -minecraft\:entity.zombie.attack_iron_door=true -minecraft\:entity.camel.ambient=true -minecraft\:entity.ghast.shoot=true -minecraft\:music.overworld.stony_peaks=true -minecraft\:block.cherry_leaves.place=true -minecraft\:block.bamboo.fall=true -minecraft\:block.composter.fill_success=true -minecraft\:ambient.nether_wastes.loop=true -minecraft\:entity.turtle.swim=true -minecraft\:music.under_water=true -gtceu\:portal_opening=true -minecraft\:entity.glow_squid.squirt=true -endermanoverhaul\:bubble_pearl_hit=true -minecraft\:music.overworld.meadow=true -minecraft\:entity.player.attack.sweep=true -tfc\:entity.grouse.step=true -minecraft\:block.soul_soil.hit=true -minecraft\:block.tripwire.click_on=true -minecraft\:entity.evoker.death=true -minecraft\:entity.goat.ambient=true -minecraft\:item.dye.use=true -minecraft\:entity.sniffer.hurt=true -minecraft\:block.dripstone_block.fall=true -minecraft\:block.glass.break=true -minecraft\:block.note_block.hat=true -gtceu\:file=true -minecraft\:block.cherry_leaves.break=true -minecraft\:entity.bat.ambient=true -minecraft\:block.flowering_azalea.step=true -minecraft\:item.armor.equip_turtle=true -minecraft\:entity.skeleton_horse.swim=true -minecraft\:block.mangrove_roots.place=true -minecraft\:entity.drowned.hurt=true -minecraft\:entity.player.swim=true -tfc\:item.armor.equip_bronze=true -minecraft\:entity.bat.takeoff=true -minecraft\:entity.parrot.imitate.zombie_villager=true -minecraft\:entity.painting.break=true -tfc\:item.armor.equip_red_steel=true -minecraft\:block.anvil.fall=true -minecraft\:block.hanging_sign.hit=true -alekiships\:music_disc_pirate_crafting=true -minecraft\:entity.warden.angry=true -exposure\:item.camera.filter_remove=true -minecraft\:entity.cow.hurt=true -minecraft\:entity.mooshroom.eat=true -minecraft\:block.chiseled_bookshelf.insert=true -tfc\:entity.largemouth_bass.ambient=true -minecraft\:block.sculk_shrieker.fall=true -minecraft\:block.iron_trapdoor.close=true -minecraft\:block.suspicious_gravel.step=true -minecraft\:entity.parrot.imitate.spider=true -minecraft\:block.sculk_shrieker.shriek=true -minecraft\:block.chest.close=true -minecraft\:entity.dolphin.attack=true -minecraft\:block.frogspawn.break=true -create\:train=true -minecraft\:entity.parrot.eat=true -minecraft\:item.bone_meal.use=true -minecraft\:block.small_dripleaf.fall=true -minecraft\:entity.vindicator.celebrate=true -minecraft\:entity.ocelot.ambient=true -minecraft\:entity.shulker.hurt=true -minecraft\:music.overworld.badlands=true -minecraft\:block.cave_vines.break=true -minecraft\:entity.player.attack.weak=true -gtceu\:plunger=true -minecraft\:entity.firework_rocket.shoot=true -minecraft\:block.deepslate_bricks.step=true -create\:funnel_flap_compounded_1=true -minecraft\:block.cherry_wood_hanging_sign.fall=true -gtceu\:computation=true -minecraft\:entity.lightning_bolt.thunder=false -minecraft\:entity.parrot.ambient=true -tfc\:entity.yak.death=true -minecraft\:block.cherry_wood.step=true -minecraft\:block.stem.break=true -minecraft\:entity.villager.death=true -minecraft\:block.suspicious_gravel.fall=true -minecraft\:block.amethyst_cluster.place=true -exposure\:item.camera.shutter_open=true -minecraft\:entity.villager.trade=true -minecraft\:entity.drowned.death_water=true -minecraft\:entity.cat.purr=true -minecraft\:block.conduit.ambient.short=true -minecraft\:block.piston.contract=true -tfc\:block.wattle.dyed=true -minecraft\:block.sculk_sensor.place=true -tfc\:entity.pheasant.ambient=true -minecraft\:entity.splash_potion.break=true -minecraft\:block.cherry_wood_pressure_plate.click_on=true -minecraft\:entity.item_frame.add_item=true -minecraft\:block.dripstone_block.step=true -minecraft\:entity.zombie_villager.step=true -tfc\:entity.tiger.step=true -minecraft\:block.glass.fall=true -minecraft\:block.lodestone.step=true -tfc\:entity.alpaca.step=true -minecraft\:entity.parrot.imitate.piglin=true -tfc\:entity.wildebeest.step=true -minecraft\:block.fire.extinguish=true -tfc\:entity.gazelle.ambient=true -gtceu\:metal_pipe=true -minecraft\:entity.panda.step=true -minecraft\:entity.player.hurt_on_fire=true -fallingtrees\:tree_impact=true -minecraft\:block.mud_bricks.place=true -tfc\:entity.moose.step=true -minecraft\:entity.tropical_fish.ambient=true -minecraft\:entity.sniffer.death=true -minecraft\:block.packed_mud.break=true -tfc\:item.javelin.hit_ground=true -minecraft\:entity.puffer_fish.blow_out=true -minecraft\:block.nether_wood_hanging_sign.fall=true -minecraft\:entity.parrot.imitate.vex=true -minecraft\:entity.fox.bite=true -minecraft\:ambient.warped_forest.loop=true -minecraft\:block.flowering_azalea.fall=true -minecraft\:block.sculk.spread=true -minecraft\:entity.camel.step=true -minecraft\:block.metal.break=true -create\:whistle_train_manual=true -minecraft\:ambient.crimson_forest.additions=true -minecraft\:block.cherry_wood_fence_gate.close=true -minecraft\:entity.piglin.step=true -minecraft\:entity.fishing_bobber.throw=true -minecraft\:block.packed_mud.fall=true -minecraft\:entity.horse.armor=true -minecraft\:block.amethyst_block.resonate=true -minecraft\:block.hanging_sign.step=true -minecraft\:block.nether_sprouts.step=true -minecraft\:block.nether_gold_ore.hit=true -minecraft\:block.mud_bricks.break=true -minecraft\:entity.painting.place=true -minecraft\:entity.parrot.imitate.drowned=true -gtceu\:chainsaw=true -minecraft\:entity.warden.sonic_charge=true -tfc\:entity.lion.sleep=true -minecraft\:block.chiseled_bookshelf.pickup.enchanted=true -minecraft\:music_disc.strad=true -minecraft\:entity.blaze.ambient=true -minecraft\:block.amethyst_cluster.fall=true -minecraft\:entity.cod.flop=true -minecraft\:entity.zombie_villager.cure=true -minecraft\:entity.dolphin.death=true -minecraft\:entity.warden.step=true -minecraft\:block.anvil.step=true -minecraft\:block.packed_mud.step=true -minecraft\:block.hanging_sign.fall=true -minecraft\:entity.sheep.step=true -minecraft\:entity.parrot.imitate.evoker=true -minecraft\:entity.cat.ambient=true -tfc\:item.ceramic.break=true -minecraft\:block.polished_deepslate.break=true -minecraft\:item.trident.hit=true -minecraft\:entity.magma_cube.hurt=true -minecraft\:block.wooden_pressure_plate.click_on=true -minecraft\:entity.generic.explode=true -minecraft\:block.nether_sprouts.fall=true -create\:depot_plop=true -minecraft\:entity.horse.saddle=true -minecraft\:block.lever.click=true -tfc\:block.wattle.woven=true -tfc\:entity.crocodile.hurt=true -minecraft\:block.roots.break=true -minecraft\:block.nether_wood_pressure_plate.click_off=true -minecraft\:entity.silverfish.ambient=true -create\:fwoomp=true -minecraft\:entity.zombified_piglin.death=true -minecraft\:block.bone_block.hit=true -minecraft\:entity.witch.celebrate=true -minecraft\:block.amethyst_cluster.step=true -tfc\:entity.cougar.death=true -minecraft\:ambient.soul_sand_valley.mood=true -tfc\:entity.alpaca.ambient=true -tfc\:block.large_vessel.close=true -tfc\:entity.bear.attack=true -minecraft\:block.powder_snow.hit=true -minecraft\:block.ancient_debris.place=true -minecraft\:entity.wither.death=true -minecraft\:block.sculk_sensor.break=true -gtceu\:bath=true -minecraft\:entity.ghast.scream=true -minecraft\:block.glass.step=true -minecraft\:block.lodestone.fall=true -minecraft\:block.sculk_catalyst.bloom=true -tfc\:entity.bluegill.death=true -minecraft\:block.cherry_wood_door.close=true -tfc\:entity.lake_trout.death=true -minecraft\:entity.llama.hurt=true -minecraft\:block.mangrove_roots.break=true -minecraft\:ui.stonecutter.select_recipe=true -minecraft\:entity.donkey.death=true -minecraft\:entity.allay.ambient_without_item=true -minecraft\:entity.rabbit.jump=true -astikorcarts\:entity.cart.attach=true -minecraft\:music.nether.basalt_deltas=true -minecraft\:entity.goat.screaming.milk=true -minecraft\:entity.warden.tendril_clicks=true -exposure\:item.camera.shutter_ticking=true -tfc\:block.peat.step=true -minecraft\:block.gravel.step=true -minecraft\:entity.ravager.attack=true -create\:crafter_craft=true -minecraft\:entity.parrot.imitate.blaze=true -minecraft\:entity.sniffer.searching=true -minecraft\:entity.snow_golem.death=true -tfc\:block.tool_rack.place=true -minecraft\:block.pointed_dripstone.hit=true -minecraft\:block.anvil.break=true -minecraft\:music.nether.nether_wastes=true -minecraft\:block.candle.ambient=true -minecraft\:block.nether_bricks.place=true -minecraft\:entity.zombified_piglin.hurt=true -minecraft\:entity.camel.dash=true -minecraft\:block.netherrack.fall=true -minecraft\:entity.ocelot.death=true -create\:worldshaper_place=true -minecraft\:item.shield.break=true -tfc\:block.peat.break=true -minecraft\:entity.player.hurt=true -minecraft\:item.armor.equip_generic=true -minecraft\:block.deepslate_bricks.hit=true -minecraft\:block.lantern.break=true -minecraft\:block.frogspawn.fall=true -tfc\:entity.lion.step=true -minecraft\:entity.turtle.lay_egg=true -create\:schematicannon_finish=true -minecraft\:block.cave_vines.fall=true -minecraft\:entity.wither.shoot=true -create\:train2=true -minecraft\:block.deepslate_tiles.place=true -minecraft\:entity.firework_rocket.twinkle=true -minecraft\:block.spore_blossom.fall=true -create\:train3=true -minecraft\:block.hanging_sign.place=true -minecraft\:block.netherite_block.hit=true -minecraft\:item.chorus_fruit.teleport=true -minecraft\:block.decorated_pot.hit=true -tfc\:entity.pheasant.death=true -minecraft\:block.deepslate.step=true -minecraft\:entity.villager.work_weaponsmith=true -minecraft\:block.chiseled_bookshelf.fall=true -minecraft\:block.gilded_blackstone.place=true -minecraft\:block.medium_amethyst_bud.break=true -minecraft\:entity.salmon.flop=true -gtceu\:cut=true -minecraft\:block.cherry_sapling.place=true -minecraft\:block.mud_bricks.hit=true -minecraft\:block.iron_door.close=true -minecraft\:block.mangrove_roots.fall=true -tfc\:entity.lion.ambient=true -minecraft\:item.armor.equip_gold=true -minecraft\:block.sculk_shrieker.break=true -create\:scroll_value=true -minecraft\:block.soul_sand.break=true -create\:whistle=true -gtceu\:soft_hammer=true -tfc\:entity.wildebeest.ambient=true -minecraft\:entity.generic.drink=true -minecraft\:entity.ghast.hurt=true -minecraft\:block.packed_mud.place=true -minecraft\:item.bucket.fill_axolotl=true -minecraft\:block.azalea_leaves.hit=true -endermanoverhaul\:bubble_pearl_thrown=true -minecraft\:block.cave_vines.step=true -minecraft\:entity.goat.step=true -minecraft\:entity.firework_rocket.blast_far=true -minecraft\:music.nether.crimson_forest=true -tfc\:entity.cougar.attack=true -minecraft\:item.goat_horn.sound.7=false -minecraft\:item.goat_horn.sound.6=false -minecraft\:block.sculk_shrieker.place=true -minecraft\:item.goat_horn.sound.5=false -minecraft\:item.goat_horn.sound.4=false -minecraft\:block.polished_deepslate.hit=true -minecraft\:item.bundle.insert=true -minecraft\:block.nether_bricks.hit=true -minecraft\:block.metal_pressure_plate.click_on=true -tfc\:block.loom.weave=true -tfc\:entity.manatee.flop=true -minecraft\:block.moss.break=true -minecraft\:item.goat_horn.sound.3=false -minecraft\:item.goat_horn.sound.2=false -minecraft\:item.goat_horn.sound.1=false -minecraft\:item.goat_horn.sound.0=false -minecraft\:block.pointed_dripstone.break=true -minecraft\:block.soul_sand.place=true -minecraft\:block.nether_wood_button.click_on=true -tfc\:entity.tfc_wolf.step=true -tfc\:entity.largemouth_bass.death=true -tfc\:entity.crappie.ambient=true -tfc\:item.javelin.throw=true -minecraft\:block.deepslate.fall=true -minecraft\:entity.wandering_trader.drink_milk=true -minecraft\:entity.parrot.imitate.creeper=true -minecraft\:entity.egg.throw=true -minecraft\:entity.magma_cube.squish=true -minecraft\:block.wool.break=true -minecraft\:entity.skeleton.shoot=true -minecraft\:entity.piglin_brute.step=true -gtceu\:screwdriver=true -tfc\:entity.alpaca.death=true -minecraft\:entity.drowned.death=true -minecraft\:block.weeping_vines.hit=true -minecraft\:block.bamboo_wood.hit=true -minecraft\:entity.bee.hurt=true -minecraft\:block.frogspawn.step=true -tfc\:entity.quail.death=true -minecraft\:block.vine.place=true -minecraft\:item.crossbow.loading_end=true -minecraft\:music.overworld.dripstone_caves=true -minecraft\:entity.player.attack.strong=true -tfc\:block.barrel.close=true -minecraft\:block.beehive.shear=true -minecraft\:entity.snow_golem.shoot=true -minecraft\:block.moss.hit=true -minecraft\:entity.panda.pre_sneeze=true -create\:controller_put=true -minecraft\:entity.cat.eat=true -tfc\:entity.jellyfish.flop=true -minecraft\:block.smithing_table.use=true -minecraft\:block.stem.fall=true -minecraft\:block.conduit.activate=true -railways\:conductor_whistle=true -minecraft\:ui.toast.out=true -tfc\:entity.grouse.ambient=true -minecraft\:block.mangrove_roots.step=true -waves\:waves.waves_breaking=true -minecraft\:entity.ender_eye.death=true -minecraft\:block.chorus_flower.death=true -minecraft\:block.deepslate_tiles.break=true -minecraft\:entity.vindicator.ambient=true -minecraft\:entity.frog.hurt=true -minecraft\:entity.puffer_fish.blow_up=true -minecraft\:block.basalt.place=true -minecraft\:block.muddy_mangrove_roots.place=true -minecraft\:music.overworld.sparse_jungle=true -minecraft\:entity.glow_squid.hurt=true -minecraft\:entity.zoglin.step=true -minecraft\:entity.elder_guardian.flop=true -minecraft\:entity.lightning_bolt.impact=true -minecraft\:entity.panda.cant_breed=true -minecraft\:item.book.page_turn=true -minecraft\:block.pink_petals.hit=true -minecraft\:entity.bat.hurt=true -minecraft\:entity.fox.sleep=true -minecraft\:block.medium_amethyst_bud.place=true -minecraft\:music.overworld.old_growth_taiga=true -minecraft\:block.sign.waxed_interact_fail=true -minecraft\:entity.glow_squid.death=true -minecraft\:ui.cartography_table.take_result=true -minecraft\:entity.zombie.attack_wooden_door=true -minecraft\:entity.illusioner.cast_spell=true -minecraft\:entity.salmon.death=true -minecraft\:entity.hostile.hurt=true -minecraft\:block.anvil.place=true -minecraft\:block.brewing_stand.brew=true -minecraft\:block.bamboo.break=true -create\:whistle_train_manual_low_end=true -minecraft\:block.glass.hit=true -minecraft\:block.shroomlight.fall=true -create\:deny=true -tfc\:item.armor.equip_copper=true -minecraft\:item.crop.plant=true -minecraft\:music_disc.chirp=true -tfc\:entity.deer.hurt=true -minecraft\:block.frogspawn.hit=true -minecraft\:entity.chicken.hurt=true -minecraft\:block.furnace.fire_crackle=true -minecraft\:entity.horse.step_wood=true -tfc\:entity.penguin.death=true -minecraft\:block.note_block.bell=true -create\:depot_slide=true -minecraft\:block.nether_wood.hit=true -minecraft\:entity.warden.agitated=true -minecraft\:entity.panda.worried_ambient=true -minecraft\:block.copper.step=true -minecraft\:entity.wolf.hurt=true -minecraft\:entity.enderman.teleport=true -minecraft\:block.lodestone.hit=true -minecraft\:block.gravel.fall=true -minecraft\:block.pointed_dripstone.step=true -minecraft\:entity.skeleton.death=true -minecraft\:block.deepslate_tiles.hit=true -minecraft\:entity.warden.sonic_boom=true -minecraft\:entity.llama.angry=true -minecraft\:entity.glow_item_frame.add_item=true -minecraft\:entity.wither.spawn=true -minecraft\:block.wool.place=true -minecraft\:block.stem.step=true -minecraft\:block.hanging_sign.break=true -minecraft\:block.gravel.break=true -minecraft\:block.vine.break=true -minecraft\:entity.warden.listening=true -minecraft\:block.basalt.hit=true -minecraft\:block.smoker.smoke=true -minecraft\:entity.wolf.growl=true -minecraft\:music_disc.5=true -minecraft\:entity.pillager.death=true -minecraft\:entity.ravager.step=true -create\:wrench_remove=true -minecraft\:item.axe.scrape=true -minecraft\:item.crossbow.loading_middle=true -minecraft\:entity.evoker.celebrate=true -minecraft\:block.copper.fall=true -minecraft\:entity.drowned.shoot=true -minecraft\:block.wood.hit=true -minecraft\:entity.zombie.hurt=true -gtceu\:mortar=true -minecraft\:block.composter.ready=true -tfc\:entity.sabertooth.hurt=true -exposure\:item.camera.interplanar_projector.project=true -minecraft\:entity.frog.eat=true -minecraft\:entity.parrot.imitate.illusioner=true -minecraft\:block.nether_bricks.step=true -tfc\:entity.crocodile.ambient=true -minecraft\:entity.illusioner.ambient=true -minecraft\:ambient.nether_wastes.additions=true -endermanoverhaul\:tall_enderman_death=true -chalk\:item.chalk_box_close=true -minecraft\:entity.camel.sit=true -minecraft\:entity.parrot.fly=true -tfc\:block.peat.fall=true -minecraft\:entity.boat.paddle_water=true -tfc\:entity.tfc_wolf.attack=true -minecraft\:entity.stray.ambient=true -minecraft\:entity.horse.step=true -tfc\:entity.bongo.hurt=true -tfc\:item.armor.equip_black_bronze=true -minecraft\:entity.enderman.hurt=true -minecraft\:item.shovel.flatten=true -minecraft\:item.bottle.empty=true -minecraft\:block.note_block.basedrum=true -minecraft\:block.sculk.charge=true -minecraft\:entity.item_frame.rotate_item=true -minecraft\:item.axe.strip=true -minecraft\:entity.axolotl.idle_air=true -minecraft\:block.netherrack.step=true -tfc\:entity.dog.ambient=true -minecraft\:entity.puffer_fish.ambient=true -createaddition\:electric_motor_buzz=true -minecraft\:entity.panda.hurt=true -minecraft\:block.powder_snow.step=true -tfc\:entity.hyena.sleep=true -tfc\:entity.bear.death=true -minecraft\:entity.shulker.close=true -minecraft\:block.shroomlight.step=true -tfc\:block.peat.place=true -tfc\:entity.tfc_wolf.sleep=true -minecraft\:entity.ender_eye.launch=true -tfc\:block.thatch.break=true -minecraft\:block.bamboo.place=true -tfc\:entity.crocodile.death=true -minecraft\:block.pointed_dripstone.drip_water_into_cauldron=true -tfc\:entity.dog.death=true -minecraft\:block.shulker_box.open=true -minecraft\:block.piston.extend=true -tfc\:entity.gazelle.death=true -minecraft\:entity.slime.attack=true -minecraft\:block.rooted_dirt.break=true -tfc\:entity.tiger.ambient=true -minecraft\:entity.goat.ram_impact=true -tfc\:block.crop.stick_add=true -minecraft\:entity.warden.hurt=true -minecraft\:ui.stonecutter.take_result=true -minecraft\:block.wool.step=true -tfc\:entity.hyena.ambient=true -minecraft\:block.bamboo_wood_fence_gate.open=true -tfc\:random.rock_slide_long=true -tfc\:entity.sabertooth.attack=true -minecraft\:block.cherry_wood_hanging_sign.break=true -minecraft\:entity.creeper.hurt=true -minecraft\:block.note_block.imitate.piglin=true -tfc\:block.thatch.hit=true -minecraft\:item.bucket.empty_axolotl=true -minecraft\:block.tripwire.click_off=true -minecraft\:entity.wandering_trader.ambient=true -minecraft\:block.iron_trapdoor.open=true -minecraft\:music.nether.warped_forest=true -minecraft\:block.suspicious_sand.step=true -minecraft\:entity.piglin_brute.angry=true -minecraft\:block.bamboo_wood_door.close=true -minecraft\:entity.spider.hurt=true -minecraft\:entity.witch.drink=true -endermanoverhaul\:tall_enderman_stare=true -minecraft\:entity.player.splash.high_speed=true -minecraft\:entity.donkey.hurt=true -minecraft\:entity.sniffer.eat=true -minecraft\:entity.snow_golem.hurt=true -minecraft\:block.bamboo_wood_fence_gate.close=true -minecraft\:block.nether_bricks.fall=true -minecraft\:block.beacon.power_select=true -minecraft\:block.suspicious_sand.break=true -minecraft\:block.snow.step=true -minecraft\:block.suspicious_gravel.hit=true -create\:whistle_train_manual_end=true -exposure\:item.photograph_frame.rotate_item=true -minecraft\:block.anvil.use=true -minecraft\:item.goat_horn.play=true -minecraft\:entity.minecart.inside=true -minecraft\:entity.wither.hurt=true -minecraft\:block.nylium.place=true -minecraft\:entity.shulker.ambient=true -tfc\:entity.largemouth_bass.flop=true -tfc\:entity.cougar.step=true -minecraft\:entity.tadpole.hurt=true -minecraft\:block.big_dripleaf.tilt_up=true -gtceu\:forge_hammer=true -minecraft\:block.froglight.step=true -chalk\:item.chalk_box_change=true -endermanoverhaul\:dark_oak_enderman_stare=true -minecraft\:block.suspicious_sand.fall=true -minecraft\:block.sculk_sensor.clicking=true -tfc\:entity.quail.step=true -minecraft\:entity.villager.hurt=true -minecraft\:block.suspicious_sand.place=true -minecraft\:block.coral_block.hit=true -minecraft\:entity.pillager.hurt=true -tfc\:entity.crocodile.sleep=true -create\:cogs=true -minecraft\:entity.cod.hurt=true -minecraft\:entity.parrot.imitate.skeleton=true -minecraft\:entity.piglin.angry=true -minecraft\:entity.zoglin.angry=true -tfc\:entity.musk_ox.hurt=true -minecraft\:entity.glow_item_frame.rotate_item=true -tfc\:entity.sabertooth.sleep=true -minecraft\:block.mangrove_roots.hit=true -minecraft\:block.powder_snow.fall=true -minecraft\:entity.warden.attack_impact=true -minecraft\:block.muddy_mangrove_roots.break=true -minecraft\:block.azalea.place=true -minecraft\:entity.ravager.ambient=true -minecraft\:entity.strider.death=true -minecraft\:ambient.underwater.exit=true -minecraft\:entity.parrot.imitate.stray=true -minecraft\:entity.slime.jump=true -create\:crafter_click_compounded_1=true -minecraft\:item.brush.brushing.sand=true -minecraft\:entity.mule.hurt=true -minecraft\:block.rooted_dirt.step=true -minecraft\:entity.axolotl.hurt=true -minecraft\:entity.villager.no=true -minecraft\:block.azalea.hit=true -tfc\:item.knapping.clay=true -minecraft\:music.overworld.swamp=true -minecraft\:music.creative=true -tfc\:entity.crocodile.step=true -minecraft\:entity.villager.work_fletcher=true -minecraft\:entity.villager.work_mason=true -create\:haunted_bell_use=true -minecraft\:entity.skeleton.converted_to_stray=true -create\:controller_click=true -minecraft\:entity.allay.death=true -minecraft\:block.spore_blossom.step=true -create\:spout=true -minecraft\:music.overworld.desert=true -minecraft\:block.suspicious_sand.hit=true -minecraft\:block.wooden_door.close=true -minecraft\:block.nylium.break=true -tfc\:entity.yak.step=true -minecraft\:item.axe.wax_off=true -minecraft\:entity.evoker.cast_spell=true -minecraft\:particle.soul_escape=true -minecraft\:block.chiseled_bookshelf.step=true -minecraft\:block.froglight.fall=true -minecraft\:block.honey_block.place=true -tfc\:entity.bear.ambient=true -minecraft\:entity.mule.chest=true -minecraft\:block.scaffolding.place=true -tfc\:block.large_vessel.open=true -tfc\:entity.deer.death=true -minecraft\:block.netherrack.hit=true -minecraft\:entity.wandering_trader.drink_potion=true -create\:contraption_assemble_compounded_1=true -minecraft\:block.snow.fall=true -minecraft\:entity.tropical_fish.hurt=true -minecraft\:block.cherry_sapling.break=true -minecraft\:entity.polar_bear.death=true -minecraft\:block.pink_petals.fall=true -minecraft\:block.cherry_wood_hanging_sign.hit=true -tfc\:entity.musk_ox.ambient=true -minecraft\:music.overworld.deep_dark=true -tfc\:block.barrel.drip=true -minecraft\:block.chiseled_bookshelf.place=true -minecraft\:block.cherry_wood_door.open=true -minecraft\:item.lodestone_compass.lock=true -exposure\:item.camera.filter_insert=true -minecraft\:block.note_block.imitate.skeleton=true -tfc\:entity.penguin.step=true -createaddition\:electric_charge=true -minecraft\:block.rooted_dirt.fall=true -minecraft\:block.lantern.hit=true -minecraft\:entity.sniffer.idle=true -tfc\:entity.hyena.step=true -minecraft\:block.grass.fall=true -minecraft\:entity.evoker_fangs.attack=true -minecraft\:entity.witch.throw=true -minecraft\:block.crop.break=true -minecraft\:entity.donkey.chest=true -minecraft\:item.brush.brushing.generic=true -minecraft\:block.cherry_leaves.step=true -minecraft\:block.cherry_wood_hanging_sign.place=true -tfc\:entity.gazelle.step=true -minecraft\:entity.zombie.destroy_egg=true -minecraft\:entity.drowned.step=true -minecraft\:block.muddy_mangrove_roots.hit=true -minecraft\:block.wool.fall=true -minecraft\:entity.endermite.step=true -minecraft\:entity.parrot.imitate.piglin_brute=true -create\:crafter_click=true -minecraft\:entity.shulker_bullet.hit=true -minecraft\:block.note_block.iron_xylophone=true -minecraft\:entity.vindicator.death=true -tfc\:entity.deer.ambient=true -minecraft\:block.nether_bricks.break=true -minecraft\:entity.warden.emerge=true -minecraft\:block.small_dripleaf.hit=true -minecraft\:ambient.soul_sand_valley.loop=true -minecraft\:item.armor.equip_netherite=true -minecraft\:item.brush.brushing.sand.complete=true -minecraft\:block.barrel.open=true -gtceu\:miner=true -tfc\:item.knapping.stone=true -minecraft\:entity.phantom.bite=true -minecraft\:entity.sheep.death=true -minecraft\:block.grass.step=true -minecraft\:entity.dragon_fireball.explode=true -minecraft\:entity.mooshroom.shear=true -minecraft\:entity.goat.horn_break=true -tfc\:block.thatch.place=true -minecraft\:entity.iron_golem.hurt=true -minecraft\:entity.llama.spit=true -minecraft\:ambient.basalt_deltas.additions=true -minecraft\:entity.goat.milk=true -minecraft\:entity.slime.jump_small=true -minecraft\:entity.frog.lay_spawn=true -chalk\:item.chalk_draw=true -tfc\:entity.grouse.hurt=true -tfc\:block.thin.step=true -minecraft\:block.nether_wood_trapdoor.open=true -minecraft\:block.lantern.place=true -minecraft\:block.moss.place=true -minecraft\:block.wood.break=true -minecraft\:enchant.thorns.hit=true -tfc\:entity.yak.ambient=true -minecraft\:block.scaffolding.break=true -minecraft\:block.composter.fill=true -immersive_aircraft\:propeller_tiny=true -minecraft\:item.book.put=true diff --git a/config/sound_physics_remastered/occlusion.properties b/config/sound_physics_remastered/occlusion.properties index b0f3a0daf..53adea71f 100644 --- a/config/sound_physics_remastered/occlusion.properties +++ b/config/sound_physics_remastered/occlusion.properties @@ -9,211 +9,211 @@ # By block ID: # minecraft\:oak_log=1.0 -# Slime Block (Sound Type) -SLIME_BLOCK=1.0 -# Copper (Sound Type) -COPPER=1.0 -# Cherry Sapling (Sound Type) -CHERRY_SAPLING=1.0 -# Roots (Sound Type) -ROOTS=0.0 -# Shroomlight (Sound Type) -SHROOMLIGHT=1.0 -# Froglight (Sound Type) -FROGLIGHT=1.0 -# Rooted Dirt (Sound Type) -ROOTED_DIRT=1.0 -# Nether Gold Ore (Sound Type) -NETHER_GOLD_ORE=1.0 -# Suspicious Gravel (Sound Type) -SUSPICIOUS_GRAVEL=1.0 -# Flowering Azalea (Sound Type) -FLOWERING_AZALEA=1.0 +# Amethyst (Sound Type) +AMETHYST=1.0 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=1.0 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=1.0 # Anvil (Sound Type) ANVIL=1.0 -# Decorated Pot Cracked (Sound Type) -DECORATED_POT_CRACKED=1.0 -# Powder Snow (Sound Type) -POWDER_SNOW=0.1 -# Spore Blossom (Sound Type) -SPORE_BLOSSOM=0.0 -# Soul Soil (Sound Type) -SOUL_SOIL=1.0 -# Wet Grass (Sound Type) -WET_GRASS=0.1 -# Deepslate Bricks (Sound Type) -DEEPSLATE_BRICKS=1.0 +# Azalea (Sound Type) +AZALEA=1.0 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=1.0 +# Bamboo (Sound Type) +BAMBOO=0.1 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.1 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=1.0 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=1.0 +# Basalt (Sound Type) +BASALT=1.0 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=1.0 +# Bone Block (Sound Type) +BONE_BLOCK=1.0 +# Calcite (Sound Type) +CALCITE=1.0 +# Candle (Sound Type) +CANDLE=1.0 +# Cave Vines (Sound Type) +CAVE_VINES=1.0 +# Chain (Sound Type) +CHAIN=0.0 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=1.0 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=1.0 +# Cherry Wood (Sound Type) +CHERRY_WOOD=1.0 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=1.0 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=1.0 +# Copper (Sound Type) +COPPER=1.0 +# Coral Block (Sound Type) +CORAL_BLOCK=1.0 # Crop (Sound Type) CROP=0.0 # Decorated Pot (Sound Type) DECORATED_POT=1.0 -# Scaffolding (Sound Type) -SCAFFOLDING=0.0 -# Nether Bricks (Sound Type) -NETHER_BRICKS=1.0 -# Vine (Sound Type) -VINE=0.0 -# Medium Amethyst Bud (Sound Type) -MEDIUM_AMETHYST_BUD=0.0 -# Calcite (Sound Type) -CALCITE=1.0 -# Bamboo Wood Hanging Sign (Sound Type) -BAMBOO_WOOD_HANGING_SIGN=1.0 -# Gilded Blackstone (Sound Type) -GILDED_BLACKSTONE=1.0 -# Bamboo Wood (Sound Type) -BAMBOO_WOOD=1.0 -# Ancient Debris (Sound Type) -ANCIENT_DEBRIS=1.0 -# Bone Block (Sound Type) -BONE_BLOCK=1.0 -# Sculk (Sound Type) -SCULK=1.0 -# Wood (Sound Type) -WOOD=1.0 -# Netherite Block (Sound Type) -NETHERITE_BLOCK=1.0 -# Soul Sand (Sound Type) -SOUL_SAND=1.0 -# Sculk Vein (Sound Type) -SCULK_VEIN=1.0 -# Twisting Vines (Sound Type) -TWISTING_VINES=0.0 -# Small Amethyst Bud (Sound Type) -SMALL_AMETHYST_BUD=0.0 -# Basalt (Sound Type) -BASALT=1.0 -# Bamboo Sapling (Sound Type) -BAMBOO_SAPLING=0.1 -# Nether Wart (Sound Type) -NETHER_WART=1.0 -# Nether Wood Hanging Sign (Sound Type) -NETHER_WOOD_HANGING_SIGN=1.0 -# Sand (Sound Type) -SAND=1.0 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=1.0 +# Deepslate (Sound Type) +DEEPSLATE=1.0 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.0 # Deepslate Tiles (Sound Type) DEEPSLATE_TILES=1.0 # Dripstone Block (Sound Type) DRIPSTONE_BLOCK=1.0 -# Mud (Sound Type) -MUD=1.0 -# Weeping Vines (Sound Type) -WEEPING_VINES=0.0 -# Wart Block (Sound Type) -WART_BLOCK=1.0 -# Amethyst (Sound Type) -AMETHYST=1.0 -# Hanging Sign (Sound Type) -HANGING_SIGN=1.0 -# Glow Lichen (Sound Type) -GLOW_LICHEN=0.0 -# Large Amethyst Bud (Sound Type) -LARGE_AMETHYST_BUD=0.0 -# Sculk Sensor (Sound Type) -SCULK_SENSOR=1.0 -# Azalea (Sound Type) -AZALEA=1.0 -# Stone (Sound Type) -STONE=1.0 -# Fungus (Sound Type) -FUNGUS=0.0 -# Small Dripleaf (Sound Type) -SMALL_DRIPLEAF=0.0 -# Lantern (Sound Type) -LANTERN=1.0 -# Lodestone (Sound Type) -LODESTONE=1.0 -# Pointed Dripstone (Sound Type) -POINTED_DRIPSTONE=0.0 -# Big Dripleaf (Sound Type) -BIG_DRIPLEAF=1.0 -# Chiseled Bookshelf (Sound Type) -CHISELED_BOOKSHELF=1.0 -# Candle (Sound Type) -CANDLE=1.0 -# Bamboo (Sound Type) -BAMBOO=0.1 -# Nether Ore (Sound Type) -NETHER_ORE=1.0 -# Cave Vines (Sound Type) -CAVE_VINES=1.0 -# Glass (Sound Type) -GLASS=0.1 -# Ladder (Sound Type) -LADDER=0.0 -# Stem (Sound Type) -STEM=1.0 -# Hard Crop (Sound Type) -HARD_CROP=1.0 -# Chain (Sound Type) -CHAIN=0.0 -# Nether Sprouts (Sound Type) -NETHER_SPROUTS=1.0 -# Wool (Sound Type) -WOOL=1.5 -# Moss Carpet (Sound Type) -MOSS_CARPET=0.1 -# Cherry Leaves (Sound Type) -CHERRY_LEAVES=1.0 -# Nylium (Sound Type) -NYLIUM=1.0 -# Packed Mud (Sound Type) -PACKED_MUD=1.0 -# Metal (Sound Type) -METAL=1.0 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=1.0 +# Froglight (Sound Type) +FROGLIGHT=1.0 # Frogspawn (Sound Type) FROGSPAWN=1.0 -# Sweet Berry Bush (Sound Type) -SWEET_BERRY_BUSH=0.0 -# Sculk Shrieker (Sound Type) -SCULK_SHRIEKER=1.0 -# Nether Wood (Sound Type) -NETHER_WOOD=1.0 -# Amethyst Cluster (Sound Type) -AMETHYST_CLUSTER=1.0 -# Moss (Sound Type) -MOSS=0.75 -# Sculk Catalyst (Sound Type) -SCULK_CATALYST=1.0 -# Muddy Mangrove Roots (Sound Type) -MUDDY_MANGROVE_ROOTS=1.0 -# Deepslate (Sound Type) -DEEPSLATE=1.0 -# Snow (Sound Type) -SNOW=0.1 -# Coral Block (Sound Type) -CORAL_BLOCK=1.0 -# Hanging Roots (Sound Type) -HANGING_ROOTS=1.0 -# Mangrove Roots (Sound Type) -MANGROVE_ROOTS=1.0 -# Mud Bricks (Sound Type) -MUD_BRICKS=1.0 -# Cherry Wood Hanging Sign (Sound Type) -CHERRY_WOOD_HANGING_SIGN=1.0 -# Polished Deepslate (Sound Type) -POLISHED_DEEPSLATE=1.0 +# Fungus (Sound Type) +FUNGUS=0.0 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=1.0 +# Glass (Sound Type) +GLASS=0.1 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.0 # Grass (Sound Type) GRASS=1.0 # Gravel (Sound Type) GRAVEL=1.0 +# Hanging Roots (Sound Type) +HANGING_ROOTS=1.0 +# Hanging Sign (Sound Type) +HANGING_SIGN=1.0 +# Hard Crop (Sound Type) +HARD_CROP=1.0 # Honey Block (Sound Type) HONEY_BLOCK=0.5 -# Azalea Leaves (Sound Type) -AZALEA_LEAVES=1.0 -# Cherry Wood (Sound Type) -CHERRY_WOOD=1.0 -# Tuff (Sound Type) -TUFF=1.0 +# Ladder (Sound Type) +LADDER=0.0 +# Lantern (Sound Type) +LANTERN=1.0 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.0 # Lily Pad (Sound Type) LILY_PAD=0.0 +# Lodestone (Sound Type) +LODESTONE=1.0 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=1.0 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.0 +# Metal (Sound Type) +METAL=1.0 +# Moss (Sound Type) +MOSS=0.75 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.1 +# Mud (Sound Type) +MUD=1.0 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=1.0 +# Mud Bricks (Sound Type) +MUD_BRICKS=1.0 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.0 # Netherrack (Sound Type) NETHERRACK=1.0 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.0 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.0 +# Nether Ore (Sound Type) +NETHER_ORE=1.0 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=1.0 +# Nether Wart (Sound Type) +NETHER_WART=1.0 +# Nether Wood (Sound Type) +NETHER_WOOD=1.0 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=1.0 +# Nylium (Sound Type) +NYLIUM=1.0 +# Packed Mud (Sound Type) +PACKED_MUD=1.0 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.0 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.0 +# Powder Snow (Sound Type) +POWDER_SNOW=0.1 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=1.0 +# Roots (Sound Type) +ROOTS=0.0 +# Sand (Sound Type) +SAND=1.0 +# Scaffolding (Sound Type) +SCAFFOLDING=0.0 +# Sculk (Sound Type) +SCULK=1.0 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=1.0 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=1.0 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=1.0 +# Sculk Vein (Sound Type) +SCULK_VEIN=1.0 +# Shroomlight (Sound Type) +SHROOMLIGHT=1.0 +# Slime Block (Sound Type) +SLIME_BLOCK=1.0 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.0 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.0 +# Snow (Sound Type) +SNOW=0.1 +# Soul Sand (Sound Type) +SOUL_SAND=1.0 +# Soul Soil (Sound Type) +SOUL_SOIL=1.0 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.0 +# Stem (Sound Type) +STEM=1.0 +# Stone (Sound Type) +STONE=1.0 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=1.0 # Suspicious Sand (Sound Type) SUSPICIOUS_SAND=1.0 -# Water (Block) -minecraft\:water=0.25 -# Lava (Block) -minecraft\:lava=0.75 +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.0 +# Tuff (Sound Type) +TUFF=1.0 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.0 +# Vine (Sound Type) +VINE=0.0 +# Wart Block (Sound Type) +WART_BLOCK=1.0 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.0 +# Wet Grass (Sound Type) +WET_GRASS=0.1 +# Wood (Sound Type) +WOOD=1.0 +# Wool (Sound Type) +WOOL=1.5 # Jukebox (Block) minecraft\:jukebox=0.0 +# Lava (Block) +minecraft\:lava=0.75 +# Water (Block) +minecraft\:water=0.25 diff --git a/config/sound_physics_remastered/reflectivity.properties b/config/sound_physics_remastered/reflectivity.properties index f6471f930..9386f0971 100644 --- a/config/sound_physics_remastered/reflectivity.properties +++ b/config/sound_physics_remastered/reflectivity.properties @@ -9,205 +9,205 @@ # By block ID: # minecraft\:oak_log=1.0 -# Slime Block (Sound Type) -SLIME_BLOCK=0.5 -# Copper (Sound Type) -COPPER=1.25 -# Cherry Sapling (Sound Type) -CHERRY_SAPLING=0.5 -# Roots (Sound Type) -ROOTS=0.5 -# Shroomlight (Sound Type) -SHROOMLIGHT=0.5 -# Froglight (Sound Type) -FROGLIGHT=0.5 -# Rooted Dirt (Sound Type) -ROOTED_DIRT=0.5 -# Nether Gold Ore (Sound Type) -NETHER_GOLD_ORE=1.1 -# Suspicious Gravel (Sound Type) -SUSPICIOUS_GRAVEL=0.5 -# Flowering Azalea (Sound Type) -FLOWERING_AZALEA=0.5 +# Amethyst (Sound Type) +AMETHYST=1.5 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=0.5 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=0.5 # Anvil (Sound Type) ANVIL=0.5 -# Decorated Pot Cracked (Sound Type) -DECORATED_POT_CRACKED=0.5 -# Powder Snow (Sound Type) -POWDER_SNOW=0.5 -# Spore Blossom (Sound Type) -SPORE_BLOSSOM=0.5 -# Soul Soil (Sound Type) -SOUL_SOIL=0.2 -# Wet Grass (Sound Type) -WET_GRASS=0.5 -# Deepslate Bricks (Sound Type) -DEEPSLATE_BRICKS=1.5 +# Azalea (Sound Type) +AZALEA=0.5 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=0.5 +# Bamboo (Sound Type) +BAMBOO=0.5 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.5 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=0.5 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=0.5 +# Basalt (Sound Type) +BASALT=1.5 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=0.5 +# Bone Block (Sound Type) +BONE_BLOCK=1.5 +# Calcite (Sound Type) +CALCITE=1.5 +# Candle (Sound Type) +CANDLE=0.5 +# Cave Vines (Sound Type) +CAVE_VINES=0.5 +# Chain (Sound Type) +CHAIN=0.5 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=0.5 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=0.5 +# Cherry Wood (Sound Type) +CHERRY_WOOD=0.5 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=0.5 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=0.5 +# Copper (Sound Type) +COPPER=1.25 +# Coral Block (Sound Type) +CORAL_BLOCK=0.2 # Crop (Sound Type) CROP=0.5 # Decorated Pot (Sound Type) DECORATED_POT=0.5 -# Scaffolding (Sound Type) -SCAFFOLDING=0.5 -# Nether Bricks (Sound Type) -NETHER_BRICKS=1.5 -# Vine (Sound Type) -VINE=0.5 -# Medium Amethyst Bud (Sound Type) -MEDIUM_AMETHYST_BUD=0.5 -# Calcite (Sound Type) -CALCITE=1.5 -# Bamboo Wood Hanging Sign (Sound Type) -BAMBOO_WOOD_HANGING_SIGN=0.5 -# Gilded Blackstone (Sound Type) -GILDED_BLACKSTONE=0.5 -# Bamboo Wood (Sound Type) -BAMBOO_WOOD=0.5 -# Ancient Debris (Sound Type) -ANCIENT_DEBRIS=0.5 -# Bone Block (Sound Type) -BONE_BLOCK=1.5 -# Sculk (Sound Type) -SCULK=0.5 -# Wood (Sound Type) -WOOD=0.4 -# Netherite Block (Sound Type) -NETHERITE_BLOCK=1.5 -# Soul Sand (Sound Type) -SOUL_SAND=0.2 -# Sculk Vein (Sound Type) -SCULK_VEIN=0.5 -# Twisting Vines (Sound Type) -TWISTING_VINES=0.5 -# Small Amethyst Bud (Sound Type) -SMALL_AMETHYST_BUD=0.5 -# Basalt (Sound Type) -BASALT=1.5 -# Bamboo Sapling (Sound Type) -BAMBOO_SAPLING=0.5 -# Nether Wart (Sound Type) -NETHER_WART=0.5 -# Nether Wood Hanging Sign (Sound Type) -NETHER_WOOD_HANGING_SIGN=0.5 -# Sand (Sound Type) -SAND=0.2 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=0.5 +# Deepslate (Sound Type) +DEEPSLATE=1.5 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.5 # Deepslate Tiles (Sound Type) DEEPSLATE_TILES=1.5 # Dripstone Block (Sound Type) DRIPSTONE_BLOCK=0.5 -# Mud (Sound Type) -MUD=0.5 -# Weeping Vines (Sound Type) -WEEPING_VINES=0.5 -# Wart Block (Sound Type) -WART_BLOCK=0.5 -# Amethyst (Sound Type) -AMETHYST=1.5 -# Hanging Sign (Sound Type) -HANGING_SIGN=0.5 -# Glow Lichen (Sound Type) -GLOW_LICHEN=0.5 -# Large Amethyst Bud (Sound Type) -LARGE_AMETHYST_BUD=0.5 -# Sculk Sensor (Sound Type) -SCULK_SENSOR=0.5 -# Azalea (Sound Type) -AZALEA=0.5 -# Stone (Sound Type) -STONE=1.5 -# Fungus (Sound Type) -FUNGUS=0.5 -# Small Dripleaf (Sound Type) -SMALL_DRIPLEAF=0.5 -# Lantern (Sound Type) -LANTERN=0.5 -# Lodestone (Sound Type) -LODESTONE=0.5 -# Pointed Dripstone (Sound Type) -POINTED_DRIPSTONE=0.5 -# Big Dripleaf (Sound Type) -BIG_DRIPLEAF=0.5 -# Chiseled Bookshelf (Sound Type) -CHISELED_BOOKSHELF=0.5 -# Candle (Sound Type) -CANDLE=0.5 -# Bamboo (Sound Type) -BAMBOO=0.5 -# Nether Ore (Sound Type) -NETHER_ORE=1.1 -# Cave Vines (Sound Type) -CAVE_VINES=0.5 -# Glass (Sound Type) -GLASS=0.75 -# Ladder (Sound Type) -LADDER=0.5 -# Stem (Sound Type) -STEM=0.4 -# Hard Crop (Sound Type) -HARD_CROP=0.5 -# Chain (Sound Type) -CHAIN=0.5 -# Nether Sprouts (Sound Type) -NETHER_SPROUTS=0.5 -# Wool (Sound Type) -WOOL=0.1 -# Moss Carpet (Sound Type) -MOSS_CARPET=0.5 -# Cherry Leaves (Sound Type) -CHERRY_LEAVES=0.5 -# Nylium (Sound Type) -NYLIUM=0.5 -# Packed Mud (Sound Type) -PACKED_MUD=0.5 -# Metal (Sound Type) -METAL=1.25 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=0.5 +# Froglight (Sound Type) +FROGLIGHT=0.5 # Frogspawn (Sound Type) FROGSPAWN=0.5 -# Sweet Berry Bush (Sound Type) -SWEET_BERRY_BUSH=0.5 -# Sculk Shrieker (Sound Type) -SCULK_SHRIEKER=0.5 -# Nether Wood (Sound Type) -NETHER_WOOD=0.5 -# Amethyst Cluster (Sound Type) -AMETHYST_CLUSTER=0.5 -# Moss (Sound Type) -MOSS=0.1 -# Sculk Catalyst (Sound Type) -SCULK_CATALYST=0.5 -# Muddy Mangrove Roots (Sound Type) -MUDDY_MANGROVE_ROOTS=0.5 -# Deepslate (Sound Type) -DEEPSLATE=1.5 -# Snow (Sound Type) -SNOW=0.15 -# Coral Block (Sound Type) -CORAL_BLOCK=0.2 -# Hanging Roots (Sound Type) -HANGING_ROOTS=0.5 -# Mangrove Roots (Sound Type) -MANGROVE_ROOTS=0.5 -# Mud Bricks (Sound Type) -MUD_BRICKS=0.5 -# Cherry Wood Hanging Sign (Sound Type) -CHERRY_WOOD_HANGING_SIGN=0.5 -# Polished Deepslate (Sound Type) -POLISHED_DEEPSLATE=1.5 +# Fungus (Sound Type) +FUNGUS=0.5 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=0.5 +# Glass (Sound Type) +GLASS=0.75 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.5 # Grass (Sound Type) GRASS=0.3 # Gravel (Sound Type) GRAVEL=0.3 +# Hanging Roots (Sound Type) +HANGING_ROOTS=0.5 +# Hanging Sign (Sound Type) +HANGING_SIGN=0.5 +# Hard Crop (Sound Type) +HARD_CROP=0.5 # Honey Block (Sound Type) HONEY_BLOCK=0.1 -# Azalea Leaves (Sound Type) -AZALEA_LEAVES=0.5 -# Cherry Wood (Sound Type) -CHERRY_WOOD=0.5 -# Tuff (Sound Type) -TUFF=1.5 +# Ladder (Sound Type) +LADDER=0.5 +# Lantern (Sound Type) +LANTERN=0.5 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.5 # Lily Pad (Sound Type) LILY_PAD=0.5 +# Lodestone (Sound Type) +LODESTONE=0.5 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=0.5 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.5 +# Metal (Sound Type) +METAL=1.25 +# Moss (Sound Type) +MOSS=0.1 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.5 +# Mud (Sound Type) +MUD=0.5 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=0.5 +# Mud Bricks (Sound Type) +MUD_BRICKS=0.5 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.5 # Netherrack (Sound Type) NETHERRACK=1.1 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.5 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.1 +# Nether Ore (Sound Type) +NETHER_ORE=1.1 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=0.5 +# Nether Wart (Sound Type) +NETHER_WART=0.5 +# Nether Wood (Sound Type) +NETHER_WOOD=0.5 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=0.5 +# Nylium (Sound Type) +NYLIUM=0.5 +# Packed Mud (Sound Type) +PACKED_MUD=0.5 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.5 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.5 +# Powder Snow (Sound Type) +POWDER_SNOW=0.5 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=0.5 +# Roots (Sound Type) +ROOTS=0.5 +# Sand (Sound Type) +SAND=0.2 +# Scaffolding (Sound Type) +SCAFFOLDING=0.5 +# Sculk (Sound Type) +SCULK=0.5 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=0.5 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=0.5 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=0.5 +# Sculk Vein (Sound Type) +SCULK_VEIN=0.5 +# Shroomlight (Sound Type) +SHROOMLIGHT=0.5 +# Slime Block (Sound Type) +SLIME_BLOCK=0.5 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.5 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.5 +# Snow (Sound Type) +SNOW=0.15 +# Soul Sand (Sound Type) +SOUL_SAND=0.2 +# Soul Soil (Sound Type) +SOUL_SOIL=0.2 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.5 +# Stem (Sound Type) +STEM=0.4 +# Stone (Sound Type) +STONE=1.5 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=0.5 # Suspicious Sand (Sound Type) SUSPICIOUS_SAND=0.5 +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.5 +# Tuff (Sound Type) +TUFF=1.5 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.5 +# Vine (Sound Type) +VINE=0.5 +# Wart Block (Sound Type) +WART_BLOCK=0.5 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.5 +# Wet Grass (Sound Type) +WET_GRASS=0.5 +# Wood (Sound Type) +WOOD=0.4 +# Wool (Sound Type) +WOOL=0.1 diff --git a/config/sound_physics_remastered/sound_rates.properties b/config/sound_physics_remastered/sound_rates.properties new file mode 100644 index 000000000..9ff573f0d --- /dev/null +++ b/config/sound_physics_remastered/sound_rates.properties @@ -0,0 +1,2303 @@ +# Max sounds per tick. +# Set to '-1' for an unlimited number of sounds per tick processed. +# Set to '0' to disable sound physics for that sound. +# Set to '>=1' to configure the maximum number of sounds per tick processed. +# This can help prevent lag when some mod or mechanism produces hundreds of sounds per tick. + +minecraft\:ambient.basalt_deltas.additions=-1 +minecraft\:ambient.basalt_deltas.loop=-1 +minecraft\:ambient.basalt_deltas.mood=-1 +minecraft\:ambient.cave=-1 +minecraft\:ambient.crimson_forest.additions=-1 +minecraft\:ambient.crimson_forest.loop=-1 +minecraft\:ambient.crimson_forest.mood=-1 +chalk\:ambient.glowing=-1 +tfg\:ambient.lower_nether.additions=-1 +tfg\:ambient.lower_nether.loop=-1 +tfg\:ambient.lower_nether.mood=-1 +tfg\:ambient.mars_desert.additions=-1 +tfg\:ambient.mars_desert.loop=-1 +tfg\:ambient.mars_desert.mood=-1 +tfg\:ambient.mars_land.additions=-1 +tfg\:ambient.mars_land.loop=-1 +tfg\:ambient.mars_land.mood=-1 +tfg\:ambient.moon.additions=-1 +tfg\:ambient.moon.mood=-1 +minecraft\:ambient.nether_wastes.additions=-1 +minecraft\:ambient.nether_wastes.loop=-1 +minecraft\:ambient.nether_wastes.mood=-1 +minecraft\:ambient.soul_sand_valley.additions=-1 +minecraft\:ambient.soul_sand_valley.loop=-1 +minecraft\:ambient.soul_sand_valley.mood=-1 +minecraft\:ambient.underwater.enter=-1 +minecraft\:ambient.underwater.exit=-1 +minecraft\:ambient.underwater.loop=-1 +minecraft\:ambient.underwater.loop.additions=-1 +minecraft\:ambient.underwater.loop.additions.rare=-1 +minecraft\:ambient.underwater.loop.additions.ultra_rare=-1 +tfg\:ambient.upper_nether.additions=-1 +tfg\:ambient.upper_nether.mood=-1 +tfg\:ambient.upper_nether_cave.loop=-1 +tfg\:ambient.upper_nether_lush.loop=-1 +tfg\:ambient.venus_surface.additions=-1 +tfg\:ambient.venus_surface.loop=-1 +tfg\:ambient.venus_surface.mood=-1 +minecraft\:ambient.warped_forest.additions=-1 +minecraft\:ambient.warped_forest.loop=-1 +minecraft\:ambient.warped_forest.mood=-1 +endermanoverhaul\:ancient_pearl_hit=-1 +gtceu\:arc=-1 +gtceu\:assembler=-1 +gtceu\:bath=-1 +buildinggadgets2\:beep=-1 +create\:blaze_munch=-1 +species\:block.alphacene_foliage.break=-1 +species\:block.alphacene_foliage.fall=-1 +species\:block.alphacene_foliage.hit=-1 +species\:block.alphacene_foliage.place=-1 +species\:block.alphacene_foliage.step=-1 +species\:block.alphacene_grass.break=-1 +species\:block.alphacene_grass.fall=-1 +species\:block.alphacene_grass.hit=-1 +species\:block.alphacene_grass.place=-1 +species\:block.alphacene_grass.step=-1 +species\:block.alphacene_moss.break=-1 +species\:block.alphacene_moss.fall=-1 +species\:block.alphacene_moss.hit=-1 +species\:block.alphacene_moss.place=-1 +species\:block.alphacene_moss.step=-1 +minecraft\:block.amethyst_block.break=-1 +minecraft\:block.amethyst_block.chime=-1 +minecraft\:block.amethyst_block.fall=-1 +minecraft\:block.amethyst_block.hit=-1 +minecraft\:block.amethyst_block.place=-1 +minecraft\:block.amethyst_block.resonate=-1 +minecraft\:block.amethyst_block.step=-1 +minecraft\:block.amethyst_cluster.break=-1 +minecraft\:block.amethyst_cluster.fall=-1 +minecraft\:block.amethyst_cluster.hit=-1 +minecraft\:block.amethyst_cluster.place=-1 +minecraft\:block.amethyst_cluster.step=-1 +minecraft\:block.ancient_debris.break=-1 +minecraft\:block.ancient_debris.fall=-1 +minecraft\:block.ancient_debris.hit=-1 +minecraft\:block.ancient_debris.place=-1 +minecraft\:block.ancient_debris.step=-1 +minecraft\:block.anvil.break=-1 +minecraft\:block.anvil.destroy=-1 +minecraft\:block.anvil.fall=-1 +minecraft\:block.anvil.hit=-1 +tfc\:block.anvil.hit=-1 +minecraft\:block.anvil.land=-1 +minecraft\:block.anvil.place=-1 +minecraft\:block.anvil.step=-1 +minecraft\:block.anvil.use=-1 +minecraft\:block.azalea.break=-1 +minecraft\:block.azalea.fall=-1 +minecraft\:block.azalea.hit=-1 +minecraft\:block.azalea.place=-1 +minecraft\:block.azalea.step=-1 +minecraft\:block.azalea_leaves.break=-1 +minecraft\:block.azalea_leaves.fall=-1 +minecraft\:block.azalea_leaves.hit=-1 +minecraft\:block.azalea_leaves.place=-1 +minecraft\:block.azalea_leaves.step=-1 +minecraft\:block.bamboo.break=-1 +minecraft\:block.bamboo.fall=-1 +minecraft\:block.bamboo.hit=-1 +minecraft\:block.bamboo.place=-1 +minecraft\:block.bamboo.step=-1 +minecraft\:block.bamboo_sapling.break=-1 +minecraft\:block.bamboo_sapling.hit=-1 +minecraft\:block.bamboo_sapling.place=-1 +minecraft\:block.bamboo_wood.break=-1 +minecraft\:block.bamboo_wood.fall=-1 +minecraft\:block.bamboo_wood.hit=-1 +minecraft\:block.bamboo_wood.place=-1 +minecraft\:block.bamboo_wood.step=-1 +minecraft\:block.bamboo_wood_button.click_off=-1 +minecraft\:block.bamboo_wood_button.click_on=-1 +minecraft\:block.bamboo_wood_door.close=-1 +minecraft\:block.bamboo_wood_door.open=-1 +minecraft\:block.bamboo_wood_fence_gate.close=-1 +minecraft\:block.bamboo_wood_fence_gate.open=-1 +minecraft\:block.bamboo_wood_hanging_sign.break=-1 +minecraft\:block.bamboo_wood_hanging_sign.fall=-1 +minecraft\:block.bamboo_wood_hanging_sign.hit=-1 +minecraft\:block.bamboo_wood_hanging_sign.place=-1 +minecraft\:block.bamboo_wood_hanging_sign.step=-1 +minecraft\:block.bamboo_wood_pressure_plate.click_off=-1 +minecraft\:block.bamboo_wood_pressure_plate.click_on=-1 +minecraft\:block.bamboo_wood_trapdoor.close=-1 +minecraft\:block.bamboo_wood_trapdoor.open=-1 +minecraft\:block.barrel.close=-1 +tfc\:block.barrel.close=-1 +tfc\:block.barrel.drip=-1 +minecraft\:block.barrel.open=-1 +tfc\:block.barrel.open=-1 +minecraft\:block.basalt.break=-1 +minecraft\:block.basalt.fall=-1 +minecraft\:block.basalt.hit=-1 +minecraft\:block.basalt.place=-1 +minecraft\:block.basalt.step=-1 +minecraft\:block.beacon.activate=-1 +minecraft\:block.beacon.ambient=-1 +minecraft\:block.beacon.deactivate=-1 +minecraft\:block.beacon.power_select=-1 +minecraft\:block.beehive.drip=-1 +minecraft\:block.beehive.enter=-1 +minecraft\:block.beehive.exit=-1 +minecraft\:block.beehive.shear=-1 +minecraft\:block.beehive.work=-1 +minecraft\:block.bell.resonate=-1 +minecraft\:block.bell.use=-1 +tfc\:block.bellows.blow=-1 +minecraft\:block.big_dripleaf.break=-1 +minecraft\:block.big_dripleaf.fall=-1 +minecraft\:block.big_dripleaf.hit=-1 +minecraft\:block.big_dripleaf.place=-1 +minecraft\:block.big_dripleaf.step=-1 +minecraft\:block.big_dripleaf.tilt_down=-1 +minecraft\:block.big_dripleaf.tilt_up=-1 +species\:block.birt_dwelling.collect=-1 +species\:block.birt_dwelling.enter=-1 +species\:block.birt_dwelling.exit=-1 +species\:block.birt_dwelling.work=-1 +species\:block.birtday_cake.blow=-1 +species\:block.birtday_cake.break=-1 +species\:block.birtday_cake.fall=-1 +species\:block.birtday_cake.hit=-1 +species\:block.birtday_cake.place=-1 +species\:block.birtday_cake.step=-1 +minecraft\:block.blastfurnace.fire_crackle=-1 +tfc\:block.bloomery.crackle=-1 +minecraft\:block.bone_block.break=-1 +minecraft\:block.bone_block.fall=-1 +minecraft\:block.bone_block.hit=-1 +minecraft\:block.bone_block.place=-1 +minecraft\:block.bone_block.step=-1 +minecraft\:block.brewing_stand.brew=-1 +minecraft\:block.bubble_column.bubble_pop=-1 +minecraft\:block.bubble_column.upwards_ambient=-1 +minecraft\:block.bubble_column.upwards_inside=-1 +minecraft\:block.bubble_column.whirlpool_ambient=-1 +minecraft\:block.bubble_column.whirlpool_inside=-1 +minecraft\:block.cake.add_candle=-1 +minecraft\:block.calcite.break=-1 +minecraft\:block.calcite.fall=-1 +minecraft\:block.calcite.hit=-1 +minecraft\:block.calcite.place=-1 +minecraft\:block.calcite.step=-1 +minecraft\:block.campfire.crackle=-1 +minecraft\:block.candle.ambient=-1 +minecraft\:block.candle.break=-1 +minecraft\:block.candle.extinguish=-1 +minecraft\:block.candle.fall=-1 +minecraft\:block.candle.hit=-1 +minecraft\:block.candle.place=-1 +minecraft\:block.candle.step=-1 +minecraft\:block.cave_vines.break=-1 +minecraft\:block.cave_vines.fall=-1 +minecraft\:block.cave_vines.hit=-1 +minecraft\:block.cave_vines.pick_berries=-1 +minecraft\:block.cave_vines.place=-1 +minecraft\:block.cave_vines.step=-1 +minecraft\:block.chain.break=-1 +minecraft\:block.chain.fall=-1 +minecraft\:block.chain.hit=-1 +minecraft\:block.chain.place=-1 +minecraft\:block.chain.step=-1 +tfc\:block.charcoal.break=-1 +tfc\:block.charcoal.fall=-1 +tfc\:block.charcoal.hit=-1 +tfc\:block.charcoal.place=-1 +tfc\:block.charcoal.step=-1 +minecraft\:block.cherry_leaves.break=-1 +minecraft\:block.cherry_leaves.fall=-1 +minecraft\:block.cherry_leaves.hit=-1 +minecraft\:block.cherry_leaves.place=-1 +minecraft\:block.cherry_leaves.step=-1 +minecraft\:block.cherry_sapling.break=-1 +minecraft\:block.cherry_sapling.fall=-1 +minecraft\:block.cherry_sapling.hit=-1 +minecraft\:block.cherry_sapling.place=-1 +minecraft\:block.cherry_sapling.step=-1 +minecraft\:block.cherry_wood.break=-1 +minecraft\:block.cherry_wood.fall=-1 +minecraft\:block.cherry_wood.hit=-1 +minecraft\:block.cherry_wood.place=-1 +minecraft\:block.cherry_wood.step=-1 +minecraft\:block.cherry_wood_button.click_off=-1 +minecraft\:block.cherry_wood_button.click_on=-1 +minecraft\:block.cherry_wood_door.close=-1 +minecraft\:block.cherry_wood_door.open=-1 +minecraft\:block.cherry_wood_fence_gate.close=-1 +minecraft\:block.cherry_wood_fence_gate.open=-1 +minecraft\:block.cherry_wood_hanging_sign.break=-1 +minecraft\:block.cherry_wood_hanging_sign.fall=-1 +minecraft\:block.cherry_wood_hanging_sign.hit=-1 +minecraft\:block.cherry_wood_hanging_sign.place=-1 +minecraft\:block.cherry_wood_hanging_sign.step=-1 +minecraft\:block.cherry_wood_pressure_plate.click_off=-1 +minecraft\:block.cherry_wood_pressure_plate.click_on=-1 +minecraft\:block.cherry_wood_trapdoor.close=-1 +minecraft\:block.cherry_wood_trapdoor.open=-1 +minecraft\:block.chest.close=-1 +minecraft\:block.chest.locked=-1 +minecraft\:block.chest.open=-1 +minecraft\:block.chiseled_bookshelf.break=-1 +minecraft\:block.chiseled_bookshelf.fall=-1 +minecraft\:block.chiseled_bookshelf.hit=-1 +minecraft\:block.chiseled_bookshelf.insert=-1 +minecraft\:block.chiseled_bookshelf.insert.enchanted=-1 +minecraft\:block.chiseled_bookshelf.pickup=-1 +minecraft\:block.chiseled_bookshelf.pickup.enchanted=-1 +minecraft\:block.chiseled_bookshelf.place=-1 +minecraft\:block.chiseled_bookshelf.step=-1 +minecraft\:block.chorus_flower.death=-1 +minecraft\:block.chorus_flower.grow=-1 +minecraft\:block.comparator.click=-1 +minecraft\:block.composter.empty=-1 +minecraft\:block.composter.fill=-1 +minecraft\:block.composter.fill_success=-1 +minecraft\:block.composter.ready=-1 +minecraft\:block.conduit.activate=-1 +minecraft\:block.conduit.ambient=-1 +minecraft\:block.conduit.ambient.short=-1 +minecraft\:block.conduit.attack.target=-1 +minecraft\:block.conduit.deactivate=-1 +minecraft\:block.copper.break=-1 +minecraft\:block.copper.fall=-1 +minecraft\:block.copper.hit=-1 +minecraft\:block.copper.place=-1 +minecraft\:block.copper.step=-1 +minecraft\:block.coral_block.break=-1 +minecraft\:block.coral_block.fall=-1 +minecraft\:block.coral_block.hit=-1 +minecraft\:block.coral_block.place=-1 +minecraft\:block.coral_block.step=-1 +species\:block.cranktrap.break=-1 +species\:block.cranktrap.close=-1 +species\:block.cranktrap.fall=-1 +species\:block.cranktrap.hit=-1 +species\:block.cranktrap.open=-1 +species\:block.cranktrap.place=-1 +species\:block.cranktrap.step=-1 +minecraft\:block.crop.break=-1 +tfc\:block.crop.stick_add=-1 +minecraft\:block.decorated_pot.break=-1 +minecraft\:block.decorated_pot.fall=-1 +minecraft\:block.decorated_pot.hit=-1 +minecraft\:block.decorated_pot.place=-1 +minecraft\:block.decorated_pot.shatter=-1 +minecraft\:block.decorated_pot.step=-1 +minecraft\:block.deepslate.break=-1 +minecraft\:block.deepslate.fall=-1 +minecraft\:block.deepslate.hit=-1 +minecraft\:block.deepslate.place=-1 +minecraft\:block.deepslate.step=-1 +minecraft\:block.deepslate_bricks.break=-1 +minecraft\:block.deepslate_bricks.fall=-1 +minecraft\:block.deepslate_bricks.hit=-1 +minecraft\:block.deepslate_bricks.place=-1 +minecraft\:block.deepslate_bricks.step=-1 +minecraft\:block.deepslate_tiles.break=-1 +minecraft\:block.deepslate_tiles.fall=-1 +minecraft\:block.deepslate_tiles.hit=-1 +minecraft\:block.deepslate_tiles.place=-1 +minecraft\:block.deepslate_tiles.step=-1 +minecraft\:block.dispenser.dispense=-1 +minecraft\:block.dispenser.fail=-1 +minecraft\:block.dispenser.launch=-1 +minecraft\:block.dripstone_block.break=-1 +minecraft\:block.dripstone_block.fall=-1 +minecraft\:block.dripstone_block.hit=-1 +minecraft\:block.dripstone_block.place=-1 +minecraft\:block.dripstone_block.step=-1 +wan_ancient_beasts\:block.egg.hatched=-1 +minecraft\:block.enchantment_table.use=-1 +minecraft\:block.end_gateway.spawn=-1 +minecraft\:block.end_portal.spawn=-1 +minecraft\:block.end_portal_frame.fill=-1 +minecraft\:block.ender_chest.close=-1 +minecraft\:block.ender_chest.open=-1 +minecraft\:block.fence_gate.close=-1 +minecraft\:block.fence_gate.open=-1 +minecraft\:block.fire.ambient=-1 +minecraft\:block.fire.extinguish=-1 +minecraft\:block.flowering_azalea.break=-1 +minecraft\:block.flowering_azalea.fall=-1 +minecraft\:block.flowering_azalea.hit=-1 +minecraft\:block.flowering_azalea.place=-1 +minecraft\:block.flowering_azalea.step=-1 +minecraft\:block.froglight.break=-1 +minecraft\:block.froglight.fall=-1 +minecraft\:block.froglight.hit=-1 +minecraft\:block.froglight.place=-1 +minecraft\:block.froglight.step=-1 +minecraft\:block.frogspawn.break=-1 +minecraft\:block.frogspawn.fall=-1 +minecraft\:block.frogspawn.hatch=-1 +minecraft\:block.frogspawn.hit=-1 +minecraft\:block.frogspawn.place=-1 +minecraft\:block.frogspawn.step=-1 +species\:block.frozen_hair.break=-1 +species\:block.frozen_hair.fall=-1 +species\:block.frozen_hair.hit=-1 +species\:block.frozen_hair.place=-1 +species\:block.frozen_hair.step=-1 +species\:block.frozen_meat.break=-1 +species\:block.frozen_meat.fall=-1 +species\:block.frozen_meat.hit=-1 +species\:block.frozen_meat.place=-1 +species\:block.frozen_meat.step=-1 +minecraft\:block.fungus.break=-1 +minecraft\:block.fungus.fall=-1 +minecraft\:block.fungus.hit=-1 +minecraft\:block.fungus.place=-1 +minecraft\:block.fungus.step=-1 +minecraft\:block.furnace.fire_crackle=-1 +minecraft\:block.gilded_blackstone.break=-1 +minecraft\:block.gilded_blackstone.fall=-1 +minecraft\:block.gilded_blackstone.hit=-1 +minecraft\:block.gilded_blackstone.place=-1 +minecraft\:block.gilded_blackstone.step=-1 +minecraft\:block.glass.break=-1 +minecraft\:block.glass.fall=-1 +minecraft\:block.glass.hit=-1 +minecraft\:block.glass.place=-1 +minecraft\:block.glass.step=-1 +minecraft\:block.grass.break=-1 +minecraft\:block.grass.fall=-1 +minecraft\:block.grass.hit=-1 +minecraft\:block.grass.place=-1 +minecraft\:block.grass.step=-1 +minecraft\:block.gravel.break=-1 +minecraft\:block.gravel.fall=-1 +minecraft\:block.gravel.hit=-1 +minecraft\:block.gravel.place=-1 +minecraft\:block.gravel.step=-1 +minecraft\:block.grindstone.use=-1 +minecraft\:block.growing_plant.crop=-1 +minecraft\:block.hanging_roots.break=-1 +minecraft\:block.hanging_roots.fall=-1 +minecraft\:block.hanging_roots.hit=-1 +minecraft\:block.hanging_roots.place=-1 +minecraft\:block.hanging_roots.step=-1 +minecraft\:block.hanging_sign.break=-1 +minecraft\:block.hanging_sign.fall=-1 +minecraft\:block.hanging_sign.hit=-1 +minecraft\:block.hanging_sign.place=-1 +minecraft\:block.hanging_sign.step=-1 +minecraft\:block.honey_block.break=-1 +minecraft\:block.honey_block.fall=-1 +minecraft\:block.honey_block.hit=-1 +minecraft\:block.honey_block.place=-1 +minecraft\:block.honey_block.slide=-1 +minecraft\:block.honey_block.step=-1 +species\:block.hopelight.break=-1 +species\:block.hopelight.place=-1 +minecraft\:block.iron_door.close=-1 +minecraft\:block.iron_door.open=-1 +minecraft\:block.iron_trapdoor.close=-1 +minecraft\:block.iron_trapdoor.open=-1 +minecraft\:block.ladder.break=-1 +minecraft\:block.ladder.fall=-1 +minecraft\:block.ladder.hit=-1 +minecraft\:block.ladder.place=-1 +minecraft\:block.ladder.step=-1 +minecraft\:block.lantern.break=-1 +minecraft\:block.lantern.fall=-1 +minecraft\:block.lantern.hit=-1 +minecraft\:block.lantern.place=-1 +minecraft\:block.lantern.step=-1 +minecraft\:block.large_amethyst_bud.break=-1 +minecraft\:block.large_amethyst_bud.place=-1 +tfc\:block.large_vessel.close=-1 +tfc\:block.large_vessel.open=-1 +minecraft\:block.lava.ambient=-1 +minecraft\:block.lava.extinguish=-1 +minecraft\:block.lava.pop=-1 +minecraft\:block.lever.click=-1 +exposure\:block.lightroom.print=-1 +minecraft\:block.lily_pad.place=-1 +minecraft\:block.lodestone.break=-1 +minecraft\:block.lodestone.fall=-1 +minecraft\:block.lodestone.hit=-1 +minecraft\:block.lodestone.place=-1 +minecraft\:block.lodestone.step=-1 +tfc\:block.loom.weave=-1 +minecraft\:block.mangrove_roots.break=-1 +minecraft\:block.mangrove_roots.fall=-1 +minecraft\:block.mangrove_roots.hit=-1 +minecraft\:block.mangrove_roots.place=-1 +minecraft\:block.mangrove_roots.step=-1 +chalk\:block.mark_removed=-1 +minecraft\:block.medium_amethyst_bud.break=-1 +minecraft\:block.medium_amethyst_bud.place=-1 +minecraft\:block.metal.break=-1 +minecraft\:block.metal.fall=-1 +minecraft\:block.metal.hit=-1 +minecraft\:block.metal.place=-1 +minecraft\:block.metal.step=-1 +minecraft\:block.metal_pressure_plate.click_off=-1 +minecraft\:block.metal_pressure_plate.click_on=-1 +minecraft\:block.moss.break=-1 +minecraft\:block.moss.fall=-1 +minecraft\:block.moss.hit=-1 +minecraft\:block.moss.place=-1 +minecraft\:block.moss.step=-1 +minecraft\:block.moss_carpet.break=-1 +minecraft\:block.moss_carpet.fall=-1 +minecraft\:block.moss_carpet.hit=-1 +minecraft\:block.moss_carpet.place=-1 +minecraft\:block.moss_carpet.step=-1 +minecraft\:block.mud.break=-1 +minecraft\:block.mud.fall=-1 +minecraft\:block.mud.hit=-1 +minecraft\:block.mud.place=-1 +minecraft\:block.mud.step=-1 +minecraft\:block.mud_bricks.break=-1 +minecraft\:block.mud_bricks.fall=-1 +minecraft\:block.mud_bricks.hit=-1 +minecraft\:block.mud_bricks.place=-1 +minecraft\:block.mud_bricks.step=-1 +minecraft\:block.muddy_mangrove_roots.break=-1 +minecraft\:block.muddy_mangrove_roots.fall=-1 +minecraft\:block.muddy_mangrove_roots.hit=-1 +minecraft\:block.muddy_mangrove_roots.place=-1 +minecraft\:block.muddy_mangrove_roots.step=-1 +minecraft\:block.nether_bricks.break=-1 +minecraft\:block.nether_bricks.fall=-1 +minecraft\:block.nether_bricks.hit=-1 +minecraft\:block.nether_bricks.place=-1 +minecraft\:block.nether_bricks.step=-1 +minecraft\:block.nether_gold_ore.break=-1 +minecraft\:block.nether_gold_ore.fall=-1 +minecraft\:block.nether_gold_ore.hit=-1 +minecraft\:block.nether_gold_ore.place=-1 +minecraft\:block.nether_gold_ore.step=-1 +minecraft\:block.nether_ore.break=-1 +minecraft\:block.nether_ore.fall=-1 +minecraft\:block.nether_ore.hit=-1 +minecraft\:block.nether_ore.place=-1 +minecraft\:block.nether_ore.step=-1 +minecraft\:block.nether_sprouts.break=-1 +minecraft\:block.nether_sprouts.fall=-1 +minecraft\:block.nether_sprouts.hit=-1 +minecraft\:block.nether_sprouts.place=-1 +minecraft\:block.nether_sprouts.step=-1 +minecraft\:block.nether_wart.break=-1 +minecraft\:block.nether_wood.break=-1 +minecraft\:block.nether_wood.fall=-1 +minecraft\:block.nether_wood.hit=-1 +minecraft\:block.nether_wood.place=-1 +minecraft\:block.nether_wood.step=-1 +minecraft\:block.nether_wood_button.click_off=-1 +minecraft\:block.nether_wood_button.click_on=-1 +minecraft\:block.nether_wood_door.close=-1 +minecraft\:block.nether_wood_door.open=-1 +minecraft\:block.nether_wood_fence_gate.close=-1 +minecraft\:block.nether_wood_fence_gate.open=-1 +minecraft\:block.nether_wood_hanging_sign.break=-1 +minecraft\:block.nether_wood_hanging_sign.fall=-1 +minecraft\:block.nether_wood_hanging_sign.hit=-1 +minecraft\:block.nether_wood_hanging_sign.place=-1 +minecraft\:block.nether_wood_hanging_sign.step=-1 +minecraft\:block.nether_wood_pressure_plate.click_off=-1 +minecraft\:block.nether_wood_pressure_plate.click_on=-1 +minecraft\:block.nether_wood_trapdoor.close=-1 +minecraft\:block.nether_wood_trapdoor.open=-1 +minecraft\:block.netherite_block.break=-1 +minecraft\:block.netherite_block.fall=-1 +minecraft\:block.netherite_block.hit=-1 +minecraft\:block.netherite_block.place=-1 +minecraft\:block.netherite_block.step=-1 +minecraft\:block.netherrack.break=-1 +minecraft\:block.netherrack.fall=-1 +minecraft\:block.netherrack.hit=-1 +minecraft\:block.netherrack.place=-1 +minecraft\:block.netherrack.step=-1 +minecraft\:block.note_block.banjo=-1 +minecraft\:block.note_block.basedrum=-1 +minecraft\:block.note_block.bass=-1 +minecraft\:block.note_block.bell=-1 +minecraft\:block.note_block.bit=-1 +minecraft\:block.note_block.chime=-1 +minecraft\:block.note_block.cow_bell=-1 +minecraft\:block.note_block.didgeridoo=-1 +minecraft\:block.note_block.flute=-1 +minecraft\:block.note_block.guitar=-1 +minecraft\:block.note_block.harp=-1 +minecraft\:block.note_block.hat=-1 +species\:block.note_block.imitate.bewereager=-1 +minecraft\:block.note_block.imitate.creeper=-1 +minecraft\:block.note_block.imitate.ender_dragon=-1 +species\:block.note_block.imitate.ghoul=-1 +minecraft\:block.note_block.imitate.piglin=-1 +species\:block.note_block.imitate.quake=-1 +minecraft\:block.note_block.imitate.skeleton=-1 +species\:block.note_block.imitate.wicked=-1 +minecraft\:block.note_block.imitate.wither_skeleton=-1 +minecraft\:block.note_block.imitate.zombie=-1 +minecraft\:block.note_block.iron_xylophone=-1 +minecraft\:block.note_block.pling=-1 +species\:block.note_block.quake_synth=-1 +minecraft\:block.note_block.snare=-1 +minecraft\:block.note_block.xylophone=-1 +minecraft\:block.nylium.break=-1 +minecraft\:block.nylium.fall=-1 +minecraft\:block.nylium.hit=-1 +minecraft\:block.nylium.place=-1 +minecraft\:block.nylium.step=-1 +minecraft\:block.packed_mud.break=-1 +minecraft\:block.packed_mud.fall=-1 +minecraft\:block.packed_mud.hit=-1 +minecraft\:block.packed_mud.place=-1 +minecraft\:block.packed_mud.step=-1 +tfc\:block.peat.break=-1 +tfc\:block.peat.fall=-1 +tfc\:block.peat.hit=-1 +tfc\:block.peat.place=-1 +tfc\:block.peat.step=-1 +species\:block.petrified_egg.crack=-1 +species\:block.petrified_egg.hatch=-1 +species\:block.petrified_egg.plop=-1 +minecraft\:block.pink_petals.break=-1 +minecraft\:block.pink_petals.fall=-1 +minecraft\:block.pink_petals.hit=-1 +minecraft\:block.pink_petals.place=-1 +minecraft\:block.pink_petals.step=-1 +minecraft\:block.piston.contract=-1 +minecraft\:block.piston.extend=-1 +minecraft\:block.pointed_dripstone.break=-1 +minecraft\:block.pointed_dripstone.drip_lava=-1 +minecraft\:block.pointed_dripstone.drip_lava_into_cauldron=-1 +minecraft\:block.pointed_dripstone.drip_water=-1 +minecraft\:block.pointed_dripstone.drip_water_into_cauldron=-1 +minecraft\:block.pointed_dripstone.fall=-1 +minecraft\:block.pointed_dripstone.hit=-1 +minecraft\:block.pointed_dripstone.land=-1 +minecraft\:block.pointed_dripstone.place=-1 +minecraft\:block.pointed_dripstone.step=-1 +minecraft\:block.polished_deepslate.break=-1 +minecraft\:block.polished_deepslate.fall=-1 +minecraft\:block.polished_deepslate.hit=-1 +minecraft\:block.polished_deepslate.place=-1 +minecraft\:block.polished_deepslate.step=-1 +minecraft\:block.portal.ambient=-1 +minecraft\:block.portal.travel=-1 +minecraft\:block.portal.trigger=-1 +minecraft\:block.powder_snow.break=-1 +minecraft\:block.powder_snow.fall=-1 +minecraft\:block.powder_snow.hit=-1 +minecraft\:block.powder_snow.place=-1 +minecraft\:block.powder_snow.step=-1 +minecraft\:block.pumpkin.carve=-1 +tfc\:block.quern.drag=-1 +minecraft\:block.redstone_torch.burnout=-1 +minecraft\:block.respawn_anchor.ambient=-1 +minecraft\:block.respawn_anchor.charge=-1 +minecraft\:block.respawn_anchor.deplete=-1 +minecraft\:block.respawn_anchor.set_spawn=-1 +minecraft\:block.rooted_dirt.break=-1 +minecraft\:block.rooted_dirt.fall=-1 +minecraft\:block.rooted_dirt.hit=-1 +minecraft\:block.rooted_dirt.place=-1 +minecraft\:block.rooted_dirt.step=-1 +minecraft\:block.roots.break=-1 +minecraft\:block.roots.fall=-1 +minecraft\:block.roots.hit=-1 +minecraft\:block.roots.place=-1 +minecraft\:block.roots.step=-1 +minecraft\:block.sand.break=-1 +minecraft\:block.sand.fall=-1 +minecraft\:block.sand.hit=-1 +minecraft\:block.sand.place=-1 +minecraft\:block.sand.step=-1 +minecraft\:block.scaffolding.break=-1 +minecraft\:block.scaffolding.fall=-1 +minecraft\:block.scaffolding.hit=-1 +minecraft\:block.scaffolding.place=-1 +minecraft\:block.scaffolding.step=-1 +tfc\:block.scribing_table.use=-1 +minecraft\:block.sculk.break=-1 +minecraft\:block.sculk.charge=-1 +minecraft\:block.sculk.fall=-1 +minecraft\:block.sculk.hit=-1 +minecraft\:block.sculk.place=-1 +minecraft\:block.sculk.spread=-1 +minecraft\:block.sculk.step=-1 +minecraft\:block.sculk_catalyst.bloom=-1 +minecraft\:block.sculk_catalyst.break=-1 +minecraft\:block.sculk_catalyst.fall=-1 +minecraft\:block.sculk_catalyst.hit=-1 +minecraft\:block.sculk_catalyst.place=-1 +minecraft\:block.sculk_catalyst.step=-1 +minecraft\:block.sculk_sensor.break=-1 +minecraft\:block.sculk_sensor.clicking=-1 +minecraft\:block.sculk_sensor.clicking_stop=-1 +minecraft\:block.sculk_sensor.fall=-1 +minecraft\:block.sculk_sensor.hit=-1 +minecraft\:block.sculk_sensor.place=-1 +minecraft\:block.sculk_sensor.step=-1 +minecraft\:block.sculk_shrieker.break=-1 +minecraft\:block.sculk_shrieker.fall=-1 +minecraft\:block.sculk_shrieker.hit=-1 +minecraft\:block.sculk_shrieker.place=-1 +minecraft\:block.sculk_shrieker.shriek=-1 +minecraft\:block.sculk_shrieker.step=-1 +minecraft\:block.sculk_vein.break=-1 +minecraft\:block.sculk_vein.fall=-1 +minecraft\:block.sculk_vein.hit=-1 +minecraft\:block.sculk_vein.place=-1 +minecraft\:block.sculk_vein.step=-1 +minecraft\:block.shroomlight.break=-1 +minecraft\:block.shroomlight.fall=-1 +minecraft\:block.shroomlight.hit=-1 +minecraft\:block.shroomlight.place=-1 +minecraft\:block.shroomlight.step=-1 +minecraft\:block.shulker_box.close=-1 +minecraft\:block.shulker_box.open=-1 +minecraft\:block.sign.waxed_interact_fail=-1 +minecraft\:block.slime_block.break=-1 +minecraft\:block.slime_block.fall=-1 +minecraft\:block.slime_block.hit=-1 +minecraft\:block.slime_block.place=-1 +minecraft\:block.slime_block.step=-1 +minecraft\:block.small_amethyst_bud.break=-1 +minecraft\:block.small_amethyst_bud.place=-1 +minecraft\:block.small_dripleaf.break=-1 +minecraft\:block.small_dripleaf.fall=-1 +minecraft\:block.small_dripleaf.hit=-1 +minecraft\:block.small_dripleaf.place=-1 +minecraft\:block.small_dripleaf.step=-1 +minecraft\:block.smithing_table.use=-1 +minecraft\:block.smoker.smoke=-1 +minecraft\:block.sniffer_egg.crack=-1 +minecraft\:block.sniffer_egg.hatch=-1 +minecraft\:block.sniffer_egg.plop=-1 +minecraft\:block.snow.break=-1 +minecraft\:block.snow.fall=-1 +minecraft\:block.snow.hit=-1 +minecraft\:block.snow.place=-1 +minecraft\:block.snow.step=-1 +minecraft\:block.soul_sand.break=-1 +minecraft\:block.soul_sand.fall=-1 +minecraft\:block.soul_sand.hit=-1 +minecraft\:block.soul_sand.place=-1 +minecraft\:block.soul_sand.step=-1 +minecraft\:block.soul_soil.break=-1 +minecraft\:block.soul_soil.fall=-1 +minecraft\:block.soul_soil.hit=-1 +minecraft\:block.soul_soil.place=-1 +minecraft\:block.soul_soil.step=-1 +species\:block.speclight.break=-1 +species\:block.speclight.fall=-1 +species\:block.speclight.hit=-1 +species\:block.speclight.off=-1 +species\:block.speclight.on=-1 +species\:block.speclight.place=-1 +species\:block.speclight.step=-1 +species\:block.spectralibur.can_be_pulled1=-1 +species\:block.spectralibur.can_be_pulled2=-1 +species\:block.spectralibur.can_be_pulled3=-1 +species\:block.spectralibur.cant_pull=-1 +species\:block.spectralibur.extract=-1 +species\:block.spectralibur.go_in=-1 +species\:block.spectralibur.go_in_fully=-1 +species\:block.spectralibur.pull=-1 +species\:block.spectralibur_pedestal.activate=-1 +species\:block.spectralibur_pedestal.deactivate=-1 +minecraft\:block.spore_blossom.break=-1 +minecraft\:block.spore_blossom.fall=-1 +minecraft\:block.spore_blossom.hit=-1 +minecraft\:block.spore_blossom.place=-1 +minecraft\:block.spore_blossom.step=-1 +species\:block.springling_egg.crack=-1 +species\:block.springling_egg.hatch=-1 +species\:block.springling_egg.plop=-1 +minecraft\:block.stem.break=-1 +minecraft\:block.stem.fall=-1 +minecraft\:block.stem.hit=-1 +minecraft\:block.stem.place=-1 +minecraft\:block.stem.step=-1 +minecraft\:block.stone.break=-1 +minecraft\:block.stone.fall=-1 +minecraft\:block.stone.hit=-1 +minecraft\:block.stone.place=-1 +minecraft\:block.stone.step=-1 +minecraft\:block.stone_button.click_off=-1 +minecraft\:block.stone_button.click_on=-1 +minecraft\:block.stone_pressure_plate.click_off=-1 +minecraft\:block.stone_pressure_plate.click_on=-1 +minecraft\:block.suspicious_gravel.break=-1 +minecraft\:block.suspicious_gravel.fall=-1 +minecraft\:block.suspicious_gravel.hit=-1 +minecraft\:block.suspicious_gravel.place=-1 +minecraft\:block.suspicious_gravel.step=-1 +minecraft\:block.suspicious_sand.break=-1 +minecraft\:block.suspicious_sand.fall=-1 +minecraft\:block.suspicious_sand.hit=-1 +minecraft\:block.suspicious_sand.place=-1 +minecraft\:block.suspicious_sand.step=-1 +minecraft\:block.sweet_berry_bush.break=-1 +minecraft\:block.sweet_berry_bush.pick_berries=-1 +minecraft\:block.sweet_berry_bush.place=-1 +tfc\:block.thatch.break=-1 +tfc\:block.thatch.fall=-1 +tfc\:block.thatch.hit=-1 +tfc\:block.thatch.place=-1 +tfc\:block.thatch.step=-1 +tfc\:block.thin.break=-1 +tfc\:block.thin.fall=-1 +tfc\:block.thin.hit=-1 +tfc\:block.thin.place=-1 +tfc\:block.thin.step=-1 +tfc\:block.tool_rack.place=-1 +minecraft\:block.tripwire.attach=-1 +minecraft\:block.tripwire.click_off=-1 +minecraft\:block.tripwire.click_on=-1 +minecraft\:block.tripwire.detach=-1 +minecraft\:block.tuff.break=-1 +minecraft\:block.tuff.fall=-1 +minecraft\:block.tuff.hit=-1 +minecraft\:block.tuff.place=-1 +minecraft\:block.tuff.step=-1 +minecraft\:block.vine.break=-1 +minecraft\:block.vine.fall=-1 +minecraft\:block.vine.hit=-1 +minecraft\:block.vine.place=-1 +minecraft\:block.vine.step=-1 +minecraft\:block.wart_block.break=-1 +minecraft\:block.wart_block.fall=-1 +minecraft\:block.wart_block.hit=-1 +minecraft\:block.wart_block.place=-1 +minecraft\:block.wart_block.step=-1 +minecraft\:block.water.ambient=-1 +tfc\:block.wattle.daubed=-1 +tfc\:block.wattle.dyed=-1 +tfc\:block.wattle.woven=-1 +minecraft\:block.weeping_vines.break=-1 +minecraft\:block.weeping_vines.fall=-1 +minecraft\:block.weeping_vines.hit=-1 +minecraft\:block.weeping_vines.place=-1 +minecraft\:block.weeping_vines.step=-1 +minecraft\:block.wet_grass.break=-1 +minecraft\:block.wet_grass.fall=-1 +minecraft\:block.wet_grass.hit=-1 +minecraft\:block.wet_grass.place=-1 +minecraft\:block.wet_grass.step=-1 +minecraft\:block.wood.break=-1 +minecraft\:block.wood.fall=-1 +minecraft\:block.wood.hit=-1 +minecraft\:block.wood.place=-1 +minecraft\:block.wood.step=-1 +minecraft\:block.wooden_button.click_off=-1 +minecraft\:block.wooden_button.click_on=-1 +minecraft\:block.wooden_door.close=-1 +minecraft\:block.wooden_door.open=-1 +minecraft\:block.wooden_pressure_plate.click_off=-1 +minecraft\:block.wooden_pressure_plate.click_on=-1 +minecraft\:block.wooden_trapdoor.close=-1 +minecraft\:block.wooden_trapdoor.open=-1 +minecraft\:block.wool.break=-1 +minecraft\:block.wool.fall=-1 +minecraft\:block.wool.hit=-1 +minecraft\:block.wool.place=-1 +minecraft\:block.wool.step=-1 +species\:block.wraptor_egg.break=-1 +species\:block.wraptor_egg.crack=-1 +species\:block.wraptor_egg.hatch=-1 +gtceu\:boiler=-1 +patchouli\:book_flip=-1 +patchouli\:book_open=-1 +endermanoverhaul\:bubble_pearl_hit=-1 +endermanoverhaul\:bubble_pearl_thrown=-1 +cccbridge\:cage_lock=-1 +cccbridge\:cage_unlock=-1 +immersive_aircraft\:cannon=-1 +create\:cardboard_bonk=-1 +endermanoverhaul\:cave_enderman_ambient=-1 +endermanoverhaul\:cave_enderman_hurt=-1 +gtceu\:centrifuge=-1 +gtceu\:chainsaw=-1 +gtceu\:chemical=-1 +create\:chiff=-1 +create\:clipboard_check=-1 +create\:clipboard_erase=-1 +create\:cogs=-1 +gtceu\:combustion=-1 +gtceu\:compressor=-1 +gtceu\:computation=-1 +railways\:conductor_whistle=-1 +create\:confirm=-1 +create\:confirm_2=-1 +create\:contraption_assemble=-1 +create\:contraption_assemble_compounded_1=-1 +create\:contraption_disassemble=-1 +create\:controller_click=-1 +create\:controller_put=-1 +create\:controller_take=-1 +gtceu\:cooling=-1 +create\:copper_armor_equip=-1 +endermanoverhaul\:corrupted_pearl_hit=-1 +create\:crafter_click=-1 +create\:crafter_click_compounded_1=-1 +create\:crafter_craft=-1 +create\:cranking=-1 +create\:cranking_compounded_1=-1 +create\:crushing_1=-1 +create\:crushing_2=-1 +create\:crushing_3=-1 +gtceu\:cut=-1 +endermanoverhaul\:dark_oak_enderman_ambient=-1 +endermanoverhaul\:dark_oak_enderman_darkness=-1 +endermanoverhaul\:dark_oak_enderman_stare=-1 +playerrevive\:death=-1 +create\:deny=-1 +create\:depot_plop=-1 +create\:depot_slide=-1 +create\:desk_bell=-1 +gtceu\:drill=-1 +species\:effect.birtd.applied=-1 +species\:effect.bloodlust.feed=-1 +species\:effect.bloodlust.removed=-1 +species\:effect.gut_feeling.applied=-1 +species\:effect.gut_feeling.roar=-1 +species\:effect.gut_feeling.spawn=-1 +createaddition\:electric_charge=-1 +createaddition\:electric_motor_buzz=-1 +gtceu\:electrolyzer=-1 +create_connected\:elevator_music=-1 +minecraft\:enchant.thorns.hit=-1 +immersive_aircraft\:engine_start=-1 +immersive_aircraft\:engine_start_bamboo_hopper=-1 +immersive_aircraft\:engine_start_warship=-1 +minecraft\:entity.allay.ambient_with_item=-1 +minecraft\:entity.allay.ambient_without_item=-1 +minecraft\:entity.allay.death=-1 +minecraft\:entity.allay.hurt=-1 +minecraft\:entity.allay.item_given=-1 +minecraft\:entity.allay.item_taken=-1 +minecraft\:entity.allay.item_thrown=-1 +tfc\:entity.alpaca.ambient=-1 +tfc\:entity.alpaca.death=-1 +tfc\:entity.alpaca.hurt=-1 +tfc\:entity.alpaca.step=-1 +minecraft\:entity.armor_stand.break=-1 +minecraft\:entity.armor_stand.fall=-1 +minecraft\:entity.armor_stand.hit=-1 +minecraft\:entity.armor_stand.place=-1 +minecraft\:entity.arrow.hit=-1 +minecraft\:entity.arrow.hit_player=-1 +minecraft\:entity.arrow.shoot=-1 +minecraft\:entity.axolotl.attack=-1 +minecraft\:entity.axolotl.death=-1 +minecraft\:entity.axolotl.hurt=-1 +minecraft\:entity.axolotl.idle_air=-1 +minecraft\:entity.axolotl.idle_water=-1 +minecraft\:entity.axolotl.splash=-1 +minecraft\:entity.axolotl.swim=-1 +minecraft\:entity.bat.ambient=-1 +minecraft\:entity.bat.death=-1 +minecraft\:entity.bat.hurt=-1 +minecraft\:entity.bat.loop=-1 +minecraft\:entity.bat.takeoff=-1 +tfc\:entity.bear.ambient=-1 +tfc\:entity.bear.attack=-1 +tfc\:entity.bear.death=-1 +tfc\:entity.bear.hurt=-1 +tfc\:entity.bear.sleep=-1 +tfc\:entity.bear.step=-1 +minecraft\:entity.bee.death=-1 +minecraft\:entity.bee.hurt=-1 +minecraft\:entity.bee.loop=-1 +minecraft\:entity.bee.loop_aggressive=-1 +minecraft\:entity.bee.pollinate=-1 +minecraft\:entity.bee.sting=-1 +species\:entity.bewereager.bite=-1 +species\:entity.bewereager.celebrate=-1 +species\:entity.bewereager.death=-1 +species\:entity.bewereager.howl=-1 +species\:entity.bewereager.howl_strength=-1 +species\:entity.bewereager.hurt=-1 +species\:entity.bewereager.idle=-1 +species\:entity.bewereager.jump=-1 +species\:entity.bewereager.land=-1 +species\:entity.bewereager.shake=-1 +species\:entity.bewereager.slash=-1 +species\:entity.bewereager.speed=-1 +species\:entity.bewereager.split=-1 +species\:entity.bewereager.step=-1 +species\:entity.bewereager.stun=-1 +species\:entity.bewereager.transform=-1 +species\:entity.bewereager.transform_start=-1 +species\:entity.birt.death=-1 +species\:entity.birt.fly=-1 +species\:entity.birt.hurt=-1 +species\:entity.birt.idle=-1 +species\:entity.birt.message=-1 +species\:entity.birt.search=-1 +minecraft\:entity.blaze.ambient=-1 +minecraft\:entity.blaze.burn=-1 +minecraft\:entity.blaze.death=-1 +minecraft\:entity.blaze.hurt=-1 +minecraft\:entity.blaze.shoot=-1 +tfc\:entity.bluegill.ambient=-1 +tfc\:entity.bluegill.death=-1 +tfc\:entity.bluegill.flop=-1 +tfc\:entity.bluegill.hurt=-1 +tfc\:entity.boar.ambient=-1 +tfc\:entity.boar.attack=-1 +tfc\:entity.boar.death=-1 +tfc\:entity.boar.hurt=-1 +tfc\:entity.boar.step=-1 +minecraft\:entity.boat.paddle_land=-1 +minecraft\:entity.boat.paddle_water=-1 +tfc\:entity.bongo.ambient=-1 +tfc\:entity.bongo.death=-1 +tfc\:entity.bongo.hurt=-1 +tfc\:entity.bongo.step=-1 +minecraft\:entity.camel.ambient=-1 +minecraft\:entity.camel.dash=-1 +minecraft\:entity.camel.dash_ready=-1 +minecraft\:entity.camel.death=-1 +minecraft\:entity.camel.eat=-1 +minecraft\:entity.camel.hurt=-1 +minecraft\:entity.camel.saddle=-1 +minecraft\:entity.camel.sit=-1 +minecraft\:entity.camel.stand=-1 +minecraft\:entity.camel.step=-1 +minecraft\:entity.camel.step_sand=-1 +tfc\:entity.caribou.ambient=-1 +tfc\:entity.caribou.death=-1 +tfc\:entity.caribou.hurt=-1 +tfc\:entity.caribou.step=-1 +astikorcarts\:entity.cart.attach=-1 +astikorcarts\:entity.cart.detach=-1 +astikorcarts\:entity.cart.place=-1 +minecraft\:entity.cat.ambient=-1 +minecraft\:entity.cat.beg_for_food=-1 +minecraft\:entity.cat.death=-1 +minecraft\:entity.cat.eat=-1 +minecraft\:entity.cat.hiss=-1 +minecraft\:entity.cat.hurt=-1 +minecraft\:entity.cat.purr=-1 +minecraft\:entity.cat.purreow=-1 +minecraft\:entity.cat.stray_ambient=-1 +minecraft\:entity.chicken.ambient=-1 +minecraft\:entity.chicken.death=-1 +minecraft\:entity.chicken.egg=-1 +minecraft\:entity.chicken.hurt=-1 +minecraft\:entity.chicken.step=-1 +species\:entity.cliff_hanger.attach=-1 +species\:entity.cliff_hanger.attack=-1 +species\:entity.cliff_hanger.death=-1 +species\:entity.cliff_hanger.hurt=-1 +species\:entity.cliff_hanger.idle=-1 +species\:entity.cliff_hanger.idle_pulling=-1 +species\:entity.cliff_hanger.shoot=-1 +species\:entity.cliff_hanger.step=-1 +minecraft\:entity.cod.ambient=-1 +minecraft\:entity.cod.death=-1 +minecraft\:entity.cod.flop=-1 +minecraft\:entity.cod.hurt=-1 +species\:entity.coil.adjust=-1 +species\:entity.coil.link=-1 +species\:entity.coil.place=-1 +species\:entity.coil.remove=-1 +tfc\:entity.cougar.ambient=-1 +tfc\:entity.cougar.attack=-1 +tfc\:entity.cougar.death=-1 +tfc\:entity.cougar.hurt=-1 +tfc\:entity.cougar.sleep=-1 +tfc\:entity.cougar.step=-1 +minecraft\:entity.cow.ambient=-1 +minecraft\:entity.cow.death=-1 +minecraft\:entity.cow.hurt=-1 +minecraft\:entity.cow.milk=-1 +minecraft\:entity.cow.step=-1 +tfc\:entity.crappie.ambient=-1 +tfc\:entity.crappie.death=-1 +tfc\:entity.crappie.flop=-1 +tfc\:entity.crappie.hurt=-1 +minecraft\:entity.creeper.death=-1 +minecraft\:entity.creeper.hurt=-1 +minecraft\:entity.creeper.primed=-1 +tfc\:entity.crocodile.ambient=-1 +tfc\:entity.crocodile.attack=-1 +tfc\:entity.crocodile.death=-1 +tfc\:entity.crocodile.hurt=-1 +tfc\:entity.crocodile.sleep=-1 +tfc\:entity.crocodile.step=-1 +species\:entity.cruncher.death=-1 +species\:entity.cruncher.hurt=-1 +species\:entity.cruncher.idle=-1 +species\:entity.cruncher.roar=-1 +species\:entity.cruncher.spit=-1 +species\:entity.cruncher.step=-1 +species\:entity.cruncher.stomp=-1 +species\:entity.cruncher.stun=-1 +wan_ancient_beasts\:entity.crusher.attack=-1 +wan_ancient_beasts\:entity.crusher.attack_area=-1 +wan_ancient_beasts\:entity.crusher.hurt=-1 +wan_ancient_beasts\:entity.crusher.idle=-1 +species\:entity.deepfish.death=-1 +species\:entity.deepfish.flop=-1 +species\:entity.deepfish.hurt=-1 +species\:entity.deepfish.idle=-1 +tfc\:entity.deer.ambient=-1 +tfc\:entity.deer.death=-1 +tfc\:entity.deer.hurt=-1 +tfc\:entity.deer.step=-1 +species\:entity.deflector_dummy.absorb=-1 +species\:entity.deflector_dummy.attack=-1 +species\:entity.deflector_dummy.break=-1 +species\:entity.deflector_dummy.deflect=-1 +species\:entity.deflector_dummy.hurt=-1 +species\:entity.deflector_dummy.place=-1 +tfc\:entity.dog.ambient=-1 +tfc\:entity.dog.attack=-1 +tfc\:entity.dog.death=-1 +tfc\:entity.dog.hurt=-1 +tfc\:entity.dog.sleep=-1 +tfc\:entity.dog.step=-1 +minecraft\:entity.dolphin.ambient=-1 +minecraft\:entity.dolphin.ambient_water=-1 +minecraft\:entity.dolphin.attack=-1 +minecraft\:entity.dolphin.death=-1 +minecraft\:entity.dolphin.eat=-1 +minecraft\:entity.dolphin.hurt=-1 +minecraft\:entity.dolphin.jump=-1 +minecraft\:entity.dolphin.play=-1 +minecraft\:entity.dolphin.splash=-1 +minecraft\:entity.dolphin.swim=-1 +minecraft\:entity.donkey.ambient=-1 +minecraft\:entity.donkey.angry=-1 +minecraft\:entity.donkey.chest=-1 +minecraft\:entity.donkey.death=-1 +minecraft\:entity.donkey.eat=-1 +minecraft\:entity.donkey.hurt=-1 +minecraft\:entity.dragon_fireball.explode=-1 +minecraft\:entity.drowned.ambient=-1 +minecraft\:entity.drowned.ambient_water=-1 +minecraft\:entity.drowned.death=-1 +minecraft\:entity.drowned.death_water=-1 +minecraft\:entity.drowned.hurt=-1 +minecraft\:entity.drowned.hurt_water=-1 +minecraft\:entity.drowned.shoot=-1 +minecraft\:entity.drowned.step=-1 +minecraft\:entity.drowned.swim=-1 +tfc\:entity.duck.ambient=-1 +tfc\:entity.duck.death=-1 +tfc\:entity.duck.hurt=-1 +tfc\:entity.duck.step=-1 +wan_ancient_beasts\:entity.eater.baby_roar=-1 +wan_ancient_beasts\:entity.eater.bite=-1 +wan_ancient_beasts\:entity.eater.death=-1 +wan_ancient_beasts\:entity.eater.hit=-1 +wan_ancient_beasts\:entity.eater.idle=-1 +wan_ancient_beasts\:entity.eater.roar=-1 +wan_ancient_beasts\:entity.eater.sleep=-1 +wan_ancient_beasts\:entity.eater.step=-1 +minecraft\:entity.egg.throw=-1 +minecraft\:entity.elder_guardian.ambient=-1 +minecraft\:entity.elder_guardian.ambient_land=-1 +minecraft\:entity.elder_guardian.curse=-1 +minecraft\:entity.elder_guardian.death=-1 +minecraft\:entity.elder_guardian.death_land=-1 +minecraft\:entity.elder_guardian.flop=-1 +minecraft\:entity.elder_guardian.hurt=-1 +minecraft\:entity.elder_guardian.hurt_land=-1 +minecraft\:entity.ender_dragon.ambient=-1 +minecraft\:entity.ender_dragon.death=-1 +minecraft\:entity.ender_dragon.flap=-1 +minecraft\:entity.ender_dragon.growl=-1 +minecraft\:entity.ender_dragon.hurt=-1 +minecraft\:entity.ender_dragon.shoot=-1 +minecraft\:entity.ender_eye.death=-1 +minecraft\:entity.ender_eye.launch=-1 +minecraft\:entity.ender_pearl.throw=-1 +minecraft\:entity.enderman.ambient=-1 +minecraft\:entity.enderman.death=-1 +minecraft\:entity.enderman.hurt=-1 +minecraft\:entity.enderman.scream=-1 +minecraft\:entity.enderman.stare=-1 +minecraft\:entity.enderman.teleport=-1 +minecraft\:entity.endermite.ambient=-1 +minecraft\:entity.endermite.death=-1 +minecraft\:entity.endermite.hurt=-1 +minecraft\:entity.endermite.step=-1 +minecraft\:entity.evoker.ambient=-1 +minecraft\:entity.evoker.cast_spell=-1 +minecraft\:entity.evoker.celebrate=-1 +minecraft\:entity.evoker.death=-1 +minecraft\:entity.evoker.hurt=-1 +minecraft\:entity.evoker.prepare_attack=-1 +minecraft\:entity.evoker.prepare_summon=-1 +minecraft\:entity.evoker.prepare_wololo=-1 +minecraft\:entity.evoker_fangs.attack=-1 +minecraft\:entity.experience_bottle.throw=-1 +minecraft\:entity.experience_orb.pickup=-1 +minecraft\:entity.firework_rocket.blast=-1 +minecraft\:entity.firework_rocket.blast_far=-1 +minecraft\:entity.firework_rocket.large_blast=-1 +minecraft\:entity.firework_rocket.large_blast_far=-1 +minecraft\:entity.firework_rocket.launch=-1 +minecraft\:entity.firework_rocket.shoot=-1 +minecraft\:entity.firework_rocket.twinkle=-1 +minecraft\:entity.firework_rocket.twinkle_far=-1 +minecraft\:entity.fish.swim=-1 +minecraft\:entity.fishing_bobber.retrieve=-1 +minecraft\:entity.fishing_bobber.splash=-1 +minecraft\:entity.fishing_bobber.throw=-1 +minecraft\:entity.fox.aggro=-1 +minecraft\:entity.fox.ambient=-1 +minecraft\:entity.fox.bite=-1 +minecraft\:entity.fox.death=-1 +minecraft\:entity.fox.eat=-1 +minecraft\:entity.fox.hurt=-1 +minecraft\:entity.fox.screech=-1 +minecraft\:entity.fox.sleep=-1 +minecraft\:entity.fox.sniff=-1 +minecraft\:entity.fox.spit=-1 +minecraft\:entity.fox.teleport=-1 +minecraft\:entity.frog.ambient=-1 +minecraft\:entity.frog.death=-1 +minecraft\:entity.frog.eat=-1 +minecraft\:entity.frog.hurt=-1 +minecraft\:entity.frog.lay_spawn=-1 +minecraft\:entity.frog.long_jump=-1 +minecraft\:entity.frog.step=-1 +minecraft\:entity.frog.tongue=-1 +tfc\:entity.gazelle.ambient=-1 +tfc\:entity.gazelle.death=-1 +tfc\:entity.gazelle.hurt=-1 +tfc\:entity.gazelle.step=-1 +minecraft\:entity.generic.big_fall=-1 +minecraft\:entity.generic.burn=-1 +minecraft\:entity.generic.death=-1 +minecraft\:entity.generic.drink=-1 +minecraft\:entity.generic.eat=-1 +minecraft\:entity.generic.explode=-1 +minecraft\:entity.generic.extinguish_fire=-1 +minecraft\:entity.generic.hurt=-1 +minecraft\:entity.generic.small_fall=-1 +minecraft\:entity.generic.splash=-1 +minecraft\:entity.generic.swim=-1 +minecraft\:entity.ghast.ambient=-1 +minecraft\:entity.ghast.death=-1 +minecraft\:entity.ghast.hurt=-1 +minecraft\:entity.ghast.scream=-1 +minecraft\:entity.ghast.shoot=-1 +minecraft\:entity.ghast.warn=-1 +species\:entity.ghoul.aggro=-1 +species\:entity.ghoul.angry=-1 +species\:entity.ghoul.attack=-1 +species\:entity.ghoul.confused=-1 +species\:entity.ghoul.death=-1 +species\:entity.ghoul.hurt=-1 +species\:entity.ghoul.idle=-1 +species\:entity.ghoul.infect=-1 +species\:entity.ghoul.searching=-1 +species\:entity.ghoul.step=-1 +wan_ancient_beasts\:entity.glider.death=-1 +wan_ancient_beasts\:entity.glider.flap=-1 +wan_ancient_beasts\:entity.glider.flap_start=-1 +wan_ancient_beasts\:entity.glider.hurt=-1 +wan_ancient_beasts\:entity.glider.idle=-1 +wan_ancient_beasts\:entity.glider.landing=-1 +minecraft\:entity.glow_item_frame.add_item=-1 +minecraft\:entity.glow_item_frame.break=-1 +minecraft\:entity.glow_item_frame.place=-1 +minecraft\:entity.glow_item_frame.remove_item=-1 +minecraft\:entity.glow_item_frame.rotate_item=-1 +minecraft\:entity.glow_squid.ambient=-1 +minecraft\:entity.glow_squid.death=-1 +minecraft\:entity.glow_squid.hurt=-1 +minecraft\:entity.glow_squid.squirt=-1 +minecraft\:entity.goat.ambient=-1 +minecraft\:entity.goat.death=-1 +minecraft\:entity.goat.eat=-1 +minecraft\:entity.goat.horn_break=-1 +minecraft\:entity.goat.hurt=-1 +minecraft\:entity.goat.long_jump=-1 +minecraft\:entity.goat.milk=-1 +minecraft\:entity.goat.prepare_ram=-1 +minecraft\:entity.goat.ram_impact=-1 +minecraft\:entity.goat.screaming.ambient=-1 +minecraft\:entity.goat.screaming.death=-1 +minecraft\:entity.goat.screaming.eat=-1 +minecraft\:entity.goat.screaming.horn_break=-1 +minecraft\:entity.goat.screaming.hurt=-1 +minecraft\:entity.goat.screaming.long_jump=-1 +minecraft\:entity.goat.screaming.milk=-1 +minecraft\:entity.goat.screaming.prepare_ram=-1 +minecraft\:entity.goat.screaming.ram_impact=-1 +minecraft\:entity.goat.step=-1 +species\:entity.goober.death=-1 +species\:entity.goober.eat=-1 +species\:entity.goober.hurt=-1 +species\:entity.goober.idle=-1 +species\:entity.goober.idle_resting=-1 +species\:entity.goober.lay_down=-1 +species\:entity.goober.rear_up=-1 +species\:entity.goober.sneeze=-1 +species\:entity.goober.step=-1 +species\:entity.goober.yawn=-1 +tfc\:entity.grouse.ambient=-1 +tfc\:entity.grouse.death=-1 +tfc\:entity.grouse.hurt=-1 +tfc\:entity.grouse.step=-1 +minecraft\:entity.guardian.ambient=-1 +minecraft\:entity.guardian.ambient_land=-1 +minecraft\:entity.guardian.attack=-1 +minecraft\:entity.guardian.death=-1 +minecraft\:entity.guardian.death_land=-1 +minecraft\:entity.guardian.flop=-1 +minecraft\:entity.guardian.hurt=-1 +minecraft\:entity.guardian.hurt_land=-1 +species\:entity.hanger.pull=-1 +minecraft\:entity.hoglin.ambient=-1 +minecraft\:entity.hoglin.angry=-1 +minecraft\:entity.hoglin.attack=-1 +minecraft\:entity.hoglin.converted_to_zombified=-1 +minecraft\:entity.hoglin.death=-1 +minecraft\:entity.hoglin.hurt=-1 +minecraft\:entity.hoglin.retreat=-1 +minecraft\:entity.hoglin.step=-1 +minecraft\:entity.horse.ambient=-1 +minecraft\:entity.horse.angry=-1 +minecraft\:entity.horse.armor=-1 +minecraft\:entity.horse.breathe=-1 +minecraft\:entity.horse.death=-1 +minecraft\:entity.horse.eat=-1 +minecraft\:entity.horse.gallop=-1 +minecraft\:entity.horse.hurt=-1 +minecraft\:entity.horse.jump=-1 +minecraft\:entity.horse.land=-1 +minecraft\:entity.horse.saddle=-1 +minecraft\:entity.horse.step=-1 +minecraft\:entity.horse.step_wood=-1 +minecraft\:entity.hostile.big_fall=-1 +minecraft\:entity.hostile.death=-1 +minecraft\:entity.hostile.hurt=-1 +minecraft\:entity.hostile.small_fall=-1 +minecraft\:entity.hostile.splash=-1 +minecraft\:entity.hostile.swim=-1 +minecraft\:entity.husk.ambient=-1 +minecraft\:entity.husk.converted_to_zombie=-1 +minecraft\:entity.husk.death=-1 +minecraft\:entity.husk.hurt=-1 +minecraft\:entity.husk.step=-1 +tfc\:entity.hyena.ambient=-1 +tfc\:entity.hyena.attack=-1 +tfc\:entity.hyena.death=-1 +tfc\:entity.hyena.hurt=-1 +tfc\:entity.hyena.sleep=-1 +tfc\:entity.hyena.step=-1 +minecraft\:entity.illusioner.ambient=-1 +minecraft\:entity.illusioner.cast_spell=-1 +minecraft\:entity.illusioner.death=-1 +minecraft\:entity.illusioner.hurt=-1 +minecraft\:entity.illusioner.mirror_move=-1 +minecraft\:entity.illusioner.prepare_blindness=-1 +minecraft\:entity.illusioner.prepare_mirror=-1 +minecraft\:entity.iron_golem.attack=-1 +minecraft\:entity.iron_golem.damage=-1 +minecraft\:entity.iron_golem.death=-1 +minecraft\:entity.iron_golem.hurt=-1 +minecraft\:entity.iron_golem.repair=-1 +minecraft\:entity.iron_golem.step=-1 +minecraft\:entity.item.break=-1 +minecraft\:entity.item.pickup=-1 +minecraft\:entity.item_frame.add_item=-1 +minecraft\:entity.item_frame.break=-1 +minecraft\:entity.item_frame.place=-1 +minecraft\:entity.item_frame.remove_item=-1 +minecraft\:entity.item_frame.rotate_item=-1 +tfc\:entity.jellyfish.ambient=-1 +tfc\:entity.jellyfish.death=-1 +tfc\:entity.jellyfish.flop=-1 +tfc\:entity.jellyfish.hurt=-1 +tfc\:entity.lake_trout.ambient=-1 +tfc\:entity.lake_trout.death=-1 +tfc\:entity.lake_trout.flop=-1 +tfc\:entity.lake_trout.hurt=-1 +tfc\:entity.largemouth_bass.ambient=-1 +tfc\:entity.largemouth_bass.death=-1 +tfc\:entity.largemouth_bass.flop=-1 +tfc\:entity.largemouth_bass.hurt=-1 +species\:entity.leaf_hanger.attack=-1 +species\:entity.leaf_hanger.catch=-1 +species\:entity.leaf_hanger.death=-1 +species\:entity.leaf_hanger.hurt=-1 +species\:entity.leaf_hanger.idle=-1 +species\:entity.leaf_hanger.idle_pulling=-1 +species\:entity.leaf_hanger.shoot=-1 +species\:entity.leaf_hanger.step=-1 +minecraft\:entity.leash_knot.break=-1 +minecraft\:entity.leash_knot.place=-1 +minecraft\:entity.lightning_bolt.impact=-1 +minecraft\:entity.lightning_bolt.thunder=0 +species\:entity.limpet.break=-1 +species\:entity.limpet.death=-1 +species\:entity.limpet.deflect=-1 +species\:entity.limpet.hurt=-1 +species\:entity.limpet.idle=-1 +species\:entity.limpet.step=-1 +minecraft\:entity.lingering_potion.throw=-1 +tfc\:entity.lion.ambient=-1 +tfc\:entity.lion.attack=-1 +tfc\:entity.lion.death=-1 +tfc\:entity.lion.hurt=-1 +tfc\:entity.lion.sleep=-1 +tfc\:entity.lion.step=-1 +minecraft\:entity.llama.ambient=-1 +minecraft\:entity.llama.angry=-1 +minecraft\:entity.llama.chest=-1 +minecraft\:entity.llama.death=-1 +minecraft\:entity.llama.eat=-1 +minecraft\:entity.llama.hurt=-1 +minecraft\:entity.llama.spit=-1 +minecraft\:entity.llama.step=-1 +minecraft\:entity.llama.swag=-1 +minecraft\:entity.magma_cube.death=-1 +minecraft\:entity.magma_cube.death_small=-1 +minecraft\:entity.magma_cube.hurt=-1 +minecraft\:entity.magma_cube.hurt_small=-1 +minecraft\:entity.magma_cube.jump=-1 +minecraft\:entity.magma_cube.squish=-1 +minecraft\:entity.magma_cube.squish_small=-1 +species\:entity.mammutilation.bleed=-1 +species\:entity.mammutilation.cough=-1 +species\:entity.mammutilation.death=-1 +species\:entity.mammutilation.howl=-1 +species\:entity.mammutilation.hurt=-1 +species\:entity.mammutilation.idle=-1 +species\:entity.mammutilation.mammutiful_howl=-1 +species\:entity.mammutilation.mammutiful_idle=-1 +tfc\:entity.manatee.ambient=-1 +tfc\:entity.manatee.death=-1 +tfc\:entity.manatee.flop=-1 +tfc\:entity.manatee.hurt=-1 +minecraft\:entity.minecart.inside=-1 +minecraft\:entity.minecart.inside.underwater=-1 +minecraft\:entity.minecart.riding=-1 +tfc\:entity.moose.ambient=-1 +tfc\:entity.moose.attack=-1 +tfc\:entity.moose.death=-1 +tfc\:entity.moose.hurt=-1 +tfc\:entity.moose.step=-1 +minecraft\:entity.mooshroom.convert=-1 +minecraft\:entity.mooshroom.eat=-1 +minecraft\:entity.mooshroom.milk=-1 +minecraft\:entity.mooshroom.shear=-1 +minecraft\:entity.mooshroom.suspicious_milk=-1 +minecraft\:entity.mule.ambient=-1 +minecraft\:entity.mule.angry=-1 +minecraft\:entity.mule.chest=-1 +minecraft\:entity.mule.death=-1 +minecraft\:entity.mule.eat=-1 +minecraft\:entity.mule.hurt=-1 +tfc\:entity.musk_ox.ambient=-1 +tfc\:entity.musk_ox.death=-1 +tfc\:entity.musk_ox.hurt=-1 +tfc\:entity.musk_ox.step=-1 +minecraft\:entity.ocelot.ambient=-1 +minecraft\:entity.ocelot.death=-1 +minecraft\:entity.ocelot.hurt=-1 +minecraft\:entity.painting.break=-1 +minecraft\:entity.painting.place=-1 +minecraft\:entity.panda.aggressive_ambient=-1 +minecraft\:entity.panda.ambient=-1 +minecraft\:entity.panda.bite=-1 +minecraft\:entity.panda.cant_breed=-1 +minecraft\:entity.panda.death=-1 +minecraft\:entity.panda.eat=-1 +minecraft\:entity.panda.hurt=-1 +minecraft\:entity.panda.pre_sneeze=-1 +minecraft\:entity.panda.sneeze=-1 +minecraft\:entity.panda.step=-1 +minecraft\:entity.panda.worried_ambient=-1 +minecraft\:entity.parrot.ambient=-1 +minecraft\:entity.parrot.death=-1 +minecraft\:entity.parrot.eat=-1 +minecraft\:entity.parrot.fly=-1 +minecraft\:entity.parrot.hurt=-1 +minecraft\:entity.parrot.imitate.blaze=-1 +minecraft\:entity.parrot.imitate.creeper=-1 +minecraft\:entity.parrot.imitate.drowned=-1 +minecraft\:entity.parrot.imitate.elder_guardian=-1 +minecraft\:entity.parrot.imitate.ender_dragon=-1 +minecraft\:entity.parrot.imitate.endermite=-1 +minecraft\:entity.parrot.imitate.evoker=-1 +minecraft\:entity.parrot.imitate.ghast=-1 +minecraft\:entity.parrot.imitate.guardian=-1 +minecraft\:entity.parrot.imitate.hoglin=-1 +minecraft\:entity.parrot.imitate.husk=-1 +minecraft\:entity.parrot.imitate.illusioner=-1 +minecraft\:entity.parrot.imitate.magma_cube=-1 +minecraft\:entity.parrot.imitate.phantom=-1 +minecraft\:entity.parrot.imitate.piglin=-1 +minecraft\:entity.parrot.imitate.piglin_brute=-1 +minecraft\:entity.parrot.imitate.pillager=-1 +minecraft\:entity.parrot.imitate.ravager=-1 +minecraft\:entity.parrot.imitate.shulker=-1 +minecraft\:entity.parrot.imitate.silverfish=-1 +minecraft\:entity.parrot.imitate.skeleton=-1 +minecraft\:entity.parrot.imitate.slime=-1 +minecraft\:entity.parrot.imitate.spider=-1 +minecraft\:entity.parrot.imitate.stray=-1 +minecraft\:entity.parrot.imitate.vex=-1 +minecraft\:entity.parrot.imitate.vindicator=-1 +minecraft\:entity.parrot.imitate.warden=-1 +minecraft\:entity.parrot.imitate.witch=-1 +minecraft\:entity.parrot.imitate.wither=-1 +minecraft\:entity.parrot.imitate.wither_skeleton=-1 +minecraft\:entity.parrot.imitate.zoglin=-1 +minecraft\:entity.parrot.imitate.zombie=-1 +minecraft\:entity.parrot.imitate.zombie_villager=-1 +minecraft\:entity.parrot.step=-1 +tfc\:entity.peafowl.ambient=-1 +tfc\:entity.peafowl.death=-1 +tfc\:entity.peafowl.hurt=-1 +tfc\:entity.peafowl.step=-1 +tfc\:entity.penguin.ambient=-1 +tfc\:entity.penguin.death=-1 +tfc\:entity.penguin.hurt=-1 +tfc\:entity.penguin.step=-1 +minecraft\:entity.phantom.ambient=-1 +minecraft\:entity.phantom.bite=-1 +minecraft\:entity.phantom.death=-1 +minecraft\:entity.phantom.flap=-1 +minecraft\:entity.phantom.hurt=-1 +minecraft\:entity.phantom.swoop=-1 +tfc\:entity.pheasant.ambient=-1 +tfc\:entity.pheasant.death=-1 +tfc\:entity.pheasant.hurt=-1 +tfc\:entity.pheasant.step=-1 +minecraft\:entity.pig.ambient=-1 +minecraft\:entity.pig.death=-1 +minecraft\:entity.pig.hurt=-1 +minecraft\:entity.pig.saddle=-1 +minecraft\:entity.pig.step=-1 +minecraft\:entity.piglin.admiring_item=-1 +minecraft\:entity.piglin.ambient=-1 +minecraft\:entity.piglin.angry=-1 +minecraft\:entity.piglin.celebrate=-1 +minecraft\:entity.piglin.converted_to_zombified=-1 +minecraft\:entity.piglin.death=-1 +minecraft\:entity.piglin.hurt=-1 +minecraft\:entity.piglin.jealous=-1 +minecraft\:entity.piglin.retreat=-1 +minecraft\:entity.piglin.step=-1 +minecraft\:entity.piglin_brute.ambient=-1 +minecraft\:entity.piglin_brute.angry=-1 +minecraft\:entity.piglin_brute.converted_to_zombified=-1 +minecraft\:entity.piglin_brute.death=-1 +minecraft\:entity.piglin_brute.hurt=-1 +minecraft\:entity.piglin_brute.step=-1 +minecraft\:entity.pillager.ambient=-1 +minecraft\:entity.pillager.celebrate=-1 +minecraft\:entity.pillager.death=-1 +minecraft\:entity.pillager.hurt=-1 +minecraft\:entity.player.attack.crit=-1 +minecraft\:entity.player.attack.knockback=-1 +minecraft\:entity.player.attack.nodamage=-1 +minecraft\:entity.player.attack.strong=-1 +minecraft\:entity.player.attack.sweep=-1 +minecraft\:entity.player.attack.weak=-1 +minecraft\:entity.player.big_fall=-1 +minecraft\:entity.player.breath=-1 +minecraft\:entity.player.burp=-1 +minecraft\:entity.player.death=-1 +minecraft\:entity.player.hurt=-1 +minecraft\:entity.player.hurt_drown=-1 +minecraft\:entity.player.hurt_freeze=-1 +minecraft\:entity.player.hurt_on_fire=-1 +minecraft\:entity.player.hurt_sweet_berry_bush=-1 +minecraft\:entity.player.levelup=-1 +minecraft\:entity.player.small_fall=-1 +minecraft\:entity.player.splash=-1 +minecraft\:entity.player.splash.high_speed=-1 +minecraft\:entity.player.swim=-1 +minecraft\:entity.polar_bear.ambient=-1 +minecraft\:entity.polar_bear.ambient_baby=-1 +minecraft\:entity.polar_bear.death=-1 +minecraft\:entity.polar_bear.hurt=-1 +minecraft\:entity.polar_bear.step=-1 +minecraft\:entity.polar_bear.warning=-1 +minecraft\:entity.puffer_fish.ambient=-1 +minecraft\:entity.puffer_fish.blow_out=-1 +minecraft\:entity.puffer_fish.blow_up=-1 +minecraft\:entity.puffer_fish.death=-1 +minecraft\:entity.puffer_fish.flop=-1 +minecraft\:entity.puffer_fish.hurt=-1 +minecraft\:entity.puffer_fish.sting=-1 +tfc\:entity.quail.ambient=-1 +tfc\:entity.quail.death=-1 +tfc\:entity.quail.hurt=-1 +tfc\:entity.quail.step=-1 +species\:entity.quake.absorb=-1 +species\:entity.quake.attack=-1 +species\:entity.quake.charge=-1 +species\:entity.quake.death=-1 +species\:entity.quake.finishes_unscrewing=-1 +species\:entity.quake.hurt=-1 +species\:entity.quake.recharge=-1 +species\:entity.quake.shield=-1 +species\:entity.quake.step=-1 +species\:entity.quake.unscrews=-1 +minecraft\:entity.rabbit.ambient=-1 +minecraft\:entity.rabbit.attack=-1 +minecraft\:entity.rabbit.death=-1 +minecraft\:entity.rabbit.hurt=-1 +minecraft\:entity.rabbit.jump=-1 +tfc\:entity.rainbow_trout.ambient=-1 +tfc\:entity.rainbow_trout.death=-1 +tfc\:entity.rainbow_trout.flop=-1 +tfc\:entity.rainbow_trout.hurt=-1 +tfc\:entity.ramming.impact=-1 +tfc\:entity.rat.ambient=-1 +tfc\:entity.rat.death=-1 +tfc\:entity.rat.hurt=-1 +tfc\:entity.rat.step=-1 +minecraft\:entity.ravager.ambient=-1 +minecraft\:entity.ravager.attack=-1 +minecraft\:entity.ravager.celebrate=-1 +minecraft\:entity.ravager.death=-1 +minecraft\:entity.ravager.hurt=-1 +minecraft\:entity.ravager.roar=-1 +minecraft\:entity.ravager.step=-1 +minecraft\:entity.ravager.stunned=-1 +tfc\:entity.rooster.cry=-1 +tfc\:entity.sabertooth.ambient=-1 +tfc\:entity.sabertooth.attack=-1 +tfc\:entity.sabertooth.death=-1 +tfc\:entity.sabertooth.hurt=-1 +tfc\:entity.sabertooth.sleep=-1 +tfc\:entity.sabertooth.step=-1 +minecraft\:entity.salmon.ambient=-1 +minecraft\:entity.salmon.death=-1 +minecraft\:entity.salmon.flop=-1 +minecraft\:entity.salmon.hurt=-1 +minecraft\:entity.sheep.ambient=-1 +minecraft\:entity.sheep.death=-1 +minecraft\:entity.sheep.hurt=-1 +minecraft\:entity.sheep.shear=-1 +minecraft\:entity.sheep.step=-1 +minecraft\:entity.shulker.ambient=-1 +minecraft\:entity.shulker.close=-1 +minecraft\:entity.shulker.death=-1 +minecraft\:entity.shulker.hurt=-1 +minecraft\:entity.shulker.hurt_closed=-1 +minecraft\:entity.shulker.open=-1 +minecraft\:entity.shulker.shoot=-1 +minecraft\:entity.shulker.teleport=-1 +minecraft\:entity.shulker_bullet.hit=-1 +minecraft\:entity.shulker_bullet.hurt=-1 +minecraft\:entity.silverfish.ambient=-1 +minecraft\:entity.silverfish.death=-1 +minecraft\:entity.silverfish.hurt=-1 +minecraft\:entity.silverfish.step=-1 +minecraft\:entity.skeleton.ambient=-1 +minecraft\:entity.skeleton.converted_to_stray=-1 +minecraft\:entity.skeleton.death=-1 +minecraft\:entity.skeleton.hurt=-1 +minecraft\:entity.skeleton.shoot=-1 +minecraft\:entity.skeleton.step=-1 +minecraft\:entity.skeleton_horse.ambient=-1 +minecraft\:entity.skeleton_horse.ambient_water=-1 +minecraft\:entity.skeleton_horse.death=-1 +minecraft\:entity.skeleton_horse.gallop_water=-1 +minecraft\:entity.skeleton_horse.hurt=-1 +minecraft\:entity.skeleton_horse.jump_water=-1 +minecraft\:entity.skeleton_horse.step_water=-1 +minecraft\:entity.skeleton_horse.swim=-1 +minecraft\:entity.slime.attack=-1 +minecraft\:entity.slime.death=-1 +minecraft\:entity.slime.death_small=-1 +minecraft\:entity.slime.hurt=-1 +minecraft\:entity.slime.hurt_small=-1 +minecraft\:entity.slime.jump=-1 +minecraft\:entity.slime.jump_small=-1 +minecraft\:entity.slime.squish=-1 +minecraft\:entity.slime.squish_small=-1 +tfc\:entity.smallmouth_bass.ambient=-1 +tfc\:entity.smallmouth_bass.death=-1 +tfc\:entity.smallmouth_bass.flop=-1 +tfc\:entity.smallmouth_bass.hurt=-1 +minecraft\:entity.sniffer.death=-1 +minecraft\:entity.sniffer.digging=-1 +minecraft\:entity.sniffer.digging_stop=-1 +minecraft\:entity.sniffer.drop_seed=-1 +minecraft\:entity.sniffer.eat=-1 +minecraft\:entity.sniffer.happy=-1 +minecraft\:entity.sniffer.hurt=-1 +minecraft\:entity.sniffer.idle=-1 +minecraft\:entity.sniffer.scenting=-1 +minecraft\:entity.sniffer.searching=-1 +minecraft\:entity.sniffer.sniffing=-1 +minecraft\:entity.sniffer.step=-1 +minecraft\:entity.snow_golem.ambient=-1 +minecraft\:entity.snow_golem.death=-1 +minecraft\:entity.snow_golem.hurt=-1 +minecraft\:entity.snow_golem.shear=-1 +minecraft\:entity.snow_golem.shoot=-1 +minecraft\:entity.snowball.throw=-1 +wan_ancient_beasts\:entity.soarer.attack=-1 +wan_ancient_beasts\:entity.soarer.flap=-1 +wan_ancient_beasts\:entity.soarer.flap_start=-1 +wan_ancient_beasts\:entity.soarer.glide=-1 +wan_ancient_beasts\:entity.soarer.idle=-1 +wan_ancient_beasts\:entity.soarer.landing=-1 +species\:entity.spectre.attack=-1 +species\:entity.spectre.dash=-1 +species\:entity.spectre.death=-1 +species\:entity.spectre.fly=-1 +species\:entity.spectre.hulking_attack=-1 +species\:entity.spectre.hurt=-1 +species\:entity.spectre.idle=-1 +species\:entity.spectre.jousting_attack=-1 +species\:entity.spectre.spawn=-1 +species\:entity.spectre.spot=-1 +minecraft\:entity.spider.ambient=-1 +minecraft\:entity.spider.death=-1 +minecraft\:entity.spider.hurt=-1 +minecraft\:entity.spider.step=-1 +minecraft\:entity.splash_potion.break=-1 +minecraft\:entity.splash_potion.throw=-1 +species\:entity.springling.death=-1 +species\:entity.springling.eat=-1 +species\:entity.springling.extend=-1 +species\:entity.springling.extend_finish=-1 +species\:entity.springling.hurt=-1 +species\:entity.springling.idle=-1 +species\:entity.springling.step=-1 +minecraft\:entity.squid.ambient=-1 +minecraft\:entity.squid.death=-1 +minecraft\:entity.squid.hurt=-1 +minecraft\:entity.squid.squirt=-1 +species\:entity.stackatick.death=-1 +species\:entity.stackatick.eat=-1 +species\:entity.stackatick.goofy_aah_step=-1 +species\:entity.stackatick.hurt=-1 +species\:entity.stackatick.idle=-1 +species\:entity.stackatick.sit=-1 +species\:entity.stackatick.snoring=-1 +species\:entity.stackatick.stand_up=-1 +species\:entity.stackatick.step=-1 +minecraft\:entity.stray.ambient=-1 +minecraft\:entity.stray.death=-1 +minecraft\:entity.stray.hurt=-1 +minecraft\:entity.stray.step=-1 +minecraft\:entity.strider.ambient=-1 +minecraft\:entity.strider.death=-1 +minecraft\:entity.strider.eat=-1 +minecraft\:entity.strider.happy=-1 +minecraft\:entity.strider.hurt=-1 +minecraft\:entity.strider.retreat=-1 +minecraft\:entity.strider.saddle=-1 +minecraft\:entity.strider.step=-1 +minecraft\:entity.strider.step_lava=-1 +wan_ancient_beasts\:entity.surfer.death=-1 +wan_ancient_beasts\:entity.surfer.death_baby=-1 +wan_ancient_beasts\:entity.surfer.fast_swim=-1 +wan_ancient_beasts\:entity.surfer.fast_swim_baby=-1 +wan_ancient_beasts\:entity.surfer.hurt=-1 +wan_ancient_beasts\:entity.surfer.idle=-1 +wan_ancient_beasts\:entity.surfer.idle_baby=-1 +wan_ancient_beasts\:entity.surfer.idle_to_relax=-1 +wan_ancient_beasts\:entity.surfer.idle_to_relax_baby=-1 +wan_ancient_beasts\:entity.surfer.idle_water=-1 +wan_ancient_beasts\:entity.surfer.idle_water_baby=-1 +wan_ancient_beasts\:entity.surfer.jump_landing=-1 +wan_ancient_beasts\:entity.surfer.jump_landing_baby=-1 +wan_ancient_beasts\:entity.surfer.jump_pose=-1 +wan_ancient_beasts\:entity.surfer.jump_pose_baby=-1 +wan_ancient_beasts\:entity.surfer.jump_start=-1 +wan_ancient_beasts\:entity.surfer.jump_start_baby=-1 +wan_ancient_beasts\:entity.surfer.relax=-1 +wan_ancient_beasts\:entity.surfer.relax_baby=-1 +wan_ancient_beasts\:entity.surfer.relax_to_idle=-1 +wan_ancient_beasts\:entity.surfer.relax_to_idle_baby=-1 +wan_ancient_beasts\:entity.surfer.roar=-1 +wan_ancient_beasts\:entity.surfer.roar_baby=-1 +wan_ancient_beasts\:entity.surfer.run=-1 +wan_ancient_beasts\:entity.surfer.run_baby=-1 +wan_ancient_beasts\:entity.surfer.swim=-1 +wan_ancient_beasts\:entity.surfer.swim_baby=-1 +wan_ancient_beasts\:entity.surfer.walk=-1 +wan_ancient_beasts\:entity.surfer.walk_baby=-1 +minecraft\:entity.tadpole.death=-1 +minecraft\:entity.tadpole.flop=-1 +minecraft\:entity.tadpole.grow_up=-1 +minecraft\:entity.tadpole.hurt=-1 +tfc\:entity.tfc_wolf.ambient=-1 +tfc\:entity.tfc_wolf.attack=-1 +tfc\:entity.tfc_wolf.death=-1 +tfc\:entity.tfc_wolf.hurt=-1 +tfc\:entity.tfc_wolf.sleep=-1 +tfc\:entity.tfc_wolf.step=-1 +tfc\:entity.tiger.ambient=-1 +tfc\:entity.tiger.attack=-1 +tfc\:entity.tiger.death=-1 +tfc\:entity.tiger.hurt=-1 +tfc\:entity.tiger.sleep=-1 +tfc\:entity.tiger.step=-1 +minecraft\:entity.tnt.primed=-1 +species\:entity.treeper.burn=-1 +species\:entity.treeper.death=-1 +species\:entity.treeper.hurt=-1 +species\:entity.treeper.idle=-1 +species\:entity.treeper.idle_planted=-1 +species\:entity.treeper.plant=-1 +species\:entity.treeper.shake_fail=-1 +species\:entity.treeper.shake_success=-1 +species\:entity.treeper.step=-1 +species\:entity.treeper.uproot=-1 +species\:entity.trooper.death=-1 +species\:entity.trooper.hurt=-1 +species\:entity.trooper.leaves=-1 +species\:entity.trooper.plant=-1 +species\:entity.trooper.step=-1 +species\:entity.trooper.uproot=-1 +minecraft\:entity.tropical_fish.ambient=-1 +minecraft\:entity.tropical_fish.death=-1 +minecraft\:entity.tropical_fish.flop=-1 +minecraft\:entity.tropical_fish.hurt=-1 +tfc\:entity.turkey.ambient=-1 +tfc\:entity.turkey.death=-1 +tfc\:entity.turkey.hurt=-1 +tfc\:entity.turkey.step=-1 +minecraft\:entity.turtle.ambient_land=-1 +minecraft\:entity.turtle.death=-1 +minecraft\:entity.turtle.death_baby=-1 +minecraft\:entity.turtle.egg_break=-1 +minecraft\:entity.turtle.egg_crack=-1 +minecraft\:entity.turtle.egg_hatch=-1 +minecraft\:entity.turtle.hurt=-1 +minecraft\:entity.turtle.hurt_baby=-1 +minecraft\:entity.turtle.lay_egg=-1 +minecraft\:entity.turtle.shamble=-1 +minecraft\:entity.turtle.shamble_baby=-1 +minecraft\:entity.turtle.swim=-1 +minecraft\:entity.vex.ambient=-1 +minecraft\:entity.vex.charge=-1 +minecraft\:entity.vex.death=-1 +minecraft\:entity.vex.hurt=-1 +minecraft\:entity.villager.ambient=-1 +minecraft\:entity.villager.celebrate=-1 +minecraft\:entity.villager.death=-1 +minecraft\:entity.villager.hurt=-1 +minecraft\:entity.villager.no=-1 +minecraft\:entity.villager.trade=-1 +minecraft\:entity.villager.work_armorer=-1 +minecraft\:entity.villager.work_butcher=-1 +minecraft\:entity.villager.work_cartographer=-1 +minecraft\:entity.villager.work_cleric=-1 +minecraft\:entity.villager.work_farmer=-1 +minecraft\:entity.villager.work_fisherman=-1 +minecraft\:entity.villager.work_fletcher=-1 +minecraft\:entity.villager.work_leatherworker=-1 +minecraft\:entity.villager.work_librarian=-1 +minecraft\:entity.villager.work_mason=-1 +minecraft\:entity.villager.work_shepherd=-1 +minecraft\:entity.villager.work_toolsmith=-1 +minecraft\:entity.villager.work_weaponsmith=-1 +minecraft\:entity.villager.yes=-1 +minecraft\:entity.vindicator.ambient=-1 +minecraft\:entity.vindicator.celebrate=-1 +minecraft\:entity.vindicator.death=-1 +minecraft\:entity.vindicator.hurt=-1 +wan_ancient_beasts\:entity.walker.death=-1 +wan_ancient_beasts\:entity.walker.hit=-1 +wan_ancient_beasts\:entity.walker.idle=-1 +wan_ancient_beasts\:entity.walker.step=-1 +minecraft\:entity.wandering_trader.ambient=-1 +minecraft\:entity.wandering_trader.death=-1 +minecraft\:entity.wandering_trader.disappeared=-1 +minecraft\:entity.wandering_trader.drink_milk=-1 +minecraft\:entity.wandering_trader.drink_potion=-1 +minecraft\:entity.wandering_trader.hurt=-1 +minecraft\:entity.wandering_trader.no=-1 +minecraft\:entity.wandering_trader.reappeared=-1 +minecraft\:entity.wandering_trader.trade=-1 +minecraft\:entity.wandering_trader.yes=-1 +minecraft\:entity.warden.agitated=-1 +minecraft\:entity.warden.ambient=-1 +minecraft\:entity.warden.angry=-1 +minecraft\:entity.warden.attack_impact=-1 +minecraft\:entity.warden.death=-1 +minecraft\:entity.warden.dig=-1 +minecraft\:entity.warden.emerge=-1 +minecraft\:entity.warden.heartbeat=-1 +minecraft\:entity.warden.hurt=-1 +minecraft\:entity.warden.listening=-1 +minecraft\:entity.warden.listening_angry=-1 +minecraft\:entity.warden.nearby_close=-1 +minecraft\:entity.warden.nearby_closer=-1 +minecraft\:entity.warden.nearby_closest=-1 +minecraft\:entity.warden.roar=-1 +minecraft\:entity.warden.sniff=-1 +minecraft\:entity.warden.sonic_boom=-1 +minecraft\:entity.warden.sonic_charge=-1 +minecraft\:entity.warden.step=-1 +minecraft\:entity.warden.tendril_clicks=-1 +species\:entity.wicked.death=-1 +species\:entity.wicked.haunt=-1 +species\:entity.wicked.hurt=-1 +species\:entity.wicked.idle=-1 +species\:entity.wicked.idle_haunting=-1 +species\:entity.wicked.shoot=-1 +species\:entity.wicked.spot=-1 +species\:entity.wicked.stop_haunting=-1 +tfc\:entity.wildebeest.ambient=-1 +tfc\:entity.wildebeest.attack=-1 +tfc\:entity.wildebeest.death=-1 +tfc\:entity.wildebeest.hurt=-1 +tfc\:entity.wildebeest.step=-1 +minecraft\:entity.witch.ambient=-1 +minecraft\:entity.witch.celebrate=-1 +minecraft\:entity.witch.death=-1 +minecraft\:entity.witch.drink=-1 +minecraft\:entity.witch.hurt=-1 +minecraft\:entity.witch.throw=-1 +minecraft\:entity.wither.ambient=-1 +minecraft\:entity.wither.break_block=-1 +minecraft\:entity.wither.death=-1 +minecraft\:entity.wither.hurt=-1 +minecraft\:entity.wither.shoot=-1 +minecraft\:entity.wither.spawn=-1 +minecraft\:entity.wither_skeleton.ambient=-1 +minecraft\:entity.wither_skeleton.death=-1 +minecraft\:entity.wither_skeleton.hurt=-1 +minecraft\:entity.wither_skeleton.step=-1 +minecraft\:entity.wolf.ambient=-1 +minecraft\:entity.wolf.death=-1 +minecraft\:entity.wolf.growl=-1 +minecraft\:entity.wolf.howl=-1 +minecraft\:entity.wolf.hurt=-1 +minecraft\:entity.wolf.pant=-1 +minecraft\:entity.wolf.shake=-1 +minecraft\:entity.wolf.step=-1 +minecraft\:entity.wolf.whine=-1 +species\:entity.wraptor.aggro=-1 +species\:entity.wraptor.agitated=-1 +species\:entity.wraptor.attack=-1 +species\:entity.wraptor.death=-1 +species\:entity.wraptor.egg=-1 +species\:entity.wraptor.feather_loss=-1 +species\:entity.wraptor.hurt=-1 +species\:entity.wraptor.idle=-1 +species\:entity.wraptor.shear=-1 +species\:entity.wraptor.step=-1 +tfc\:entity.yak.ambient=-1 +tfc\:entity.yak.death=-1 +tfc\:entity.yak.hurt=-1 +tfc\:entity.yak.step=-1 +minecraft\:entity.zoglin.ambient=-1 +minecraft\:entity.zoglin.angry=-1 +minecraft\:entity.zoglin.attack=-1 +minecraft\:entity.zoglin.death=-1 +minecraft\:entity.zoglin.hurt=-1 +minecraft\:entity.zoglin.step=-1 +minecraft\:entity.zombie.ambient=-1 +minecraft\:entity.zombie.attack_iron_door=-1 +minecraft\:entity.zombie.attack_wooden_door=-1 +minecraft\:entity.zombie.break_wooden_door=-1 +minecraft\:entity.zombie.converted_to_drowned=-1 +minecraft\:entity.zombie.death=-1 +minecraft\:entity.zombie.destroy_egg=-1 +minecraft\:entity.zombie.hurt=-1 +minecraft\:entity.zombie.infect=-1 +minecraft\:entity.zombie.step=-1 +minecraft\:entity.zombie_horse.ambient=-1 +minecraft\:entity.zombie_horse.death=-1 +minecraft\:entity.zombie_horse.hurt=-1 +minecraft\:entity.zombie_villager.ambient=-1 +minecraft\:entity.zombie_villager.converted=-1 +minecraft\:entity.zombie_villager.cure=-1 +minecraft\:entity.zombie_villager.death=-1 +minecraft\:entity.zombie_villager.hurt=-1 +minecraft\:entity.zombie_villager.step=-1 +minecraft\:entity.zombified_piglin.ambient=-1 +minecraft\:entity.zombified_piglin.angry=-1 +minecraft\:entity.zombified_piglin.death=-1 +minecraft\:entity.zombified_piglin.hurt=-1 +minecraft\:event.raid.horn=-1 +gtceu\:file=-1 +gtceu\:fire=-1 +deafission\:fission_loop=-1 +gtceu\:forge_hammer=-1 +create\:frogport_catch=-1 +create\:frogport_close=-1 +create\:frogport_deposit=-1 +create\:frogport_open=-1 +create\:funnel_flap=-1 +create\:funnel_flap_compounded_1=-1 +gtceu\:furnace=-1 +create\:fwoomp=-1 +ad_astra\:gravity_normalizer_idle=-1 +ae2\:guide.click=-1 +guideme\:guide.click=-1 +tacz\:gun=-1 +railways\:handcar_cogs=-1 +create\:haunted_bell_convert=-1 +create\:haunted_bell_use=-1 +endermanoverhaul\:icy_pearl_hit=-1 +minecraft\:intentionally_empty=-1 +create_connected\:interlude_music=-1 +tfc\:item.armor.equip_bismuth_bronze=-1 +tfc\:item.armor.equip_black_bronze=-1 +tfc\:item.armor.equip_black_steel=-1 +tfc\:item.armor.equip_blue_steel=-1 +tfc\:item.armor.equip_bronze=-1 +minecraft\:item.armor.equip_chain=-1 +tfc\:item.armor.equip_copper=-1 +minecraft\:item.armor.equip_diamond=-1 +minecraft\:item.armor.equip_elytra=-1 +minecraft\:item.armor.equip_generic=-1 +minecraft\:item.armor.equip_gold=-1 +minecraft\:item.armor.equip_iron=-1 +minecraft\:item.armor.equip_leather=-1 +minecraft\:item.armor.equip_netherite=-1 +tfc\:item.armor.equip_red_steel=-1 +tfc\:item.armor.equip_steel=-1 +minecraft\:item.armor.equip_turtle=-1 +tfc\:item.armor.equip_wrought_iron=-1 +minecraft\:item.axe.scrape=-1 +minecraft\:item.axe.strip=-1 +minecraft\:item.axe.wax_off=-1 +species\:item.birt_egg.hit=-1 +species\:item.birt_egg.throw=-1 +minecraft\:item.bone_meal.use=-1 +minecraft\:item.book.page_turn=-1 +minecraft\:item.book.put=-1 +minecraft\:item.bottle.empty=-1 +minecraft\:item.bottle.fill=-1 +minecraft\:item.bottle.fill_dragonbreath=-1 +minecraft\:item.brush.brushing.generic=-1 +minecraft\:item.brush.brushing.gravel=-1 +minecraft\:item.brush.brushing.gravel.complete=-1 +minecraft\:item.brush.brushing.sand=-1 +minecraft\:item.brush.brushing.sand.complete=-1 +minecraft\:item.bucket.empty=-1 +minecraft\:item.bucket.empty_axolotl=-1 +minecraft\:item.bucket.empty_fish=-1 +minecraft\:item.bucket.empty_lava=-1 +minecraft\:item.bucket.empty_milk=-1 +minecraft\:item.bucket.empty_powder_snow=-1 +minecraft\:item.bucket.empty_tadpole=-1 +minecraft\:item.bucket.fill=-1 +minecraft\:item.bucket.fill_axolotl=-1 +minecraft\:item.bucket.fill_fish=-1 +minecraft\:item.bucket.fill_lava=-1 +minecraft\:item.bucket.fill_milk=-1 +minecraft\:item.bucket.fill_powder_snow=-1 +minecraft\:item.bucket.fill_tadpole=-1 +minecraft\:item.bundle.drop_contents=-1 +minecraft\:item.bundle.insert=-1 +minecraft\:item.bundle.remove_one=-1 +exposure\:item.camera.button_click=-1 +exposure\:item.camera.dial_click=-1 +exposure\:item.camera.film_advance=-1 +exposure\:item.camera.film_advance_last=-1 +exposure\:item.camera.film_removed=-1 +exposure\:item.camera.filter_insert=-1 +exposure\:item.camera.filter_remove=-1 +exposure\:item.camera.flash=-1 +exposure\:item.camera.generic_click=-1 +exposure\:item.camera.interplanar_projector.project=-1 +exposure\:item.camera.lens_insert=-1 +exposure\:item.camera.lens_remove=-1 +exposure\:item.camera.lens_ring_click=-1 +exposure\:item.camera.release_button_click=-1 +exposure\:item.camera.shutter_close=-1 +exposure\:item.camera.shutter_open=-1 +exposure\:item.camera.shutter_ticking=-1 +exposure\:item.camera.viewfinder_close=-1 +exposure\:item.camera.viewfinder_open=-1 +tfc\:item.ceramic.break=-1 +chalk\:item.chalk_box_change=-1 +chalk\:item.chalk_box_close=-1 +chalk\:item.chalk_box_open=-1 +chalk\:item.chalk_draw=-1 +minecraft\:item.chorus_fruit.teleport=-1 +tfc\:item.cool=-1 +species\:item.cracked_wraptor_egg.slurp=-1 +species\:item.crankbow.load_arrow=-1 +species\:item.crankbow.pull=-1 +species\:item.crankbow.quick_pull=-1 +species\:item.crankbow.remove_arrow=-1 +species\:item.crankbow.shoot=-1 +species\:item.crankbow.shoot_spare=-1 +species\:item.crankbow.speed=-1 +species\:item.crankbow.stop=-1 +minecraft\:item.crop.plant=-1 +minecraft\:item.crossbow.hit=-1 +minecraft\:item.crossbow.loading_end=-1 +minecraft\:item.crossbow.loading_middle=-1 +minecraft\:item.crossbow.loading_start=-1 +minecraft\:item.crossbow.quick_charge_1=-1 +minecraft\:item.crossbow.quick_charge_2=-1 +minecraft\:item.crossbow.quick_charge_3=-1 +minecraft\:item.crossbow.shoot=-1 +minecraft\:item.dye.use=-1 +minecraft\:item.elytra.flying=-1 +tfc\:item.fertilizer.use=-1 +minecraft\:item.firecharge.use=-1 +tfc\:item.firestarter.use=-1 +waterflasks\:item.flaskbreak=-1 +minecraft\:item.flintandsteel.use=-1 +chalk\:item.glow_applied=-1 +minecraft\:item.glow_ink_sac.use=-1 +minecraft\:item.goat_horn.play=-1 +minecraft\:item.goat_horn.sound.0=0 +minecraft\:item.goat_horn.sound.1=0 +minecraft\:item.goat_horn.sound.2=0 +minecraft\:item.goat_horn.sound.3=0 +minecraft\:item.goat_horn.sound.4=0 +minecraft\:item.goat_horn.sound.5=0 +minecraft\:item.goat_horn.sound.6=0 +minecraft\:item.goat_horn.sound.7=0 +species\:item.harpoon.anchor=-1 +species\:item.harpoon.pull=-1 +species\:item.harpoon.retrieved=-1 +species\:item.harpoon.start_ziplining=-1 +species\:item.harpoon.thrown=-1 +species\:item.harpoon.ziplining=-1 +minecraft\:item.hoe.till=-1 +firmalife\:item.hollow_shell.blow=-1 +minecraft\:item.honey_bottle.drink=-1 +minecraft\:item.honeycomb.wax_on=-1 +species\:item.ichor_bottle.applied=-1 +minecraft\:item.ink_sac.use=-1 +tfc\:item.javelin.hit=-1 +tfc\:item.javelin.hit_ground=-1 +tfc\:item.javelin.throw=-1 +tfc\:item.jug.blow=-1 +tfc\:item.knapping.clay=-1 +tfc\:item.knapping.leather=-1 +tfc\:item.knapping.stone=-1 +minecraft\:item.lodestone_compass.lock=-1 +species\:item.monster_meal.apply=-1 +minecraft\:item.nether_wart.plant=-1 +tfc\:item.pan.use=-1 +exposure\:item.photograph.break=-1 +exposure\:item.photograph.place=-1 +exposure\:item.photograph.rustle=-1 +exposure\:item.photograph_frame.add_item=-1 +exposure\:item.photograph_frame.break=-1 +exposure\:item.photograph_frame.place=-1 +exposure\:item.photograph_frame.remove_item=-1 +exposure\:item.photograph_frame.rotate_item=-1 +species\:item.ricoshield.absorb=-1 +species\:item.ricoshield.attack=-1 +minecraft\:item.shield.block=-1 +minecraft\:item.shield.break=-1 +minecraft\:item.shovel.flatten=-1 +species\:item.smoke_bomb.charge=-1 +species\:item.smoke_bomb.use=-1 +species\:item.spectralibur.collect_soul=-1 +species\:item.spectralibur.release_spectre=-1 +species\:item.spectralibur.start_charging=-1 +species\:item.spectralibur.use_soul=-1 +minecraft\:item.spyglass.stop_using=-1 +minecraft\:item.spyglass.use=-1 +minecraft\:item.totem.use=-1 +minecraft\:item.trident.hit=-1 +minecraft\:item.trident.hit_ground=-1 +minecraft\:item.trident.return=-1 +minecraft\:item.trident.riptide_1=-1 +minecraft\:item.trident.riptide_2=-1 +minecraft\:item.trident.riptide_3=-1 +minecraft\:item.trident.throw=-1 +minecraft\:item.trident.thunder=-1 +species\:item.wicked_dope.boost=-1 +species\:item.wicked_dope.fail=-1 +species\:item.wicked_mask.equip=-1 +species\:item.wicked_mask.link=-1 +species\:item.wicked_swapper.fail=-1 +species\:item.wicked_swapper.teleport=-1 +species\:item.wicked_swapper.throw=-1 +species\:item.wicked_treat.apply=-1 +species\:item.wicked_wax.eat=-1 +species\:item.youth_potion.baby=-1 +species\:item.youth_potion.stumped=-1 +create\:item_hatch=-1 +create\:item_hatch_compounded_1=-1 +gtceu\:jet_engine=-1 +createaddition\:little_zap=-1 +createaddition\:loud_zap=-1 +gtceu\:macerator=-1 +create\:mechanical_press_activation=-1 +create\:mechanical_press_activation_belt=-1 +create\:mechanical_press_activation_belt_compounded_1=-1 +create\:mechanical_press_activation_compounded_1=-1 +gtceu\:metal_pipe=-1 +gtceu\:miner=-1 +gtceu\:mixer=-1 +create\:mixing=-1 +create\:mixing_compounded_1=-1 +gtceu\:mortar=-1 +gtceu\:motor=-1 +minecraft\:music.creative=-1 +minecraft\:music.credits=-1 +species\:music.disc.dial=-1 +species\:music.disc.lapidarian=-1 +species\:music.disk.spawner=-1 +minecraft\:music.dragon=-1 +minecraft\:music.end=-1 +minecraft\:music.game=-1 +species\:music.happy_birtday=-1 +minecraft\:music.menu=-1 +minecraft\:music.nether.basalt_deltas=-1 +minecraft\:music.nether.crimson_forest=-1 +minecraft\:music.nether.nether_wastes=-1 +minecraft\:music.nether.soul_sand_valley=-1 +minecraft\:music.nether.warped_forest=-1 +minecraft\:music.overworld.badlands=-1 +minecraft\:music.overworld.bamboo_jungle=-1 +minecraft\:music.overworld.cherry_grove=-1 +minecraft\:music.overworld.deep_dark=-1 +minecraft\:music.overworld.desert=-1 +minecraft\:music.overworld.dripstone_caves=-1 +minecraft\:music.overworld.flower_forest=-1 +minecraft\:music.overworld.forest=-1 +minecraft\:music.overworld.frozen_peaks=-1 +minecraft\:music.overworld.grove=-1 +minecraft\:music.overworld.jagged_peaks=-1 +minecraft\:music.overworld.jungle=-1 +minecraft\:music.overworld.lush_caves=-1 +minecraft\:music.overworld.meadow=-1 +minecraft\:music.overworld.old_growth_taiga=-1 +minecraft\:music.overworld.snowy_slopes=-1 +minecraft\:music.overworld.sparse_jungle=-1 +minecraft\:music.overworld.stony_peaks=-1 +minecraft\:music.overworld.swamp=-1 +minecraft\:music.under_water=-1 +minecraft\:music_disc.11=-1 +minecraft\:music_disc.13=-1 +minecraft\:music_disc.5=-1 +minecraft\:music_disc.blocks=-1 +minecraft\:music_disc.cat=-1 +minecraft\:music_disc.chirp=-1 +minecraft\:music_disc.far=-1 +minecraft\:music_disc.mall=-1 +minecraft\:music_disc.mellohi=-1 +minecraft\:music_disc.otherside=-1 +minecraft\:music_disc.pigstep=-1 +minecraft\:music_disc.relic=-1 +minecraft\:music_disc.stal=-1 +minecraft\:music_disc.strad=-1 +minecraft\:music_disc.wait=-1 +minecraft\:music_disc.ward=-1 +alekiships\:music_disc_pirate_crafting=-1 +ad_astra\:oxygen_intake=-1 +ad_astra\:oxygen_outtake=-1 +create\:package_pop=-1 +create\:package_pop_compounded_1=-1 +create\:packager=-1 +minecraft\:particle.soul_escape=-1 +create\:peculiar_bell_use=-1 +endermanoverhaul\:plant_enderman_ambient=-1 +endermanoverhaul\:plant_enderman_hurt=-1 +gtceu\:plunger=-1 +gtceu\:portable_scanner=-1 +gtceu\:portal_closing=-1 +gtceu\:portal_opening=-1 +create\:potato_hit=-1 +create\:potato_hit_compounded_1=-1 +immersive_aircraft\:propeller=-1 +immersive_aircraft\:propeller_bamboo_hopper=-1 +immersive_aircraft\:propeller_small=-1 +immersive_aircraft\:propeller_tiny=-1 +tfc\:random.dirt_slide_short=-1 +tfc\:random.rock_slide_long=-1 +tfc\:random.rock_slide_long_fake=-1 +tfc\:random.rock_slide_short=-1 +tfc\:random.rock_smash=-1 +immersive_aircraft\:repair=-1 +gtceu\:replicator=-1 +playerrevive\:revived=-1 +ad_astra\:rocket=-1 +ad_astra\:rocket_launch=-1 +create\:sanding_long=-1 +create\:sanding_short=-1 +gtceu\:saw=-1 +create\:saw_activate_stone=-1 +create\:saw_activate_wood=-1 +create\:schematicannon_finish=-1 +create\:schematicannon_launch_block=-1 +gtceu\:science=-1 +gtceu\:screwdriver=-1 +create\:scroll_value=-1 +ad_astra\:sliding_door_close=-1 +ad_astra\:sliding_door_open=-1 +create\:slime_added=-1 +gtceu\:soft_hammer=-1 +endermanoverhaul\:soul_pearl_hit=-1 +create\:spout=-1 +gtceu\:spray_can=-1 +create\:steam=-1 +create\:stock_link=-1 +create\:stock_ticker_request=-1 +create\:stock_ticker_trade=-1 +create_hypertube\:suction=-1 +endermanoverhaul\:summoner_pearl_hit=-1 +gtceu\:sus=-1 +endermanoverhaul\:tall_enderman_ambient=-1 +endermanoverhaul\:tall_enderman_death=-1 +endermanoverhaul\:tall_enderman_stare=-1 +tacz\:target_block_hit=-1 +createaddition\:tesla_coil=-1 +sandworm_mod\:thumper=-1 +create\:train=-1 +create\:train2=-1 +create\:train3=-1 +create_hypertube\:traveling=-1 +fallingtrees\:tree_fall=-1 +fallingtrees\:tree_impact=-1 +gtceu\:turbine=-1 +minecraft\:ui.button.click=-1 +minecraft\:ui.cartography_table.take_result=-1 +etched\:ui.etching_table.take_result=-1 +minecraft\:ui.loom.select_pattern=-1 +minecraft\:ui.loom.take_result=-1 +minecraft\:ui.stonecutter.select_recipe=-1 +minecraft\:ui.stonecutter.take_result=-1 +minecraft\:ui.toast.challenge_complete=-1 +minecraft\:ui.toast.in=-1 +minecraft\:ui.toast.out=-1 +immersive_aircraft\:warship=-1 +cucumber\:watering_can=-1 +waves\:waves.waves_breaking=-1 +minecraft\:weather.rain=0 +minecraft\:weather.rain.above=0 +create\:whistle=-1 +create\:whistle_high=-1 +create\:whistle_low=-1 +create\:whistle_train=-1 +create\:whistle_train_low=-1 +create\:whistle_train_manual=-1 +create\:whistle_train_manual_end=-1 +create\:whistle_train_manual_low=-1 +create\:whistle_train_manual_low_end=-1 +gtceu\:wirecutter=-1 +immersive_aircraft\:woosh=-1 +create\:worldshaper_place=-1 +sandworm_mod\:worm_breach=-1 +sandworm_mod\:worm_burrow=-1 +sandworm_mod\:worm_land=-1 +sandworm_mod\:worm_roar=-1 +sandworm_mod\:worm_spawn=-1 +sandworm_mod\:worm_warning_1=-1 +sandworm_mod\:worm_warning_2=-1 +ad_astra\:wrench=-1 +gtceu\:wrench=-1 +create\:wrench_remove=-1 +create\:wrench_remove_compounded_1=-1 +create\:wrench_rotate=-1 diff --git a/config/tfc_gurman-common.toml b/config/tfc_gurman-common.toml new file mode 100644 index 000000000..56eb2e10d --- /dev/null +++ b/config/tfc_gurman-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/config/tfcambiental-client.toml b/config/tfcambiental-client.toml index cd82a3e24..edec1e8a4 100644 --- a/config/tfcambiental-client.toml +++ b/config/tfcambiental-client.toml @@ -1,4 +1,3 @@ -#For all ARGB values, set to 00000000 to disable the feature in that season #How dark should the noise be at most? Set to 0 to disable noise entirely #Range: 0.0 ~ 0.5 noiseDarkness = 0.18 @@ -25,3 +24,4 @@ useFahrenheit = false #Offset the GUI elements. Useful if you're using a resourcep ack that changes the health or hunger bars #Range: 0.0 ~ 3.4028234663852886E38 guiOffset = 8.0 + diff --git a/config/timeout_fixes-common.toml b/config/timeout_fixes-common.toml new file mode 100644 index 000000000..c2e982118 --- /dev/null +++ b/config/timeout_fixes-common.toml @@ -0,0 +1,6 @@ + +#General mod settings +[general] + #Range: 1 ~ 30000 + timeoutInSeconds = 240 + diff --git a/config/tp_shooting-client.toml b/config/tp_shooting-client.toml new file mode 100644 index 000000000..ad310fdbf --- /dev/null +++ b/config/tp_shooting-client.toml @@ -0,0 +1,14 @@ +#Make fov scale at shoulder surfing view constant, ignoring scopes on current gun +constant_aiming_zoom_scale = true +#FOV scale for constant_aiming_fov_scale +#Range: 0.0 ~ 1.7976931348623157E308 +constant_aiming_zoom_scale_value = 3.125 +#(Locked) ads speed for constant_aiming_fov_scale +#Range: 0.0 ~ 1.7976931348623157E308 +constant_aiming_ads_speed = 1.0 +#This option is broken and has no effect on TaC Zero. +#========================== Original Description ========================== +#If enabled, tapping the aim button will put you in/out of first person view +#This only works while TAC's Config.CLIENT.controls.holdToAim is set to true +dynamic_aim_mode = true + diff --git a/config/transition.json b/config/transition.json new file mode 100644 index 000000000..652c133b8 --- /dev/null +++ b/config/transition.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "userConsentedToSendCrashReports": false +} \ No newline at end of file diff --git a/config/trender.json b/config/trender.json new file mode 100644 index 000000000..f07510e2c --- /dev/null +++ b/config/trender.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "style": "VANILLA_OLD" +} \ No newline at end of file diff --git a/config/waves-common.toml b/config/waves-common.toml index 8bab5484b..4899ee43b 100644 --- a/config/waves-common.toml +++ b/config/waves-common.toml @@ -1,5 +1,3 @@ -#Toggle the spawning of wave entities? This prevents the waves from depositing blocks on the shores. True = enabled. -toggleWaveEntities = true #Toggle whether or not waves should be able to interact (push) with nearby entities? True = enabled. waveEntityInteraction = true #Toggle whether spawning should be equally distributed across distance from the player or have a higher chance to spawn near the player. True = equal distribution. @@ -53,28 +51,20 @@ waveInteractionForceFactor = 1.0 #Range: > 1 waveInteractionUpdateFrequency = 4 -[Debug] +["Debug, Processing and Caching"] #Enable debug? debug = false - #Axis rotation index. - #Range: 0 ~ 5 - axisIndex = 0 - #Axis rotation. - #Range: -360.0 ~ 360.0 - axisRotation = 0.0 - -[Caching] + #Enable parallel processing for performance-critical tasks. + #When enabled, certain operations - such as wave spawning, shore detection, and entity interactions - + #may be executed concurrently across multiple threads. This can significantly improve performance on multi-core systems. + #Recommended for servers with high entity load. + parallelProcessing = true #Toggle whether or not caches should be utilized. For larger servers with lots of activity, the benefit of using caches give diminishing returns. useCaches = true - #How often the caches should be purged. The time is in ticks, so 20 ticks = 1 second. - #Range: > 1 - cacheUpdateFrequency = 12000 - #Cache nearest found shore positions? - cacheNearestShorePos = true - #Cache all found shore positions? - cacheShorePos = false - #Cache if shore positions are surrounded by water? - cacheSurroundedByWater = false - #Cache amount of surrounding blocks that are water? - cacheSurroundingWaterAmount = false + #How often the caches should be updated. The time is in ticks, so 20 ticks = 1 second. Set to 0 to disable cache updates. + #Range: > 0 + cacheUpdateFrequency = 6000 + #How often the caches should be reset. The time is in ticks, so 20 ticks = 1 second. Set to 0 to disable cache updates. + #Range: > 0 + cacheResetFrequency = 24000 diff --git a/config/waves/waves.json b/config/waves/waves.json index 78e7c362d..6064ec4b0 100644 --- a/config/waves/waves.json +++ b/config/waves/waves.json @@ -1,6 +1,6 @@ { "auto_update": true, - "version": "1.5.1", + "version": "1.6.1", "waves": [ { "dimensions": [ diff --git a/defaultconfigs/create-server.toml b/defaultconfigs/create-server.toml index 0306ea44a..7d235c600 100644 --- a/defaultconfigs/create-server.toml +++ b/defaultconfigs/create-server.toml @@ -203,6 +203,9 @@ #Whether the players hitbox should be expanded to the size of the contraption hitbox. #[Technical] syncPlayerPickupHitboxWithContraptionHitbox = false + #. + #Whether to prevent block dropping when contraption is placed inside in-world blocks. + noDropWhenContraptionReplaceBlocks = false #. #Configure speed/capacity levels for requirements and indicators. diff --git a/defaultconfigs/create_hypertube-server.toml b/defaultconfigs/create_hypertube-server.toml index 0bcd1a986..9fd8ac354 100644 --- a/defaultconfigs/create_hypertube-server.toml +++ b/defaultconfigs/create_hypertube-server.toml @@ -1,8 +1,29 @@ #Change these settings to customize the server-side behavior of the mod. ["Travel Settings"] - #Allow fish to go through the tubes. (experimental) - allowFishTravel = true - #Allow villagers to go through the tubes. - allowVillagerTravel = true + #How to handle entity travel permissions: + #TAG_ONLY - Use only the 'create_hypertube:traveller_entities' tag from datapacks + #WHITELIST - Only entities in the whitelist can travel (ignores tag) + #BLACKLIST - All entities can travel except those in the blacklist + #TAG_WITH_BLACKLIST - Use tag but exclude entities in the blacklist + #Allowed Values: TAG_ONLY, WHITELIST, BLACKLIST, TAG_WITH_BLACKLIST + entityListMode = "BLACKLIST" + #Entities that CAN travel (only used when mode is WHITELIST). + #Use entity registry names like 'minecraft:villager' or 'create:package' + entityWhitelist = ["minecraft:player", "minecraft:villager", "minecraft:wandering_trader", "create:package"] + #Entities that CANNOT travel (used in BLACKLIST and TAG_WITH_BLACKLIST modes). + #Use entity registry names like 'minecraft:creeper' or 'minecraft:wither' + entityBlacklist = ["minecraft:wither", "minecraft:ender_dragon"] + #Multiplier for the speed of the tubes. Default is 1.0, which is normal speed. (THIS IS HIGHLY EXPERIMENTAL) + #Range: 0.5 ~ 99.0 + speedMultiplier = 1.0 + +#Stress Settings +["Stress Settings"] + #Stress impact of the Hyper Entrance block. + #Range: 0.0 ~ 100.0 + entranceStressImpact = 4.0 + #Stress impact of the Hyper Accelerator block. + #Range: 0.0 ~ 100.0 + acceleratorStressImpact = 4.0 diff --git a/defaultconfigs/createhorsepower-server.toml b/defaultconfigs/createhorsepower-server.toml index 521d4e8b8..99f557598 100644 --- a/defaultconfigs/createhorsepower-server.toml +++ b/defaultconfigs/createhorsepower-server.toml @@ -24,9 +24,9 @@ poorPathBlock = ["tfc:rooted_dirt/sandy_loam", "tfc:clay/sandy_loam", "tfc:dirt/ #Types of blocks valid as "Normal" quality normalPathBlock = ["tfc:rock/gravel/granite", "tfc:rock/gravel/diorite", "tfc:rock/gravel/gabbro", "tfc:rock/gravel/shale", "tfc:rock/gravel/claystone", "tfc:rock/gravel/limestone", "tfc:rock/gravel/conglomerate", "tfc:rock/gravel/dolomite", "tfc:rock/gravel/chert", "tfc:rock/gravel/schist", "tfc:rock/gravel/phyllite", "tfc:rock/gravel/slate", "tfc:rock/gravel/quartzite", "tfc:rock/gravel/dacite", "tfc:rock/gravel/andesite", "tfc:rock/gravel/basalt", "tfc:rock/gravel/rhyolite", "tfc:rock/gravel/chalk", "tfc:rock/gravel/marble", "tfg:rock/gravel_dripstone", "tfg:rock/gravel_deepslate", "tfg:rock/gravel_blackstone", "tfg:rock/gravel_moon", "tfg:rock/gravel_moon_deepslate", "tfg:rock/gravel_glacio", "tfg:rock/gravel_mars", "tfg:rock/gravel_venus", "tfg:rock/gravel_mercury", "tfg:rock/gravel_crackrack", "tfc:grass_path/silt", "tfc:grass_path/loam", "tfc:grass_path/sandy_loam", "tfc:grass_path/silty_loam", "tfg:grass/mars_path", "rnr:hoggin"] #Types of blocks valid as "Great" quality -greatPathBlock = ["rnr:rock/gravel_road/chert", "rnr:rock/gravel_road/chalk", "rnr:rock/gravel_road/rhyolite", "rnr:rock/gravel_road/basalt", "rnr:rock/gravel_road/andesite", "rnr:rock/gravel_road/claystone", "rnr:rock/gravel_road/limestone", "rnr:rock/gravel_road/conglomerate", "rnr:rock/gravel_road/dolomite", "rnr:rock/sett_road/granite", "rnr:rock/sett_road/diorite", "rnr:rock/sett_road/chalk", "rnr:rock/sett_road/rhyolite", "rnr:rock/sett_road/basalt", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/sett_road/andesite", "rnr:rock/cobbled_road/chert", "rnr:rock/cobbled_road/dolomite", "rnr:rock/gravel_road/granite", "rnr:rock/gravel_road/marble", "rnr:rock/gravel_road/schist", "rnr:rock/gravel_road/phyllite", "rnr:rock/gravel_road/slate", "rnr:rock/gravel_road/quartzite", "rnr:rock/gravel_road/dacite", "rnr:rock/macadam_road/rhyolite", "rnr:rock/macadam_road/chalk", "rnr:rock/macadam_road/chert", "rnr:rock/macadam_road/dolomite", "rnr:rock/macadam_road/conglomerate", "rnr:rock/macadam_road/limestone", "rnr:rock/macadam_road/gabbro", "rnr:rock/macadam_road/claystone", "rnr:rock/macadam_road/shale", "rnr:rock/macadam_road/gneiss", "rnr:rock/macadam_road/marble", "rnr:rock/macadam_road/schist", "rnr:rock/macadam_road/phyllite", "rnr:rock/macadam_road/slate", "rnr:rock/macadam_road/quartzite", "rnr:rock/macadam_road/dacite", "rnr:rock/macadam_road/andesite", "rnr:rock/macadam_road/basalt", "rnr:rock/gravel_road/diorite", "rnr:rock/gravel_road/gabbro", "rnr:rock/gravel_road/shale", "rnr:rock/macadam_road/diorite", "rnr:rock/macadam_road/granite", "rnr:rock/cobbled_road/conglomerate", "rnr:rock/cobbled_road/limestone", "rnr:rock/cobbled_road/claystone", "rnr:rock/cobbled_road/shale", "rnr:rock/cobbled_road/gabbro", "rnr:rock/cobbled_road/diorite", "rnr:rock/cobbled_road/granite", "rnr:rock/cobbled_road/phyllite", "rnr:rock/cobbled_road/schist", "rnr:rock/cobbled_road/slate", "rnr:rock/cobbled_road/quartzite", "rnr:rock/cobbled_road/dacite", "rnr:rock/cobbled_road/andesite", "rnr:rock/cobbled_road/rhyolite", "rnr:rock/cobbled_road/basalt", "rnr:rock/cobbled_road/chalk", "rnr:rock/cobbled_road/gneiss", "rnr:rock/cobbled_road/marble", "rnr:rock/sett_road/chert", "rnr:rock/sett_road/dolomite", "rnr:rock/sett_road/conglomerate", "rnr:rock/sett_road/limestone", "rnr:rock/sett_road/claystone", "rnr:rock/sett_road/shale", "rnr:rock/sett_road/gabbro", "rnr:rock/flagstones/gneiss", "rnr:rock/flagstones/marble", "rnr:black_sandstone_flagstones", "rnr:brown_sandstone_flagstones", "rnr:green_sandstone_flagstones", "rnr:pink_sandstone_flagstones", "rnr:red_sandstone_flagstones", "rnr:white_sandstone_flagstones", "rnr:yellow_sandstone_flagstones", "rnr:concrete_road_sett", "rnr:brick_road", "rnr:rock/sett_road/marble", "rnr:rock/sett_road/gneiss", "rnr:rock/sett_road/schist", "rnr:rock/sett_road/phyllite", "rnr:rock/sett_road/slate", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/flagstones/chert", "rnr:rock/flagstones/dolomite", "rnr:rock/flagstones/conglomerate", "rnr:rock/flagstones/limestone", "rnr:rock/flagstones/claystone", "rnr:rock/flagstones/shale", "rnr:rock/flagstones/gabbro", "rnr:rock/flagstones/diorite", "rnr:rock/flagstones/granite", "rnr:rock/flagstones/schist", "rnr:rock/flagstones/phyllite", "rnr:rock/flagstones/slate", "rnr:rock/flagstones/quartzite", "rnr:rock/flagstones/andesite", "rnr:rock/flagstones/dacite", "rnr:rock/flagstones/basalt", "rnr:rock/flagstones/rhyolite", "rnr:rock/flagstones/chalk", "greate:andesite_shaft", "greate:steel_shaft", "greate:andesite_cogwheel", "greate:steel_cogwheel", "greate:large_andesite_cogwheel", "greate:large_steel_cogwheel"] +greatPathBlock = ["rnr:rock/gravel_road/chert", "rnr:rock/gravel_road/chalk", "rnr:rock/gravel_road/rhyolite", "rnr:rock/gravel_road/basalt", "rnr:rock/gravel_road/andesite", "rnr:rock/gravel_road/claystone", "rnr:rock/gravel_road/limestone", "rnr:rock/gravel_road/conglomerate", "rnr:rock/gravel_road/dolomite", "rnr:rock/sett_road/granite", "rnr:rock/sett_road/diorite", "rnr:rock/sett_road/chalk", "rnr:rock/sett_road/rhyolite", "rnr:rock/sett_road/basalt", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/sett_road/andesite", "rnr:rock/cobbled_road/chert", "rnr:rock/cobbled_road/dolomite", "rnr:rock/gravel_road/granite", "rnr:rock/gravel_road/marble", "rnr:rock/gravel_road/schist", "rnr:rock/gravel_road/phyllite", "rnr:rock/gravel_road/slate", "rnr:rock/gravel_road/quartzite", "rnr:rock/gravel_road/dacite", "rnr:rock/macadam_road/rhyolite", "rnr:rock/macadam_road/chalk", "rnr:rock/macadam_road/chert", "rnr:rock/macadam_road/dolomite", "rnr:rock/macadam_road/conglomerate", "rnr:rock/macadam_road/limestone", "rnr:rock/macadam_road/gabbro", "rnr:rock/macadam_road/claystone", "rnr:rock/macadam_road/shale", "rnr:rock/macadam_road/gneiss", "rnr:rock/macadam_road/marble", "rnr:rock/macadam_road/schist", "rnr:rock/macadam_road/phyllite", "rnr:rock/macadam_road/slate", "rnr:rock/macadam_road/quartzite", "rnr:rock/macadam_road/dacite", "rnr:rock/macadam_road/andesite", "rnr:rock/macadam_road/basalt", "rnr:rock/gravel_road/diorite", "rnr:rock/gravel_road/gabbro", "rnr:rock/gravel_road/shale", "rnr:rock/macadam_road/diorite", "rnr:rock/macadam_road/granite", "rnr:rock/cobbled_road/conglomerate", "rnr:rock/cobbled_road/limestone", "rnr:rock/cobbled_road/claystone", "rnr:rock/cobbled_road/shale", "rnr:rock/cobbled_road/gabbro", "rnr:rock/cobbled_road/diorite", "rnr:rock/cobbled_road/granite", "rnr:rock/cobbled_road/phyllite", "rnr:rock/cobbled_road/schist", "rnr:rock/cobbled_road/slate", "rnr:rock/cobbled_road/quartzite", "rnr:rock/cobbled_road/dacite", "rnr:rock/cobbled_road/andesite", "rnr:rock/cobbled_road/rhyolite", "rnr:rock/cobbled_road/basalt", "rnr:rock/cobbled_road/chalk", "rnr:rock/cobbled_road/gneiss", "rnr:rock/cobbled_road/marble", "rnr:rock/sett_road/chert", "rnr:rock/sett_road/dolomite", "rnr:rock/sett_road/conglomerate", "rnr:rock/sett_road/limestone", "rnr:rock/sett_road/claystone", "rnr:rock/sett_road/shale", "rnr:rock/sett_road/gabbro", "rnr:rock/flagstones/gneiss", "rnr:rock/flagstones/marble", "rnr:black_sandstone_flagstones", "rnr:brown_sandstone_flagstones", "rnr:green_sandstone_flagstones", "rnr:pink_sandstone_flagstones", "rnr:red_sandstone_flagstones", "rnr:white_sandstone_flagstones", "rnr:yellow_sandstone_flagstones", "rnr:concrete_road_sett", "rnr:brick_road", "rnr:rock/sett_road/marble", "rnr:rock/sett_road/gneiss", "rnr:rock/sett_road/schist", "rnr:rock/sett_road/phyllite", "rnr:rock/sett_road/slate", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/flagstones/chert", "rnr:rock/flagstones/dolomite", "rnr:rock/flagstones/conglomerate", "rnr:rock/flagstones/limestone", "rnr:rock/flagstones/claystone", "rnr:rock/flagstones/shale", "rnr:rock/flagstones/gabbro", "rnr:rock/flagstones/diorite", "rnr:rock/flagstones/granite", "rnr:rock/flagstones/schist", "rnr:rock/flagstones/phyllite", "rnr:rock/flagstones/slate", "rnr:rock/flagstones/quartzite", "rnr:rock/flagstones/andesite", "rnr:rock/flagstones/dacite", "rnr:rock/flagstones/basalt", "rnr:rock/flagstones/rhyolite", "rnr:rock/flagstones/chalk", "greate:steel_shaft", "greate:steel_cogwheel", "greate:large_steel_cogwheel"] #Valid "Small" creatures -smallCreatures = ["tfc:wolf", "tfc:dog", "tfc:pig", "tfc:sheep", "tfc:goat", "tfc:alpaca", "tfg:glacian_ram", "tfg:wraptor", "species:springaling", "tfg:surfer"] +smallCreatures = ["tfc:wolf", "tfc:dog", "tfc:pig", "tfc:sheep", "tfc:goat", "tfc:alpaca", "tfg:glacian_ram", "tfg:wraptor", "tfg:surfer"] #Valid "Medium" creatures mediumCreatures = ["tfc:cow", "tfc:donkey", "tfc:dolphin", "wan_ancient_beasts:glider", "wan_ancient_beasts:soarer"] #Valid "Large" creatures diff --git a/defaultconfigs/goprone-server.toml b/defaultconfigs/goprone-server.toml new file mode 100644 index 000000000..1220f9fb2 --- /dev/null +++ b/defaultconfigs/goprone-server.toml @@ -0,0 +1,19 @@ + +#Toggles to allow/disable going prone in various circumstances +[allowProne] + #Allow while flying (applies any time the player is off the ground) + flying = true + #Allow while riding another entity + #If this is true, then you cannot go prone while riding any entities in the tag "goprone:blacklisted_entities" but you can when riding any others + #If this is false, then you can go prone while riding any entities in the tag "goprone:whitelisted_entities" but you cannot when riding any others + riding = false + #Allow while climbing (applies any time the player is on a climbable block) + climbing = false + +#Other options not related to when you can go prone +[other] + #Can players jump while prone + isJumpingAllowed = true + #Can players sprint while prone. Also controls whether sprinting is cancelled when going prone + isSprintingAllowed = true + diff --git a/defaultconfigs/jumbofurnace-server.toml b/defaultconfigs/jumbofurnace-server.toml new file mode 100644 index 000000000..299c60cd4 --- /dev/null +++ b/defaultconfigs/jumbofurnace-server.toml @@ -0,0 +1,10 @@ + +["Cooking Settings"] + #Cook Time: Time in ticks needed for one cooking cycle + #Range: > 1 + cooktime = 200 + +["Construction Settings"] + #Shearable: Allow jumbo furnaces to be cleanly dismantled with shears + shearable = true + diff --git a/defaultconfigs/railways-server.toml b/defaultconfigs/railways-server.toml index 78e74925a..d282598e3 100644 --- a/defaultconfigs/railways-server.toml +++ b/defaultconfigs/railways-server.toml @@ -47,21 +47,6 @@ #Range: 1 ~ 600 whistleRebindRate = 10 -#. -#Journeymap compat settings -[journeymap] - #. - #. - #[in Ticks] - #Outside-of-render-distance train sync time - #Range: 10 ~ 600 - farTrainSyncTicks = 200 - #. - #[in Ticks] - #In-render-distance train sync time - #Range: 1 ~ 600 - nearTrainSyncTicks = 5 - #. #Realism Settings [realism] diff --git a/defaultconfigs/sophisticatedbackpacks-server.toml b/defaultconfigs/sophisticatedbackpacks-server.toml index 5fac59eaa..74707a196 100644 --- a/defaultconfigs/sophisticatedbackpacks-server.toml +++ b/defaultconfigs/sophisticatedbackpacks-server.toml @@ -21,6 +21,8 @@ canBePlacedInContainerItems = false #Maximum number of upgrades of type per backpack in format of "UpgradeRegistryName[or UpgradeGroup]|MaxNumber" maxUpgradesPerStorage = ["furnace_upgrades|1", "stack_upgrades|3", "jukebox_upgrades|1"] + #If true, disallows all blocks from connecting to backpacks + allBlockConnectionsDisallowed = false #Leather Backpack Settings [server.leatherBackpack] @@ -415,6 +417,32 @@ #Chance increase per looting level of mob dropping backpack #Range: 0.0 ~ 0.3 lootingChanceIncreasePerLevel = 0.15 + #Weight of selecting a Leather Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + leatherWeight = 625 + #Weight of selecting a Copper Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + copperWeight = 250 + #Weight of selecting a Iron Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + ironWeight = 125 + #Weight of selecting a Gold Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + goldWeight = 25 + #Weight of selecting a Diamond Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + diamondWeight = 5 + #Weight of selecting a Netherite Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + netheriteWeight = 1 + #Minimum tier of backpack mobs are equipped with at mid local difficulty (above 1/3 of max, 0 is leather) + #Range: 0 ~ 6 + minBackpackTierMidDifficulty = 1 + #Minimum tier of backpack mobs are equipped with at high local difficulty (above 2/3 of max, 0 is leather) + #Range: 0 ~ 6 + minBackpackTierHighDifficulty = 2 + #If local difficulty is taken into consideration when determining the difficulty. If local difficulty is high enough then it will use difficulty settings above + localDifficultyEffectsBackpackSpawns = true [server.nerfs] #Determines if too many backpacks in player's inventory cause slowness to the player @@ -427,6 +455,8 @@ slownessLevelsPerAdditionalBackpack = 1.0 #Determines if active upgrades will only work in the backpack that's worn by the player. Active upgrades are for example magnet, pickup, cooking, feeding upgrades. onlyWornBackpackTriggersUpgrades = true + #Effect that is applied to player when they have too many backpacks. Can be any effect including modded ones like overencumbered effect some mods have. + nerfEffect = "minecraft:slowness" #Copper Backpack Settings [server.copperBackpack] diff --git a/defaultconfigs/tfcambiental-server.toml b/defaultconfigs/tfcambiental-server.toml new file mode 100644 index 000000000..d9603f267 --- /dev/null +++ b/defaultconfigs/tfcambiental-server.toml @@ -0,0 +1,19 @@ +#The durability value of Burlap material clothing. +#Range: > 0 +durabilityBurlapClothes = 3000 +#The durability value of Insulated Leather material clothing. +#Range: > 0 +durabilityInsulatedLeatherClothes = 2500 +#The durability value of the Leather Apron clothing. +#Range: > 0 +durabilityLeatherApronClothes = 1000 +#The durability value of Silk material clothing. +#Range: > 0 +durabilitySilkClothes = 3000 +#The durability value of Straw material clothing. +#Range: > 0 +durabilityStrawClothes = 100 +#The durability value of Wool material clothing. +#Range: > 0 +durabilityWoolClothes = 3000 + diff --git a/defaultconfigs/tfg-server.toml b/defaultconfigs/tfg-server.toml index 3c9973a47..88812038f 100644 --- a/defaultconfigs/tfg-server.toml +++ b/defaultconfigs/tfg-server.toml @@ -131,3 +131,11 @@ #Blacklist of entity IDs that cannot be sampled by the DNA syringe. Can be empty. syringeBlacklist = [] +[mars_climate] + #The chance that sand piles will accumulate during a sandstorm. Lower values = faster sand pile accumulation, but also more block updates (aka lag). + #Range: > 1 + sandAccumulateChance = 20 + #The chance that sand piles will decumulate during a sandstoem. Lower values = faster sand dispersal, but also more block updates (aka lag). + #Range: > 1 + sandDecumulateChance = 36 +